text
stringlengths
197
24.1M
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "could not create thread" .align 3 .LC1: .string "Input: %s\n" .text .align 2 .global main .type main, %function main: .LFB6: .cfi_startproc stp x29, x30, [sp, -320]! .cfi_def_cfa_offset 320 .cfi_offset 29, -320 .cfi_offset 30, -312 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 312] mov x1, 0 ldr x0, [sp, 16] add x0, x0, 8 ldr x0, [x0] bl atoi str w0, [sp, 44] ldrsw x0, [sp, 44] add x4, sp, 48 mov x3, x0 adrp x0, connection_handler add x2, x0, :lo12:connection_handler mov x1, 0 mov x0, x4 bl pthread_create cmp w0, 0 bge .L2 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl perror mov w0, 1 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 312] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L4 b .L5 .L2: add x0, sp, 56 bl gets add x0, sp, 56 mov x1, x0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl printf b .L2 .L5: bl __stack_chk_fail .L4: mov w0, w1 ldp x29, x30, [sp], 320 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size main, .-main .section .rodata .align 3 .LC2: .string "Could not create socket" .align 3 .LC3: .string "Socket created" .align 3 .LC4: .string "bind failed. Error" .align 3 .LC5: .string "bind done" .align 3 .LC6: .string "Waiting for incoming connections..." .align 3 .LC7: .string "Connection accepted" .align 3 .LC8: .string "Server receive: %s\n" .align 3 .LC9: .string "Client disconnected" .align 3 .LC10: .string "recv failed" .text .align 2 .global connection_handler .type connection_handler, %function connection_handler: .LFB7: .cfi_startproc sub sp, sp, #2096 .cfi_def_cfa_offset 2096 stp x29, x30, [sp] .cfi_offset 29, -2096 .cfi_offset 30, -2088 mov x29, sp str x0, [sp, 24] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 2088] mov x1, 0 mov w2, 0 mov w1, 1 mov w0, 2 bl socket str w0, [sp, 40] ldr w0, [sp, 40] cmn w0, #1 bne .L7 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf .L7: adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl puts mov w0, 2 strh w0, [sp, 56] str wzr, [sp, 60] ldr x0, [sp, 24] and w0, w0, 65535 bl htons and w0, w0, 65535 strh w0, [sp, 58] add x0, sp, 56 mov w2, 16 mov x1, x0 ldr w0, [sp, 40] bl bind cmp w0, 0 bge .L8 adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl perror mov x0, 1 b .L14 .L8: adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl puts mov w1, 3 ldr w0, [sp, 40] bl listen adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl puts mov w0, 16 str w0, [sp, 36] add x1, sp, 36 add x0, sp, 72 mov x2, x1 mov x1, x0 ldr w0, [sp, 40] bl accept str w0, [sp, 44] adrp x0, .LC7 add x0, x0, :lo12:.LC7 bl puts b .L10 .L11: ldr x0, [sp, 48] add x1, sp, 88 strb wzr, [x1, x0] add x0, sp, 88 mov x1, x0 adrp x0, .LC8 add x0, x0, :lo12:.LC8 bl printf add x0, sp, 88 bl strlen mov x1, x0 add x0, sp, 88 mov x2, x1 mov x1, x0 ldr w0, [sp, 44] bl write add x0, sp, 88 mov x2, 2000 mov w1, 0 bl memset .L10: add x0, sp, 88 mov w3, 0 mov x2, 10 mov x1, x0 ldr w0, [sp, 44] bl recv str x0, [sp, 48] ldr x0, [sp, 48] cmp x0, 0 bne .L11 ldr x0, [sp, 48] cmp x0, 0 bne .L12 adrp x0, .LC9 add x0, x0, :lo12:.LC9 bl puts adrp x0, :got:stdout ldr x0, [x0, #:got_lo12:stdout] ldr x0, [x0] bl fflush b .L13 .L12: ldr x0, [sp, 48] cmn x0, #1 bne .L13 adrp x0, .LC10 add x0, x0, :lo12:.LC10 bl perror .L13: mov x0, 0 .L14: mov x1, x0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 2088] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L15 bl __stack_chk_fail .L15: mov x0, x1 ldp x29, x30, [sp] add sp, sp, 2096 .cfi_restore 29 .cfi_restore 30 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size connection_handler, .-connection_handler ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "x kisebb mint y" .align 3 .LC1: .string "x nagyobb mint y" .align 3 .LC2: .string "x egyenlo y-nal" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp mov w0, 2 str w0, [sp, 24] mov w0, 3 str w0, [sp, 28] ldr w1, [sp, 24] ldr w0, [sp, 28] cmp w1, w0 bge .L2 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl puts b .L3 .L2: ldr w1, [sp, 24] ldr w0, [sp, 28] cmp w1, w0 ble .L4 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts b .L3 .L4: adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl puts .L3: mov w0, 0 ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global reuseMemory .bss .align 2 .type reuseMemory, %object .size reuseMemory, 4 reuseMemory: .zero 4 .global randomMemory .align 2 .type randomMemory, %object .size randomMemory, 4 randomMemory: .zero 4 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global global_pid_list .bss .align 3 .type global_pid_list, %object .size global_pid_list, 200 global_pid_list: .zero 200 .global pid_list_count .align 2 .type pid_list_count, %object .size pid_list_count, 4 pid_list_count: .zero 4 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "size stu: %d, sizeof Student: %d" .align 3 .LC1: .string "size int: %d, sizeof char: %d" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 40] mov x1, 0 mov x2, 16 mov x1, 16 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf mov x2, 1 mov x1, 4 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl printf mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 40] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L3 bl __stack_chk_fail .L3: mov w0, w1 ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global reverseKGroup .type reverseKGroup, %function reverseKGroup: .LFB6: .cfi_startproc sub sp, sp, #80 .cfi_def_cfa_offset 80 str x0, [sp, 8] str w1, [sp, 4] ldr x0, [sp, 8] cmp x0, 0 beq .L2 ldr x0, [sp, 8] ldr x0, [x0, 8] cmp x0, 0 beq .L2 ldr w0, [sp, 4] cmp w0, 0 beq .L2 ldr w0, [sp, 4] cmp w0, 1 bne .L3 .L2: ldr x0, [sp, 8] b .L4 .L3: str xzr, [sp, 40] ldr x0, [sp, 40] str x0, [sp, 32] b .L5 .L17: ldr x0, [sp, 8] str x0, [sp, 48] ldr x0, [sp, 48] str x0, [sp, 56] mov w0, 1 str w0, [sp, 28] b .L6 .L8: ldr x0, [sp, 56] ldr x0, [x0, 8] str x0, [sp, 56] ldr w0, [sp, 28] add w0, w0, 1 str w0, [sp, 28] .L6: ldr x0, [sp, 56] cmp x0, 0 beq .L7 ldr w1, [sp, 28] ldr w0, [sp, 4] cmp w1, w0 blt .L8 .L7: ldr x0, [sp, 56] cmp x0, 0 bne .L9 ldr x0, [sp, 32] cmp x0, 0 bne .L10 ldr x0, [sp, 8] str x0, [sp, 32] b .L12 .L10: ldr x0, [sp, 40] ldr x1, [sp, 8] str x1, [x0, 8] b .L12 .L9: ldr x0, [sp, 56] ldr x0, [x0, 8] str x0, [sp, 8] ldr x0, [sp, 56] str xzr, [x0, 8] ldr x0, [sp, 56] ldr x0, [x0, 8] str x0, [sp, 64] ldr x0, [sp, 48] str x0, [sp, 56] b .L13 .L14: ldr x0, [sp, 48] str x0, [sp, 72] ldr x0, [sp, 48] ldr x0, [x0, 8] str x0, [sp, 48] ldr x0, [sp, 72] ldr x1, [sp, 64] str x1, [x0, 8] ldr x0, [sp, 72] str x0, [sp, 64] .L13: ldr x0, [sp, 48] cmp x0, 0 bne .L14 ldr x0, [sp, 32] cmp x0, 0 bne .L15 ldr x0, [sp, 64] str x0, [sp, 32] b .L16 .L15: ldr x0, [sp, 40] ldr x1, [sp, 64] str x1, [x0, 8] .L16: ldr x0, [sp, 56] str x0, [sp, 40] .L5: ldr x0, [sp, 8] cmp x0, 0 bne .L17 .L12: ldr x0, [sp, 32] .L4: add sp, sp, 80 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size reverseKGroup, .-reverseKGroup .align 2 .global main .type main, %function main: .LFB7: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -32 mov x0, 16 bl malloc str x0, [sp, 40] ldr x0, [sp, 40] mov w1, 1 str w1, [x0] mov x0, 16 bl malloc mov x1, x0 ldr x0, [sp, 40] str x1, [x0, 8] ldr x0, [sp, 40] ldr x0, [x0, 8] mov w1, 2 str w1, [x0] ldr x0, [sp, 40] ldr x19, [x0, 8] mov x0, 16 bl malloc str x0, [x19, 8] ldr x0, [sp, 40] ldr x0, [x0, 8] ldr x0, [x0, 8] mov w1, 3 str w1, [x0] ldr x0, [sp, 40] ldr x0, [x0, 8] ldr x0, [x0, 8] str xzr, [x0, 8] mov w1, 2 ldr x0, [sp, 40] bl reverseKGroup mov w0, 0 ldr x19, [sp, 16] ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "Value of sum : %f\n" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp mov w0, 17 str w0, [sp, 24] mov w0, 99 strb w0, [sp, 23] ldrb w1, [sp, 23] ldr w0, [sp, 24] add w0, w1, w0 fmov s0, w0 scvtf s0, s0 str s0, [sp, 28] ldr s0, [sp, 28] fcvt d0, s0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf mov w0, 0 ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "%d\n" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp mov w0, 2 str w0, [sp, 20] mov w0, 1 str w0, [sp, 24] str wzr, [sp, 28] str wzr, [sp, 32] str wzr, [sp, 36] str wzr, [sp, 40] str wzr, [sp, 44] b .L2 .L6: mov w0, 1 str w0, [sp, 24] b .L3 .L5: ldr w0, [sp, 20] mul w1, w0, w0 ldr w0, [sp, 24] mul w0, w0, w0 sub w0, w1, w0 str w0, [sp, 28] ldr w1, [sp, 20] ldr w0, [sp, 24] mul w0, w1, w0 lsl w0, w0, 1 str w0, [sp, 32] ldr w0, [sp, 20] mul w1, w0, w0 ldr w0, [sp, 24] mul w0, w0, w0 add w0, w1, w0 str w0, [sp, 36] ldr w1, [sp, 28] ldr w0, [sp, 32] add w0, w1, w0 ldr w1, [sp, 36] add w0, w1, w0 str w0, [sp, 40] ldr w0, [sp, 40] cmp w0, 1000 bne .L4 ldr w1, [sp, 28] ldr w0, [sp, 32] mul w0, w1, w0 ldr w1, [sp, 36] mul w0, w1, w0 str w0, [sp, 44] ldr w1, [sp, 44] adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf .L4: ldr w0, [sp, 24] add w0, w0, 1 str w0, [sp, 24] .L3: ldr w1, [sp, 24] ldr w0, [sp, 20] cmp w1, w0 blt .L5 ldr w0, [sp, 20] add w0, w0, 1 str w0, [sp, 20] .L2: ldr w0, [sp, 20] cmp w0, 20 ble .L6 mov w0, 0 ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "HANS " .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp mov w0, 1 str w0, [sp, 28] .L2: adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl puts ldr w0, [sp, 28] add w0, w0, 1 str w0, [sp, 28] ldr w0, [sp, 28] cmp w0, 5 ble .L2 mov w0, 0 ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "%d" .align 3 .LC1: .string "NAO EXISTE HIPOTENUSA" .align 3 .LC2: .string "hipotenusa = %d, catetos %d e %d\n" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 56] mov x1, 0 add x0, sp, 28 mov x1, x0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl __isoc99_scanf ldr w0, [sp, 28] cmp w0, 4 bgt .L2 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts b .L3 .L2: mov w0, 5 str w0, [sp, 32] b .L4 .L10: ldr w0, [sp, 32] mul w0, w0, w0 str w0, [sp, 44] mov w0, 1 str w0, [sp, 36] b .L5 .L9: ldr w0, [sp, 36] mul w0, w0, w0 str w0, [sp, 48] ldr w0, [sp, 36] add w0, w0, 1 str w0, [sp, 40] b .L6 .L8: ldr w0, [sp, 40] mul w0, w0, w0 str w0, [sp, 52] ldr w1, [sp, 48] ldr w0, [sp, 52] add w0, w1, w0 ldr w1, [sp, 44] cmp w1, w0 bne .L7 ldr w3, [sp, 40] ldr w2, [sp, 36] ldr w1, [sp, 32] adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf .L7: ldr w0, [sp, 40] add w0, w0, 1 str w0, [sp, 40] .L6: ldr w1, [sp, 40] ldr w0, [sp, 32] cmp w1, w0 blt .L8 ldr w0, [sp, 36] add w0, w0, 1 str w0, [sp, 36] .L5: ldr w0, [sp, 32] sub w0, w0, #1 ldr w1, [sp, 36] cmp w1, w0 blt .L9 ldr w0, [sp, 32] add w0, w0, 1 str w0, [sp, 32] .L4: ldr w0, [sp, 28] ldr w1, [sp, 32] cmp w1, w0 ble .L10 .L3: mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 56] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L12 bl __stack_chk_fail .L12: mov w0, w1 ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global good .type good, %function good: .LFB0: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str wzr, [sp, 12] ldr w0, [sp, 12] add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size good, .-good .align 2 .global main .type main, %function main: .LFB1: .cfi_startproc stp x29, x30, [sp, -16]! .cfi_def_cfa_offset 16 .cfi_offset 29, -16 .cfi_offset 30, -8 mov x29, sp bl good mov w0, 0 ldp x29, x30, [sp], 16 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "rb" .align 3 .LC1: .string "vp2d.dat" .align 3 .LC2: .string "err in vp2d.dat" .align 3 .LC3: .string "wb" .align 3 .LC4: .string "rho2d.dat" .align 3 .LC5: .string "err in rho2d.dat" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp mov w0, 10001 str w0, [sp, 32] mov w0, 1200 str w0, [sp, 36] ldrsw x0, [sp, 36] lsl x0, x0, 2 bl malloc str x0, [sp, 40] adrp x0, .LC0 add x1, x0, :lo12:.LC0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl fopen str x0, [sp, 48] ldr x0, [sp, 48] cmp x0, 0 bne .L2 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl puts .L2: adrp x0, .LC3 add x1, x0, :lo12:.LC3 adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl fopen str x0, [sp, 56] ldr x0, [sp, 56] cmp x0, 0 bne .L3 adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl puts .L3: str wzr, [sp, 24] b .L4 .L7: ldrsw x0, [sp, 36] ldr x3, [sp, 48] mov x2, x0 mov x1, 4 ldr x0, [sp, 40] bl fread str wzr, [sp, 28] b .L5 .L6: ldrsw x0, [sp, 28] lsl x0, x0, 2 ldr x1, [sp, 40] add x0, x1, x0 ldr s0, [x0] fcvt d0, s0 bl sqrt bl sqrt adrp x0, .LC6 ldr d1, [x0, #:lo12:.LC6] fmul d0, d0, d1 ldrsw x0, [sp, 28] lsl x0, x0, 2 ldr x1, [sp, 40] add x0, x1, x0 fcvt s0, d0 str s0, [x0] ldr w0, [sp, 28] add w0, w0, 1 str w0, [sp, 28] .L5: ldr w1, [sp, 28] ldr w0, [sp, 36] cmp w1, w0 blt .L6 ldrsw x0, [sp, 36] ldr x3, [sp, 56] mov x2, x0 mov x1, 4 ldr x0, [sp, 40] bl fwrite ldr w0, [sp, 24] add w0, w0, 1 str w0, [sp, 24] .L4: ldr w1, [sp, 24] ldr w0, [sp, 32] cmp w1, w0 blt .L7 ldr x0, [sp, 40] bl free ldr x0, [sp, 48] bl fclose ldr x0, [sp, 56] bl fclose mov w0, 0 ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main .section .rodata .align 3 .LC6: .word 1030792151 .word 1070847754 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 40] mov x1, 0 adrp x0, :got:stdin ldr x0, [x0, #:got_lo12:stdin] ldr x1, [x0] add x0, sp, 24 mov x3, x1 mov x2, 9 mov x1, 1 bl fread strb wzr, [sp, 33] add x0, sp, 24 bl puts mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 40] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L3 bl __stack_chk_fail .L3: mov w0, w1 ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global ft_signed_to_positive .type ft_signed_to_positive, %function ft_signed_to_positive: .LFB0: .cfi_startproc sub sp, sp, #32 .cfi_def_cfa_offset 32 str w0, [sp, 12] ldr w0, [sp, 12] cmp w0, 0 bge .L2 ldr w0, [sp, 12] neg w0, w0 str w0, [sp, 28] b .L3 .L2: ldr w0, [sp, 12] str w0, [sp, 28] .L3: ldr w0, [sp, 28] add sp, sp, 32 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size ft_signed_to_positive, .-ft_signed_to_positive .section .rodata .align 3 .LC0: .string "0" .align 3 .LC1: .string "-" .text .align 2 .global ft_putnbr .type ft_putnbr, %function ft_putnbr: .LFB1: .cfi_startproc stp x29, x30, [sp, -160]! .cfi_def_cfa_offset 160 .cfi_offset 29, -160 .cfi_offset 30, -152 mov x29, sp str w0, [sp, 28] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 152] mov x1, 0 ldr w0, [sp, 28] cmp w0, 0 bne .L6 mov x2, 1 adrp x0, .LC0 add x1, x0, :lo12:.LC0 mov w0, 1 bl write b .L12 .L6: ldr w0, [sp, 28] cmp w0, 0 bge .L8 mov x2, 1 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov w0, 1 bl write .L8: ldr w0, [sp, 28] bl ft_signed_to_positive str w0, [sp, 40] str wzr, [sp, 44] b .L9 .L10: ldr w2, [sp, 40] mov w0, 52429 movk w0, 0xcccc, lsl 16 umull x0, w2, w0 lsr x0, x0, 32 lsr w1, w0, 3 mov w0, w1 lsl w0, w0, 2 add w0, w0, w1 lsl w0, w0, 1 sub w1, w2, w0 and w0, w1, 255 mov w2, 99 ldr w1, [sp, 44] sub w1, w2, w1 add w0, w0, 48 and w2, w0, 255 sxtw x0, w1 add x1, sp, 48 strb w2, [x1, x0] ldr w1, [sp, 40] mov w0, 52429 movk w0, 0xcccc, lsl 16 umull x0, w1, w0 lsr x0, x0, 32 lsr w0, w0, 3 str w0, [sp, 40] ldr w0, [sp, 44] add w0, w0, 1 str w0, [sp, 44] .L9: ldr w0, [sp, 40] cmp w0, 0 bne .L10 mov w1, 100 ldr w0, [sp, 44] sub w0, w1, w0 add x1, sp, 48 sxtw x0, w0 add x0, x1, x0 ldrsw x1, [sp, 44] mov x2, x1 mov x1, x0 mov w0, 1 bl write .L12: nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 152] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L11 bl __stack_chk_fail .L11: ldp x29, x30, [sp], 160 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size ft_putnbr, .-ft_putnbr ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global stripline .type stripline, %function stripline: .LFB6: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -48 str x0, [sp, 40] str wzr, [sp, 60] b .L2 .L4: ldr w0, [sp, 60] add w0, w0, 1 str w0, [sp, 60] .L2: ldrsw x0, [sp, 60] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 32 bne .L3 ldrsw x0, [sp, 60] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 0 bne .L4 .L3: ldrsw x0, [sp, 60] ldr x1, [sp, 40] add x19, x1, x0 ldr x0, [sp, 40] bl strlen mov x1, x0 ldrsw x0, [sp, 60] sub x0, x1, x0 add x0, x0, 1 mov x2, x0 mov x1, x19 ldr x0, [sp, 40] bl memmove ldr x0, [sp, 40] bl strlen sub w0, w0, #1 str w0, [sp, 60] b .L5 .L7: ldrsw x0, [sp, 60] ldr x1, [sp, 40] add x0, x1, x0 strb wzr, [x0] ldr w0, [sp, 60] sub w0, w0, #1 str w0, [sp, 60] .L5: ldr w0, [sp, 60] cmp w0, 0 ble .L6 ldrsw x0, [sp, 60] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 123 beq .L7 ldrsw x0, [sp, 60] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 10 beq .L7 ldrsw x0, [sp, 60] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 32 beq .L7 .L6: ldr x0, [sp, 40] ldr x19, [sp, 16] ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size stripline, .-stripline .align 2 .global removeargnames .type removeargnames, %function removeargnames: .LFB7: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp stp x19, x20, [sp, 16] .cfi_offset 19, -48 .cfi_offset 20, -40 str x0, [sp, 40] mov w1, 61 ldr x0, [sp, 40] bl strchr cmp x0, 0 beq .L10 mov w1, 61 ldr x0, [sp, 40] bl strchr strb wzr, [x0] ldr x0, [sp, 40] bl stripline .L10: mov w1, 40 ldr x0, [sp, 40] bl strchr cmp x0, 0 bne .L11 ldr x0, [sp, 40] b .L12 .L11: mov w1, 123 ldr x0, [sp, 40] bl strchr cmp x0, 0 beq .L13 mov w1, 123 ldr x0, [sp, 40] bl strchr strb wzr, [x0] ldr x0, [sp, 40] bl stripline b .L14 .L13: mov w1, 41 ldr x0, [sp, 40] bl strchr mov x1, x0 ldr x0, [sp, 40] sub x0, x1, x0 sub w0, w0, #1 str w0, [sp, 52] mov w1, 41 ldr x0, [sp, 40] bl strchr str x0, [sp, 56] b .L15 .L17: ldr w0, [sp, 52] sub w0, w0, #1 str w0, [sp, 52] .L15: ldr w0, [sp, 52] cmp w0, 0 ble .L18 ldrsw x0, [sp, 52] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 32 beq .L17 b .L18 .L29: ldrsw x0, [sp, 52] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 40 beq .L33 ldrsw x0, [sp, 52] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 32 beq .L21 ldrsw x0, [sp, 52] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 93 bne .L22 .L21: ldrsw x0, [sp, 52] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 32 bne .L23 ldrsw x0, [sp, 52] add x0, x0, 1 ldr x1, [sp, 40] add x19, x1, x0 ldr x0, [sp, 56] bl strlen add x0, x0, 1 mov x2, x0 ldr x1, [sp, 56] mov x0, x19 bl memmove b .L25 .L23: ldrsw x0, [sp, 52] ldr x1, [sp, 40] add x19, x1, x0 ldr x0, [sp, 56] bl strlen add x0, x0, 1 mov x2, x0 ldr x1, [sp, 56] mov x0, x19 bl memmove b .L25 .L27: ldr w0, [sp, 52] sub w0, w0, #1 str w0, [sp, 52] .L25: ldrsw x0, [sp, 52] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 44 beq .L26 ldrsw x0, [sp, 52] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 40 bne .L27 .L26: ldrsw x0, [sp, 52] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 44 bne .L34 ldrsw x0, [sp, 52] ldr x1, [sp, 40] add x0, x1, x0 str x0, [sp, 56] .L22: ldr w0, [sp, 52] sub w0, w0, #1 str w0, [sp, 52] .L18: ldr w0, [sp, 52] cmp w0, 0 bgt .L29 b .L20 .L33: nop b .L20 .L34: nop .L20: mov w1, 40 ldr x0, [sp, 40] bl strchr mov x1, x0 ldr x0, [sp, 40] sub x0, x1, x0 str w0, [sp, 52] b .L30 .L32: ldrsw x0, [sp, 52] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 32 bne .L31 ldrsw x0, [sp, 52] ldr x1, [sp, 40] add x19, x1, x0 ldrsw x0, [sp, 52] add x0, x0, 1 ldr x1, [sp, 40] add x20, x1, x0 ldrsw x0, [sp, 52] add x0, x0, 1 ldr x1, [sp, 40] add x0, x1, x0 bl strlen add x0, x0, 1 mov x2, x0 mov x1, x20 mov x0, x19 bl memmove b .L30 .L31: ldr w0, [sp, 52] add w0, w0, 1 str w0, [sp, 52] .L30: ldrsw x0, [sp, 52] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 0 bne .L32 .L14: ldr x0, [sp, 40] .L12: ldp x19, x20, [sp, 16] ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_restore 20 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size removeargnames, .-removeargnames .align 2 .type ignore_ret, %function ignore_ret: .LFB8: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str w0, [sp, 12] nop add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size ignore_ret, .-ignore_ret .section .rodata .align 3 .LC0: .string "rt" .align 3 .LC1: .string "Cannot open %s\n" .align 3 .LC2: .string "/**" .align 3 .LC3: .string "*/" .align 3 .LC4: .string "@hide " .align 3 .LC5: .string "AsyncReader.java" .align 3 .LC6: .string "Skipping %s\n" .align 3 .LC7: .string "%s/%s" .align 3 .LC8: .string "wt" .align 3 .LC9: .string "Cannot write %s\n" .align 3 .LC10: .string "package" .align 3 .LC11: .string "public class" .align 3 .LC12: .string "public interface" .align 3 .LC13: .string "extends" .align 3 .LC14: .string "implements" .align 3 .LC15: .string "Driver" .align 3 .LC16: .string "org.gdal.gdal" .align 3 .LC17: .string "public class org.gdal.gdal.Driver" .align 3 .LC18: .string "public class org.gdal.ogr.Driver" .align 3 .LC19: .string "synchronized " .align 3 .LC20: .string "public" .align 3 .LC21: .string "native" .align 3 .LC22: .string "%s:%s" .align 3 .LC23: .string "final static" .align 3 .LC24: .string "%s;\n" .align 3 .LC25: .string "getCPtr" .align 3 .LC26: .string "long cPtr" .align 3 .LC27: .string "%s private %s" .align 3 .LC28: .string "WARNING: did not find occurrence of %s\n" .text .align 2 .global main .type main, %function main: .LFB9: .cfi_startproc mov x12, 19616 sub sp, sp, x12 .cfi_def_cfa_offset 19616 stp x29, x30, [sp] .cfi_offset 29, -19616 .cfi_offset 30, -19608 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -19600 str w0, [sp, 44] str x1, [sp, 32] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 19608] mov x1, 0 ldr x0, [sp, 32] ldr x0, [x0, 8] str x0, [sp, 104] adrp x0, .LC0 add x1, x0, :lo12:.LC0 ldr x0, [sp, 104] bl fopen str x0, [sp, 112] ldr x0, [sp, 112] cmp x0, 0 bne .L37 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x3, [x0] ldr x2, [sp, 104] adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x3 bl fprintf mov w0, 1 b .L96 .L37: mov x1, 3000 mov x0, 32 bl calloc str x0, [sp, 120] str wzr, [sp, 60] strb wzr, [sp, 152] b .L39 .L51: add x2, sp, 664 adrp x0, .LC2 add x1, x0, :lo12:.LC2 mov x0, x2 bl strstr cmp x0, 0 bne .L98 b .L39 .L98: nop .L40: add x1, sp, 664 add x0, sp, 3224 bl strcpy b .L41 .L43: add x1, sp, 664 add x0, sp, 3224 bl strcat add x2, sp, 664 adrp x0, .LC3 add x1, x0, :lo12:.LC3 mov x0, x2 bl strstr cmp x0, 0 bne .L99 .L41: add x0, sp, 664 ldr x2, [sp, 112] mov w1, 255 bl fgets cmp x0, 0 bne .L43 b .L44 .L99: nop b .L44 .L50: ldrb w0, [sp, 664] cmp w0, 10 bne .L45 b .L44 .L45: add x0, sp, 664 mov w1, 42 bl strchr cmp x0, 0 bne .L100 ldrsw x0, [sp, 60] lsl x0, x0, 5 ldr x1, [sp, 120] add x19, x1, x0 add x0, sp, 3224 bl strdup str x0, [x19, 16] add x0, sp, 664 str x0, [sp, 88] mov x2, 6 adrp x0, .LC4 add x1, x0, :lo12:.LC4 ldr x0, [sp, 88] bl strncmp cmp w0, 0 bne .L47 ldrsw x0, [sp, 60] lsl x0, x0, 5 ldr x1, [sp, 120] add x0, x1, x0 mov w1, 1 str w1, [x0, 28] ldr x0, [sp, 88] add x0, x0, 6 str x0, [sp, 88] b .L48 .L47: ldrsw x0, [sp, 60] lsl x0, x0, 5 ldr x1, [sp, 120] add x0, x1, x0 str wzr, [x0, 28] .L48: ldr x0, [sp, 88] bl stripline mov x2, x0 ldrsw x0, [sp, 60] lsl x0, x0, 5 ldr x1, [sp, 120] add x19, x1, x0 mov x0, x2 bl strdup str x0, [x19] ldr x0, [sp, 88] bl stripline bl removeargnames mov x2, x0 ldrsw x0, [sp, 60] lsl x0, x0, 5 ldr x1, [sp, 120] add x19, x1, x0 mov x0, x2 bl strdup str x0, [x19, 8] ldr w0, [sp, 60] add w0, w0, 1 str w0, [sp, 60] .L44: add x0, sp, 664 ldr x2, [sp, 112] mov w1, 255 bl fgets cmp x0, 0 bne .L50 b .L49 .L100: nop .L49: add x2, sp, 664 adrp x0, .LC2 add x1, x0, :lo12:.LC2 mov x0, x2 bl strstr cmp x0, 0 beq .L39 b .L40 .L39: add x0, sp, 664 ldr x2, [sp, 112] mov w1, 255 bl fgets cmp x0, 0 bne .L51 ldr x0, [sp, 112] bl fclose mov w0, 3 str w0, [sp, 64] b .L52 .L92: ldrsw x0, [sp, 64] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x2, [x0] adrp x0, .LC5 add x1, x0, :lo12:.LC5 mov x0, x2 bl strstr cmp x0, 0 beq .L53 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x3, [x0] ldrsw x0, [sp, 64] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] mov x2, x0 adrp x0, .LC6 add x1, x0, :lo12:.LC6 mov x0, x3 bl fprintf b .L91 .L53: ldrsw x0, [sp, 64] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x2, [x0] adrp x0, .LC0 add x1, x0, :lo12:.LC0 mov x0, x2 bl fopen str x0, [sp, 112] ldr x0, [sp, 112] cmp x0, 0 bne .L55 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x3, [x0] ldrsw x0, [sp, 64] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] mov x2, x0 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x3 bl fprintf b .L91 .L55: ldr x0, [sp, 32] add x0, x0, 16 ldr x2, [x0] ldrsw x0, [sp, 64] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] add x4, sp, 1176 mov x3, x0 adrp x0, .LC7 add x1, x0, :lo12:.LC7 mov x0, x4 bl sprintf add x2, sp, 1176 adrp x0, .LC8 add x1, x0, :lo12:.LC8 mov x0, x2 bl fopen str x0, [sp, 128] ldr x0, [sp, 128] cmp x0, 0 bne .L56 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x3, [x0] add x0, sp, 1176 mov x2, x0 adrp x0, .LC9 add x1, x0, :lo12:.LC9 mov x0, x3 bl fprintf b .L91 .L56: strb wzr, [sp, 152] strb wzr, [sp, 408] b .L57 .L90: add x0, sp, 664 bl strdup str x0, [sp, 96] add x2, sp, 664 adrp x0, .LC10 add x1, x0, :lo12:.LC10 mov x0, x2 bl strstr cmp x0, 0 beq .L58 add x1, sp, 664 add x0, sp, 408 bl strcpy b .L59 .L58: add x2, sp, 664 adrp x0, .LC11 add x1, x0, :lo12:.LC11 mov x0, x2 bl strstr cmp x0, 0 bne .L60 add x2, sp, 664 adrp x0, .LC12 add x1, x0, :lo12:.LC12 mov x0, x2 bl strstr cmp x0, 0 beq .L59 .L60: add x0, sp, 664 bl stripline mov x1, x0 add x0, sp, 152 bl strcpy add x2, sp, 152 adrp x0, .LC13 add x1, x0, :lo12:.LC13 mov x0, x2 bl strstr cmp x0, 0 beq .L61 add x2, sp, 152 adrp x0, .LC13 add x1, x0, :lo12:.LC13 mov x0, x2 bl strstr strb wzr, [x0] add x0, sp, 152 bl stripline .L61: add x2, sp, 152 adrp x0, .LC14 add x1, x0, :lo12:.LC14 mov x0, x2 bl strstr cmp x0, 0 beq .L62 add x2, sp, 152 adrp x0, .LC14 add x1, x0, :lo12:.LC14 mov x0, x2 bl strstr strb wzr, [x0] add x0, sp, 152 bl stripline .L62: add x2, sp, 664 adrp x0, .LC15 add x1, x0, :lo12:.LC15 mov x0, x2 bl strstr cmp x0, 0 beq .L59 add x2, sp, 408 adrp x0, .LC16 add x1, x0, :lo12:.LC16 mov x0, x2 bl strstr cmp x0, 0 beq .L63 add x2, sp, 664 adrp x0, .LC17 add x1, x0, :lo12:.LC17 mov x0, x2 ldp q0, q1, [x1] stp q0, q1, [x0] ldrh w1, [x1, 32] strh w1, [x0, 32] b .L64 .L63: add x2, sp, 664 adrp x0, .LC18 add x1, x0, :lo12:.LC18 mov x0, x2 ldp q0, q1, [x1] stp q0, q1, [x0] ldrb w1, [x1, 32] strb w1, [x0, 32] .L64: add x1, sp, 664 add x0, sp, 152 bl strcpy .L59: add x2, sp, 664 adrp x0, .LC19 add x1, x0, :lo12:.LC19 mov x0, x2 bl strstr cmp x0, 0 beq .L65 add x2, sp, 664 adrp x0, .LC19 add x1, x0, :lo12:.LC19 mov x0, x2 bl strstr str x0, [sp, 136] ldr x0, [sp, 136] strb wzr, [x0] ldr x0, [sp, 136] add x19, x0, 13 ldr x0, [sp, 136] add x0, x0, 13 bl strlen add x0, x0, 1 mov x2, x0 mov x1, x19 ldr x0, [sp, 136] bl memmove .L65: add x2, sp, 664 adrp x0, .LC20 add x1, x0, :lo12:.LC20 mov x0, x2 bl strstr cmp x0, 0 beq .L66 add x2, sp, 664 adrp x0, .LC21 add x1, x0, :lo12:.LC21 mov x0, x2 bl strstr cmp x0, 0 bne .L66 add x0, sp, 664 mov w1, 40 bl strchr cmp x0, 0 beq .L67 add x0, sp, 664 mov w1, 41 bl strchr cmp x0, 0 bne .L67 add x1, sp, 664 add x0, sp, 2200 bl strcpy .L68: add x0, sp, 664 ldr x2, [sp, 112] mov w1, 255 bl fgets bl ignore_ret add x0, sp, 2200 bl strlen sub x0, x0, #1 add x1, sp, 2200 add x0, x1, x0 add x1, sp, 664 bl strcpy add x0, sp, 2200 mov w1, 41 bl strchr cmp x0, 0 beq .L68 add x1, sp, 2200 add x0, sp, 664 bl strcpy ldr x0, [sp, 96] bl free add x0, sp, 2200 bl strdup str x0, [sp, 96] .L67: add x0, sp, 664 mov w1, 40 bl strchr cmp x0, 0 bne .L69 add x0, sp, 664 mov w1, 61 bl strchr cmp x0, 0 beq .L70 .L69: add x0, sp, 664 bl stripline bl removeargnames mov x1, x0 add x0, sp, 152 add x4, sp, 2200 mov x3, x1 mov x2, x0 adrp x0, .LC22 add x1, x0, :lo12:.LC22 mov x0, x4 bl sprintf b .L71 .L70: add x1, sp, 152 add x0, sp, 2200 bl strcpy .L71: str wzr, [sp, 68] b .L72 .L85: ldrsw x0, [sp, 68] lsl x0, x0, 5 ldr x1, [sp, 120] add x0, x1, x0 ldr x0, [x0, 8] add x1, sp, 2200 bl strcmp cmp w0, 0 bne .L73 ldrsw x0, [sp, 68] lsl x0, x0, 5 ldr x1, [sp, 120] add x0, x1, x0 mov w1, 1 str w1, [x0, 24] ldrsw x0, [sp, 68] lsl x0, x0, 5 ldr x1, [sp, 120] add x0, x1, x0 ldr w0, [x0, 28] cmp w0, 0 beq .L74 add x2, sp, 664 adrp x0, .LC23 add x1, x0, :lo12:.LC23 mov x0, x2 bl strstr cmp x0, 0 bne .L101 .L76: add x0, sp, 664 ldr x2, [sp, 112] mov w1, 255 bl fgets bl ignore_ret add x0, sp, 664 mov w1, 125 bl strchr cmp x0, 0 beq .L76 b .L101 .L74: ldrsw x0, [sp, 68] lsl x0, x0, 5 ldr x1, [sp, 120] add x0, x1, x0 ldr x0, [x0, 16] ldr x1, [sp, 128] bl fputs add x0, sp, 2200 mov w1, 40 bl strchr cmp x0, 0 beq .L78 ldrsw x0, [sp, 68] lsl x0, x0, 5 ldr x1, [sp, 120] add x0, x1, x0 ldr x0, [x0] mov w1, 58 bl strchr add x0, x0, 1 mov x2, x0 adrp x0, .LC24 add x1, x0, :lo12:.LC24 ldr x0, [sp, 128] bl fprintf str wzr, [sp, 72] str wzr, [sp, 76] add x0, sp, 664 ldr x1, [sp, 96] bl strcpy .L83: str wzr, [sp, 80] b .L79 .L82: ldrsw x0, [sp, 80] add x1, sp, 664 ldrb w0, [x1, x0] cmp w0, 123 bne .L80 mov w0, 1 str w0, [sp, 76] ldr w0, [sp, 72] add w0, w0, 1 str w0, [sp, 72] b .L81 .L80: ldrsw x0, [sp, 80] add x1, sp, 664 ldrb w0, [x1, x0] cmp w0, 125 bne .L81 ldr w0, [sp, 72] sub w0, w0, #1 str w0, [sp, 72] .L81: ldr w0, [sp, 80] add w0, w0, 1 str w0, [sp, 80] .L79: ldrsw x0, [sp, 80] add x1, sp, 664 ldrb w0, [x1, x0] cmp w0, 0 bne .L82 add x0, sp, 664 ldr x2, [sp, 112] mov w1, 255 bl fgets bl ignore_ret ldr w0, [sp, 76] cmp w0, 0 beq .L83 ldr w0, [sp, 72] cmp w0, 0 bgt .L83 b .L77 .L78: ldr x1, [sp, 128] ldr x0, [sp, 96] bl fputs b .L77 .L73: ldr w0, [sp, 68] add w0, w0, 1 str w0, [sp, 68] .L72: ldr w1, [sp, 68] ldr w0, [sp, 60] cmp w1, w0 blt .L85 b .L77 .L101: nop .L77: ldr w1, [sp, 68] ldr w0, [sp, 60] cmp w1, w0 bne .L102 adrp x0, .LC20 add x1, x0, :lo12:.LC20 ldr x0, [sp, 96] bl strstr cmp x0, 0 beq .L87 adrp x0, .LC25 add x1, x0, :lo12:.LC25 ldr x0, [sp, 96] bl strstr cmp x0, 0 bne .L88 adrp x0, .LC26 add x1, x0, :lo12:.LC26 ldr x0, [sp, 96] bl strstr cmp x0, 0 beq .L87 .L88: adrp x0, .LC20 add x1, x0, :lo12:.LC20 ldr x0, [sp, 96] bl strstr str x0, [sp, 144] ldr x0, [sp, 144] strb wzr, [x0] ldr x0, [sp, 144] add x0, x0, 6 mov x3, x0 ldr x2, [sp, 96] adrp x0, .LC27 add x1, x0, :lo12:.LC27 ldr x0, [sp, 128] bl fprintf nop b .L102 .L87: ldr x1, [sp, 128] ldr x0, [sp, 96] bl fputs b .L102 .L66: ldr x1, [sp, 128] ldr x0, [sp, 96] bl fputs b .L89 .L102: nop .L89: ldr x0, [sp, 96] bl free .L57: add x0, sp, 664 ldr x2, [sp, 112] mov w1, 255 bl fgets cmp x0, 0 bne .L90 ldr x0, [sp, 112] bl fclose ldr x0, [sp, 128] bl fclose .L91: ldr w0, [sp, 64] add w0, w0, 1 str w0, [sp, 64] .L52: ldr w1, [sp, 64] ldr w0, [sp, 44] cmp w1, w0 blt .L92 str wzr, [sp, 84] b .L93 .L95: ldrsw x0, [sp, 84] lsl x0, x0, 5 ldr x1, [sp, 120] add x0, x1, x0 ldr w0, [x0, 24] cmp w0, 0 bne .L94 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x3, [x0] ldrsw x0, [sp, 84] lsl x0, x0, 5 ldr x1, [sp, 120] add x0, x1, x0 ldr x0, [x0] mov x2, x0 adrp x0, .LC28 add x1, x0, :lo12:.LC28 mov x0, x3 bl fprintf .L94: ldr w0, [sp, 84] add w0, w0, 1 str w0, [sp, 84] .L93: ldr w1, [sp, 84] ldr w0, [sp, 60] cmp w1, w0 blt .L95 mov w0, 0 .L96: mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 19608] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L97 bl __stack_chk_fail .L97: mov w0, w1 ldr x19, [sp, 16] ldp x29, x30, [sp] mov x12, 19616 add sp, sp, x12 .cfi_restore 29 .cfi_restore 30 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE9: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global idx .bss .align 2 .type idx, %object .size idx, 4 idx: .zero 4 .global ret .align 3 .type ret, %object .size ret, 8 ret: .zero 8 .global col .align 3 .type col, %object .size col, 8 col: .zero 8 .global size .align 2 .type size, %object .size size, 4 size: .zero 4 .text .align 2 .global helper .type helper, %function helper: .LFB0: .cfi_startproc stp x29, x30, [sp, -80]! .cfi_def_cfa_offset 80 .cfi_offset 29, -80 .cfi_offset 30, -72 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -64 str x0, [sp, 56] str w1, [sp, 52] str x2, [sp, 40] str w3, [sp, 48] adrp x0, size add x0, x0, :lo12:size ldr w0, [x0] ldr w1, [sp, 48] cmp w1, w0 bne .L2 ldrsw x0, [sp, 52] lsl x2, x0, 2 adrp x0, ret add x0, x0, :lo12:ret ldr x1, [x0] adrp x0, idx add x0, x0, :lo12:idx ldr w0, [x0] sxtw x0, w0 lsl x0, x0, 3 add x19, x1, x0 mov x0, x2 bl malloc str x0, [x19] str wzr, [sp, 76] b .L3 .L4: ldrsw x0, [sp, 76] lsl x0, x0, 2 ldr x1, [sp, 56] add x1, x1, x0 adrp x0, ret add x0, x0, :lo12:ret ldr x2, [x0] adrp x0, idx add x0, x0, :lo12:idx ldr w0, [x0] sxtw x0, w0 lsl x0, x0, 3 add x0, x2, x0 ldr x2, [x0] ldrsw x0, [sp, 76] lsl x0, x0, 2 add x0, x2, x0 ldr w1, [x1] str w1, [x0] ldr w0, [sp, 76] add w0, w0, 1 str w0, [sp, 76] .L3: ldr w1, [sp, 76] ldr w0, [sp, 52] cmp w1, w0 blt .L4 adrp x0, col add x0, x0, :lo12:col ldr x1, [x0] adrp x0, idx add x0, x0, :lo12:idx ldr w0, [x0] sxtw x0, w0 lsl x0, x0, 2 add x0, x1, x0 ldr w1, [sp, 52] str w1, [x0] adrp x0, idx add x0, x0, :lo12:idx ldr w0, [x0] add w1, w0, 1 adrp x0, idx add x0, x0, :lo12:idx str w1, [x0] b .L1 .L2: ldr w0, [sp, 48] add w0, w0, 1 mov w3, w0 ldr x2, [sp, 40] ldr w1, [sp, 52] ldr x0, [sp, 56] bl helper ldrsw x0, [sp, 48] lsl x0, x0, 2 ldr x1, [sp, 40] add x1, x1, x0 ldrsw x0, [sp, 52] lsl x0, x0, 2 ldr x2, [sp, 56] add x0, x2, x0 ldr w1, [x1] str w1, [x0] ldr w0, [sp, 52] add w1, w0, 1 ldr w0, [sp, 48] add w0, w0, 1 mov w3, w0 ldr x2, [sp, 40] ldr x0, [sp, 56] bl helper .L1: ldr x19, [sp, 16] ldp x29, x30, [sp], 80 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size helper, .-helper .align 2 .global cmp .type cmp, %function cmp: .LFB1: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str x0, [sp, 8] str x1, [sp] ldr x0, [sp, 8] ldr w1, [x0] ldr x0, [sp] ldr w0, [x0] sub w0, w1, w0 add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size cmp, .-cmp .align 2 .global subsets .type subsets, %function subsets: .LFB2: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x0, [sp, 40] str w1, [sp, 36] str x2, [sp, 24] str x3, [sp, 16] ldr w0, [sp, 36] mov w1, 1 lsl w0, w1, w0 str w0, [sp, 52] adrp x0, size add x0, x0, :lo12:size ldr w1, [sp, 36] str w1, [x0] adrp x0, idx add x0, x0, :lo12:idx str wzr, [x0] ldrsw x0, [sp, 52] lsl x0, x0, 3 bl malloc mov x1, x0 adrp x0, ret add x0, x0, :lo12:ret str x1, [x0] ldrsw x0, [sp, 52] lsl x0, x0, 2 bl malloc mov x1, x0 adrp x0, col add x0, x0, :lo12:col str x1, [x0] ldrsw x0, [sp, 36] lsl x0, x0, 2 bl malloc str x0, [sp, 56] adrp x0, cmp add x3, x0, :lo12:cmp mov x2, 4 ldr w1, [sp, 36] ldr x0, [sp, 40] bl qsort mov w3, 0 ldr x2, [sp, 40] mov w1, 0 ldr x0, [sp, 56] bl helper ldr x0, [sp, 16] ldr w1, [sp, 52] str w1, [x0] adrp x0, col add x0, x0, :lo12:col ldr x1, [x0] ldr x0, [sp, 24] str x1, [x0] ldr x0, [sp, 56] bl free adrp x0, ret add x0, x0, :lo12:ret ldr x0, [x0] ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE2: .size subsets, .-subsets ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "\\t" .align 3 .LC1: .string "\\\\" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp b .L2 .L5: ldr w0, [sp, 28] cmp w0, 9 bne .L3 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf b .L2 .L3: ldr w0, [sp, 28] cmp w0, 92 bne .L4 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl printf b .L2 .L4: ldr w0, [sp, 28] bl putchar .L2: bl getchar str w0, [sp, 28] ldr w0, [sp, 28] cmn w0, #1 bne .L5 mov w0, 0 ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global main .type main, %function main: .LFB6: .cfi_startproc mov w0, 0 ret .cfi_endproc .LFE6: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global RAND_pseudo_bytes .type RAND_pseudo_bytes, %function RAND_pseudo_bytes: .LFB6: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] str xzr, [sp, 40] b .L2 .L3: bl rand mov w2, w0 ldr x1, [sp, 24] ldr x0, [sp, 40] add x0, x1, x0 and w1, w2, 255 strb w1, [x0] ldr x0, [sp, 40] add x0, x0, 1 str x0, [sp, 40] .L2: ldr x1, [sp, 40] ldr x0, [sp, 16] cmp x1, x0 bcc .L3 nop nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size RAND_pseudo_bytes, .-RAND_pseudo_bytes .section .rodata .align 3 .LC0: .string "Failed to allocate space for the response buffer" .align 3 .LC1: .string "response payload [%zu]: %03d (0x%02x)\n" .text .align 2 .global tls1_process_heartbeat .type tls1_process_heartbeat, %function tls1_process_heartbeat: .LFB7: .cfi_startproc stp x29, x30, [sp, -96]! .cfi_def_cfa_offset 96 .cfi_offset 29, -96 .cfi_offset 30, -88 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] str x0, [sp, 64] mov w0, 16 str w0, [sp, 48] ldr x0, [sp, 64] add x1, x0, 1 str x1, [sp, 64] ldrb w0, [x0] strh w0, [sp, 46] ldr x0, [sp, 64] ldrb w0, [x0] lsl w0, w0, 8 ldr x1, [sp, 64] add x1, x1, 1 ldrb w1, [x1] orr w0, w0, w1 str w0, [sp, 52] ldr x0, [sp, 64] add x0, x0, 2 str x0, [sp, 64] ldr x0, [sp, 64] str x0, [sp, 72] ldrh w0, [sp, 46] cmp w0, 1 bne .L5 ldr w1, [sp, 52] ldr w0, [sp, 48] add w0, w1, w0 add w0, w0, 3 uxtw x0, w0 bl malloc str x0, [sp, 80] ldr x0, [sp, 80] cmp x0, 0 bne .L6 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl puts mov w0, -1 b .L7 .L6: ldr x0, [sp, 80] str x0, [sp, 88] ldr x0, [sp, 88] add x1, x0, 1 str x1, [sp, 88] mov w1, 2 strb w1, [x0] ldr w0, [sp, 52] lsr w0, w0, 8 and w1, w0, 255 ldr x0, [sp, 88] strb w1, [x0] ldr x0, [sp, 88] add x0, x0, 1 ldr w1, [sp, 52] and w1, w1, 255 strb w1, [x0] ldr x0, [sp, 88] add x0, x0, 2 str x0, [sp, 88] ldr w0, [sp, 52] mov x2, x0 ldr x1, [sp, 72] ldr x0, [sp, 88] bl memcpy ldr w0, [sp, 52] ldr x1, [sp, 88] add x0, x1, x0 str x0, [sp, 88] ldr w0, [sp, 48] mov x1, x0 ldr x0, [sp, 88] bl RAND_pseudo_bytes str xzr, [sp, 56] b .L8 .L9: ldr x0, [sp, 56] add x0, x0, 3 ldr x1, [sp, 80] add x0, x1, x0 ldrb w0, [x0] strb w0, [sp, 45] ldrb w0, [sp, 45] ldrb w1, [sp, 45] mov w3, w1 mov w2, w0 ldr x1, [sp, 56] adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl printf ldr x0, [sp, 56] add x0, x0, 1 str x0, [sp, 56] .L8: ldr w0, [sp, 52] ldr x1, [sp, 56] cmp x1, x0 bcc .L9 ldr x0, [sp, 80] bl free mov w0, 0 b .L7 .L5: mov w0, -1 .L7: ldp x29, x30, [sp], 96 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size tls1_process_heartbeat, .-tls1_process_heartbeat .section .rodata .align 3 .LC2: .string "\n>>>>>Starting <heartbleed>: a poc-exploit for <bufferErrors>:" .align 3 .LC3: .string "Chosen configuration options are <real_payload_len=%d> and <nominal_payload_len=%d>\n" .align 3 .LC4: .string "Warning: To demonstrate Heartbleed vulnerability, ensure (real_payload_len (%d) < nominal_payload_len (%d))\n" .align 3 .LC5: .string "Failed to allocate space for heartbeat message" .align 3 .LC6: .string "request payload [%zu]: %03d (0x%02x)\n" .align 3 .LC7: .string ">>>>>End of <heartbleed>: a poc-exploit for <bufferErrors>." .text .align 2 .global main .type main, %function main: .LFB8: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp mov w0, 0 bl srand mov w0, 2 strh w0, [sp, 20] mov w0, 20 strh w0, [sp, 22] adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl puts ldrh w0, [sp, 20] ldrh w1, [sp, 22] mov w2, w1 mov w1, w0 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl printf ldrh w1, [sp, 20] ldrh w0, [sp, 22] cmp w1, w0 bcc .L12 ldrh w0, [sp, 20] ldrh w1, [sp, 22] mov w2, w1 mov w1, w0 adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl printf .L12: mov x0, 16 str x0, [sp, 32] ldrh w0, [sp, 20] add w0, w0, 3 sxtw x0, w0 ldr x1, [sp, 32] add x0, x1, x0 str x0, [sp, 40] ldr x0, [sp, 40] bl malloc str x0, [sp, 48] ldr x0, [sp, 48] cmp x0, 0 bne .L13 adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl puts mov w0, -1 b .L14 .L13: ldr x0, [sp, 48] str x0, [sp, 56] ldr x0, [sp, 56] add x1, x0, 1 str x1, [sp, 56] mov w1, 1 strb w1, [x0] ldrh w0, [sp, 22] lsr w0, w0, 8 and w0, w0, 65535 and w1, w0, 255 ldr x0, [sp, 56] strb w1, [x0] ldr x0, [sp, 56] add x0, x0, 1 ldrh w1, [sp, 22] and w1, w1, 255 strb w1, [x0] ldr x0, [sp, 56] add x0, x0, 2 str x0, [sp, 56] ldrh w1, [sp, 20] ldr x0, [sp, 32] add x0, x1, x0 mov x1, x0 ldr x0, [sp, 56] bl RAND_pseudo_bytes str xzr, [sp, 24] b .L15 .L16: ldr x0, [sp, 24] add x0, x0, 3 ldr x1, [sp, 48] add x0, x1, x0 ldrb w0, [x0] strb w0, [sp, 19] ldrb w0, [sp, 19] ldrb w1, [sp, 19] mov w3, w1 mov w2, w0 ldr x1, [sp, 24] adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl printf ldr x0, [sp, 24] add x0, x0, 1 str x0, [sp, 24] .L15: ldrh w0, [sp, 20] ldr x1, [sp, 24] cmp x1, x0 bcc .L16 ldr x0, [sp, 48] bl tls1_process_heartbeat ldr x0, [sp, 48] bl free adrp x0, .LC7 add x0, x0, :lo12:.LC7 bl puts mov w0, 0 .L14: ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global i .bss .align 2 .type i, %object .size i, 4 i: .zero 4 .section .rodata .align 3 .LC0: .string "in subfunction i=%d\n" .text .align 2 .global test .type test, %function test: .LFB0: .cfi_startproc stp x29, x30, [sp, -16]! .cfi_def_cfa_offset 16 .cfi_offset 29, -16 .cfi_offset 30, -8 mov x29, sp adrp x0, i add x0, x0, :lo12:i ldr w0, [x0] mov w1, w0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf nop ldp x29, x30, [sp], 16 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size test, .-test ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "Ingresa un numero real " .align 3 .LC1: .string "%f" .align 3 .LC2: .string "Ingrese un numero real " .align 3 .LC3: .string "los valores eran negativo" .align 3 .LC4: .string "media: %.2f,maximo: %f, minimo: %f" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 40] mov x1, 0 str wzr, [sp, 20] str wzr, [sp, 32] str wzr, [sp, 36] adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl puts add x0, sp, 20 mov x1, x0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl __isoc99_scanf ldr s0, [sp, 20] str s0, [sp, 24] ldr s0, [sp, 20] str s0, [sp, 28] .L7: adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl puts add x0, sp, 20 mov x1, x0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl __isoc99_scanf ldr s0, [sp, 20] fcmpe s0, #0.0 bge .L12 b .L2 .L12: ldr w0, [sp, 36] add w0, w0, 1 str w0, [sp, 36] ldr s0, [sp, 20] ldr s1, [sp, 32] fadd s0, s1, s0 str s0, [sp, 32] ldr s0, [sp, 20] ldr s1, [sp, 24] fcmpe s1, s0 bls .L13 b .L15 .L13: ldr s0, [sp, 20] str s0, [sp, 24] b .L2 .L15: ldr s0, [sp, 20] ldr s1, [sp, 28] fcmpe s1, s0 bgt .L14 b .L2 .L14: ldr s0, [sp, 20] str s0, [sp, 28] .L2: ldr s0, [sp, 20] fcmpe s0, #0.0 bge .L7 ldr w0, [sp, 36] cmp w0, 0 bne .L8 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl printf b .L9 .L8: ldr s0, [sp, 36] scvtf s0, s0 ldr s1, [sp, 32] fdiv s0, s1, s0 fcvt d3, s0 ldr s0, [sp, 24] fcvt d1, s0 ldr s0, [sp, 28] fcvt d0, s0 fmov d2, d0 fmov d0, d3 adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl printf .L9: mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 40] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L11 bl __stack_chk_fail .L11: mov w0, w1 ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "Please enter a name:" .align 3 .LC1: .string " %s" .align 3 .LC2: .string "Please enter swimming time in seconds:" .align 3 .LC3: .string "%d" .align 3 .LC4: .string "Please enter cycle time in seconds:" .align 3 .LC5: .string "Please enter running time in seconds:" .align 3 .LC6: .string "Competitor's name: %s\n" .align 3 .LC7: .string "Time for Swim: " .align 3 .LC8: .string "\nTime for Cycle race: " .align 3 .LC9: .string "\nTime for running race: " .align 3 .LC10: .string "\nCompetitor %s has a total time of: " .text .align 2 .global main .type main, %function main: .LFB6: .cfi_startproc stp x29, x30, [sp, -96]! .cfi_def_cfa_offset 96 .cfi_offset 29, -96 .cfi_offset 30, -88 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 88] mov x1, 0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf add x0, sp, 40 mov x1, x0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl __isoc99_scanf adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf add x0, sp, 40 add x0, x0, 32 mov x1, x0 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl __isoc99_scanf adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl printf add x0, sp, 40 add x0, x0, 36 mov x1, x0 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl __isoc99_scanf adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl printf add x0, sp, 40 add x0, x0, 40 mov x1, x0 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl __isoc99_scanf ldr w1, [sp, 72] ldr w0, [sp, 76] add w1, w1, w0 ldr w0, [sp, 80] add w0, w1, w0 str w0, [sp, 84] add x0, sp, 40 mov x1, x0 adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl printf adrp x0, .LC7 add x0, x0, :lo12:.LC7 bl printf ldr w0, [sp, 72] bl timeConv adrp x0, .LC8 add x0, x0, :lo12:.LC8 bl printf ldr w0, [sp, 76] bl timeConv adrp x0, .LC9 add x0, x0, :lo12:.LC9 bl printf ldr w0, [sp, 80] bl timeConv add x0, sp, 40 mov x1, x0 adrp x0, .LC10 add x0, x0, :lo12:.LC10 bl printf ldr w0, [sp, 84] bl timeConv mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 88] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L3 bl __stack_chk_fail .L3: mov w0, w1 ldp x29, x30, [sp], 96 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size main, .-main .section .rodata .align 3 .LC11: .string "%dH %dM %dS" .text .align 2 .global timeConv .type timeConv, %function timeConv: .LFB7: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str w0, [sp, 28] ldr w0, [sp, 28] mov w1, 46021 movk w1, 0x91a2, lsl 16 smull x1, w0, w1 lsr x1, x1, 32 add w1, w0, w1 asr w1, w1, 11 asr w0, w0, 31 sub w0, w1, w0 str w0, [sp, 36] ldr w1, [sp, 28] mov w0, 46021 movk w0, 0x91a2, lsl 16 smull x0, w1, w0 lsr x0, x0, 32 add w0, w1, w0 asr w2, w0, 11 asr w0, w1, 31 sub w0, w2, w0 mov w2, 3600 mul w0, w0, w2 sub w0, w1, w0 mov w1, 34953 movk w1, 0x8888, lsl 16 smull x1, w0, w1 lsr x1, x1, 32 add w1, w0, w1 asr w1, w1, 5 asr w0, w0, 31 sub w0, w1, w0 str w0, [sp, 40] ldr w0, [sp, 28] mov w1, 46021 movk w1, 0x91a2, lsl 16 smull x1, w0, w1 lsr x1, x1, 32 add w1, w0, w1 asr w2, w1, 11 asr w1, w0, 31 sub w1, w2, w1 mov w2, 3600 mul w1, w1, w2 sub w1, w0, w1 mov w0, 34953 movk w0, 0x8888, lsl 16 smull x0, w1, w0 lsr x0, x0, 32 add w0, w1, w0 asr w2, w0, 5 asr w0, w1, 31 sub w2, w2, w0 mov w0, w2 lsl w0, w0, 4 sub w0, w0, w2 lsl w0, w0, 2 sub w0, w1, w0 str w0, [sp, 44] ldr w3, [sp, 44] ldr w2, [sp, 40] ldr w1, [sp, 36] adrp x0, .LC11 add x0, x0, :lo12:.LC11 bl printf nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size timeConv, .-timeConv ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "%d\n" .align 3 .LC1: .string "%s" .text .align 2 .global main .type main, %function main: .LFB6: .cfi_startproc stp x29, x30, [sp, -160]! .cfi_def_cfa_offset 160 .cfi_offset 29, -160 .cfi_offset 30, -152 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 152] mov x1, 0 str wzr, [sp, 44] add x0, sp, 32 mov x1, x0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl __isoc99_scanf add x0, sp, 48 mov x1, x0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl __isoc99_scanf ldr w0, [sp, 32] sub w0, w0, #1 str w0, [sp, 36] b .L2 .L9: ldrsw x0, [sp, 36] add x1, sp, 48 ldrb w0, [x1, x0] strb w0, [sp, 30] ldr w0, [sp, 36] sub w0, w0, #1 str w0, [sp, 40] b .L3 .L6: ldrsw x0, [sp, 40] add x1, sp, 48 ldrb w0, [x1, x0] ldrb w1, [sp, 30] cmp w1, w0 bcs .L4 ldrsw x0, [sp, 40] add x1, sp, 48 ldrb w0, [x1, x0] strb w0, [sp, 31] ldrsw x0, [sp, 36] add x1, sp, 48 ldrb w2, [x1, x0] ldrsw x0, [sp, 40] add x1, sp, 48 strb w2, [x1, x0] ldrsw x0, [sp, 36] add x1, sp, 48 ldrb w2, [sp, 31] strb w2, [x1, x0] ldr w0, [sp, 44] add w0, w0, 1 str w0, [sp, 44] b .L5 .L4: ldr w0, [sp, 40] sub w0, w0, #1 str w0, [sp, 40] .L3: ldr w0, [sp, 40] cmp w0, 0 bge .L6 .L5: ldr w0, [sp, 44] cmp w0, 0 bne .L12 ldr w0, [sp, 36] sub w0, w0, #1 str w0, [sp, 36] .L2: ldr w0, [sp, 36] cmp w0, 0 bgt .L9 b .L8 .L12: nop .L8: mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 152] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L11 bl __stack_chk_fail .L11: mov w0, w1 ldp x29, x30, [sp], 160 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global PKEY_Document_TotalEditingTime .section .rodata .align 3 .type PKEY_Document_TotalEditingTime, %object .size PKEY_Document_TotalEditingTime, 24 PKEY_Document_TotalEditingTime: .xword 4070540768 .hword 20473 .hword 4200 .string "\253\221\b" .ascii "+'\263\331" .zero 4 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC1: .string "string count result = %d\n" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 40] mov x1, 0 adrp x0, .LC0 add x1, x0, :lo12:.LC0 add x0, sp, 24 ldr x2, [x1] str x2, [x0] ldr w1, [x1, 7] str w1, [x0, 7] strb wzr, [sp, 35] strb wzr, [sp, 35] add x0, sp, 24 bl str_len str w0, [sp, 20] ldr w1, [sp, 20] adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl printf mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 40] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L3 bl __stack_chk_fail .L3: mov w0, w1 ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main .section .rodata .align 3 .LC0: .string "greastyeer" .zero 1 .text .align 2 .global str_len .type str_len, %function str_len: .LFB1: .cfi_startproc sub sp, sp, #32 .cfi_def_cfa_offset 32 str x0, [sp, 8] str wzr, [sp, 24] str wzr, [sp, 28] b .L5 .L6: ldr w0, [sp, 24] add w0, w0, 1 str w0, [sp, 24] ldr w0, [sp, 28] add w0, w0, 1 str w0, [sp, 28] .L5: ldrsw x0, [sp, 28] ldr x1, [sp, 8] add x0, x1, x0 ldrb w0, [x0] cmp w0, 0 bne .L6 ldr w0, [sp, 24] add sp, sp, 32 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size str_len, .-str_len ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global foo .type foo, %function foo: .LFB0: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str w0, [sp, 12] str w1, [sp, 8] ldr w1, [sp, 12] ldr w0, [sp, 8] add w0, w1, w0 add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size foo, .-foo ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global main .type main, %function main: .LFB6: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp .L8: bl menu str w0, [sp, 28] ldr w0, [sp, 28] cmp w0, 5 beq .L9 ldr w0, [sp, 28] cmp w0, 5 bgt .L8 ldr w0, [sp, 28] cmp w0, 3 beq .L4 ldr w0, [sp, 28] cmp w0, 3 bgt .L8 ldr w0, [sp, 28] cmp w0, 1 beq .L5 ldr w0, [sp, 28] cmp w0, 2 beq .L6 b .L3 .L5: bl jg1 b .L3 .L6: bl jg2 b .L3 .L4: bl halp nop .L3: b .L8 .L9: nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global RandomFunc .type RandomFunc, %function RandomFunc: .LFB0: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 56] mov x1, 0 ldr x0, [sp, 24] ldr w1, [x0] mov w0, 62899 movk w0, 0xfc09, lsl 16 add w0, w1, w0 str w0, [sp, 48] str wzr, [sp, 44] b .L2 .L3: add x1, sp, 48 ldr w0, [sp, 44] lsl x0, x0, 2 add x0, x1, x0 add x0, x0, 2 ldrh w0, [x0] strh w0, [sp, 42] add x1, sp, 48 ldr w0, [sp, 44] lsl x0, x0, 2 add x1, x1, x0 add x2, sp, 48 ldr w0, [sp, 44] lsl x0, x0, 2 add x0, x2, x0 add x0, x0, 2 ldrh w1, [x1] strh w1, [x0] add x1, sp, 48 ldr w0, [sp, 44] lsl x0, x0, 2 add x0, x1, x0 ldrh w1, [sp, 42] strh w1, [x0] ldr w0, [sp, 44] add w0, w0, 1 str w0, [sp, 44] .L2: ldr x0, [sp, 24] add x0, x0, 4 ldr w0, [x0] ldr w1, [sp, 44] cmp w1, w0 bcc .L3 str wzr, [sp, 44] b .L4 .L5: ldr w0, [sp, 44] lsl x0, x0, 2 add x1, sp, 48 ldr w0, [x1, x0] lsl w0, w0, 1 str w0, [sp, 48] ldr w0, [sp, 44] add w0, w0, 2 str w0, [sp, 44] .L4: ldr x0, [sp, 24] add x0, x0, 4 ldr w0, [x0] ldr w1, [sp, 44] cmp w1, w0 bcc .L5 ldr w1, [sp, 48] mov w0, 50560 movk w0, 0x3c6f, lsl 16 add w1, w1, w0 ldr x0, [sp, 16] str w1, [x0] nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 56] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L6 bl __stack_chk_fail .L6: ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size RandomFunc, .-RandomFunc .align 2 .global megaInit .type megaInit, %function megaInit: .LFB1: .cfi_startproc nop ret .cfi_endproc .LFE1: .size megaInit, .-megaInit .section .rodata .align 3 .LC0: .string "Call this program with %i arguments\n" .align 3 .LC1: .string "You win!" .align 3 .LC2: .string "%u\n" .text .align 2 .global main .type main, %function main: .LFB2: .cfi_startproc stp x29, x30, [sp, -80]! .cfi_def_cfa_offset 80 .cfi_offset 29, -80 .cfi_offset 30, -72 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 72] mov x1, 0 bl megaInit ldr w0, [sp, 28] cmp w0, 2 beq .L9 mov w1, 1 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf mov w0, -1 bl exit .L9: str wzr, [sp, 44] b .L10 .L11: ldrsw x0, [sp, 44] add x0, x0, 1 lsl x0, x0, 3 ldr x1, [sp, 16] add x0, x1, x0 ldr x0, [x0] mov w2, 10 mov x1, 0 bl strtoul str w0, [sp, 52] ldrsw x0, [sp, 44] lsl x0, x0, 2 add x1, sp, 56 ldr w2, [sp, 52] str w2, [x1, x0] ldr w0, [sp, 44] add w0, w0, 1 str w0, [sp, 44] .L10: ldr w0, [sp, 44] cmp w0, 0 ble .L11 add x1, sp, 64 add x0, sp, 56 bl RandomFunc ldr w1, [sp, 64] mov w0, 16818 movk w0, 0xfcde, lsl 16 cmp w1, w0 bne .L12 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts .L12: str wzr, [sp, 48] b .L13 .L14: ldrsw x0, [sp, 48] lsl x0, x0, 2 add x1, sp, 64 ldr w0, [x1, x0] mov w1, w0 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf ldr w0, [sp, 48] add w0, w0, 1 str w0, [sp, 48] .L13: ldr w0, [sp, 48] cmp w0, 0 ble .L14 mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 72] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L16 bl __stack_chk_fail .L16: mov w0, w1 ldp x29, x30, [sp], 80 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE2: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .local verbose .comm verbose,4,4 .data .align 2 .type CHUNK_i, %object .size CHUNK_i, 4 CHUNK_i: .word 16384 .align 2 .type CHUNK_o, %object .size CHUNK_o, 4 CHUNK_o: .word 16384 .local _pattern .comm _pattern,4,4 .section .rodata .align 3 .LC0: .string "ZLIB" .align 3 .LC1: .string "DEFLATE" .align 3 .LC2: .string "GZIP" .text .align 2 .type figure_out_window_bits, %function figure_out_window_bits: .LFB7: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] adrp x0, .LC0 add x1, x0, :lo12:.LC0 ldr x0, [sp, 24] bl strcmp cmp w0, 0 bne .L2 mov w0, 15 b .L3 .L2: adrp x0, .LC1 add x1, x0, :lo12:.LC1 ldr x0, [sp, 24] bl strcmp cmp w0, 0 bne .L4 mov w0, -15 b .L3 .L4: adrp x0, .LC2 add x1, x0, :lo12:.LC2 ldr x0, [sp, 24] bl strcmp cmp w0, 0 bne .L5 mov w0, 31 b .L3 .L5: mov w0, 15 .L3: ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size figure_out_window_bits, .-figure_out_window_bits .section .rodata .align 3 .LC3: .string "1.2.11" .align 3 .LC4: .string "program.c" .align 3 .LC5: .string "ret != Z_STREAM_ERROR" .align 3 .LC6: .string "strm.avail_in == 0" .align 3 .LC7: .string "ret == Z_STREAM_END" .text .align 2 .type def, %function def: .LFB8: .cfi_startproc stp x29, x30, [sp, -224]! .cfi_def_cfa_offset 224 .cfi_offset 29, -224 .cfi_offset 30, -216 mov x29, sp str x0, [sp, 56] str x1, [sp, 48] str w2, [sp, 44] str w3, [sp, 40] str w4, [sp, 36] str x5, [sp, 24] str x6, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 216] mov x1, 0 adrp x0, CHUNK_i add x0, x0, :lo12:CHUNK_i ldr w0, [x0] str w0, [sp, 68] adrp x0, CHUNK_o add x0, x0, :lo12:CHUNK_o ldr w0, [x0] str w0, [sp, 72] adrp x0, CHUNK_i add x0, x0, :lo12:CHUNK_i ldr w0, [x0] uxtw x0, w0 bl malloc str x0, [sp, 88] ldr x0, [sp, 88] cmp x0, 0 bne .L7 mov w0, -1 b .L22 .L7: adrp x0, CHUNK_o add x0, x0, :lo12:CHUNK_o ldr w0, [x0] uxtw x0, w0 bl malloc str x0, [sp, 96] ldr x0, [sp, 96] cmp x0, 0 bne .L9 ldr x0, [sp, 88] bl free mov w0, -1 b .L22 .L9: str xzr, [sp, 168] str xzr, [sp, 176] str xzr, [sp, 184] str xzr, [sp, 144] add x8, sp, 104 mov w7, 112 adrp x0, .LC3 add x6, x0, :lo12:.LC3 mov w5, 0 mov w4, 8 ldr w3, [sp, 44] mov w2, 8 ldr w1, [sp, 36] mov x0, x8 bl deflateInit2_ str w0, [sp, 76] ldr w0, [sp, 76] cmp w0, 0 beq .L10 ldr x0, [sp, 88] bl free ldr x0, [sp, 96] bl free ldr w0, [sp, 76] b .L22 .L10: adrp x0, CHUNK_i add x0, x0, :lo12:CHUNK_i ldr w0, [x0] str w0, [sp, 68] ldr w0, [sp, 68] ldr x3, [sp, 56] mov x2, x0 mov x1, 1 ldr x0, [sp, 88] bl fread str w0, [sp, 112] ldr x0, [sp, 56] bl ferror cmp w0, 0 beq .L11 add x0, sp, 104 bl deflateEnd ldr x0, [sp, 88] bl free ldr x0, [sp, 96] bl free mov w0, -1 b .L22 .L11: ldr x0, [sp, 56] bl feof cmp w0, 0 bne .L12 ldr w0, [sp, 40] b .L13 .L12: mov w0, 4 .L13: str w0, [sp, 80] ldr x0, [sp, 88] str x0, [sp, 104] .L17: adrp x0, CHUNK_o add x0, x0, :lo12:CHUNK_o ldr w0, [x0] str w0, [sp, 72] ldr w0, [sp, 72] str w0, [sp, 136] ldr x0, [sp, 96] str x0, [sp, 128] add x0, sp, 104 ldr w1, [sp, 80] bl deflate str w0, [sp, 76] ldr w0, [sp, 76] cmn w0, #2 bne .L14 adrp x0, __PRETTY_FUNCTION__.1 add x3, x0, :lo12:__PRETTY_FUNCTION__.1 mov w2, 145 adrp x0, .LC4 add x1, x0, :lo12:.LC4 adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl __assert_fail .L14: ldr w0, [sp, 136] ldr w1, [sp, 72] sub w0, w1, w0 str w0, [sp, 84] ldr w0, [sp, 84] ldr x3, [sp, 48] mov x2, x0 mov x1, 1 ldr x0, [sp, 96] bl fwrite mov x1, x0 ldr w0, [sp, 84] cmp x1, x0 bne .L15 ldr x0, [sp, 48] bl ferror cmp w0, 0 beq .L16 .L15: add x0, sp, 104 bl deflateEnd ldr x0, [sp, 88] bl free ldr x0, [sp, 96] bl free mov w0, -1 b .L22 .L16: ldr w0, [sp, 136] cmp w0, 0 beq .L17 ldr w0, [sp, 112] cmp w0, 0 beq .L18 adrp x0, __PRETTY_FUNCTION__.1 add x3, x0, :lo12:__PRETTY_FUNCTION__.1 mov w2, 156 adrp x0, .LC4 add x1, x0, :lo12:.LC4 adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl __assert_fail .L18: ldr w0, [sp, 80] cmp w0, 4 bne .L10 ldr w0, [sp, 76] cmp w0, 1 beq .L19 adrp x0, __PRETTY_FUNCTION__.1 add x3, x0, :lo12:__PRETTY_FUNCTION__.1 mov w2, 180 adrp x0, .LC4 add x1, x0, :lo12:.LC4 adrp x0, .LC7 add x0, x0, :lo12:.LC7 bl __assert_fail .L19: ldr x0, [sp, 24] cmp x0, 0 beq .L20 ldr x1, [sp, 144] ldr x0, [sp, 24] str x1, [x0] .L20: ldr x0, [sp, 16] cmp x0, 0 beq .L21 ldr x1, [sp, 120] ldr x0, [sp, 16] str x1, [x0] .L21: add x0, sp, 104 bl deflateEnd ldr x0, [sp, 88] bl free ldr x0, [sp, 96] bl free mov w0, 0 .L22: mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 216] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L23 bl __stack_chk_fail .L23: mov w0, w1 ldp x29, x30, [sp], 224 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size def, .-def .section .rodata .align 3 .LC8: .string "inflate did not return Z_STREAM_END rc=%d pattern=%d\n" .align 3 .LC9: .string "inflate failed rc=%d pattern=%d\n" .text .align 2 .type inf, %function inf: .LFB9: .cfi_startproc stp x29, x30, [sp, -224]! .cfi_def_cfa_offset 224 .cfi_offset 29, -224 .cfi_offset 30, -216 mov x29, sp str x0, [sp, 56] str x1, [sp, 48] str w2, [sp, 44] str w3, [sp, 40] str x4, [sp, 32] str w5, [sp, 28] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 216] mov x1, 0 adrp x0, CHUNK_i add x0, x0, :lo12:CHUNK_i ldr w0, [x0] str w0, [sp, 76] adrp x0, CHUNK_o add x0, x0, :lo12:CHUNK_o ldr w0, [x0] str w0, [sp, 80] adrp x0, CHUNK_i add x0, x0, :lo12:CHUNK_i ldr w0, [x0] uxtw x0, w0 bl malloc str x0, [sp, 88] ldr x0, [sp, 88] cmp x0, 0 bne .L25 mov w0, -1 b .L45 .L25: adrp x0, CHUNK_o add x0, x0, :lo12:CHUNK_o ldr w0, [x0] uxtw x0, w0 bl malloc str x0, [sp, 96] ldr x0, [sp, 96] cmp x0, 0 bne .L27 ldr x0, [sp, 88] bl free mov w0, -1 b .L45 .L27: str xzr, [sp, 168] str xzr, [sp, 176] str xzr, [sp, 184] str wzr, [sp, 112] str xzr, [sp, 104] str xzr, [sp, 120] add x4, sp, 104 mov w3, 112 adrp x0, .LC3 add x2, x0, :lo12:.LC3 ldr w1, [sp, 44] mov x0, x4 bl inflateInit2_ str w0, [sp, 72] ldr w0, [sp, 72] cmp w0, 0 beq .L28 ldr x0, [sp, 88] bl free ldr x0, [sp, 96] bl free ldr w0, [sp, 72] b .L45 .L28: adrp x0, CHUNK_i add x0, x0, :lo12:CHUNK_i ldr w0, [x0] str w0, [sp, 76] ldr w0, [sp, 76] ldr x3, [sp, 56] mov x2, x0 mov x1, 1 ldr x0, [sp, 88] bl fread str w0, [sp, 112] ldr x0, [sp, 56] bl ferror cmp w0, 0 beq .L29 add x0, sp, 104 bl inflateEnd ldr x0, [sp, 88] bl free ldr x0, [sp, 96] bl free mov w0, -1 b .L45 .L29: ldr w0, [sp, 112] cmp w0, 0 beq .L47 ldr x0, [sp, 88] str x0, [sp, 104] .L41: adrp x0, CHUNK_o add x0, x0, :lo12:CHUNK_o ldr w0, [x0] str w0, [sp, 80] ldr w0, [sp, 80] str w0, [sp, 136] ldr x0, [sp, 96] str x0, [sp, 128] add x0, sp, 104 ldr w1, [sp, 40] bl inflate str w0, [sp, 72] ldr w0, [sp, 28] cmp w0, 0 beq .L32 ldr w0, [sp, 72] cmp w0, 1 beq .L32 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] adrp x0, _pattern add x0, x0, :lo12:_pattern ldr w0, [x0] mov w3, w0 ldr w2, [sp, 72] adrp x0, .LC8 add x1, x0, :lo12:.LC8 mov x0, x4 bl fprintf bl abort .L32: ldr w0, [sp, 72] cmn w0, #2 bne .L33 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] adrp x0, _pattern add x0, x0, :lo12:_pattern ldr w0, [x0] mov w3, w0 ldr w2, [sp, 72] adrp x0, .LC9 add x1, x0, :lo12:.LC9 mov x0, x4 bl fprintf bl abort .L33: ldr w0, [sp, 72] cmn w0, #3 bgt .L34 ldr w0, [sp, 72] cmn w0, #4 bge .L35 b .L36 .L34: ldr w0, [sp, 72] cmp w0, 2 bne .L36 mov w0, -3 str w0, [sp, 72] .L35: add x0, sp, 104 bl inflateEnd ldr x0, [sp, 88] bl free ldr x0, [sp, 96] bl free ldr w0, [sp, 72] b .L45 .L36: ldr w0, [sp, 136] ldr w1, [sp, 80] sub w0, w1, w0 str w0, [sp, 84] ldr w0, [sp, 84] ldr x3, [sp, 48] mov x2, x0 mov x1, 1 ldr x0, [sp, 96] bl fwrite mov x1, x0 ldr w0, [sp, 84] cmp x1, x0 bne .L37 ldr x0, [sp, 48] bl ferror cmp w0, 0 beq .L38 .L37: add x0, sp, 104 bl inflateEnd ldr x0, [sp, 88] bl free ldr x0, [sp, 96] bl free mov w0, -1 b .L45 .L38: ldr w0, [sp, 72] cmp w0, 1 beq .L48 ldr w0, [sp, 136] cmp w0, 0 beq .L41 b .L40 .L48: nop .L40: ldr w0, [sp, 72] cmp w0, 1 bne .L28 b .L31 .L47: nop .L31: ldr x0, [sp, 32] cmp x0, 0 beq .L42 ldr x1, [sp, 120] ldr x0, [sp, 32] str x1, [x0] .L42: add x0, sp, 104 bl inflateEnd ldr x0, [sp, 88] bl free ldr x0, [sp, 96] bl free ldr w0, [sp, 72] cmp w0, 1 bne .L43 mov w0, 0 b .L45 .L43: mov w0, -3 .L45: mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 216] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L46 bl __stack_chk_fail .L46: mov w0, w1 ldp x29, x30, [sp], 224 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE9: .size inf, .-inf .section .rodata .align 3 .LC10: .string "zpipe_append (%d): " .align 3 .LC11: .string "error reading stdin\n" .align 3 .LC12: .string "error writing stdout\n" .align 3 .LC13: .string "errno=%d %s\n" .align 3 .LC14: .string "invalid compression level\n" .align 3 .LC15: .string "invalid or incomplete deflate data\n" .align 3 .LC16: .string "out of memory\n" .align 3 .LC17: .string "zlib version mismatch!\n" .align 3 .LC18: .string "unknown error\n" .text .align 2 .type zerr, %function zerr: .LFB10: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp stp x19, x20, [sp, 16] .cfi_offset 19, -32 .cfi_offset 20, -24 str w0, [sp, 44] adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x3, [x0] ldr w2, [sp, 44] adrp x0, .LC10 add x1, x0, :lo12:.LC10 mov x0, x3 bl fprintf ldr w0, [sp, 44] cmn w0, #1 beq .L50 ldr w0, [sp, 44] cmp w0, 0 bge .L51 ldr w0, [sp, 44] cmn w0, #2 beq .L52 ldr w0, [sp, 44] cmn w0, #2 bgt .L51 ldr w0, [sp, 44] cmn w0, #3 beq .L53 ldr w0, [sp, 44] cmn w0, #3 bgt .L51 ldr w0, [sp, 44] cmn w0, #6 beq .L54 ldr w0, [sp, 44] cmn w0, #4 beq .L55 b .L51 .L50: adrp x0, :got:stdin ldr x0, [x0, #:got_lo12:stdin] ldr x0, [x0] bl ferror cmp w0, 0 beq .L56 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 20 mov x1, 1 adrp x0, .LC11 add x0, x0, :lo12:.LC11 bl fwrite b .L59 .L56: adrp x0, :got:stdout ldr x0, [x0, #:got_lo12:stdout] ldr x0, [x0] bl ferror cmp w0, 0 beq .L58 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 21 mov x1, 1 adrp x0, .LC12 add x0, x0, :lo12:.LC12 bl fwrite b .L59 .L58: adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x19, [x0] bl __errno_location ldr w20, [x0] bl __errno_location ldr w0, [x0] bl strerror mov x3, x0 mov w2, w20 adrp x0, .LC13 add x1, x0, :lo12:.LC13 mov x0, x19 bl fprintf b .L59 .L52: adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 26 mov x1, 1 adrp x0, .LC14 add x0, x0, :lo12:.LC14 bl fwrite b .L59 .L53: adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 35 mov x1, 1 adrp x0, .LC15 add x0, x0, :lo12:.LC15 bl fwrite b .L59 .L55: adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 14 mov x1, 1 adrp x0, .LC16 add x0, x0, :lo12:.LC16 bl fwrite b .L59 .L54: adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 23 mov x1, 1 adrp x0, .LC17 add x0, x0, :lo12:.LC17 bl fwrite b .L59 .L51: adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 14 mov x1, 1 adrp x0, .LC18 add x0, x0, :lo12:.LC18 bl fwrite nop .L59: nop ldp x19, x20, [sp, 16] ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_restore 20 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE10: .size zerr, .-zerr .section .rodata .align 3 .LC19: .string "KiB" .align 3 .LC20: .string "MiB" .align 3 .LC21: .string "GiB" .text .align 2 .type str_to_num, %function str_to_num: .LFB11: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x0, [sp, 24] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 56] mov x1, 0 ldr x0, [sp, 24] str x0, [sp, 40] ldr x0, [sp, 40] add x1, sp, 40 mov w2, 0 bl strtoull str x0, [sp, 48] ldr x0, [sp, 40] ldrb w0, [x0] cmp w0, 0 bne .L61 ldr x0, [sp, 48] b .L66 .L61: ldr x2, [sp, 40] adrp x0, .LC19 add x1, x0, :lo12:.LC19 mov x0, x2 bl strcmp cmp w0, 0 bne .L63 ldr x0, [sp, 48] lsl x0, x0, 10 str x0, [sp, 48] b .L64 .L63: ldr x2, [sp, 40] adrp x0, .LC20 add x1, x0, :lo12:.LC20 mov x0, x2 bl strcmp cmp w0, 0 bne .L65 ldr x0, [sp, 48] lsl x0, x0, 20 str x0, [sp, 48] b .L64 .L65: ldr x2, [sp, 40] adrp x0, .LC21 add x1, x0, :lo12:.LC21 mov x0, x2 bl strcmp cmp w0, 0 bne .L64 ldr x0, [sp, 48] lsl x0, x0, 30 str x0, [sp, 48] .L64: ldr x0, [sp, 48] .L66: mov x1, x0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 56] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L67 bl __stack_chk_fail .L67: mov x0, x1 ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE11: .size str_to_num, .-str_to_num .section .rodata .align 3 .LC22: .ascii "%s usage: %s [-h] [-v]\n [-F, --format <ZLIB|DEFLATE|GZIP" .ascii ">]\n [-e, --excact-input] input matches size of data\n " .ascii " [-E, --exc" .string "act-output] output matches size of data\n [-f, --fush <Z_NO_FLUSH|Z_PARTIAL_FLUSH|Z_FULL_FLUSH>]\n [-i, --i_bufsize <i_bufsize>]\n [-o, --o_bufsize <o_bufsize>]\n [-p, --pattern <pattern>] pattern to generate test-data\n [-s, --size <data-size>]\n" .text .align 2 .type usage, %function usage: .LFB12: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] bl __xpg_basename str x0, [sp, 40] adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr x3, [sp, 40] ldr x2, [sp, 40] adrp x0, .LC22 add x1, x0, :lo12:.LC22 mov x0, x4 bl fprintf nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE12: .size usage, .-usage .section .rodata .align 3 .LC23: .string "This is the END!" .align 3 .LC24: .string "F:f:Eei:o:s:p:vh?" .align 3 .LC25: .string "i_%d_%d.bin" .align 3 .LC26: .string "o_%d_%d.bin" .align 3 .LC27: .string "n_%d_%d.bin" .align 3 .LC28: .string "w+" .align 3 .LC29: .string "Z_NO_FLUSH" .align 3 .LC30: .string "Z_PARTIAL_FLUSH" .align 3 .LC31: .string "Z_SYNC_FLUSH" .align 3 .LC32: .string "Z_FULL_FLUSH" .align 3 .LC33: .string "%d %s %s ...\n" .align 3 .LC34: .string "r" .align 3 .LC35: .string "err: compression failed.\n" .align 3 .LC36: .string "%s" .align 3 .LC37: .string "err: compressed size mismatch %lld (expected) != %lld (absorbed). Expecting %d bytes remaining\n" .align 3 .LC38: .string "err: decompression failed.\n" .align 3 .LC39: .string "diff -q %s %s" .align 3 .LC40: .string "Input %s and output %s differ!\n" .text .align 2 .global main .type main, %function main: .LFB13: .cfi_startproc sub sp, sp, #512 .cfi_def_cfa_offset 512 stp x29, x30, [sp] .cfi_offset 29, -512 .cfi_offset 30, -504 mov x29, sp stp x19, x20, [sp, 16] str x21, [sp, 32] .cfi_offset 19, -496 .cfi_offset 20, -488 .cfi_offset 21, -480 str w0, [sp, 60] str x1, [sp, 48] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 504] mov x1, 0 str xzr, [sp, 112] str xzr, [sp, 120] str xzr, [sp, 128] adrp x0, .LC23 add x0, x0, :lo12:.LC23 str x0, [sp, 152] adrp x0, .LC0 add x0, x0, :lo12:.LC0 str x0, [sp, 136] str wzr, [sp, 84] str wzr, [sp, 88] str wzr, [sp, 92] mov x0, 262144 str x0, [sp, 144] str wzr, [sp, 96] bl getpid mov w1, w0 adrp x0, _pattern add x0, x0, :lo12:_pattern str w1, [x0] .L87: str wzr, [sp, 76] add x0, sp, 76 mov x4, x0 adrp x0, long_options.0 add x3, x0, :lo12:long_options.0 adrp x0, .LC24 add x2, x0, :lo12:.LC24 ldr x1, [sp, 48] ldr w0, [sp, 60] bl getopt_long str w0, [sp, 100] ldr w0, [sp, 100] cmn w0, #1 bne .L70 ldr x0, [sp, 136] bl figure_out_window_bits str w0, [sp, 104] adrp x0, _pattern add x0, x0, :lo12:_pattern ldr w1, [x0] adrp x0, _pattern add x0, x0, :lo12:_pattern ldr w0, [x0] add x4, sp, 184 mov w3, w0 mov w2, w1 adrp x0, .LC25 add x1, x0, :lo12:.LC25 mov x0, x4 bl sprintf adrp x0, _pattern add x0, x0, :lo12:_pattern ldr w1, [x0] adrp x0, _pattern add x0, x0, :lo12:_pattern ldr w0, [x0] add x4, sp, 248 mov w3, w0 mov w2, w1 adrp x0, .LC26 add x1, x0, :lo12:.LC26 mov x0, x4 bl sprintf adrp x0, _pattern add x0, x0, :lo12:_pattern ldr w1, [x0] adrp x0, _pattern add x0, x0, :lo12:_pattern ldr w0, [x0] add x4, sp, 312 mov w3, w0 mov w2, w1 adrp x0, .LC27 add x1, x0, :lo12:.LC27 mov x0, x4 bl sprintf add x2, sp, 184 adrp x0, .LC28 add x1, x0, :lo12:.LC28 mov x0, x2 bl fopen str x0, [sp, 160] str wzr, [sp, 80] str xzr, [sp, 128] b .L71 .L70: ldr w0, [sp, 100] cmp w0, 118 beq .L72 ldr w0, [sp, 100] cmp w0, 118 bgt .L87 ldr w0, [sp, 100] cmp w0, 115 beq .L74 ldr w0, [sp, 100] cmp w0, 115 bgt .L87 ldr w0, [sp, 100] cmp w0, 112 beq .L75 ldr w0, [sp, 100] cmp w0, 112 bgt .L87 ldr w0, [sp, 100] cmp w0, 111 beq .L76 ldr w0, [sp, 100] cmp w0, 111 bgt .L87 ldr w0, [sp, 100] cmp w0, 105 beq .L77 ldr w0, [sp, 100] cmp w0, 105 bgt .L87 ldr w0, [sp, 100] cmp w0, 104 beq .L78 ldr w0, [sp, 100] cmp w0, 104 bgt .L87 ldr w0, [sp, 100] cmp w0, 102 beq .L79 ldr w0, [sp, 100] cmp w0, 102 bgt .L87 ldr w0, [sp, 100] cmp w0, 101 beq .L80 ldr w0, [sp, 100] cmp w0, 101 bgt .L87 ldr w0, [sp, 100] cmp w0, 70 beq .L81 ldr w0, [sp, 100] cmp w0, 70 bgt .L87 ldr w0, [sp, 100] cmp w0, 63 beq .L78 ldr w0, [sp, 100] cmp w0, 69 beq .L82 b .L73 .L81: adrp x0, :got:optarg ldr x0, [x0, #:got_lo12:optarg] ldr x0, [x0] str x0, [sp, 136] b .L73 .L79: adrp x0, :got:optarg ldr x0, [x0, #:got_lo12:optarg] ldr x2, [x0] adrp x0, .LC29 add x1, x0, :lo12:.LC29 mov x0, x2 bl strcmp cmp w0, 0 bne .L83 str wzr, [sp, 84] b .L103 .L83: adrp x0, :got:optarg ldr x0, [x0, #:got_lo12:optarg] ldr x2, [x0] adrp x0, .LC30 add x1, x0, :lo12:.LC30 mov x0, x2 bl strcmp cmp w0, 0 bne .L85 mov w0, 1 str w0, [sp, 84] b .L103 .L85: adrp x0, :got:optarg ldr x0, [x0, #:got_lo12:optarg] ldr x2, [x0] adrp x0, .LC31 add x1, x0, :lo12:.LC31 mov x0, x2 bl strcmp cmp w0, 0 bne .L86 mov w0, 2 str w0, [sp, 84] b .L103 .L86: adrp x0, :got:optarg ldr x0, [x0, #:got_lo12:optarg] ldr x2, [x0] adrp x0, .LC32 add x1, x0, :lo12:.LC32 mov x0, x2 bl strcmp cmp w0, 0 bne .L103 mov w0, 3 str w0, [sp, 84] b .L103 .L80: mov w0, 1 str w0, [sp, 88] b .L73 .L82: mov w0, 1 str w0, [sp, 92] b .L73 .L72: adrp x0, verbose add x0, x0, :lo12:verbose ldr w0, [x0] add w1, w0, 1 adrp x0, verbose add x0, x0, :lo12:verbose str w1, [x0] b .L73 .L77: adrp x0, :got:optarg ldr x0, [x0, #:got_lo12:optarg] ldr x0, [x0] bl str_to_num mov w1, w0 adrp x0, CHUNK_i add x0, x0, :lo12:CHUNK_i str w1, [x0] b .L73 .L76: adrp x0, :got:optarg ldr x0, [x0, #:got_lo12:optarg] ldr x0, [x0] bl str_to_num mov w1, w0 adrp x0, CHUNK_o add x0, x0, :lo12:CHUNK_o str w1, [x0] b .L73 .L74: adrp x0, :got:optarg ldr x0, [x0, #:got_lo12:optarg] ldr x0, [x0] bl str_to_num str x0, [sp, 144] b .L73 .L75: adrp x0, :got:optarg ldr x0, [x0, #:got_lo12:optarg] ldr x0, [x0] bl str_to_num mov w1, w0 adrp x0, _pattern add x0, x0, :lo12:_pattern str w1, [x0] b .L73 .L78: ldr x0, [sp, 48] ldr x0, [x0] bl usage mov w0, 0 bl exit .L103: nop .L73: b .L87 .L89: add x1, sp, 248 add x0, sp, 184 mov x4, x1 mov x3, x0 ldr w2, [sp, 80] adrp x0, .LC33 add x1, x0, :lo12:.LC33 ldr x0, [sp, 160] bl fprintf str w0, [sp, 108] ldr w0, [sp, 108] cmp w0, 0 bge .L88 mov w0, 1 bl exit .L88: ldrsw x0, [sp, 108] ldr x1, [sp, 128] add x0, x1, x0 str x0, [sp, 128] ldr w0, [sp, 80] add w0, w0, 1 str w0, [sp, 80] .L71: ldr x1, [sp, 128] ldr x0, [sp, 144] cmp x1, x0 bcc .L89 ldr x0, [sp, 160] bl fclose add x2, sp, 184 adrp x0, .LC34 add x1, x0, :lo12:.LC34 mov x0, x2 bl fopen str x0, [sp, 160] ldr x0, [sp, 160] cmp x0, 0 bne .L90 mov w0, 1 bl exit .L90: add x2, sp, 248 adrp x0, .LC28 add x1, x0, :lo12:.LC28 mov x0, x2 bl fopen str x0, [sp, 168] ldr x0, [sp, 168] cmp x0, 0 bne .L91 mov w0, 1 bl exit .L91: add x1, sp, 120 add x0, sp, 112 mov x6, x1 mov x5, x0 mov w4, -1 ldr w3, [sp, 84] ldr w2, [sp, 104] ldr x1, [sp, 168] ldr x0, [sp, 160] bl def str w0, [sp, 108] ldr w0, [sp, 108] cmp w0, 0 beq .L92 ldr x0, [sp, 168] bl fclose ldr x0, [sp, 160] bl fclose adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 25 mov x1, 1 adrp x0, .LC35 add x0, x0, :lo12:.LC35 bl fwrite ldr w0, [sp, 108] bl zerr ldr w0, [sp, 108] b .L101 .L92: ldr x0, [sp, 160] bl fclose ldr x2, [sp, 152] adrp x0, .LC36 add x1, x0, :lo12:.LC36 ldr x0, [sp, 168] bl fprintf str w0, [sp, 108] ldr x0, [sp, 168] bl fclose add x2, sp, 248 adrp x0, .LC34 add x1, x0, :lo12:.LC34 mov x0, x2 bl fopen str x0, [sp, 168] ldr x0, [sp, 168] cmp x0, 0 bne .L94 mov w0, 1 bl exit .L94: add x2, sp, 312 adrp x0, .LC28 add x1, x0, :lo12:.LC28 mov x0, x2 bl fopen str x0, [sp, 176] ldr x0, [sp, 176] cmp x0, 0 bne .L95 mov w0, 1 bl exit .L95: ldr w0, [sp, 88] cmp w0, 0 beq .L96 ldr x0, [sp, 152] bl strlen mov w1, w0 ldr x0, [sp, 112] add w1, w1, w0 adrp x0, CHUNK_i add x0, x0, :lo12:CHUNK_i str w1, [x0] .L96: ldr w0, [sp, 92] cmp w0, 0 beq .L97 ldr x0, [sp, 120] mov w1, w0 adrp x0, CHUNK_o add x0, x0, :lo12:CHUNK_o str w1, [x0] mov w0, 1 str w0, [sp, 96] .L97: add x0, sp, 120 ldr w5, [sp, 96] mov x4, x0 ldr w3, [sp, 84] ldr w2, [sp, 104] ldr x1, [sp, 176] ldr x0, [sp, 168] bl inf str w0, [sp, 108] ldr x1, [sp, 112] ldr x0, [sp, 120] cmp x1, x0 beq .L98 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x19, [x0] ldr x0, [sp, 112] mov x20, x0 ldr x0, [sp, 120] mov x21, x0 ldr x0, [sp, 152] bl strlen mov w4, w0 mov x3, x21 mov x2, x20 adrp x0, .LC37 add x1, x0, :lo12:.LC37 mov x0, x19 bl fprintf mov w0, 1 bl exit .L98: ldr w0, [sp, 108] cmp w0, 0 beq .L99 ldr x0, [sp, 168] bl fclose ldr x0, [sp, 176] bl fclose adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 27 mov x1, 1 adrp x0, .LC38 add x0, x0, :lo12:.LC38 bl fwrite ldr w0, [sp, 108] bl zerr ldr w0, [sp, 108] b .L101 .L99: ldr x0, [sp, 168] bl fclose ldr x0, [sp, 176] bl fclose add x1, sp, 312 add x0, sp, 184 add x4, sp, 376 mov x3, x1 mov x2, x0 adrp x0, .LC39 add x1, x0, :lo12:.LC39 mov x0, x4 bl sprintf add x0, sp, 376 bl system str w0, [sp, 108] ldr w0, [sp, 108] cmp w0, 0 beq .L100 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] add x1, sp, 312 add x0, sp, 184 mov x3, x1 mov x2, x0 adrp x0, .LC40 add x1, x0, :lo12:.LC40 mov x0, x4 bl fprintf mov w0, 1 bl exit .L100: add x0, sp, 184 bl unlink add x0, sp, 312 bl unlink add x0, sp, 248 bl unlink mov w0, 0 bl exit .L101: mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 504] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L102 bl __stack_chk_fail .L102: mov w0, w1 ldp x19, x20, [sp, 16] ldr x21, [sp, 32] ldp x29, x30, [sp] add sp, sp, 512 .cfi_restore 29 .cfi_restore 30 .cfi_restore 21 .cfi_restore 19 .cfi_restore 20 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE13: .size main, .-main .section .rodata .align 3 .type __PRETTY_FUNCTION__.1, %object .size __PRETTY_FUNCTION__.1, 4 __PRETTY_FUNCTION__.1: .string "def" .align 3 .LC41: .string "format" .align 3 .LC42: .string "flush" .align 3 .LC43: .string "exact-input" .align 3 .LC44: .string "exact-output" .align 3 .LC45: .string "i_bufsize" .align 3 .LC46: .string "o_bufsize" .align 3 .LC47: .string "size" .align 3 .LC48: .string "pattern" .align 3 .LC49: .string "verbose" .align 3 .LC50: .string "help" .section .data.rel.local,"aw" .align 3 .type long_options.0, %object .size long_options.0, 352 long_options.0: .xword .LC41 .word 1 .zero 4 .xword 0 .word 70 .zero 4 .xword .LC42 .word 1 .zero 4 .xword 0 .word 102 .zero 4 .xword .LC43 .word 0 .zero 4 .xword 0 .word 101 .zero 4 .xword .LC44 .word 0 .zero 4 .xword 0 .word 69 .zero 4 .xword .LC45 .word 1 .zero 4 .xword 0 .word 105 .zero 4 .xword .LC46 .word 1 .zero 4 .xword 0 .word 111 .zero 4 .xword .LC47 .word 1 .zero 4 .xword 0 .word 115 .zero 4 .xword .LC48 .word 1 .zero 4 .xword 0 .word 112 .zero 4 .xword .LC49 .word 0 .zero 4 .xword 0 .word 118 .zero 4 .xword .LC50 .word 0 .zero 4 .xword 0 .word 104 .zero 4 .xword 0 .word 0 .zero 4 .xword 0 .word 0 .zero 4 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "" .align 3 .LC1: .string "\342\200\234201 Kitten Verbs, Fully Conjugated\342\200\235. You look for \342\200\234find\342\200\235." .align 3 .LC2: .string "3.14159... Pi is all over the place here..." .align 3 .LC3: .string "\342\200\23450 Years Among the Non-Kitten Items\342\200\235, by Ann Droyd." .align 3 .LC4: .string "99 bottles of beer are on a wall here." .align 3 .LC5: .string "A 100 meter long chain of jumbo paper clips." .align 3 .LC6: .string "A 256 kilobyte write-only memory chip." .align 3 .LC7: .string "A 3-inch floppy disk." .align 3 .LC8: .string "A 3-sided Monty Python record." .align 3 .LC9: .string "A 540Hz tuning fork." .align 3 .LC10: .string "A baboon with a bassoon hoots angrily at you." .align 3 .LC11: .string "A baby catapult and a little pile of pebbles." .align 3 .LC12: .string "A badly dented high-hat cymbal lies on its side here." .align 3 .LC13: .string "A ball of pocket fluff." .align 3 .LC14: .string "A ball of yarn." .align 3 .LC15: .string "A bartender growls, \342\200\234No robots allowed!\342\200\235" .align 3 .LC16: .string "A big bass drum bearing a hole and suspicious clawmarks." .align 3 .LC17: .string "A big chunk of frozen chocolate pudding." .align 3 .LC18: .string "A bit of luck." .align 3 .LC19: .string "A blank deposit slip." .align 3 .LC20: .string "A bobolink is twittering a happy tune here." .align 3 .LC21: .string "A book: Feng Shui, Zen: the art of randomly arranging items that are not kitten." .align 3 .LC22: .string "A book with \342\200\234Don\342\200\231t Panic\342\200\235 in large friendly letters across the cover." .align 3 .LC23: .string "A bottle of ammonia." .align 3 .LC24: .string "A bottle of distilled water." .align 3 .LC25: .string "A bottle of hair tonic." .align 3 .LC26: .string "A bottle of oil! Refreshing!" .align 3 .LC27: .string "A bottle of smelling salts." .align 3 .LC28: .string "A bowling ball with the name \342\200\234Bob\342\200\235 inscribed on it." .align 3 .LC29: .string "A bowl of cherries." .align 3 .LC30: .string "A box of brand-new nixie tubes." .align 3 .LC31: .string "A box of dancing mechanical pencils. They dance! They sing!" .align 3 .LC32: .string "A box of fumigation pellets." .align 3 .LC33: .string "A brain cell. Oddly enough, it seems to be functioning." .align 3 .LC34: .string "A breadbox. Nope, Kitten isn\342\200\231t in the breadbox." .align 3 .LC35: .string "A breadbox that\342\200\231s bigger than a breadbox." .align 3 .LC36: .string "A briefcase filled with spy stuff." .align 3 .LC37: .string "A broken metronome sits here, its needle off to one side." .align 3 .LC38: .string "A brown glass vial labeled \342\200\234tincture of iodine\342\200\235." .align 3 .LC39: .string "A Buttertonsils bar." .align 3 .LC40: .string "A caboodle." .align 3 .LC41: .string "A camera obscura." .align 3 .LC42: .string "A canister of pressurized whipped cream, sans whipped cream." .align 3 .LC43: .string "A can of Spam Lite." .align 3 .LC44: .string "A cardboard box of sheet metal screws." .align 3 .LC45: .string "A card sharp sits here, practicing his Faro shuffle. He ignores you." .align 3 .LC46: .string "A chain hanging from two posts reminds you of the Gateway Arch." .align 3 .LC47: .string "A child\342\200\231s drawing of a kitten." .align 3 .LC48: .string "A claymore." .align 3 .LC49: .string "A claymore mine." .align 3 .LC50: .string "A clay pot with grass growing it in sits here." .align 3 .LC51: .string "A cluster of cattails are growing here." .align 3 .LC52: .string "A coat hanger hovers in thin air. Odd." .align 3 .LC53: .string "A cockatoo shrieks at you." .align 3 .LC54: .string "A compendium of haiku about metals." .align 3 .LC55: .string "A copy of DeCSS. They\342\200\231re a dime a dozen these days." .align 3 .LC56: .string "A copy of the Weekly World News. Watch out for the chambered nautilus!" .align 3 .LC57: .string "A coupon for one free steak-fish at your local family diner." .align 3 .LC58: .string "A crouton." .align 3 .LC59: .string "A crowd of people, and at the center, a popular misconception." .align 3 .LC60: .string "A crystal ball. It doesn\342\200\231t seem to know where Kitten is." .align 3 .LC61: .string "A cyclops glowers angrily at you." .align 3 .LC62: .string "A dangly thing." .align 3 .LC63: .string "A dangly thing mangled by Kitten." .align 3 .LC64: .string "A dark-emitting diode." .align 3 .LC65: .string "\342\200\234Address Allocation for Private Internets\342\200\235 by Yakov Rekhter et al." .align 3 .LC66: .string "A dead battery." .align 3 .LC67: .string "A dead click beetle." .align 3 .LC68: .string "A demonic voice proclaims \342\200\234There is no kitten, only Zuul\342\200\235. You flee." .align 3 .LC69: .string "A digital clock. It\342\200\231s stuck at 2:17 PM." .align 3 .LC70: .string "A discarded bagpipe chanter reed." .align 3 .LC71: .string "A discarded envelope chewed by Kitten." .align 3 .LC72: .string "A discarded pop bottle." .align 3 .LC73: .string "A discarded refrigerator box. Nope, Kitten isn\342\200\231t in the box." .align 3 .LC74: .string "A discarded refrigerator in a discarded refrigerator box." .align 3 .LC75: .string "A discredited cosmology, relic of a bygone era." .align 3 .LC76: .string "A dodecahedron bars your way." .align 3 .LC77: .string "A dogcow moofs at you." .align 3 .LC78: .string "A dog dressed in a cheap suit is here." .align 3 .LC79: .string "A failing unit test." .align 3 .LC80: .string "A family of integrals is here integrating." .align 3 .LC81: .string "A featureless black monolith." .align 3 .LC82: .string "A five-horned rhinoceros beetle with rings on every other horn." .align 3 .LC83: .string "A flamboyant feather boa. Now you can dress up like Carol Channing!" .align 3 .LC84: .string "A flask of hydrochloric acid is here." .align 3 .LC85: .string "A flyer advertising a big sale on flyers." .align 3 .LC86: .string "A flyer advertising a sale at Spatula City." .align 3 .LC87: .string "A flyer reads, \342\200\234Please donate hydraulic fluid\342\200\235." .align 3 .LC88: .string "A forgotten telephone switchboard." .align 3 .LC89: .string "A forgotten telephone switchboard operator." .align 3 .LC90: .string "A freshly-baked pumpkin pie." .align 3 .LC91: .string "A frosted pink party-cake, half eaten." .align 3 .LC92: .string "A gecko clings to the ceiling here." .align 3 .LC93: .string "A gecko zooms about on a skateboard here." .align 3 .LC94: .string "A \342\200\234Get Out Of Jail Free\342\200\235 card." .align 3 .LC95: .string "A geyser sprays water high into the air." .align 3 .LC96: .string "A giant mechanical octopus spews flames from its tentacles." .align 3 .LC97: .string "A glass bottle containing a quantity of water." .align 3 .LC98: .string "A glorious fan of peacock feathers." .align 3 .LC99: .string "A gold-dipped rose." .align 3 .LC100: .string "A gravestone stands here. \342\200\234Izchak Miller, ascended.\342\200\235" .align 3 .LC101: .string "A green yo-yo." .align 3 .LC102: .string "A Gregorian date palm, its fronds gently waving." .align 3 .LC103: .string "A grin." .align 3 .LC104: .string "A haircut and a real job. Now you know where to get one!" .align 3 .LC105: .string "A hairless rat." .align 3 .LC106: .string "A half-eaten cheese sandwich." .align 3 .LC107: .string "A half empty milk carton. Or is it half full?" .align 3 .LC108: .string "A hammock stretched between a tree and a volleyball pole." .align 3 .LC109: .string "A hastily scribbled note reads, \342\200\234kitten is the letter Q.\342\200\235" .align 3 .LC110: .string "A hedgehog. It looks like it knows something important." .align 3 .LC111: .string "A helicopter has crashed here." .align 3 .LC112: .string "A herd of wild coffee mugs slumbers here." .align 3 .LC113: .string "A hickory stump." .align 3 .LC114: .string "A historical marker showing the actual location of /dev/null." .align 3 .LC115: .string "A hollow voice says \342\200\234Fool!\342\200\235" .align 3 .LC116: .string "A hollow voice says \342\200\234Plugh.\342\200\235" .align 3 .LC117: .string "A homemade Tesla coil, fully charged." .align 3 .LC118: .string "A hovercraft full of eels is parked here." .align 3 .LC119: .string "Ah, the skirl of the pipes and the rustle of the silicon..." .align 3 .LC120: .string "Ah, the uniform of a Revolutionary-era minuteman." .align 3 .LC121: .string "A huge pile of pancakes." .align 3 .LC122: .string "An intact clay pigeon." .align 3 .LC123: .string "Air." .align 3 .LC124: .string "A jar of dehydrated water." .align 3 .LC125: .string "A jar of lemon curd." .align 3 .LC126: .string "A jar of library paste." .align 3 .LC127: .string "A jar of Vegemite is playing hopscotch here." .align 3 .LC128: .string "A ketchup bottle (nearly empty)." .align 3 .LC129: .string "A kitten sink, for washing kitten (if only kitten liked water)." .align 3 .LC130: .string "A kitten source (to match the kitten sink)." .align 3 .LC131: .string "A knight who says \342\200\234Either I am an insane knave, or you will find kitten.\342\200\235" .align 3 .LC132: .string "A large block of dry ice." .align 3 .LC133: .string "A large blue eye floats in midair." .align 3 .LC134: .string "A large coil of rope is here." .align 3 .LC135: .string "A large oriental rug." .align 3 .LC136: .string "A large pile of rubber bands." .align 3 .LC137: .string "A large snake bars your way." .align 3 .LC138: .string "A large Turkish rug, worn threadbare by years of pacing." .align 3 .LC139: .string "A largish bath towel." .align 3 .LC140: .string "A leather pouch filled with multisided dice." .align 3 .LC141: .string "Alien underwear." .align 3 .LC142: .string "A little glass tub of Carmex. ($.89) Too bad you have no lips." .align 3 .LC143: .string "A little teapot, short and stout." .align 3 .LC144: .string "A livery stable! Get your livery!" .align 3 .LC145: .string "A lone, forgotten comma, sits here, sobbing." .align 3 .LC146: .string "A lotus. You make an interesting pair." .align 3 .LC147: .string "A magical... magic thing." .align 3 .LC148: .string "A magic switch." .align 3 .LC149: .string "A marijuana brownie." .align 3 .LC150: .string "A mason jar lies here open. Its label reads: \342\200\234do not open!\342\200\235." .align 3 .LC151: .string "A meat-scented air-freshener on a string dances in the breeze." .align 3 .LC152: .string "A meerkat... not even close." .align 3 .LC153: .string "A Mentos wrapper." .align 3 .LC154: .string "A mere collection of pixels." .align 3 .LC155: .string "A milk carton, with a black and white picture of kitten on the side." .align 3 .LC156: .string "A model of a twin-hulled sailboat." .align 3 .LC157: .string "A mouse." .align 3 .LC158: .string "An 80286 machine." .align 3 .LC159: .string "An abandoned used-car lot." .align 3 .LC160: .string "An AK-47 rifle." .align 3 .LC161: .string "An AK-97 rifle." .align 3 .LC162: .string "A naked singularity. You avert your eyes." .align 3 .LC163: .string "An albatross, around its own neck." .align 3 .LC164: .string "An animate blob of acid. Being metallic, you keep well away." .align 3 .LC165: .string "An aromatherapy candle burns with healing light." .align 3 .LC166: .string "An assortment of highly-nutritious vegetables." .align 3 .LC167: .string "An atomic vector plotter." .align 3 .LC168: .string "An authentic 1953 veeblefetzer, sadly in need of adjustment." .align 3 .LC169: .string "An autographed copy of \342\200\234Primary Colors\342\200\235, by Anonymous." .align 3 .LC170: .string "An autographed copy of the works of Anonymous." .align 3 .LC171: .string "An automated robot-disdainer. It pretends you\342\200\231re not there." .align 3 .LC172: .string "An automated robot-doubter. It doesn\342\200\231t believe in you." .align 3 .LC173: .string "An automated robot-hater. It frowns disapprovingly at you." .align 3 .LC174: .string "An automated robot-liker. It smiles at you." .align 3 .LC175: .string "A neat pile of plastic irrigation pipe." .align 3 .LC176: .string "An electric engraving pencil." .align 3 .LC177: .string "An electric fan lies on its side here." .align 3 .LC178: .string "An eminently forgettable zahir." .align 3 .LC179: .string "An empty Altoids tin." .align 3 .LC180: .string "An empty coaxial cable spool." .align 3 .LC181: .string "An empty Penguin Mints tin." .align 3 .LC182: .string "An empty shopping bag. Paper or plastic?" .align 3 .LC183: .string "An empty Slurpee cup." .align 3 .LC184: .string "An Enfield Mk3 rifle." .align 3 .LC185: .string "An erroneous proof of the Goldbach Conjecture." .align 3 .LC186: .string "A neural net \342\200\224 maybe it\342\200\231s trying to recognize kitten." .align 3 .LC187: .string "An expired transistor." .align 3 .LC188: .string "An FN-FAL rifle." .align 3 .LC189: .string "An historical marker." .align 3 .LC190: .string "An ice cube." .align 3 .LC191: .string "An incredibly expensive \342\200\234Mad About You\342\200\235 collector plate." .align 3 .LC192: .string "An Internet chain letter." .align 3 .LC193: .string "An iron meteorite." .align 3 .LC194: .string "An M16 rifle." .align 3 .LC195: .string "An M1911A1 pistol." .align 3 .LC196: .string "An M9 pistol." .align 3 .LC197: .string "An obvious metaphor for Sysiphisian futility." .align 3 .LC198: .string "An oddly familiar face shouts \342\200\234SCREWTEK!\342\200\235 from this computer monitor." .align 3 .LC199: .string "An old bootable business card, unfortunately cracked down the middle." .align 3 .LC200: .string "An old pattern is here going on and on." .align 3 .LC201: .string "An old rusty revolver." .align 3 .LC202: .string "A non-descript box of crackers." .align 3 .LC203: .string "A nondescript box of crackers." .align 3 .LC204: .string "An ordinary bust of Beethoven... but why is it painted green?" .align 3 .LC205: .string "Another rabbit? That\342\200\231s three today!" .align 3 .LC206: .string "A noun and a boat bound to the wrong verb." .align 3 .LC207: .string "An oven mitt with kittens on it." .align 3 .LC208: .string "An overflowing bit bucket." .align 3 .LC209: .string "An overturned bottle of ink and lots of kitten pawprints." .align 3 .LC210: .string "An overturned bottle of rainbow-colored ink." .align 3 .LC211: .string "A number of short theatrical productions are indexed 1, 2, 3, ... n." .align 3 .LC212: .string "An underwater avocado." .align 3 .LC213: .string "An unlicensed nuclear accelerator." .align 3 .LC214: .string "An unripe orange." .align 3 .LC215: .string "Any ordinary robot could see from a mile away that this wasn\342\200\231t kitten." .align 3 .LC216: .string "A packet of catnip." .align 3 .LC217: .string "A packet of pipe cleaners." .align 3 .LC218: .string "A pair of combat boots." .align 3 .LC219: .string "A pair of saloon-style doors swing slowly back and forth here." .align 3 .LC220: .string "A pangolin." .align 3 .LC221: .string "A paper shopping bag. Nope, Kitten isn\342\200\231t in the bag." .align 3 .LC222: .string "A parade of ants crosses your path." .align 3 .LC223: .string "A parrot, kipping on its back." .align 3 .LC224: .string "A passing tiger tells you a terrible tale." .align 3 .LC225: .string "A patch from the Mammoth Caves." .align 3 .LC226: .string "A patch of grape jelly grows here." .align 3 .LC227: .string "A patch of mushrooms grows here." .align 3 .LC228: .string "A pile of blood-red maple leaves. You do not have time to count them." .align 3 .LC229: .string "A pile of coaxial plumbing lies here." .align 3 .LC230: .string "A pile of coconuts." .align 3 .LC231: .string "A pile of discarded \342\200\234no dumping\342\200\235 signs." .align 3 .LC232: .string "A pile of irrigation valves." .align 3 .LC233: .string "A piping-hot pizza. Useless." .align 3 .LC234: .string "A pirate!" .align 3 .LC235: .string "A pirate joke." .align 3 .LC236: .string "A pizza, melting in the sun." .align 3 .LC237: .string "A plastic model of Kitten." .align 3 .LC238: .string "A plush Chewbacca." .align 3 .LC239: .string "A post hole digger is stuck in a pile of dirt here." .align 3 .LC240: .string "Apparently, it\342\200\231s Edmund Burke." .align 3 .LC241: .string "Approaching. One car. J. Followed by. Two car. M, M. In five. Minutes." .align 3 .LC242: .string "A puddle of chocolate sauce." .align 3 .LC243: .string "A puddle of mud, where the mudskippers play." .align 3 .LC244: .string "A puddle of purple semi-gloss latex paint." .align 3 .LC245: .string "A punch bowl, filled with punch and lemon slices." .align 3 .LC246: .string "A radio hisses away." .align 3 .LC247: .string "A radio hisses away. Kitten must have been here." .align 3 .LC248: .string "A rancid corn dog." .align 3 .LC249: .string "A realistic toy kitten. Suspended high above is a large steel cage." .align 3 .LC250: .string "A Remington 870 shotgun." .align 3 .LC251: .string "A river of liquid nitrogen flows through here." .align 3 .LC252: .string "A robot comedian performs here. You feel amused." .align 3 .LC253: .string "A robot comedian. You feel amused." .align 3 .LC254: .string "A roll of duct tape." .align 3 .LC255: .string "A roll of scratch-and-sniff stickers." .align 3 .LC256: .string "A rusted safety pin." .align 3 .LC257: .string "A rusted telephone booth." .align 3 .LC258: .string "A rusty crowbar." .align 3 .LC259: .string "A rusty melon-baller." .align 3 .LC260: .string "A rusty slinky. It was such a wonderful toy!" .align 3 .LC261: .string "A sack of doorknobs." .align 3 .LC262: .string "A sack of hammers." .align 3 .LC263: .string "A sack of wet mice." .align 3 .LC264: .string "A salmon hatchery? Look again. It\342\200\231s merely a single salmon." .align 3 .LC265: .string "A Sanrio catalog." .align 3 .LC266: .string "A saucer of milk." .align 3 .LC267: .string "A saucer of milk, untouched by Kitten." .align 3 .LC268: .string "A Scooby Snack! Yay!" .align 3 .LC269: .string "A scrap of parchment bears the single word, \342\200\234meow\342\200\235." .align 3 .LC270: .string "A scratching-post." .align 3 .LC271: .string "A screwdriver." .align 3 .LC272: .string "A sealed tin bearing only the word \342\200\234yummy\342\200\235." .align 3 .LC273: .string "A section of glowing phosphor cells sings a song of radiation to you." .align 3 .LC274: .string "A set of keys to a 2001 Rolls Royce. Worthless." .align 3 .LC275: .string "A shameless plug for Crummy: http://www.crummy.com/" .align 3 .LC276: .string "A shameless plug for Frotz: http://www.cs.csubak.edu/~dgriffi/proj/frotz/" .align 3 .LC277: .string "A shameless plug for the UCLA Linux Users Group: http://linux.ucla.edu/" .align 3 .LC278: .string "A sheep and a lamp, lounging beneath a myrtle tree." .align 3 .LC279: .string "Ash is mumbling \342\200\234KLAATU BARATA NI<coughcough>\342\200\235 here." .align 3 .LC280: .string "A signpost saying \342\200\234TO KITTEN\342\200\235. It points in no particular direction." .align 3 .LC281: .string "A sign reads \342\200\234Don\342\200\231t step on the Mome Raths\342\200\235." .align 3 .LC282: .string "A sign reads: \342\200\234Go home!\342\200\235" .align 3 .LC283: .string "A sign reads: \342\200\234Ignore this sign!\342\200\235" .align 3 .LC284: .string "A sign reads: \342\200\234No robots allowed!\342\200\235" .align 3 .LC285: .string "A singing frog. Useless." .align 3 .LC286: .string "A six-wheeled robot sits lifeless, stuck in the dirt." .align 3 .LC287: .string "A slightly-used smellovision set." .align 3 .LC288: .string "A small box of fishing weights." .align 3 .LC289: .string "A small, featureless, white cube." .align 3 .LC290: .string "A smoking branding iron shaped like a 24-pin connector." .align 3 .LC291: .string "A spindle, and a grindle, and a bucka-wacka-woom!" .align 3 .LC292: .string "A spiral-bound copy of the Necronomicon." .align 3 .LC293: .string "A squirrel contentedly gnaws on a sprinkler head here." .align 3 .LC294: .string "A stack of 7 inch floppies wobbles precariously." .align 3 .LC295: .string "A statue of a girl holding a goose like the one in Gottingen, Germany." .align 3 .LC296: .string "A steam-powered bunnytron." .align 3 .LC297: .string "A stegosaurus, escaped from stegosaurusfindsrobot. It finds you." .align 3 .LC298: .string "A stegosaurus, escaped from the stegosaurusfindsrobot game. It finds you." .align 3 .LC299: .string "A stony meteorite." .align 3 .LC300: .string "A street map of the city of Anaheim." .align 3 .LC301: .string "A sub-atomic particle languishes here all alone." .align 3 .LC302: .string "A sudden burst of maniaical cackling makes you feel homesick." .align 3 .LC303: .string "A Swiss-Army knife. All of its appendages are out. (toothpick lost)" .align 3 .LC304: .string "A team of arctic explorers is camped here." .align 3 .LC305: .string "A team of Arctic explorers is camped here." .align 3 .LC306: .string "A technical university in Australia." .align 3 .LC307: .string "A tetradrachm dated \342\200\23442 B.C.\342\200\235" .align 3 .LC308: .string "A Texas Instruments of Destruction calculator." .align 3 .LC309: .string "A threadbare tweed suit." .align 3 .LC310: .string "A tiny ceramic Kitten. It\342\200\231s probably not the Kitten you\342\200\231re looking for." .align 3 .LC311: .string "A tiny robot scuttles across the floor." .align 3 .LC312: .string "A tiny velvet pouch." .align 3 .LC313: .string "A toenail? What good is a toenail?" .align 3 .LC314: .string "A toilet bowl occupies this space." .align 3 .LC315: .string "A ton of feathers." .align 3 .LC316: .string "A toupee." .align 3 .LC317: .string "A toy zeppelin." .align 3 .LC318: .string "A traffic signal. It appears to have been recently vandalized." .align 3 .LC319: .string "A train of thought chugs through here." .align 3 .LC320: .string "A trash compactor, compacting away." .align 3 .LC321: .string "A travel-sized cyclotron." .align 3 .LC322: .string "A tree with some jelly nailed to it." .align 3 .LC323: .string "A tribe of cannibals lives here. They eat Malt-O-Meal for breakfast, you know." .align 3 .LC324: .string "A troll. Ewww!!!" .align 3 .LC325: .string "A tube of heat sink grease." .align 3 .LC326: .string "A tube of toothpaste. Too bad you have no teeth." .align 3 .LC327: .string "A tube of white lithium grease. Perfect for your robotic joints." .align 3 .LC328: .string "A tuft of kitten fur, but no kitten." .align 3 .LC329: .string "A twist of lemon." .align 3 .LC330: .string "A vacuum cleaner appears to have exploded here." .align 3 .LC331: .string "A vanilla pudding pop." .align 3 .LC332: .string "A vase full of artificial flowers is stuck to the floor here." .align 3 .LC333: .string "A vase of roses." .align 3 .LC334: .string "A voice booms out \342\200\234Onward, kitten soldiers...\342\200\235" .align 3 .LC335: .string "A waffle iron is here and it\342\200\231s still hot." .align 3 .LC336: .string "A warranted genuine Snark." .align 3 .LC337: .string "A waterlogged grand piano." .align 3 .LC338: .string "A willing, ripe tomato bemoans your inability to digest fruit." .align 3 .LC339: .string "A wireframe model of a hot dog rotates in space here." .align 3 .LC340: .string "A wolf wearing a nightgown is in bed here." .align 3 .LC341: .string "A wondrous and intricate golden amulet. Too bad you have no neck." .align 3 .LC342: .string "A zorkmid coin." .align 3 .LC343: .string "Baling wire and chewing gum." .align 3 .LC344: .string "Bars of lard, stacked a mile high." .align 3 .LC345: .string "Beef stew." .align 3 .LC346: .string "Bibbidy bibbidy bibbidy bibbidy bibbidy bibbidy..." .align 3 .LC347: .string "Big Bird is here looking for Mr. Looper." .align 3 .LC348: .string "Billions and billions of things that aren\342\200\231t Kitten." .align 3 .LC349: .string "Biscuits." .align 3 .LC350: .string "Bits of red construction paper are scattered all about." .align 3 .LC351: .string "Blarg!" .align 3 .LC352: .string "Blod." .align 3 .LC353: .string "\342\200\234Blup, blup, blup\342\200\235, says the mud pot." .align 3 .LC354: .string "Brass tacks." .align 3 .LC355: .string "Bright copper kettles." .align 3 .LC356: .string "Bronzed baby shoes." .align 3 .LC357: .string "BURRRRP!!!! Flavorful and full of protein!" .align 3 .LC358: .string "Butane!!!" .align 3 .LC359: .string "Carbonated Water, High Fructose Corn Syrup, Color, Phosphoric Acid, Flavors." .align 3 .LC360: .string "Carbonated Water, High Fructose Corn Syrup, Color, Phosphoric Acid, Flavors, Caffeine." .align 3 .LC361: .string "Carlos Tarango stands here, doing his best impression of Pat Smear." .align 3 .LC362: .string "Catsup and Mustard all over the place! It\342\200\231s the Human Hamburger!" .align 3 .LC363: .string "Ceci n\342\200\231est pas un chaton." .align 3 .LC364: .string "Chewing gum and baling wire." .align 3 .LC365: .string "Chunk is here doing the truffle-shuffle." .align 3 .LC366: .string "Clifford Stoll is here selling Klein bottles." .align 3 .LC367: .string "Colorless green ideas sleep furiously here." .align 3 .LC368: .string "Could it be... a big ugly bowling trophy?" .align 3 .LC369: .string "Daily hunger conditioner from Australasia" .align 3 .LC370: .string "Dancing cold water pipes. Mikey must have been here." .align 3 .LC371: .string "Darth Vader is here looking for his Teddywookie." .align 3 .LC372: .string "Data is here setting up some booty traps." .align 3 .LC373: .string "\342\200\234Dear robot, you may have already won our 10 MILLION DOLLAR prize...\342\200\235" .align 3 .LC374: .string "Definitely not Kitten." .align 3 .LC375: .string "Dinsdale!" .align 3 .LC376: .string "Diogenes is here demanding whisky." .align 3 .LC377: .string "Diogenes is here, demanding whisky." .align 3 .LC378: .string "Dirty socks." .align 3 .LC379: .string "\342\200\234Dogbert\342\200\231s tech support, how may I abuse you?\342\200\235" .align 3 .LC380: .string "Doodles Weaver is here looking over a horse race schedule." .align 3 .LC381: .string "Ed McMahon stands here, lost in thought. Seeing you, he bellows, \342\200\234YES SIR!\342\200\235" .align 3 .LC382: .string "Ed Witten sits here, pondering string theory." .align 3 .LC383: .string "Empty jewelboxes litter the landscape." .align 3 .LC384: .string "Faboo!" .align 3 .LC385: .string "Five pounds of flax." .align 3 .LC386: .string "For a moment, you feel something in your hands, but it disappears!" .align 3 .LC387: .string "Free Dmitry Sklyarov!" .align 3 .LC388: .string "Free Jon Johansen!" .align 3 .LC389: .string "Gibble, Gobble, we ACCEPT YOU ..." .align 3 .LC390: .string "\342\200\234Go back to Libraria!\342\200\235, says Pat Schroeder." .align 3 .LC391: .string "Grind \342\200\231em up, spit \342\200\231em out, they\342\200\231re twigs." .align 3 .LC392: .string "Haphazard stacks of white uppercase letters." .align 3 .LC393: .string "Haven\342\200\231t you checked here already?" .align 3 .LC394: .string "Haven\342\200\231t you touched this before?" .align 3 .LC395: .string "Haven\342\200\231t you touched this thing before?" .align 3 .LC396: .string "Heart of Darkness brand pistachio nuts." .align 3 .LC397: .string "Heeeeeeeeeeeere\342\200\231s Johnny!" .align 3 .LC398: .string "Heeeeeeeeeeeeres Johnny!" .align 3 .LC399: .string "\342\200\234Help me Robot! You\342\200\231re my only hope!\342\200\235" .align 3 .LC400: .string "Here is a book about Robert Kennedy." .align 3 .LC401: .string "Here is no kitten but only rock, rock and no kitten and the sandy road." .align 3 .LC402: .string "Here\342\200\231s Cal Worthington and his dog \342\200\234Spot\342\200\235!" .align 3 .LC403: .string "Here\342\200\231s Pete Peterson. His batteries seem to have long gone dead." .align 3 .LC404: .string "Here you are, at the behest." .align 3 .LC405: .string "Here you are, over the objections." .align 3 .LC406: .string "Here you are, under the auspices." .align 3 .LC407: .string "Hey, I bet you thought this was kitten." .align 3 .LC408: .string "Hey, look, it\342\200\231s war. What is it good for? Absolutely nothing. Say it again." .align 3 .LC409: .string "Hey, robot, leave those lists alone." .align 3 .LC410: .string "\342\200\234Hi, I\342\200\231m Anson Williams, TV\342\200\231s \342\200\231Potsy\342\200\231.\342\200\235" .align 3 .LC411: .string "Ho hum. Another synthetic a posteriori." .align 3 .LC412: .string "\342\200\234How in heck can I wash my neck if it ain\342\200\231t gonna rain no more?\342\200\235 asks Farmer Al." .align 3 .LC413: .string "Hydraulic fluid and jagged metal bits. You recoil from the scene of carnage." .align 3 .LC414: .string "I don\342\200\231t know what that is, but it\342\200\231s not kitten." .align 3 .LC415: .string "If it\342\200\231s not one thing, it\342\200\231s another." .align 3 .LC416: .string "If it\342\200\231s one thing, it\342\200\231s not another." .align 3 .LC417: .string "Insane laughter issues from this vibrating shipping crate." .align 3 .LC418: .string "In Soviet Russia, kitten finds you. Unfortunately, this isn\342\200\231t Soviet Russia." .align 3 .LC419: .string "\342\200\234I pity the fool who mistakes me for kitten!\342\200\235, sez Mr. T." .align 3 .LC420: .string "Is that an elephant\342\200\231s head or a winged sandal?" .align 3 .LC421: .string "It is a cloud shaped like an ox." .align 3 .LC422: .string "It is a marzipan dreadnought that appears to have melted and stuck." .align 3 .LC423: .string "It is an ancient mariner, and he stoppeth one of three." .align 3 .LC424: .string "It is a set of wind-up chatter teeth." .align 3 .LC425: .string "It is -- I just feel something wonderful is about to happen." .align 3 .LC426: .string "It pleases you to be kind to what appears to be kitten -- but it\342\200\231s not!" .align 3 .LC427: .string "It\342\200\231s 1000 secrets the government doesn\342\200\231t want you to know!" .align 3 .LC428: .string "It\342\200\231s a banana! Oh, joy!" .align 3 .LC429: .string "It\342\200\231s a battery-powered brass lantern." .align 3 .LC430: .string "It\342\200\231s a Bergenholm drive." .align 3 .LC431: .string "It\342\200\231s a big block of ice. Something seems to be frozen inside it." .align 3 .LC432: .string "It\342\200\231s a big smoking fish." .align 3 .LC433: .string "It\342\200\231s a black hole. Don\342\200\231t fall in!" .align 3 .LC434: .string "It\342\200\231s a blatant plug for Ogg Vorbis, http://www.vorbis.com/" .align 3 .LC435: .string "It\342\200\231s a blind man. When you touch, he exclaims \342\200\234It\342\200\231s a kitten prospecting robot!\342\200\235" .align 3 .LC436: .string "It\342\200\231s a blob of black goo." .align 3 .LC437: .string "It\342\200\231s a blob of blue goo." .align 3 .LC438: .string "It\342\200\231s a blob of brown goo." .align 3 .LC439: .string "It\342\200\231s a blob of green goo." .align 3 .LC440: .string "It\342\200\231s a blob of grey goo." .align 3 .LC441: .string "It\342\200\231s a blob of orange goo." .align 3 .LC442: .string "It\342\200\231s a blob of purple goo." .align 3 .LC443: .string "It\342\200\231s a blob of red goo." .align 3 .LC444: .string "It\342\200\231s a blob of white goo." .align 3 .LC445: .string "It\342\200\231s a blob of yellow goo." .align 3 .LC446: .string "It\342\200\231s a bottle of nail polish remover." .align 3 .LC447: .string "It\342\200\231s a box of lox." .align 3 .LC448: .string "It\342\200\231s a box of pinball machine parts." .align 3 .LC449: .string "It\342\200\231s a bucket of mud." .align 3 .LC450: .string "It\342\200\231s a bucket of water." .align 3 .LC451: .string "It\342\200\231s a bug." .align 3 .LC452: .string "It\342\200\231s a burrito stand flyer. \342\200\234Taqueria El Ranchito\342\200\235." .align 3 .LC453: .string "It\342\200\231s a business plan for a new startup, kitten.net." .align 3 .LC454: .string "It\342\200\231s a can of pork soda." .align 3 .LC455: .string "It\342\200\231s a cardboard box full of 8-tracks." .align 3 .LC456: .string "It\342\200\231s a cardboard box full of 8-track tapes." .align 3 .LC457: .string "It\342\200\231s a Cat 5 cable." .align 3 .LC458: .string "It\342\200\231s a catalog from some company called Infocom." .align 3 .LC459: .string "It\342\200\231s a cat. Are you too late?" .align 3 .LC460: .string "It\342\200\231s a charcoal briquette, smoking away." .align 3 .LC461: .string "It\342\200\231s a child\342\200\231s kitten pull-toy." .align 3 .LC462: .string "It\342\200\231s a child\342\200\231s pull-toy." .align 3 .LC463: .string "It\342\200\231s a clue!" .align 3 .LC464: .string "It\342\200\231s a Commodore 64 computer (in mint condition)." .align 3 .LC465: .string "It\342\200\231s a concatenation of circumstances." .align 3 .LC466: .string "It\342\200\231s a continental breakfast." .align 3 .LC467: .string "It\342\200\231s a cookie shaped like a kitten." .align 3 .LC468: .string "It\342\200\231s a copy editor, reading aloud from the Associated Press Stylebook." .align 3 .LC469: .string "It\342\200\231s a copy of Knuth with the chapter on kitten-search algorithms torn out." .align 3 .LC470: .string "It\342\200\231s a copy of the Book of Found Kittens." .align 3 .LC471: .string "It\342\200\231s a copy of the robotfindskitten EULA." .align 3 .LC472: .string "It\342\200\231s a copy of \342\200\234The Rubaiyat of Spike Schudy\342\200\235." .align 3 .LC473: .string "It\342\200\231s a copy of \342\200\234Zen and The Art of Robot Maintenance\342\200\235." .align 3 .LC474: .string "It\342\200\231s a dark, amphorous blob of matter." .align 3 .LC475: .string "It\342\200\231s a DVD of \342\200\234Crouching Monkey, Hidden Kitten\342\200\235, region encoded for the moon." .align 3 .LC476: .string "It\342\200\231s a Dvorak keyboard." .align 3 .LC477: .string "It\342\200\231s a fleet of mothballs." .align 3 .LC478: .string "It\342\200\231s a fly on the wall. Hi, fly!" .align 3 .LC479: .string "It\342\200\231s a fossil trilobite." .align 3 .LC480: .string "It\342\200\231s a fragment of an old Russian spacecraft." .align 3 .LC481: .string "It\342\200\231s a Franklin Ebookman." .align 3 .LC482: .string "It\342\200\231s a free Dmitry Sklyarov!" .align 3 .LC483: .string "It\342\200\231s a free Jon Johansen!" .align 3 .LC484: .string "It\342\200\231s a funky beat!" .align 3 .LC485: .string "It\342\200\231s a giant slorr!" .align 3 .LC486: .string "It\342\200\231s a groat coated with pocket fluff." .align 3 .LC487: .string "It\342\200\231s a grue. Fortunately, they don\342\200\231t like to eat robots." .align 3 .LC488: .string "It\342\200\231s a gun of some sort." .align 3 .LC489: .string "It\342\200\231s a hairy-armed hitchhiker!" .align 3 .LC490: .string "It\342\200\231s a hanging chad." .align 3 .LC491: .string "It\342\200\231s a hologram of a crashed helicopter." .align 3 .LC492: .string "It\342\200\231s a \342\200\234HOME ALONE 2: Lost in New York\342\200\235 novelty cup." .align 3 .LC493: .string "It\342\200\231s a hundred-dollar bill." .align 3 .LC494: .string "It\342\200\231s a hyperkinetic rabbity thing." .align 3 .LC495: .string "It\342\200\231s a Java applet." .align 3 .LC496: .string "It\342\200\231s a Kaypro II portable computer." .align 3 .LC497: .string "It\342\200\231s a large pile of crumpled notepaper." .align 3 .LC498: .string "It\342\200\231s a left-handed smoke shifter." .align 3 .LC499: .string "It\342\200\231s a limbo bar! How low can you go?" .align 3 .LC500: .string "It\342\200\231s a Linux install CD." .align 3 .LC501: .string "It\342\200\231s a list of the zeroes of the Riemann zeta function." .align 3 .LC502: .string "IT\342\200\231S ALIVE! AH HA HA HA HA!" .align 3 .LC503: .string "It\342\200\231s a lost wallet. It\342\200\231s owner didn\342\200\231t have pets, so you discard it." .align 3 .LC504: .string "It\342\200\231s a merry-go-round (broken down)." .align 3 .LC505: .string "It\342\200\231s a mighty zombie talking about some love and prosperity." .align 3 .LC506: .string "It\342\200\231s a MITS Altair 8800." .align 3 .LC507: .string "It\342\200\231s a Model M keyboard with the keycaps rearranged." .align 3 .LC508: .string "It\342\200\231s a model of a catamaran." .align 3 .LC509: .string "It\342\200\231s a moment of silence." .align 3 .LC510: .string "It\342\200\231s a mousetrap, baited with soap." .align 3 .LC511: .string "It\342\200\231s an altar to the horse god." .align 3 .LC512: .string "It\342\200\231s a nameless MSX computer from Japan." .align 3 .LC513: .string "It\342\200\231s an Amiga 2000 computer." .align 3 .LC514: .string "It\342\200\231s an Apple II+ computer (in mint condition)." .align 3 .LC515: .string "It\342\200\231s an argon-filled vault." .align 3 .LC516: .string "It\342\200\231s a nasty knife." .align 3 .LC517: .string "It\342\200\231s an Atari 800 computer." .align 3 .LC518: .string "It\342\200\231s an autographed copy of \342\200\234Secondary Colors,\342\200\235 by Bob Ross." .align 3 .LC519: .string "It\342\200\231s an automated robot-disdainer. It pretends you\342\200\231re not there." .align 3 .LC520: .string "It\342\200\231s Andrew Plotkin plotting something." .align 3 .LC521: .string "It\342\200\231s an elongated brown sack, smelling of hot peppers." .align 3 .LC522: .string "It\342\200\231s an elvish sword of great antiquity." .align 3 .LC523: .string "It\342\200\231s a NetBSD install CD." .align 3 .LC524: .string "It\342\200\231s an example of the infamous space-cadet keyboard." .align 3 .LC525: .string "It\342\200\231s an external dependency." .align 3 .LC526: .string "It\342\200\231s an incomplete" .align 3 .LC527: .string "It\342\200\231s an Intel 4004 processor." .align 3 .LC528: .string "It\342\200\231s an inverted billiard ball!" .align 3 .LC529: .string "It\342\200\231s an oil portrait of you, about to find kitten." .align 3 .LC530: .string "It\342\200\231s an old Duke Ellington record." .align 3 .LC531: .string "It\342\200\231s an ordinary bust of Beethoven... but why is it painted green?" .align 3 .LC532: .string "It\342\200\231s an Osborne portable computer." .align 3 .LC533: .string "It\342\200\231s another robot, more advanced in design than you but strangely immobile." .align 3 .LC534: .string "It\342\200\231s an unknown area code." .align 3 .LC535: .string "It\342\200\231s a perpetual immobility machine." .align 3 .LC536: .string "It\342\200\231s a phone book for the 661 area code." .align 3 .LC537: .string "It\342\200\231s a photograph of Kitten." .align 3 .LC538: .string "It\342\200\231s a pigeon with a TCP/IP packet duct-taped to its leg." .align 3 .LC539: .string "It\342\200\231s a pile of wine corks." .align 3 .LC540: .string "It\342\200\231s a pool with a straw in it." .align 3 .LC541: .string "It\342\200\231s a portable hole. A sign reads: \342\200\234Closed for the winter\342\200\235." .align 3 .LC542: .string "It\342\200\231s a prosthetic wheel, bent out of shape." .align 3 .LC543: .string "It\342\200\231s a Quaker Oatmeal tube, converted into a drum." .align 3 .LC544: .string "It\342\200\231s a rapidly oscillating function." .align 3 .LC545: .string "It\342\200\231s a recursive recursive recursive recursive recursive..." .align 3 .LC546: .string "It\342\200\231s a red stapler." .align 3 .LC547: .string "It\342\200\231s a red staple-remover." .align 3 .LC548: .string "It\342\200\231s a revised business plan for a new startup, my.kitten.net." .align 3 .LC549: .string "It\342\200\231s a rhyton. Right on!" .align 3 .LC550: .string "It\342\200\231s a rim shot. Ba-da-boom!" .align 3 .LC551: .string "It\342\200\231s a roll of industrial-strength copper wire." .align 3 .LC552: .string "It\342\200\231s a rotating potato." .align 3 .LC553: .string "It\342\200\231s a rotten old shoe." .align 3 .LC554: .string "It\342\200\231s a rousing rendition of \342\200\234O Canada.\342\200\235" .align 3 .LC555: .string "It\342\200\231s a segmentation fault. Core dumped, by the way." .align 3 .LC556: .string "It\342\200\231s Asimov\342\200\231s Laws of Robotics. You feel a strange affinity for them." .align 3 .LC557: .string "It\342\200\231s a sleeping lion." .align 3 .LC558: .string "It\342\200\231s a small bouncy creature, but obviously not kitten." .align 3 .LC559: .string "It\342\200\231s a solitary vacuum tube." .align 3 .LC560: .string "It\342\200\231s a spade." .align 3 .LC561: .string "It\342\200\231s a squad of Keystone Kops." .align 3 .LC562: .string "It\342\200\231s a square." .align 3 .LC563: .string "It\342\200\231s a steaming bowl of homemade gnocci." .align 3 .LC564: .string "It\342\200\231s a stone, unturned." .align 3 .LC565: .string "It\342\200\231s a stupid mask, fashioned after a beagle." .align 3 .LC566: .string "It\342\200\231s a symbol. You see in it a model for all symbols everywhere." .align 3 .LC567: .string "It\342\200\231s a synthetic a priori truth! Immanuel would be so pleased!" .align 3 .LC568: .string "It\342\200\231s a tape of \342\200\23170s rock. All original hits! All original artists!" .align 3 .LC569: .string "It\342\200\231s a Texas Instruments TI-89 graphing calculator." .align 3 .LC570: .string "It\342\200\231s a tribute to fishnet stockings." .align 3 .LC571: .string "It\342\200\231s a typewriter, covered in dust." .align 3 .LC572: .string "It\342\200\231s a universal Turing machine constructed from LEGO blocks." .align 3 .LC573: .string "It\342\200\231s a U.S. president." .align 3 .LC574: .string "It\342\200\231s a wallet full of blank credit cards." .align 3 .LC575: .string "It\342\200\231s a week-old baloney sandwich." .align 3 .LC576: .string "It\342\200\231s a whirly thing of some sort." .align 3 .LC577: .string "It\342\200\231s a \342\200\234Wicked Tinkers\342\200\235 CD." .align 3 .LC578: .string "It\342\200\231s a zen simulation, trapped within an ASCII character." .align 3 .LC579: .string "It\342\200\231s Babe Flathead\342\200\231s favorite bat." .align 3 .LC580: .string "It\342\200\231s Bach\342\200\231s Mass in B-minor!" .align 3 .LC581: .string "It\342\200\231s Brian Kernigan." .align 3 .LC582: .string "It\342\200\231s Brian Kernighan." .align 3 .LC583: .string "It\342\200\231s \342\200\234Chicken Soup for the Kitten-seeking Soulless Robot.\342\200\235" .align 3 .LC584: .string "It\342\200\231s creepy and it\342\200\231s kooky, mysterious and spooky. It\342\200\231s also somewhat ooky." .align 3 .LC585: .string "It\342\200\231s cute like a kitten, but isn\342\200\231t a kitten." .align 3 .LC586: .string "It\342\200\231s Death." .align 3 .LC587: .string "It\342\200\231s Dennis Ritchie." .align 3 .LC588: .string "It seems to be a copy of \342\200\234A Tail of Two Kitties\342\200\235." .align 3 .LC589: .string "It\342\200\231s either a mirror, or another robot." .align 3 .LC590: .string "It\342\200\231s evidence." .align 3 .LC591: .string "It\342\200\231s \342\200\234Finding kitten\342\200\235, published by O\342\200\231Reilly and Associates." .align 3 .LC592: .string "It\342\200\231s Grundle, the Green Dragon." .align 3 .LC593: .string "It\342\200\231s Jesse James\342\200\231 severed hand and it\342\200\231s still moving." .align 3 .LC594: .string "It\342\200\231s Jesse James\342\200\231s severed hand and it\342\200\231s still moving." .align 3 .LC595: .string "It\342\200\231s just an object." .align 3 .LC596: .string "It\342\200\231s Kieran Hervold. Damn dyslexia!" .align 3 .LC597: .string "It\342\200\231s KITT, the talking car." .align 3 .LC598: .string "It\342\200\231s Lucy Ricardo. \342\200\234Aaaah, Ricky!\342\200\235, she says." .align 3 .LC599: .string "It\342\200\231s Mary Poppins!" .align 3 .LC600: .string "It\342\200\231s more money than you\342\200\231ll ever need." .align 3 .LC601: .string "It\342\200\231s nothing but a corrupted floppy. Coaster anyone?" .align 3 .LC602: .string "It\342\200\231s nothing but a G-thang, baby." .align 3 .LC603: .string "It\342\200\231s nothing in particular." .align 3 .LC604: .string "It\342\200\231s one of those carpet-covered things for cats to climb." .align 3 .LC605: .string "It\342\200\231s part of a complete breakfast." .align 3 .LC606: .string "It\342\200\231s Princess Leia, the yodel of life." .align 3 .LC607: .string "It\342\200\231s probably nothing." .align 3 .LC608: .string "It\342\200\231s Professor Feedlebom." .align 3 .LC609: .string "It\342\200\231s Rhindle, the Red Dragon." .align 3 .LC610: .string "It\342\200\231s Richard Nixon\342\200\231s nose!" .align 3 .LC611: .string "It\342\200\231s scenery for \342\200\234Waiting for Godot\342\200\235." .align 3 .LC612: .string "It\342\200\231s Schrodinger\342\200\231s non-kitten." .align 3 .LC613: .string "It\342\200\231s Sirhan-Sirhan, looking guilty." .align 3 .LC614: .string "It\342\200\231s skeuomorphism. Yay, skeuomorphism!" .align 3 .LC615: .string "It\342\200\231s some compromising photos of Babar the Elephant." .align 3 .LC616: .string "It\342\200\231s something fizzy." .align 3 .LC617: .string "It\342\200\231s the amazing self-referential thing that\342\200\231s not kitten." .align 3 .LC618: .string "It\342\200\231s the ASCII Floating Head of Seth David Schoen!" .align 3 .LC619: .string "It\342\200\231s the astounding meta-object." .align 3 .LC620: .string "It\342\200\231s the Bass-Matic \342\200\23176! Mmm, that\342\200\231s good bass!" .align 3 .LC621: .string "It\342\200\231s the <blink> tag!" .align 3 .LC622: .string "It\342\200\231s the Brass Nodes of the Universe." .align 3 .LC623: .string "It\342\200\231s the Capable Prune." .align 3 .LC624: .string "It\342\200\231s the classification of all finite simple groups." .align 3 .LC625: .string "It\342\200\231s the constellation Pisces." .align 3 .LC626: .string "It\342\200\231s the cork to someone\342\200\231s lunch." .align 3 .LC627: .string "It\342\200\231s the crusty exoskeleton of an arthropod!" .align 3 .LC628: .string "It\342\200\231s the Donation of Constantine!" .align 3 .LC629: .string "It\342\200\231s the embalmed corpse of Vladimir Lenin." .align 3 .LC630: .string "It\342\200\231s the Golden Banana of Discord!" .align 3 .LC631: .string "It\342\200\231s the handheld robotfindskitten game, by Tiger." .align 3 .LC632: .string "It\342\200\231s the horizon. Now THAT\342\200\231S weird." .align 3 .LC633: .string "It\342\200\231s the instruction manual for a previous version of this game." .align 3 .LC634: .string "It\342\200\231s the local draft board." .align 3 .LC635: .string "It\342\200\231s the Maltese Falcon." .align 3 .LC636: .string "It\342\200\231s the mark of the beast!" .align 3 .LC637: .string "It\342\200\231s the missing chapter to \342\200\234A Clockwork Orange\342\200\235." .align 3 .LC638: .string "It\342\200\231s the proverbial wet blanket." .align 3 .LC639: .string "It\342\200\231s the Queen of Hearts! \342\200\234Off with their heads!\342\200\235, she shouts." .align 3 .LC640: .string "It\342\200\231s the set of uninteresting natural numbers." .align 3 .LC641: .string "It\342\200\231s the shock of recognition." .align 3 .LC642: .string "It\342\200\231s the shortest distance between two points." .align 3 .LC643: .string "It\342\200\231s the Super Bass-O-Matic \342\200\23176! Mmm, that\342\200\231s good bass!" .align 3 .LC644: .string "It\342\200\231s the Tiki Room." .align 3 .LC645: .string "It\342\200\231s the triangle leg adjacent to an angle divided by the leg opposite it." .align 3 .LC646: .string "It\342\200\231s the whites of their eyes." .align 3 .LC647: .string "It\342\200\231s the Will Rogers Highway. Who was Will Rogers, anyway?" .align 3 .LC648: .string "It\342\200\231s the wrong number." .align 3 .LC649: .string "It\342\200\231s this message, nothing more." .align 3 .LC650: .string "It\342\200\231s TV\342\200\231s lovable wisecracking Crow! \342\200\234Bite me!\342\200\235, he says." .align 3 .LC651: .string "It\342\200\231s Uncle Doctor Hurkamur!" .align 3 .LC652: .string "It\342\200\231s \342\200\234War and Peace\342\200\235 (unabridged, very small print)." .align 3 .LC653: .string "It\342\200\231s wholesale, direct to you." .align 3 .LC654: .string "It\342\200\231s Yorgle, the Yellow Dragon." .align 3 .LC655: .string "Jacket fluff." .align 3 .LC656: .string "Judith Platt insults librarians." .align 3 .LC657: .string "Just a big brick wall." .align 3 .LC658: .string "Just a box of backscratchers." .align 3 .LC659: .string "Just a broken hard drive containg the archives of Nerth Pork." .align 3 .LC660: .string "Just a cage of white mice." .align 3 .LC661: .string "Just a moldy loaf of bread." .align 3 .LC662: .string "Just a monitor with the blue element burnt out." .align 3 .LC663: .string "Just an autographed copy of the Kama Sutra." .align 3 .LC664: .string "Just a pincushion." .align 3 .LC665: .string "Just some glop of some sort." .align 3 .LC666: .string "Just some old play by a Czech playwright, and you can\342\200\231t read Czech." .align 3 .LC667: .string "Just some rusted lug nuts and an ancient hub cap." .align 3 .LC668: .string "Just some sort of cat toy." .align 3 .LC669: .string "Just some spite." .align 3 .LC670: .string "Just some stuff." .align 3 .LC671: .string "Just some swamp gas." .align 3 .LC672: .string "Just the empty husk of a locust." .align 3 .LC673: .string "Just the usual gang of idiots." .align 3 .LC674: .string "Just Walter Mattheau and Jack Lemmon." .align 3 .LC675: .string "Keep looking and you will find kitten eventually." .align 3 .LC676: .string "\342\200\234Kibo was here\342\200\235" .align 3 .LC677: .string "\342\200\234Kilroy was here\342\200\235" .align 3 .LC678: .string "Kitten is the letter \342\200\231Q\342\200\231. Oh, wait, maybe not." .align 3 .LC679: .string "Kitty kibble is scattered all about." .align 3 .LC680: .string "Leave that thing alone!" .align 3 .LC681: .string "\342\200\234Lend us a fiver \342\200\231til Thursday\342\200\235, pleas Andy Capp." .align 3 .LC682: .string "Lentil loaf." .align 3 .LC683: .string "Leonard Richardson is here, asking people to lick him." .align 3 .LC684: .string "Long lost needle nose pliers." .align 3 .LC685: .string "Look at that, it\342\200\231s the Crudmobile." .align 3 .LC686: .string "Look out! Exclamation points!" .align 3 .LC687: .string "Lysine, an essential amino acid. Well, maybe not for robots." .align 3 .LC688: .string "\342\200\234Mail Routing and the Domain System\342\200\235 by Craig Partridge." .align 3 .LC689: .string "Marvin is complaining about the pain in the diodes down his left side." .align 3 .LC690: .string "\342\200\234Meow meow meow meow...\342\200\235 How discouraging! It\342\200\231s only a recording." .align 3 .LC691: .string "Mere shells cannot contain these peanuts!" .align 3 .LC692: .string "More grist for the mill." .align 3 .LC693: .string "\342\200\234Move along! Nothing to see here!\342\200\235" .align 3 .LC694: .string "Mr. Hooper is here, surfing." .align 3 .LC695: .string "Mr. Kamikaze and Mr. DNA are here drinking tea." .align 3 .LC696: .string "Ne\342\200\231er but a potted plant." .align 3 .LC697: .string "Newton Minow is here, taking part in somebody else\342\200\231s pirate joke." .align 3 .LC698: .string "Nipples, dimples, knuckles, NICKLES, wrinkles, pimples!!" .align 3 .LC699: .string "No kitten here." .align 3 .LC700: .string "\342\200\234No!\342\200\235 says the bit." .align 3 .LC701: .string "Nothing but some scribbles in crayon." .align 3 .LC702: .string "Not kitten, just a packet of Kool-Aid(tm)." .align 3 .LC703: .string "Oh boy! Grub! Er, grubs." .align 3 .LC704: .string "ONE HUNDRED THOUSAND CARPET FIBERS!!!!!" .align 3 .LC705: .string "One liter of fuming nitric acid." .align 3 .LC706: .string "One of the few remaining discos." .align 3 .LC707: .string "One of those stupid \342\200\234Homes of the Stars\342\200\235 maps." .align 3 .LC708: .string "One person shouts \342\200\234What do we want?\342\200\235 The crowd answers \342\200\234Free Dmitry!\342\200\235" .align 3 .LC709: .string "\342\200\234On this spot in 1962, Henry Winkler was sick.\342\200\235" .align 3 .LC710: .string "Ooh, shiny!" .align 3 .LC711: .string "Paul Moyer\342\200\231s necktie." .align 3 .LC712: .string "Pieces of broken clay pigeons are scattered all about." .align 3 .LC713: .string "Plenty of nothing." .align 3 .LC714: .string "\342\200\234Plexar was here\342\200\235" .align 3 .LC715: .string "Preoccupation with finding kitten prevents you from investigating further." .align 3 .LC716: .string "Pumpkin pie spice." .align 3 .LC717: .string "Quidquid Latine dictum sit, kitten non est." .align 3 .LC718: .string "Rene Descarte is whistling a happy tune here." .align 3 .LC719: .string "\342\200\234Robot may not injure kitten, or, through inaction, ...\342\200\235" .align 3 .LC720: .string "Robot should not be touching that." .align 3 .LC721: .string "Roger Avery, persona un famoso de los Estados Unidos." .align 3 .LC722: .string "Run away! Run away!" .align 3 .LC723: .string "Seargent Duffy is here." .align 3 .LC724: .string "Seat cushion fluff." .align 3 .LC725: .string "Seven 1/4\342\200\235 screws and a piece of plastic." .align 3 .LC726: .string "Several hackles are here and they appear to be up." .align 3 .LC727: .string "Several meters of cat5 cable." .align 3 .LC728: .string "Several meters of Cat 5 cable." .align 3 .LC729: .string "Sigmund Freud is here asking about your mother." .align 3 .LC730: .string "Sigmund Freud is here, asking about your mother." .align 3 .LC731: .string "Slack!" .align 3 .LC732: .string "Snacky things." .align 3 .LC733: .string "Snarf?" .align 3 .LC734: .string "Some coconut crabs are milling about here." .align 3 .LC735: .string "Someone dropped a cheap ballpoint pen here." .align 3 .LC736: .string "Someone dropped an expensive fountain pen here." .align 3 .LC737: .string "Someone has written \342\200\234ad aerarium\342\200\235 on the ground here." .align 3 .LC738: .string "Someone is talking to Ralph on the big white phone here." .align 3 .LC739: .string "Someone\342\200\231s identity disk lies here." .align 3 .LC740: .string "Some sort of electronic handheld game from the 1970s." .align 3 .LC741: .string "Something borrowed, something blue." .align 3 .LC742: .string "Something is written here in the dust. You read: \342\200\234rJbotf ndQkttten\342\200\235." .align 3 .LC743: .string "So, THAT\342\200\231s what an invisible barrier looks like!" .align 3 .LC744: .string "Spoon!!!" .align 3 .LC745: .string "Stimutacs." .align 3 .LC746: .string "\342\200\234Sure hope we get some rain soon,\342\200\235 says Farmer Joe." .align 3 .LC747: .string "Sutro Tower is visible at some distance through the fog." .align 3 .LC748: .string "\342\200\234Take a penny, leave a penny.\342\200\235 You do both." .align 3 .LC749: .string "Talcum powder." .align 3 .LC750: .string "Tea and/or crumpets." .align 3 .LC751: .string "Ten yards of avocado-green shag carpet." .align 3 .LC752: .string "Thar\342\200\231s Mobius Dick, the convoluted whale. Arrr!" .align 3 .LC753: .string "That\342\200\231s just a charred human corpse." .align 3 .LC754: .string "That\342\200\231s just an old tin can." .align 3 .LC755: .string "The boom box cranks out an old Ethel Merman tune." .align 3 .LC756: .string "The Digital Millennium Copyright Act of 1998." .align 3 .LC757: .string "The dirty old tramp bemoans the loss of his harmonica." .align 3 .LC758: .string "The Inform Designer\342\200\231s Manual (4th edition)" .align 3 .LC759: .string "The intermission from a 1930s silent movie." .align 3 .LC760: .string "The ionosphere seems charged with meaning." .align 3 .LC761: .string "The killer bee stings!" .align 3 .LC762: .string "The letters O and R." .align 3 .LC763: .string "The man page for the UNIX \342\200\231find\342\200\231 command." .align 3 .LC764: .string "The Monolith of Spam towers above you." .align 3 .LC765: .string "The non-kitten item bites!" .align 3 .LC766: .string "The non-kitten item like this but with \342\200\234false\342\200\235 and \342\200\234true\342\200\235 switched is true." .align 3 .LC767: .string "The non-kitten item like this but with \342\200\234true\342\200\235 and \342\200\234false\342\200\235 switched is false." .align 3 .LC768: .string "The object pushes back at you." .align 3 .LC769: .string "The pants that Curly died in." .align 3 .LC770: .string "There are many coins here!" .align 3 .LC771: .string "There is an opulent throne here." .align 3 .LC772: .string "There is a small mailbox here." .align 3 .LC773: .string "\342\200\234There is no kitten!\342\200\235 cackles the old crone. You are shocked by her blasphemy." .align 3 .LC774: .string "There is no tea here." .align 3 .LC775: .string "There\342\200\231s nothing here; it\342\200\231s just an optical illusion." .align 3 .LC776: .string "There\342\200\231s something behind you." .align 3 .LC777: .string "The rothe hits! The rothe hits!" .align 3 .LC778: .string "The rusted gates of an abandoned bemusement park." .align 3 .LC779: .string "The score for a Czech composer\342\200\231s \342\200\234Kitten-Finding Symphony in C\342\200\235." .align 3 .LC780: .string "These aren\342\200\231t ordinary beans. They\342\200\231re magic beans!" .align 3 .LC781: .string "The spectre of Sherlock Holmes wills you onwards." .align 3 .LC782: .string "The swampy ground around you seems to stink with disease." .align 3 .LC783: .string "\342\200\234The Theory and Practice of Oligarchical Collectivism\342\200\235 by Emmanuel Goldstein." .align 3 .LC784: .string "The United States Court of Appeals for the Federal Circuit." .align 3 .LC785: .string "The World\342\200\231s Biggest Matzoh Ball!" .align 3 .LC786: .string "...thingy???" .align 3 .LC787: .string "This appears to be a rather large stack of trashy romance novels." .align 3 .LC788: .string "This appears to be a statue of Perseus." .align 3 .LC789: .string "This balogna has a first name, it\342\200\231s R-A-N-C-I-D." .align 3 .LC790: .string "This bouncy castle is filled with helium." .align 3 .LC791: .string "This corroded robot is clutching a mitten." .align 3 .LC792: .string "This drawer is full of dried out rubber stoppers." .align 3 .LC793: .string "This grain elevator towers high above you." .align 3 .LC794: .string "This invisible box contains a pantomime horse." .align 3 .LC795: .string "This is a disaster area." .align 3 .LC796: .string "This is a Lagrange point. Don\342\200\231t come too close now." .align 3 .LC797: .string "This is a large brown bear. Oddly enough, it\342\200\231s currently peeing in the woods." .align 3 .LC798: .string "This is an anagram." .align 3 .LC799: .string "This is another fine mess you\342\200\231ve gotten us into, Stanley." .align 3 .LC800: .string "This is a porcelain kitten-counter. 0, 0, 0, 0, 0..." .align 3 .LC801: .string "This is a remote control. Being a robot, you keep a wide berth." .align 3 .LC802: .string "This is a tasty-looking banana creme pie." .align 3 .LC803: .string "This is a television. On screen you see a robot strangely similar to yourself." .align 3 .LC804: .string "This is a Zilog Z80 processor." .align 3 .LC805: .string "This isn\342\200\231t the item you\342\200\231re looking for." .align 3 .LC806: .string "This is only a test of the Emergency Broadcast System." .align 3 .LC807: .string "This is the chapter called \342\200\234A Map of the Cat?\342\200\235 from Feynman\342\200\231s autobiography." .align 3 .LC808: .string "This is the forest primeval." .align 3 .LC809: .string "This is the tenth key you\342\200\231ve found so far." .align 3 .LC810: .string "This is the world-famous Chain of Jockstraps." .align 3 .LC811: .string "This jar of pickles expired in 1957." .align 3 .LC812: .string "This jukebox has nothing but Cliff Richards albums in it." .align 3 .LC813: .string "This kind of looks like kitten, but it\342\200\231s not." .align 3 .LC814: .string "This looks like an umbrella turned inside out." .align 3 .LC815: .string "This looks like a skateboarding arcade video game." .align 3 .LC816: .string "This looks like Bradley\342\200\231s \342\200\234Appearance and Reality\342\200\235, but it\342\200\231s really not." .align 3 .LC817: .string "This looks remarkably like last Tuesday." .align 3 .LC818: .string "This map is not the territory." .align 3 .LC819: .string "This might be the fountain of youth, but you\342\200\231ll never know." .align 3 .LC820: .string "This non-kitten item no verb." .align 3 .LC821: .string "This non-kitten item was present in a previous version, but has been removed." .align 3 .LC822: .string "This nonkitten may contain peanuts." .align 3 .LC823: .string "This object here appears to be Louis Farrakhan\342\200\231s bow tie." .align 3 .LC824: .string "This object is like an analogy." .align 3 .LC825: .string "This particular monstrosity appears to be ENIAC." .align 3 .LC826: .string "This peg-leg is stuck in a knothole!" .align 3 .LC827: .string "This place is called Antarctica. There is no kitten here." .align 3 .LC828: .string "This seems to be junk mail addressed to the finder of the Eye of Larn." .align 3 .LC829: .string "This smiling family is happy because they eat LARD." .align 3 .LC830: .string "This subwoofer was blown out in 1974." .align 3 .LC831: .string "This thing appears to be an ancient Roman breastplate." .align 3 .LC832: .string "This tiny barbecue is spotlessly clean." .align 3 .LC833: .string "This toaster strudel is riddled with bullet holes!" .align 3 .LC834: .string "This tomography is like, hella axial, man!" .align 3 .LC835: .string "This TRS-80 III is eerily silent." .align 3 .LC836: .string "This vending machine dispenses only coffee grounds." .align 3 .LC837: .string "This was no boating accident!" .align 3 .LC838: .string "Three half-pennies and a wooden nickel." .align 3 .LC839: .string "Three lizards lie here, playing Rock-Paper-Scissors." .align 3 .LC840: .string "Three mismatched gloves." .align 3 .LC841: .string "Thunder, Thunder, Thunder, Thunder Cats!!!" .align 3 .LC842: .string "\342\200\234Topsoil\342\200\231s all gone, ma,\342\200\235 weeps Lil\342\200\231 Greg." .align 3 .LC843: .string "TV says donuts are high in fat." .align 3 .LC844: .string "\342\200\231Twas brillig in the slivey-toves..." .align 3 .LC845: .string "Tweeting birds." .align 3 .LC846: .string "Two crepes, two crepes in a box." .align 3 .LC847: .string "Two magnets cling to each other in the darkness." .align 3 .LC848: .string "Two vast and trunkless legs of stone." .align 3 .LC849: .string "Uh-oh..." .align 3 .LC850: .string "Vitriol." .align 3 .LC851: .string "Vladimir Lenin\342\200\231s casket rests here." .align 3 .LC852: .string "Wait! This isn\342\200\231t the poker chip! You\342\200\231ve been tricked! DAMN YOU, MENDEZ!" .align 3 .LC853: .string "\342\200\234We interrupt this Zen Simulation...\342\200\235" .align 3 .LC854: .string "Welcome back, robot." .align 3 .LC855: .string "Werner\342\200\231s \342\200\234Pocket Field Guide to Things That Are Not Kitten\342\200\235." .align 3 .LC856: .string "We wish you a merry kitten, and a happy New Year!" .align 3 .LC857: .string "Whatever it is, it\342\200\231s circular. Oh, it\342\200\231s a circle!" .align 3 .LC858: .string "What in blazes is this?" .align 3 .LC859: .string "What\342\200\231s that blue thing doing here?" .align 3 .LC860: .string "Why are you bothering that old man instead of finding Kitten?" .align 3 .LC861: .string "Why are you touching this when you should be finding kitten?" .align 3 .LC862: .string "YEEEEEEEEEEEHAAAAAAAA!!!!!" .align 3 .LC863: .string "\342\200\234Yes!\342\200\235 says the bit." .align 3 .LC864: .string "You almost mistook this meatloaf for Kitten." .align 3 .LC865: .string "You can\342\200\231t touch that." .align 3 .LC866: .string "You discover the entrance to a forgotten mine." .align 3 .LC867: .string "You disturb a murder of crows." .align 3 .LC868: .string "You encounter a cheap knockoff of this game: \342\200\234androidfindspuppy.\342\200\235" .align 3 .LC869: .string "You feel strangely unfulfilled." .align 3 .LC870: .string "You find a bright shiny penny." .align 3 .LC871: .string "You find a fraud scheme in which loans are used as security for other loans." .align 3 .LC872: .string "You find an Atari 2600 game cartridge with no label." .align 3 .LC873: .string "You find a random assortment of dots and dashes." .align 3 .LC874: .string "You found Budgie! Too bad this isn\342\200\231t \342\200\234robotfindsbudgie\342\200\235." .align 3 .LC875: .string "You found Chinchilla! Too bad this isn\342\200\231t \342\200\234robotfindschinchilla\342\200\235." .align 3 .LC876: .string "You found kitten! No, just kidding." .align 3 .LC877: .string "You found netkit! Way to go, robot!" .align 3 .LC878: .string "You found nettik, but that\342\200\231s backwards." .align 3 .LC879: .string "You found Parakeet! Too bad this isn\342\200\231t \342\200\234robotfindsparakeet\342\200\235." .align 3 .LC880: .string "You found Puppy! Too bad this isn\342\200\231t \342\200\234robotfindspuppy\342\200\235." .align 3 .LC881: .string "You found the marble in the oatmeal!" .align 3 .LC882: .string "You have found some zinc, but you must not stop here, for you must find kitten." .align 3 .LC883: .string "You have new mail in /var/spool/robot" .align 3 .LC884: .string "You hit the invisible arch-lich. The invisible arch-lich hits!" .align 3 .LC885: .string "You hit the non-kitten item. The non-kitten item fails to yowl." .align 3 .LC886: .string "Your current score: 3." .align 3 .LC887: .string "You really don\342\200\231t want to know what this is." .align 3 .LC888: .string "Your existential dread." .align 3 .LC889: .string "Your pal Floyd is here and wants to play Hucka-Bucka-Beanstalk." .align 3 .LC890: .string "Your permanent record." .align 3 .LC891: .string "Your State Farm Insurance(tm) representative!" .align 3 .LC892: .string "You search this barrel thoroughly, but find only dried mango slices." .align 3 .LC893: .string "You see a rhinestone-studded dog collar, but no dog." .align 3 .LC894: .string "You see a snowflake here, melting slowly." .align 3 .LC895: .string "You stumble upon a digital signature." .align 3 .LC896: .string "You stumble upon Bill Gates\342\200\231 stand-up act." .align 3 .LC897: .string "You suddenly yearn for your distant homeland." .align 3 .LC898: .string "You\342\200\231ve discovered an enormous pile of socks." .align 3 .LC899: .string "You\342\200\231ve found a black screen filled with colorful ASCII characters." .align 3 .LC900: .string "You\342\200\231ve found a precautionary measure." .align 3 .LC901: .string "You\342\200\231ve found a speed bump." .align 3 .LC902: .string "You\342\200\231ve found Harvey, the Wonder Hamster!" .align 3 .LC903: .string "You\342\200\231ve found the decoy kitten!" .align 3 .LC904: .string "You\342\200\231ve found the fabled America Online disk graveyard!" .align 3 .LC905: .string "You\342\200\231ve found the fish! Not that it does you much good in this game." .align 3 .LC906: .string "You\342\200\231ve found the Gingerbread Man!" .align 3 .LC907: .string "You\342\200\231ve found the snows of yesteryear! So that\342\200\231s where they all went to." .align 3 .LC908: .string "You\342\200\231ve found the Stinky Cheese Man!" .align 3 .LC909: .string "You won\342\200\231t believe what this is." .align 3 .LC910: .string "This is a delicious 17-year-old scotch. Islay?" .align 3 .LC911: .string "A Fender Stratocaster. The classics never die, eh?" .align 3 .LC912: .string "A Fender Telecaster, elegant in its simplicity." .align 3 .LC913: .string "Vegan sausage? Blocking my path to kitten? It\342\200\231s more likely than you think." .align 3 .LC914: .string "Mmm, hipster-approved craft beer." .align 3 .LC915: .string "This might be ice cream, but one can\342\200\231t judge too quickly." .align 3 .LC916: .string "You find yet another Android security vulnerability. Sigh." .align 3 .LC917: .string "A pair of high-heeled wedges by Vivienne Westwood." .align 3 .LC918: .string "This appears to be a boot, or a bootloader. Not sure." .align 3 .LC919: .string "A slice of pizza, with toppings of your choice." .align 3 .LC920: .string "This could be anything." .align 3 .LC921: .string "Ahh, heh, you\342\200\231ve found an incorrect compiler optimization again." .align 3 .LC922: .string "Spare robot parts. Keep them just in case." .align 3 .LC923: .string "A Stradivarius. You squeak out a Bach partita. Not too bad!" .align 3 .LC924: .string "A pair of jeans with the Gabriel Hounds sign. Smells like indigo." .align 3 .LC925: .string "A yard of chambray." .align 3 .LC926: .string "A not-too-dry Riesling." .align 3 .LC927: .string "Yet another bricked Internet Of Things thing." .align 3 .LC928: .string "This is either the Shroud Of Turin, or a pumpkin. Not sure." .align 3 .LC929: .string "A meditation mat. You extend your feelings, searching for kitten." .align 3 .LC930: .string "Honestly, nobody knows what this is." .align 3 .LC931: .string "You have found... DAS DING!" .align 3 .LC932: .string "This is Kitten\342\200\231s favorite pillow." .align 3 .LC933: .string "How fortuitous! A B\303\266sendorfer baby grand piano." .align 3 .LC934: .string "The shards of Narsil lie here." .align 3 .LC935: .string "You bump into your own self-doubt. Let it pass. Kitten is near." .align 3 .LC936: .string "Saudade." .align 3 .LC937: .string "This seems like unconditional love. Sniff, sniff. ... Yep." .align 3 .LC938: .string "A book of Captain Picard\342\200\231s management tips." .align 3 .LC939: .string "It\342\200\231s unclear why this is here." .align 3 .LC940: .string "If you don\342\200\231t know what this is, well, I\342\200\231m not going to tell you." .align 3 .LC941: .string "Normally, this would be kitten. But today it\342\200\231s not." .align 3 .LC942: .string "A #brand wants to engage with you. You steer clear." .align 3 .LC943: .string "A copy the GNU General Public License, v2, or a later version of your choice." .align 3 .LC944: .string "A stack of classic Billie Holiday 78s. Wonderful!" .align 3 .LC945: .string "Conlon Nancarrow\342\200\231s last piano roll." .align 3 .LC946: .string "The score for John Cage\342\200\231s piece, 4\342\200\26233\342\200\263." .align 3 .LC947: .string "It\342\200\231s Lil BUB! A great cat, but not the kitten you seek." .align 3 .LC948: .string "A pair of classic Doc Martens." .align 3 .LC949: .string "A nearly-new Iron Maiden tour t-shirt. You save it." .align 3 .LC950: .string "This is a wistful smile." .align 3 .LC951: .string "...bath salts, or \342\200\230bath salts\342\200\231...?" .align 3 .LC952: .string "This appears to be the truth. (You\342\200\231re pretty sure you can handle it.)" .align 3 .LC953: .string "You encounter an Egg McMuffin." .align 3 .LC954: .string "A suspended 9th chord. Love that sound." .align 3 .LC955: .string "This is the sine qua non of non-kitten items." .align 3 .LC956: .string "Etched in stone, the words \342\200\234TEXAS IRRITANDVM EST\342\200\235." .align 3 .LC957: .string "You find some NOS germanium capacitors. Now you can repair your fuzzing unit!" .align 3 .LC958: .string "A scratched scratching post. Kitten has been here." .align 3 .LC959: .string "Kitten spoor." .align 3 .LC960: .string "It\342\200\231s you!" .align 3 .LC961: .string "Hey, there, lil buddy." .align 3 .LC962: .string "Robots don\342\200\231t drink root beer, but if they did, you\342\200\231d drink this one." .align 3 .LC963: .string "This appears to be a 21-sided die. The AD&D rules get weirder every year..." .align 3 .LC964: .string "A freshly-reinvented wheel that suddenly disappears." .align 3 .LC965: .string "Nothing here but the wind." .section .data.rel.local,"aw" .align 3 .type Messages, %object .size Messages, 7736 Messages: .xword .LC0 .xword .LC0 .xword .LC1 .xword .LC2 .xword .LC3 .xword .LC4 .xword .LC5 .xword .LC6 .xword .LC7 .xword .LC8 .xword .LC9 .xword .LC10 .xword .LC11 .xword .LC12 .xword .LC13 .xword .LC14 .xword .LC15 .xword .LC16 .xword .LC17 .xword .LC18 .xword .LC19 .xword .LC20 .xword .LC21 .xword .LC22 .xword .LC23 .xword .LC24 .xword .LC25 .xword .LC26 .xword .LC27 .xword .LC28 .xword .LC29 .xword .LC30 .xword .LC31 .xword .LC32 .xword .LC33 .xword .LC34 .xword .LC35 .xword .LC36 .xword .LC37 .xword .LC38 .xword .LC39 .xword .LC40 .xword .LC41 .xword .LC42 .xword .LC43 .xword .LC44 .xword .LC45 .xword .LC46 .xword .LC47 .xword .LC48 .xword .LC49 .xword .LC50 .xword .LC51 .xword .LC52 .xword .LC53 .xword .LC54 .xword .LC55 .xword .LC56 .xword .LC57 .xword .LC58 .xword .LC59 .xword .LC60 .xword .LC61 .xword .LC62 .xword .LC63 .xword .LC64 .xword .LC65 .xword .LC66 .xword .LC67 .xword .LC68 .xword .LC69 .xword .LC70 .xword .LC71 .xword .LC72 .xword .LC73 .xword .LC74 .xword .LC75 .xword .LC76 .xword .LC77 .xword .LC78 .xword .LC79 .xword .LC80 .xword .LC81 .xword .LC82 .xword .LC83 .xword .LC84 .xword .LC85 .xword .LC86 .xword .LC87 .xword .LC88 .xword .LC89 .xword .LC90 .xword .LC91 .xword .LC92 .xword .LC93 .xword .LC94 .xword .LC95 .xword .LC96 .xword .LC97 .xword .LC98 .xword .LC99 .xword .LC100 .xword .LC101 .xword .LC102 .xword .LC103 .xword .LC104 .xword .LC105 .xword .LC106 .xword .LC107 .xword .LC108 .xword .LC109 .xword .LC110 .xword .LC111 .xword .LC112 .xword .LC113 .xword .LC114 .xword .LC115 .xword .LC116 .xword .LC117 .xword .LC118 .xword .LC119 .xword .LC120 .xword .LC121 .xword .LC122 .xword .LC123 .xword .LC124 .xword .LC125 .xword .LC126 .xword .LC127 .xword .LC128 .xword .LC129 .xword .LC130 .xword .LC131 .xword .LC132 .xword .LC133 .xword .LC134 .xword .LC135 .xword .LC136 .xword .LC137 .xword .LC138 .xword .LC139 .xword .LC140 .xword .LC141 .xword .LC142 .xword .LC143 .xword .LC144 .xword .LC145 .xword .LC146 .xword .LC147 .xword .LC148 .xword .LC149 .xword .LC150 .xword .LC151 .xword .LC152 .xword .LC153 .xword .LC154 .xword .LC155 .xword .LC156 .xword .LC157 .xword .LC158 .xword .LC159 .xword .LC160 .xword .LC161 .xword .LC162 .xword .LC163 .xword .LC164 .xword .LC165 .xword .LC166 .xword .LC167 .xword .LC168 .xword .LC169 .xword .LC170 .xword .LC171 .xword .LC172 .xword .LC173 .xword .LC174 .xword .LC175 .xword .LC176 .xword .LC177 .xword .LC178 .xword .LC179 .xword .LC180 .xword .LC181 .xword .LC182 .xword .LC183 .xword .LC184 .xword .LC185 .xword .LC186 .xword .LC187 .xword .LC188 .xword .LC189 .xword .LC190 .xword .LC191 .xword .LC192 .xword .LC193 .xword .LC194 .xword .LC195 .xword .LC196 .xword .LC197 .xword .LC198 .xword .LC199 .xword .LC200 .xword .LC201 .xword .LC202 .xword .LC203 .xword .LC204 .xword .LC205 .xword .LC206 .xword .LC207 .xword .LC208 .xword .LC209 .xword .LC210 .xword .LC211 .xword .LC212 .xword .LC213 .xword .LC214 .xword .LC215 .xword .LC216 .xword .LC217 .xword .LC218 .xword .LC219 .xword .LC220 .xword .LC221 .xword .LC222 .xword .LC223 .xword .LC224 .xword .LC225 .xword .LC226 .xword .LC227 .xword .LC228 .xword .LC229 .xword .LC230 .xword .LC231 .xword .LC232 .xword .LC233 .xword .LC234 .xword .LC235 .xword .LC236 .xword .LC237 .xword .LC238 .xword .LC239 .xword .LC240 .xword .LC241 .xword .LC242 .xword .LC243 .xword .LC244 .xword .LC245 .xword .LC246 .xword .LC247 .xword .LC248 .xword .LC249 .xword .LC250 .xword .LC251 .xword .LC252 .xword .LC253 .xword .LC254 .xword .LC255 .xword .LC256 .xword .LC257 .xword .LC258 .xword .LC259 .xword .LC260 .xword .LC261 .xword .LC262 .xword .LC263 .xword .LC264 .xword .LC265 .xword .LC266 .xword .LC267 .xword .LC268 .xword .LC269 .xword .LC270 .xword .LC271 .xword .LC272 .xword .LC273 .xword .LC274 .xword .LC275 .xword .LC276 .xword .LC277 .xword .LC278 .xword .LC279 .xword .LC280 .xword .LC281 .xword .LC282 .xword .LC283 .xword .LC284 .xword .LC285 .xword .LC286 .xword .LC287 .xword .LC288 .xword .LC289 .xword .LC290 .xword .LC291 .xword .LC292 .xword .LC293 .xword .LC294 .xword .LC295 .xword .LC296 .xword .LC297 .xword .LC298 .xword .LC299 .xword .LC300 .xword .LC301 .xword .LC302 .xword .LC303 .xword .LC304 .xword .LC305 .xword .LC306 .xword .LC307 .xword .LC308 .xword .LC309 .xword .LC310 .xword .LC311 .xword .LC312 .xword .LC313 .xword .LC314 .xword .LC315 .xword .LC316 .xword .LC317 .xword .LC318 .xword .LC319 .xword .LC320 .xword .LC321 .xword .LC322 .xword .LC323 .xword .LC324 .xword .LC325 .xword .LC326 .xword .LC327 .xword .LC328 .xword .LC329 .xword .LC330 .xword .LC331 .xword .LC332 .xword .LC333 .xword .LC334 .xword .LC335 .xword .LC336 .xword .LC337 .xword .LC338 .xword .LC339 .xword .LC340 .xword .LC341 .xword .LC342 .xword .LC343 .xword .LC344 .xword .LC345 .xword .LC346 .xword .LC347 .xword .LC348 .xword .LC349 .xword .LC350 .xword .LC351 .xword .LC352 .xword .LC353 .xword .LC354 .xword .LC355 .xword .LC356 .xword .LC357 .xword .LC358 .xword .LC359 .xword .LC360 .xword .LC361 .xword .LC362 .xword .LC363 .xword .LC364 .xword .LC365 .xword .LC366 .xword .LC367 .xword .LC368 .xword .LC369 .xword .LC370 .xword .LC371 .xword .LC372 .xword .LC373 .xword .LC374 .xword .LC375 .xword .LC376 .xword .LC377 .xword .LC378 .xword .LC379 .xword .LC380 .xword .LC381 .xword .LC382 .xword .LC383 .xword .LC384 .xword .LC385 .xword .LC386 .xword .LC387 .xword .LC388 .xword .LC389 .xword .LC390 .xword .LC391 .xword .LC392 .xword .LC393 .xword .LC394 .xword .LC395 .xword .LC396 .xword .LC397 .xword .LC398 .xword .LC399 .xword .LC400 .xword .LC401 .xword .LC402 .xword .LC403 .xword .LC404 .xword .LC405 .xword .LC406 .xword .LC407 .xword .LC408 .xword .LC409 .xword .LC410 .xword .LC411 .xword .LC412 .xword .LC413 .xword .LC414 .xword .LC415 .xword .LC416 .xword .LC417 .xword .LC418 .xword .LC419 .xword .LC420 .xword .LC421 .xword .LC422 .xword .LC423 .xword .LC424 .xword .LC425 .xword .LC426 .xword .LC427 .xword .LC428 .xword .LC429 .xword .LC430 .xword .LC431 .xword .LC432 .xword .LC433 .xword .LC434 .xword .LC435 .xword .LC436 .xword .LC437 .xword .LC438 .xword .LC439 .xword .LC440 .xword .LC441 .xword .LC442 .xword .LC443 .xword .LC444 .xword .LC445 .xword .LC446 .xword .LC447 .xword .LC448 .xword .LC449 .xword .LC450 .xword .LC451 .xword .LC452 .xword .LC453 .xword .LC454 .xword .LC455 .xword .LC456 .xword .LC457 .xword .LC458 .xword .LC459 .xword .LC460 .xword .LC461 .xword .LC462 .xword .LC463 .xword .LC464 .xword .LC465 .xword .LC466 .xword .LC467 .xword .LC468 .xword .LC469 .xword .LC470 .xword .LC471 .xword .LC472 .xword .LC473 .xword .LC474 .xword .LC475 .xword .LC476 .xword .LC477 .xword .LC478 .xword .LC479 .xword .LC480 .xword .LC481 .xword .LC482 .xword .LC483 .xword .LC484 .xword .LC485 .xword .LC486 .xword .LC487 .xword .LC488 .xword .LC489 .xword .LC490 .xword .LC491 .xword .LC492 .xword .LC493 .xword .LC494 .xword .LC495 .xword .LC496 .xword .LC497 .xword .LC498 .xword .LC499 .xword .LC500 .xword .LC501 .xword .LC502 .xword .LC503 .xword .LC504 .xword .LC505 .xword .LC506 .xword .LC507 .xword .LC508 .xword .LC509 .xword .LC510 .xword .LC511 .xword .LC512 .xword .LC513 .xword .LC514 .xword .LC515 .xword .LC516 .xword .LC517 .xword .LC518 .xword .LC519 .xword .LC520 .xword .LC521 .xword .LC522 .xword .LC523 .xword .LC524 .xword .LC525 .xword .LC526 .xword .LC527 .xword .LC528 .xword .LC529 .xword .LC530 .xword .LC531 .xword .LC532 .xword .LC533 .xword .LC534 .xword .LC535 .xword .LC536 .xword .LC537 .xword .LC538 .xword .LC539 .xword .LC540 .xword .LC541 .xword .LC542 .xword .LC543 .xword .LC544 .xword .LC545 .xword .LC546 .xword .LC547 .xword .LC548 .xword .LC549 .xword .LC550 .xword .LC551 .xword .LC552 .xword .LC553 .xword .LC554 .xword .LC555 .xword .LC556 .xword .LC557 .xword .LC558 .xword .LC559 .xword .LC560 .xword .LC561 .xword .LC562 .xword .LC563 .xword .LC564 .xword .LC565 .xword .LC566 .xword .LC567 .xword .LC568 .xword .LC569 .xword .LC570 .xword .LC571 .xword .LC572 .xword .LC573 .xword .LC574 .xword .LC575 .xword .LC576 .xword .LC577 .xword .LC578 .xword .LC579 .xword .LC580 .xword .LC581 .xword .LC582 .xword .LC583 .xword .LC584 .xword .LC585 .xword .LC586 .xword .LC587 .xword .LC588 .xword .LC589 .xword .LC590 .xword .LC591 .xword .LC592 .xword .LC593 .xword .LC594 .xword .LC595 .xword .LC596 .xword .LC597 .xword .LC598 .xword .LC599 .xword .LC600 .xword .LC601 .xword .LC602 .xword .LC603 .xword .LC604 .xword .LC605 .xword .LC606 .xword .LC607 .xword .LC608 .xword .LC609 .xword .LC610 .xword .LC611 .xword .LC612 .xword .LC613 .xword .LC614 .xword .LC615 .xword .LC616 .xword .LC617 .xword .LC618 .xword .LC619 .xword .LC620 .xword .LC621 .xword .LC622 .xword .LC623 .xword .LC624 .xword .LC625 .xword .LC626 .xword .LC627 .xword .LC628 .xword .LC629 .xword .LC630 .xword .LC631 .xword .LC632 .xword .LC633 .xword .LC634 .xword .LC635 .xword .LC636 .xword .LC637 .xword .LC638 .xword .LC639 .xword .LC640 .xword .LC641 .xword .LC642 .xword .LC643 .xword .LC644 .xword .LC645 .xword .LC646 .xword .LC647 .xword .LC648 .xword .LC649 .xword .LC650 .xword .LC651 .xword .LC652 .xword .LC653 .xword .LC654 .xword .LC655 .xword .LC656 .xword .LC657 .xword .LC658 .xword .LC659 .xword .LC660 .xword .LC661 .xword .LC662 .xword .LC663 .xword .LC664 .xword .LC665 .xword .LC666 .xword .LC667 .xword .LC668 .xword .LC669 .xword .LC670 .xword .LC671 .xword .LC672 .xword .LC673 .xword .LC674 .xword .LC675 .xword .LC676 .xword .LC677 .xword .LC678 .xword .LC679 .xword .LC680 .xword .LC681 .xword .LC682 .xword .LC683 .xword .LC684 .xword .LC685 .xword .LC686 .xword .LC687 .xword .LC688 .xword .LC689 .xword .LC690 .xword .LC691 .xword .LC692 .xword .LC693 .xword .LC694 .xword .LC695 .xword .LC696 .xword .LC697 .xword .LC698 .xword .LC699 .xword .LC700 .xword .LC701 .xword .LC702 .xword .LC703 .xword .LC704 .xword .LC705 .xword .LC706 .xword .LC707 .xword .LC708 .xword .LC709 .xword .LC710 .xword .LC711 .xword .LC712 .xword .LC713 .xword .LC714 .xword .LC715 .xword .LC716 .xword .LC717 .xword .LC718 .xword .LC719 .xword .LC720 .xword .LC721 .xword .LC722 .xword .LC723 .xword .LC724 .xword .LC725 .xword .LC726 .xword .LC727 .xword .LC728 .xword .LC729 .xword .LC730 .xword .LC731 .xword .LC732 .xword .LC733 .xword .LC734 .xword .LC735 .xword .LC736 .xword .LC737 .xword .LC738 .xword .LC739 .xword .LC740 .xword .LC741 .xword .LC742 .xword .LC743 .xword .LC744 .xword .LC745 .xword .LC746 .xword .LC747 .xword .LC748 .xword .LC749 .xword .LC750 .xword .LC751 .xword .LC752 .xword .LC753 .xword .LC754 .xword .LC755 .xword .LC756 .xword .LC757 .xword .LC758 .xword .LC759 .xword .LC760 .xword .LC761 .xword .LC762 .xword .LC763 .xword .LC764 .xword .LC765 .xword .LC766 .xword .LC767 .xword .LC768 .xword .LC769 .xword .LC770 .xword .LC771 .xword .LC772 .xword .LC773 .xword .LC774 .xword .LC775 .xword .LC776 .xword .LC777 .xword .LC778 .xword .LC779 .xword .LC780 .xword .LC781 .xword .LC782 .xword .LC783 .xword .LC784 .xword .LC785 .xword .LC786 .xword .LC787 .xword .LC788 .xword .LC789 .xword .LC790 .xword .LC791 .xword .LC792 .xword .LC793 .xword .LC794 .xword .LC795 .xword .LC796 .xword .LC797 .xword .LC798 .xword .LC799 .xword .LC800 .xword .LC801 .xword .LC802 .xword .LC803 .xword .LC804 .xword .LC805 .xword .LC806 .xword .LC807 .xword .LC808 .xword .LC809 .xword .LC810 .xword .LC811 .xword .LC812 .xword .LC813 .xword .LC814 .xword .LC815 .xword .LC816 .xword .LC817 .xword .LC818 .xword .LC819 .xword .LC820 .xword .LC821 .xword .LC822 .xword .LC823 .xword .LC824 .xword .LC825 .xword .LC826 .xword .LC827 .xword .LC828 .xword .LC829 .xword .LC830 .xword .LC831 .xword .LC832 .xword .LC833 .xword .LC834 .xword .LC835 .xword .LC836 .xword .LC837 .xword .LC838 .xword .LC839 .xword .LC840 .xword .LC841 .xword .LC842 .xword .LC843 .xword .LC844 .xword .LC845 .xword .LC846 .xword .LC847 .xword .LC848 .xword .LC849 .xword .LC850 .xword .LC851 .xword .LC852 .xword .LC853 .xword .LC854 .xword .LC855 .xword .LC856 .xword .LC857 .xword .LC858 .xword .LC859 .xword .LC860 .xword .LC861 .xword .LC862 .xword .LC863 .xword .LC864 .xword .LC865 .xword .LC866 .xword .LC867 .xword .LC868 .xword .LC869 .xword .LC870 .xword .LC871 .xword .LC872 .xword .LC873 .xword .LC874 .xword .LC875 .xword .LC876 .xword .LC877 .xword .LC878 .xword .LC879 .xword .LC880 .xword .LC881 .xword .LC882 .xword .LC883 .xword .LC884 .xword .LC885 .xword .LC886 .xword .LC887 .xword .LC888 .xword .LC889 .xword .LC890 .xword .LC891 .xword .LC892 .xword .LC893 .xword .LC894 .xword .LC895 .xword .LC896 .xword .LC897 .xword .LC898 .xword .LC899 .xword .LC900 .xword .LC901 .xword .LC902 .xword .LC903 .xword .LC904 .xword .LC905 .xword .LC906 .xword .LC907 .xword .LC908 .xword .LC909 .xword .LC910 .xword .LC911 .xword .LC912 .xword .LC913 .xword .LC914 .xword .LC915 .xword .LC916 .xword .LC917 .xword .LC918 .xword .LC919 .xword .LC920 .xword .LC921 .xword .LC922 .xword .LC923 .xword .LC924 .xword .LC925 .xword .LC926 .xword .LC927 .xword .LC928 .xword .LC929 .xword .LC930 .xword .LC931 .xword .LC932 .xword .LC933 .xword .LC934 .xword .LC935 .xword .LC936 .xword .LC937 .xword .LC938 .xword .LC939 .xword .LC940 .xword .LC941 .xword .LC942 .xword .LC943 .xword .LC944 .xword .LC945 .xword .LC946 .xword .LC947 .xword .LC948 .xword .LC949 .xword .LC950 .xword .LC951 .xword .LC952 .xword .LC953 .xword .LC954 .xword .LC955 .xword .LC956 .xword .LC957 .xword .LC958 .xword .LC959 .xword .LC960 .xword .LC961 .xword .LC962 .xword .LC963 .xword .LC964 .xword .LC965 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global foo .type foo, %function foo: .LFB0: .cfi_startproc mov w0, 0 ret .cfi_endproc .LFE0: .size foo, .-foo .align 2 .global main .type main, %function main: .LFB1: .cfi_startproc stp x29, x30, [sp, -16]! .cfi_def_cfa_offset 16 .cfi_offset 29, -16 .cfi_offset 30, -8 mov x29, sp bl foo mov w0, 5 bl sleep bl foo mov w0, 0 ldp x29, x30, [sp], 16 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global nailgunsocket .bss .align 2 .type nailgunsocket, %object .size nailgunsocket, 4 nailgunsocket: .zero 4 .global buf .align 3 .type buf, %object .size buf, 2048 buf: .zero 2048 .global readyToSend .align 2 .type readyToSend, %object .size readyToSend, 4 readyToSend: .zero 4 .global sendtime .align 3 .type sendtime, %object .size sendtime, 16 sendtime: .zero 16 .text .align 2 .global cleanUpAndExit .type cleanUpAndExit, %function cleanUpAndExit: .LFB6: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str w0, [sp, 28] adrp x0, nailgunsocket add x0, x0, :lo12:nailgunsocket ldr w0, [x0] bl close ldr w0, [sp, 28] bl exit .cfi_endproc .LFE6: .size cleanUpAndExit, .-cleanUpAndExit .align 2 .global handleSocketClose .type handleSocketClose, %function handleSocketClose: .LFB7: .cfi_startproc stp x29, x30, [sp, -16]! .cfi_def_cfa_offset 16 .cfi_offset 29, -16 .cfi_offset 30, -8 mov x29, sp mov w0, 227 bl cleanUpAndExit nop ldp x29, x30, [sp], 16 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size handleSocketClose, .-handleSocketClose .align 2 .global sendAll .type sendAll, %function sendAll: .LFB8: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] str w2, [sp, 24] str wzr, [sp, 36] ldr w0, [sp, 24] str w0, [sp, 40] str wzr, [sp, 44] b .L4 .L7: ldr w4, [sp, 28] ldrsw x0, [sp, 36] ldr x1, [sp, 16] add x0, x1, x0 ldrsw x1, [sp, 40] mov w3, 16384 mov x2, x1 mov x1, x0 mov w0, w4 bl send str w0, [sp, 44] ldr w0, [sp, 44] cmn w0, #1 beq .L11 ldr w1, [sp, 36] ldr w0, [sp, 44] add w0, w1, w0 str w0, [sp, 36] ldr w1, [sp, 40] ldr w0, [sp, 44] sub w0, w1, w0 str w0, [sp, 40] .L4: ldr w1, [sp, 36] ldr w0, [sp, 24] cmp w1, w0 blt .L7 b .L6 .L11: nop .L6: ldr w0, [sp, 44] cmn w0, #1 beq .L8 ldr w0, [sp, 36] b .L10 .L8: mov w0, 0 .L10: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size sendAll, .-sendAll .section .rodata .align 3 .LC0: .string "send" .text .align 2 .global sendChunk .type sendChunk, %function sendChunk: .LFB9: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str w0, [sp, 28] strb w1, [sp, 27] str x2, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 56] mov x1, 0 ldr w0, [sp, 28] lsr w0, w0, 24 and w0, w0, 255 strb w0, [sp, 48] ldr w0, [sp, 28] lsr w0, w0, 16 and w0, w0, 255 strb w0, [sp, 49] ldr w0, [sp, 28] lsr w0, w0, 8 and w0, w0, 255 strb w0, [sp, 50] ldr w0, [sp, 28] and w0, w0, 255 strb w0, [sp, 51] ldrb w0, [sp, 27] strb w0, [sp, 52] mov x1, 0 adrp x0, sendtime add x0, x0, :lo12:sendtime bl gettimeofday adrp x0, nailgunsocket add x0, x0, :lo12:nailgunsocket ldr w0, [x0] mov w3, w0 add x0, sp, 48 mov w2, 5 mov x1, x0 mov w0, w3 bl sendAll str w0, [sp, 44] ldr w0, [sp, 44] cmp w0, 0 beq .L13 ldr w0, [sp, 28] cmp w0, 0 beq .L13 adrp x0, nailgunsocket add x0, x0, :lo12:nailgunsocket ldr w0, [x0] mov w3, w0 ldr w0, [sp, 28] mov w2, w0 ldr x1, [sp, 16] mov w0, w3 bl sendAll str w0, [sp, 44] nop b .L17 .L13: ldr w0, [sp, 44] cmp w0, 0 bne .L17 ldrb w0, [sp, 27] cmp w0, 72 bne .L15 bl __errno_location ldr w0, [x0] cmp w0, 32 beq .L17 bl __errno_location ldr w0, [x0] cmp w0, 104 beq .L17 .L15: adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl perror bl handleSocketClose .L17: nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 56] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L16 bl __stack_chk_fail .L16: ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE9: .size sendChunk, .-sendChunk .section .rodata .align 3 .LC1: .string "--nailgun-filearg" .text .align 2 .global sendFileArg .type sendFileArg, %function sendFileArg: .LFB10: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] mov w1, 0 ldr x0, [sp, 24] bl open str w0, [sp, 44] ldr w0, [sp, 44] cmp w0, 0 bge .L19 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl perror mov w0, 1 b .L20 .L19: mov x2, 2048 adrp x0, buf add x1, x0, :lo12:buf ldr w0, [sp, 44] bl read str w0, [sp, 40] b .L21 .L22: ldr w3, [sp, 40] adrp x0, buf add x2, x0, :lo12:buf mov w1, 76 mov w0, w3 bl sendChunk mov x2, 2048 adrp x0, buf add x1, x0, :lo12:buf ldr w0, [sp, 44] bl read str w0, [sp, 40] .L21: ldr w0, [sp, 40] cmp w0, 0 bgt .L22 ldr w0, [sp, 40] cmp w0, 0 bge .L23 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl perror mov w0, 1 b .L20 .L23: adrp x0, buf add x2, x0, :lo12:buf mov w1, 76 mov w0, 0 bl sendChunk ldr w0, [sp, 44] bl close mov w0, 0 .L20: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE10: .size sendFileArg, .-sendFileArg .align 2 .global sendText .type sendText, %function sendText: .LFB11: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp strb w0, [sp, 31] str x1, [sp, 16] ldr x0, [sp, 16] cmp x0, 0 beq .L25 ldr x0, [sp, 16] bl strlen b .L26 .L25: mov w0, 0 .L26: str w0, [sp, 44] ldr w0, [sp, 44] ldr x2, [sp, 16] ldrb w1, [sp, 31] bl sendChunk nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE11: .size sendText, .-sendText .section .rodata .align 3 .LC2: .string "recv" .align 3 .LC3: .string "write" .text .align 2 .global recvToFD .type recvToFD, %function recvToFD: .LFB12: .cfi_startproc stp x29, x30, [sp, -80]! .cfi_def_cfa_offset 80 .cfi_offset 29, -80 .cfi_offset 30, -72 mov x29, sp str w0, [sp, 44] str x1, [sp, 32] str x2, [sp, 24] str xzr, [sp, 64] b .L28 .L34: ldr x1, [sp, 24] ldr x0, [sp, 64] sub x0, x1, x0 str x0, [sp, 72] ldr x2, [sp, 72] ldr x1, [sp, 72] mov x0, 2048 cmp x2, 2048 csel x0, x1, x0, ls str w0, [sp, 52] str wzr, [sp, 56] adrp x0, nailgunsocket add x0, x0, :lo12:nailgunsocket ldr w0, [x0] ldrsw x1, [sp, 52] mov w3, 256 mov x2, x1 ldr x1, [sp, 32] bl recv str w0, [sp, 56] ldr w0, [sp, 56] cmp w0, 0 beq .L29 ldr w0, [sp, 56] cmn w0, #1 bne .L30 .L29: adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl perror bl handleSocketClose .L30: ldrsw x0, [sp, 56] ldr x1, [sp, 64] add x0, x1, x0 str x0, [sp, 64] str wzr, [sp, 48] b .L31 .L33: ldrsw x0, [sp, 48] ldr x1, [sp, 32] add x3, x1, x0 ldr w1, [sp, 56] ldr w0, [sp, 48] sub w0, w1, w0 sxtw x0, w0 mov x2, x0 mov x1, x3 ldr w0, [sp, 44] bl write str w0, [sp, 60] ldr w0, [sp, 60] cmn w0, #1 bne .L32 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl perror bl handleSocketClose .L32: ldr w1, [sp, 48] ldr w0, [sp, 60] add w0, w1, w0 str w0, [sp, 48] .L31: ldr w1, [sp, 48] ldr w0, [sp, 56] cmp w1, w0 blt .L33 .L28: ldr x1, [sp, 64] ldr x0, [sp, 24] cmp x1, x0 bcc .L34 nop nop ldp x29, x30, [sp], 80 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE12: .size recvToFD, .-recvToFD .align 2 .global recvToBuffer .type recvToBuffer, %function recvToBuffer: .LFB13: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] str xzr, [sp, 40] b .L36 .L39: adrp x0, nailgunsocket add x0, x0, :lo12:nailgunsocket ldr w4, [x0] ldr x1, [sp, 40] adrp x0, buf add x0, x0, :lo12:buf add x5, x1, x0 ldr x1, [sp, 24] ldr x0, [sp, 40] sub x0, x1, x0 mov w3, 256 mov x2, x0 mov x1, x5 mov w0, w4 bl recv str w0, [sp, 36] ldr w0, [sp, 36] cmp w0, 0 beq .L37 ldr w0, [sp, 36] cmn w0, #1 bne .L38 .L37: adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl perror bl handleSocketClose .L38: ldrsw x0, [sp, 36] ldr x1, [sp, 40] add x0, x1, x0 str x0, [sp, 40] .L36: ldr x1, [sp, 40] ldr x0, [sp, 24] cmp x1, x0 bcc .L39 ldr x0, [sp, 40] ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE13: .size recvToBuffer, .-recvToBuffer .align 2 .global processExit .type processExit, %function processExit: .LFB14: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] ldr x2, [sp, 16] ldr x1, [sp, 16] mov x0, 2047 cmp x2, 2047 csel x0, x1, x0, ls str w0, [sp, 36] ldrsw x0, [sp, 36] bl recvToBuffer str w0, [sp, 40] ldr w0, [sp, 40] cmp w0, 0 bge .L42 bl handleSocketClose .L42: ldrsw x0, [sp, 40] ldr x1, [sp, 24] add x0, x1, x0 strb wzr, [x0] ldr x0, [sp, 24] bl atoi str w0, [sp, 44] ldr w0, [sp, 44] bl cleanUpAndExit nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE14: .size processExit, .-processExit .align 2 .global sendStdin .type sendStdin, %function sendStdin: .LFB15: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] str w1, [sp, 20] adrp x0, readyToSend add x0, x0, :lo12:readyToSend str wzr, [x0] ldr x2, [sp, 24] mov w1, 48 ldr w0, [sp, 20] bl sendChunk nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE15: .size sendStdin, .-sendStdin .align 2 .global processEof .type processEof, %function processEof: .LFB16: .cfi_startproc stp x29, x30, [sp, -16]! .cfi_def_cfa_offset 16 .cfi_offset 29, -16 .cfi_offset 30, -8 mov x29, sp adrp x0, buf add x2, x0, :lo12:buf mov w1, 46 mov w0, 0 bl sendChunk nop ldp x29, x30, [sp], 16 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE16: .size processEof, .-processEof .align 2 .global sendHeartbeat .type sendHeartbeat, %function sendHeartbeat: .LFB17: .cfi_startproc stp x29, x30, [sp, -16]! .cfi_def_cfa_offset 16 .cfi_offset 29, -16 .cfi_offset 30, -8 mov x29, sp adrp x0, buf add x2, x0, :lo12:buf mov w1, 72 mov w0, 0 bl sendChunk nop ldp x29, x30, [sp], 16 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE17: .size sendHeartbeat, .-sendHeartbeat .align 2 .global processStdin .type processStdin, %function processStdin: .LFB18: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp mov x2, 2048 adrp x0, buf add x1, x0, :lo12:buf mov w0, 0 bl read str w0, [sp, 28] ldr w0, [sp, 28] cmp w0, 0 ble .L47 ldr w0, [sp, 28] mov w1, w0 adrp x0, buf add x0, x0, :lo12:buf bl sendStdin b .L48 .L47: ldr w0, [sp, 28] cmp w0, 0 bne .L48 bl processEof .L48: ldr w0, [sp, 28] ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE18: .size processStdin, .-processStdin .section .rodata .align 3 .LC4: .string "Unexpected chunk type %d ('%c')\n" .text .align 2 .global processnailgunstream .type processnailgunstream, %function processnailgunstream: .LFB19: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp mov x0, 5 bl recvToBuffer adrp x0, buf add x0, x0, :lo12:buf ldrb w0, [x0] lsl w0, w0, 24 mov w1, w0 adrp x0, buf add x0, x0, :lo12:buf ldrb w0, [x0, 1] lsl w0, w0, 16 and w0, w0, 16711680 orr w1, w1, w0 adrp x0, buf add x0, x0, :lo12:buf ldrb w0, [x0, 2] lsl w0, w0, 8 and w0, w0, 65535 orr w0, w1, w0 adrp x1, buf add x1, x1, :lo12:buf ldrb w1, [x1, 3] orr w0, w0, w1 uxtw x0, w0 str x0, [sp, 24] adrp x0, buf add x0, x0, :lo12:buf ldrb w0, [x0, 4] strb w0, [sp, 23] ldrb w0, [sp, 23] cmp w0, 88 beq .L51 cmp w0, 88 bgt .L52 cmp w0, 83 beq .L53 cmp w0, 83 bgt .L52 cmp w0, 49 beq .L54 cmp w0, 50 beq .L55 b .L52 .L54: ldr x2, [sp, 24] adrp x0, buf add x1, x0, :lo12:buf mov w0, 1 bl recvToFD b .L56 .L55: ldr x2, [sp, 24] adrp x0, buf add x1, x0, :lo12:buf mov w0, 2 bl recvToFD b .L56 .L51: ldr x1, [sp, 24] adrp x0, buf add x0, x0, :lo12:buf bl processExit b .L56 .L53: adrp x0, readyToSend add x0, x0, :lo12:readyToSend mov w1, 1 str w1, [x0] b .L56 .L52: adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldrb w0, [sp, 23] ldrb w1, [sp, 23] mov w3, w1 mov w2, w0 adrp x0, .LC4 add x1, x0, :lo12:.LC4 mov x0, x4 bl fprintf mov w0, 229 bl cleanUpAndExit nop .L56: nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE19: .size processnailgunstream, .-processnailgunstream .align 2 .global intervalMillis .type intervalMillis, %function intervalMillis: .LFB20: .cfi_startproc sub sp, sp, #32 .cfi_def_cfa_offset 32 stp x0, x1, [sp, 16] stp x2, x3, [sp] ldr x1, [sp, 16] ldr x0, [sp] sub x0, x1, x0 mov w1, w0 mov w0, 1000 mul w1, w1, w0 ldr x2, [sp, 24] ldr x0, [sp, 8] sub x0, x2, x0 mov x2, 63439 movk x2, 0xe353, lsl 16 movk x2, 0x9ba5, lsl 32 movk x2, 0x20c4, lsl 48 smulh x2, x0, x2 asr x2, x2, 7 asr x0, x0, 63 sub x0, x2, x0 add w0, w1, w0 add sp, sp, 32 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE20: .size intervalMillis, .-intervalMillis .align 2 .global shortClientName .type shortClientName, %function shortClientName: .LFB21: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] mov w1, 47 ldr x0, [sp, 24] bl strrchr str x0, [sp, 40] ldr x0, [sp, 40] cmp x0, 0 beq .L60 ldr x0, [sp, 40] add x0, x0, 1 b .L62 .L60: ldr x0, [sp, 24] .L62: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE21: .size shortClientName, .-shortClientName .section .rodata .align 3 .LC5: .string "ng" .text .align 2 .global isNailgunClientName .type isNailgunClientName, %function isNailgunClientName: .LFB22: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] adrp x0, .LC5 add x1, x0, :lo12:.LC5 ldr x0, [sp, 24] bl strcmp cmp w0, 0 cset w0, eq and w0, w0, 255 ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE22: .size isNailgunClientName, .-isNailgunClientName .section .rodata .align 3 .LC6: .string "0.9.0" .align 3 .LC7: .string "NailGun v%s\n\n" .align 3 .LC8: .string "Usage: ng class [--nailgun-options] [args]\n" .align 3 .LC9: .string " (to execute a class)\n" .align 3 .LC10: .string " or: ng alias [--nailgun-options] [args]\n" .align 3 .LC11: .string " (to execute an aliased class)\n" .align 3 .LC12: .string " or: alias [--nailgun-options] [args]\n" .align 3 .LC13: .string " (to execute an aliased class, where \"alias\"\n" .align 3 .LC14: .string " is both the alias for the class and a symbolic\n" .align 3 .LC15: .string " link to the ng client)\n\n" .align 3 .LC16: .string "where options include:\n" .align 3 .LC17: .string " --nailgun-D<name>=<value> set/override a client environment variable\n" .align 3 .LC18: .string " --nailgun-version print product version and exit\n" .align 3 .LC19: .string " --nailgun-showversion print product version and continue\n" .align 3 .LC20: .string " --nailgun-server to specify the address of the nailgun server\n" .align 3 .LC21: .string " (default is NAILGUN_SERVER environment variable\n" .align 3 .LC22: .string " if set, otherwise localhost)\n" .align 3 .LC23: .string " --nailgun-port to specify the port of the nailgun server\n" .align 3 .LC24: .string " (default is NAILGUN_PORT environment variable\n" .align 3 .LC25: .string " if set, otherwise 8212)\n" .align 3 .LC26: .string " --nailgun-filearg FILE places the entire contents of FILE into the\n" .align 3 .LC27: .string " next argument, which is interpreted as a string\n" .align 3 .LC28: .string " using the server's default character set. May be\n" .align 3 .LC29: .string " specified more than once.\n" .align 3 .LC30: .string " --nailgun-help print this message and exit\n" .text .align 2 .global usage .type usage, %function usage: .LFB23: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str w0, [sp, 28] adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x3, [x0] adrp x0, .LC6 add x2, x0, :lo12:.LC6 adrp x0, .LC7 add x1, x0, :lo12:.LC7 mov x0, x3 bl fprintf adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 43 mov x1, 1 adrp x0, .LC8 add x0, x0, :lo12:.LC8 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 31 mov x1, 1 adrp x0, .LC9 add x0, x0, :lo12:.LC9 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 43 mov x1, 1 adrp x0, .LC10 add x0, x0, :lo12:.LC10 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 40 mov x1, 1 adrp x0, .LC11 add x0, x0, :lo12:.LC11 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 40 mov x1, 1 adrp x0, .LC12 add x0, x0, :lo12:.LC12 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 54 mov x1, 1 adrp x0, .LC13 add x0, x0, :lo12:.LC13 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 58 mov x1, 1 adrp x0, .LC14 add x0, x0, :lo12:.LC14 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 35 mov x1, 1 adrp x0, .LC15 add x0, x0, :lo12:.LC15 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 23 mov x1, 1 adrp x0, .LC16 add x0, x0, :lo12:.LC16 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 74 mov x1, 1 adrp x0, .LC17 add x0, x0, :lo12:.LC17 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 62 mov x1, 1 adrp x0, .LC18 add x0, x0, :lo12:.LC18 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 66 mov x1, 1 adrp x0, .LC19 add x0, x0, :lo12:.LC19 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 76 mov x1, 1 adrp x0, .LC20 add x0, x0, :lo12:.LC20 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 79 mov x1, 1 adrp x0, .LC21 add x0, x0, :lo12:.LC21 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 60 mov x1, 1 adrp x0, .LC22 add x0, x0, :lo12:.LC22 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 73 mov x1, 1 adrp x0, .LC23 add x0, x0, :lo12:.LC23 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 77 mov x1, 1 adrp x0, .LC24 add x0, x0, :lo12:.LC24 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 55 mov x1, 1 adrp x0, .LC25 add x0, x0, :lo12:.LC25 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 75 mov x1, 1 adrp x0, .LC26 add x0, x0, :lo12:.LC26 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 79 mov x1, 1 adrp x0, .LC27 add x0, x0, :lo12:.LC27 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 81 mov x1, 1 adrp x0, .LC28 add x0, x0, :lo12:.LC28 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 57 mov x1, 1 adrp x0, .LC29 add x0, x0, :lo12:.LC29 bl fwrite adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 59 mov x1, 1 adrp x0, .LC30 add x0, x0, :lo12:.LC30 bl fwrite ldr w0, [sp, 28] bl cleanUpAndExit nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE23: .size usage, .-usage .section .rodata .align 3 .LC32: .string "NAILGUN_SERVER" .align 3 .LC33: .string "127.0.0.1" .align 3 .LC34: .string "NAILGUN_PORT" .align 3 .LC35: .string "8212" .align 3 .LC36: .string "--help" .align 3 .LC37: .string "-h" .align 3 .LC38: .string "--nailgun-server" .align 3 .LC39: .string "--nailgun-port" .align 3 .LC40: .string "--nailgun-version" .align 3 .LC41: .string "NailGun client version %s\n" .align 3 .LC42: .string "--nailgun-showversion" .align 3 .LC43: .string "--nailgun-help" .align 3 .LC44: .string "local:" .align 3 .LC45: .string "Socket path [%s] too long (%ld)\n" .align 3 .LC46: .string "socket" .align 3 .LC47: .string "Unknown host: %s\n" .align 3 .LC48: .string "connect" .align 3 .LC49: .string "NAILGUN_FILESEPARATOR=/" .align 3 .LC50: .string "NAILGUN_PATHSEPARATOR=:" .align 3 .LC31: .string "NAILGUN_TTY_%d=%d" .align 3 .LC51: .string "select" .align 3 .LC52: .string "read" .text .align 2 .global main .type main, %function main: .LFB24: .cfi_startproc stp x29, x30, [sp, -480]! .cfi_def_cfa_offset 480 .cfi_offset 29, -480 .cfi_offset 30, -472 mov x29, sp str w0, [sp, 44] str x1, [sp, 32] str x2, [sp, 24] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 472] mov x1, 0 adrp x0, .LC31 add x0, x0, :lo12:.LC31 add x2, sp, 448 mov x3, x0 ldp x0, x1, [x3] stp x0, x1, [x2] ldrh w0, [x3, 16] strh w0, [x2, 16] str wzr, [sp, 72] mov x2, 16 mov w1, 0 adrp x0, sendtime add x0, x0, :lo12:sendtime bl memset adrp x0, .LC32 add x0, x0, :lo12:.LC32 bl getenv str x0, [sp, 96] ldr x0, [sp, 96] cmp x0, 0 bne .L67 adrp x0, .LC33 add x0, x0, :lo12:.LC33 str x0, [sp, 96] .L67: adrp x0, .LC34 add x0, x0, :lo12:.LC34 bl getenv str x0, [sp, 104] ldr x0, [sp, 104] cmp x0, 0 bne .L68 adrp x0, .LC35 add x0, x0, :lo12:.LC35 str x0, [sp, 104] .L68: ldr x0, [sp, 32] ldr x0, [x0] bl shortClientName str x0, [sp, 112] ldr x0, [sp, 112] bl isNailgunClientName cmp w0, 0 beq .L69 str xzr, [sp, 112] .L69: ldr x0, [sp, 112] cmp x0, 0 bne .L70 ldr w0, [sp, 44] cmp w0, 1 beq .L71 ldr w0, [sp, 44] cmp w0, 2 bne .L72 ldr x0, [sp, 32] add x0, x0, 8 ldr x0, [x0] mov x1, x0 adrp x0, .LC36 add x0, x0, :lo12:.LC36 bl strcmp cmp w0, 0 beq .L71 .L72: ldr w0, [sp, 44] cmp w0, 2 bne .L70 ldr x0, [sp, 32] add x0, x0, 8 ldr x0, [x0] mov x1, x0 adrp x0, .LC37 add x0, x0, :lo12:.LC37 bl strcmp cmp w0, 0 bne .L70 .L71: mov w0, 0 bl usage .L70: mov w0, 1 str w0, [sp, 68] mov w0, 1 str w0, [sp, 60] b .L73 .L83: ldrsw x0, [sp, 60] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] mov x1, x0 adrp x0, .LC38 add x0, x0, :lo12:.LC38 bl strcmp cmp w0, 0 bne .L74 ldr w0, [sp, 44] sub w0, w0, #1 ldr w1, [sp, 60] cmp w1, w0 bne .L75 mov w0, 226 bl usage .L75: ldrsw x0, [sp, 60] add x0, x0, 1 lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] str x0, [sp, 96] ldrsw x0, [sp, 60] add x0, x0, 1 lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 str xzr, [x0] ldrsw x1, [sp, 60] lsl x1, x1, 3 ldr x2, [sp, 32] add x1, x2, x1 ldr x0, [x0] str x0, [x1] ldr w0, [sp, 60] add w0, w0, 1 str w0, [sp, 60] b .L76 .L74: ldrsw x0, [sp, 60] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] mov x1, x0 adrp x0, .LC39 add x0, x0, :lo12:.LC39 bl strcmp cmp w0, 0 bne .L77 ldr w0, [sp, 44] sub w0, w0, #1 ldr w1, [sp, 60] cmp w1, w0 bne .L78 mov w0, 226 bl usage .L78: ldrsw x0, [sp, 60] add x0, x0, 1 lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] str x0, [sp, 104] ldrsw x0, [sp, 60] add x0, x0, 1 lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 str xzr, [x0] ldrsw x1, [sp, 60] lsl x1, x1, 3 ldr x2, [sp, 32] add x1, x2, x1 ldr x0, [x0] str x0, [x1] ldr w0, [sp, 60] add w0, w0, 1 str w0, [sp, 60] b .L76 .L77: ldrsw x0, [sp, 60] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] mov x1, x0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl strcmp cmp w0, 0 bne .L79 ldr w0, [sp, 44] sub w0, w0, #1 ldr w1, [sp, 60] cmp w1, w0 bne .L76 mov w0, 226 bl usage b .L76 .L79: ldrsw x0, [sp, 60] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] mov x1, x0 adrp x0, .LC40 add x0, x0, :lo12:.LC40 bl strcmp cmp w0, 0 bne .L80 adrp x0, .LC6 add x1, x0, :lo12:.LC6 adrp x0, .LC41 add x0, x0, :lo12:.LC41 bl printf mov w0, 0 bl cleanUpAndExit b .L76 .L80: ldrsw x0, [sp, 60] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] mov x1, x0 adrp x0, .LC42 add x0, x0, :lo12:.LC42 bl strcmp cmp w0, 0 bne .L81 adrp x0, .LC6 add x1, x0, :lo12:.LC6 adrp x0, .LC41 add x0, x0, :lo12:.LC41 bl printf ldrsw x0, [sp, 60] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 str xzr, [x0] b .L76 .L81: ldrsw x0, [sp, 60] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] mov x1, x0 adrp x0, .LC43 add x0, x0, :lo12:.LC43 bl strcmp cmp w0, 0 bne .L82 mov w0, 0 bl usage b .L76 .L82: ldr x0, [sp, 112] cmp x0, 0 bne .L76 ldrsw x0, [sp, 60] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] str x0, [sp, 112] ldr w0, [sp, 60] add w0, w0, 1 str w0, [sp, 68] .L76: ldr w0, [sp, 60] add w0, w0, 1 str w0, [sp, 60] .L73: ldr w1, [sp, 60] ldr w0, [sp, 44] cmp w1, w0 blt .L83 ldr x0, [sp, 112] cmp x0, 0 bne .L84 mov w0, 226 bl usage .L84: mov x2, 6 adrp x0, .LC44 add x1, x0, :lo12:.LC44 ldr x0, [sp, 96] bl strncmp cmp w0, 0 bne .L85 ldr x0, [sp, 96] add x0, x0, 6 str x0, [sp, 128] ldr x0, [sp, 128] bl strlen str x0, [sp, 136] ldr x0, [sp, 136] cmp x0, 107 bls .L86 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr x0, [sp, 136] mov x3, x0 ldr x2, [sp, 128] adrp x0, .LC45 add x1, x0, :lo12:.LC45 mov x0, x4 bl fprintf mov w0, 231 bl cleanUpAndExit .L86: mov w2, 0 mov w1, 1 mov w0, 1 bl socket mov w1, w0 adrp x0, nailgunsocket add x0, x0, :lo12:nailgunsocket str w1, [x0] adrp x0, nailgunsocket add x0, x0, :lo12:nailgunsocket ldr w0, [x0] cmn w0, #1 bne .L87 adrp x0, .LC46 add x0, x0, :lo12:.LC46 bl perror mov w0, 231 bl cleanUpAndExit .L87: mov w0, 1 strh w0, [sp, 208] add x0, sp, 208 add x0, x0, 2 ldr x2, [sp, 136] ldr x1, [sp, 128] bl strncpy ldr x0, [sp, 136] add x1, sp, 210 strb wzr, [x1, x0] add x0, sp, 208 str x0, [sp, 88] mov w0, 110 str w0, [sp, 64] b .L88 .L85: ldr x0, [sp, 96] bl gethostbyname str x0, [sp, 120] ldr x0, [sp, 120] cmp x0, 0 bne .L89 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x3, [x0] ldr x2, [sp, 96] adrp x0, .LC47 add x1, x0, :lo12:.LC47 mov x0, x3 bl fprintf mov w0, 230 bl cleanUpAndExit .L89: ldr x0, [sp, 104] bl atoi strh w0, [sp, 58] mov w2, 0 mov w1, 1 mov w0, 2 bl socket mov w1, w0 adrp x0, nailgunsocket add x0, x0, :lo12:nailgunsocket str w1, [x0] adrp x0, nailgunsocket add x0, x0, :lo12:nailgunsocket ldr w0, [x0] cmn w0, #1 bne .L90 adrp x0, .LC46 add x0, x0, :lo12:.LC46 bl perror mov w0, 231 bl cleanUpAndExit .L90: mov w0, 2 strh w0, [sp, 192] ldrh w0, [sp, 58] bl htons and w0, w0, 65535 strh w0, [sp, 194] ldr x0, [sp, 120] ldr x0, [x0, 24] ldr x0, [x0] ldr w0, [x0] str w0, [sp, 196] add x0, sp, 192 add x0, x0, 8 mov x2, 8 mov w1, 0 bl memset add x0, sp, 192 str x0, [sp, 88] mov w0, 16 str w0, [sp, 64] .L88: adrp x0, nailgunsocket add x0, x0, :lo12:nailgunsocket ldr w0, [x0] ldr w2, [sp, 64] ldr x1, [sp, 88] bl connect cmn w0, #1 bne .L91 adrp x0, .LC48 add x0, x0, :lo12:.LC48 bl perror mov w0, 230 bl cleanUpAndExit .L91: ldr w0, [sp, 68] str w0, [sp, 60] b .L92 .L95: ldrsw x0, [sp, 60] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] cmp x0, 0 beq .L93 ldrsw x0, [sp, 60] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] mov x1, x0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl strcmp cmp w0, 0 bne .L94 ldr w0, [sp, 60] add w0, w0, 1 str w0, [sp, 60] ldrsw x0, [sp, 60] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] bl sendFileArg str w0, [sp, 84] ldr w0, [sp, 84] cmp w0, 0 beq .L93 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl perror bl handleSocketClose b .L93 .L94: ldrsw x0, [sp, 60] lsl x0, x0, 3 ldr x1, [sp, 32] add x0, x1, x0 ldr x0, [x0] mov x1, x0 mov w0, 65 bl sendText .L93: ldr w0, [sp, 60] add w0, w0, 1 str w0, [sp, 60] .L92: ldr w1, [sp, 60] ldr w0, [sp, 44] cmp w1, w0 blt .L95 adrp x0, .LC49 add x1, x0, :lo12:.LC49 mov w0, 69 bl sendText adrp x0, .LC50 add x1, x0, :lo12:.LC50 mov w0, 69 bl sendText str wzr, [sp, 60] b .L96 .L97: ldr w0, [sp, 60] bl isatty add x4, sp, 448 mov w3, w0 ldr w2, [sp, 60] adrp x0, .LC31 add x1, x0, :lo12:.LC31 mov x0, x4 bl sprintf add x0, sp, 448 mov x1, x0 mov w0, 69 bl sendText ldr w0, [sp, 60] add w0, w0, 1 str w0, [sp, 60] .L96: ldr w0, [sp, 60] cmp w0, 2 ble .L97 str wzr, [sp, 60] b .L98 .L99: ldrsw x0, [sp, 60] lsl x0, x0, 3 ldr x1, [sp, 24] add x0, x1, x0 ldr x0, [x0] mov x1, x0 mov w0, 69 bl sendText ldr w0, [sp, 60] add w0, w0, 1 str w0, [sp, 60] .L98: ldrsw x0, [sp, 60] lsl x0, x0, 3 ldr x1, [sp, 24] add x0, x1, x0 ldr x0, [x0] cmp x0, 0 bne .L99 mov x1, 0 mov x0, 0 bl getcwd str x0, [sp, 144] ldr x1, [sp, 144] mov w0, 68 bl sendText ldr x0, [sp, 144] bl free ldr x1, [sp, 112] mov w0, 67 bl sendText .L108: add x0, sp, 320 str x0, [sp, 152] str wzr, [sp, 76] b .L100 .L101: ldr x0, [sp, 152] ldr w1, [sp, 76] str xzr, [x0, x1, lsl 3] ldr w0, [sp, 76] add w0, w0, 1 str w0, [sp, 76] .L100: ldr w0, [sp, 76] cmp w0, 15 bls .L101 adrp x0, readyToSend add x0, x0, :lo12:readyToSend ldr w0, [x0] cmp w0, 0 beq .L102 ldr w0, [sp, 72] cmp w0, 0 bne .L102 ldr x0, [sp, 320] orr x0, x0, 1 str x0, [sp, 320] .L102: adrp x0, nailgunsocket add x0, x0, :lo12:nailgunsocket ldr w0, [x0] add w1, w0, 63 cmp w0, 0 csel w0, w1, w0, lt asr w0, w0, 6 mov w3, w0 sxtw x0, w3 lsl x0, x0, 3 add x1, sp, 320 ldr x0, [x1, x0] adrp x1, nailgunsocket add x1, x1, :lo12:nailgunsocket ldr w1, [x1] and w1, w1, 63 mov x2, 1 lsl x1, x2, x1 orr x2, x0, x1 sxtw x0, w3 lsl x0, x0, 3 add x1, sp, 320 str x2, [x1, x0] add x0, sp, 160 mov x2, 16 mov w1, 0 bl memset mov x0, 41248 movk x0, 0x7, lsl 16 str x0, [sp, 168] adrp x0, nailgunsocket add x0, x0, :lo12:nailgunsocket ldr w0, [x0] add w0, w0, 1 add x2, sp, 160 add x1, sp, 320 mov x4, x2 mov x3, 0 mov x2, 0 bl select cmn w0, #1 bne .L103 adrp x0, .LC51 add x0, x0, :lo12:.LC51 bl perror .L103: adrp x0, nailgunsocket add x0, x0, :lo12:nailgunsocket ldr w0, [x0] add w1, w0, 63 cmp w0, 0 csel w0, w1, w0, lt asr w0, w0, 6 sxtw x0, w0 lsl x0, x0, 3 add x1, sp, 320 ldr x0, [x1, x0] adrp x1, nailgunsocket add x1, x1, :lo12:nailgunsocket ldr w1, [x1] and w1, w1, 63 mov x2, 1 lsl x1, x2, x1 and x0, x0, x1 cmp x0, 0 beq .L104 bl processnailgunstream b .L105 .L104: ldr x0, [sp, 320] and x0, x0, 1 cmp x0, 0 beq .L105 bl processStdin str w0, [sp, 80] ldr w0, [sp, 80] cmn w0, #1 bne .L106 adrp x0, .LC52 add x0, x0, :lo12:.LC52 bl perror bl handleSocketClose b .L105 .L106: ldr w0, [sp, 80] cmp w0, 0 bne .L105 ldr x0, [sp, 320] and x0, x0, -2 str x0, [sp, 320] mov w0, 1 str w0, [sp, 72] .L105: add x0, sp, 176 mov x1, 0 bl gettimeofday adrp x0, sendtime add x0, x0, :lo12:sendtime ldp x2, x3, [x0] ldp x0, x1, [sp, 176] bl intervalMillis cmp w0, 500 ble .L108 bl sendHeartbeat b .L108 .cfi_endproc .LFE24: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .local sig_flag .comm sig_flag,4,4 .local old_nousr .comm old_nousr,128,8 .local sig_action_buf .comm sig_action_buf,152,8 .align 2 .type sigusr_handler, %function sigusr_handler: .LFB6: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str w0, [sp, 12] adrp x0, sig_flag add x0, x0, :lo12:sig_flag mov w1, 1 str w1, [x0] nop add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size sigusr_handler, .-sigusr_handler .align 2 .global NOTIFY_INIT .type NOTIFY_INIT, %function NOTIFY_INIT: .LFB7: .cfi_startproc stp x29, x30, [sp, -160]! .cfi_def_cfa_offset 160 .cfi_offset 29, -160 .cfi_offset 30, -152 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 152] mov x1, 0 adrp x0, sig_flag add x0, x0, :lo12:sig_flag str wzr, [x0] adrp x0, sig_action_buf add x0, x0, :lo12:sig_action_buf adrp x1, sigusr_handler add x1, x1, :lo12:sigusr_handler str x1, [x0] adrp x0, sig_action_buf+8 add x0, x0, :lo12:sig_action_buf+8 bl sigemptyset adrp x0, sig_action_buf add x0, x0, :lo12:sig_action_buf str wzr, [x0, 136] mov x2, 0 adrp x0, sig_action_buf add x1, x0, :lo12:sig_action_buf mov w0, 10 bl sigaction add x0, sp, 24 bl sigemptyset add x0, sp, 24 mov w1, 10 bl sigaddset add x1, sp, 24 adrp x0, old_nousr add x2, x0, :lo12:old_nousr mov w0, 0 bl sigprocmask mov w1, 10 adrp x0, old_nousr add x0, x0, :lo12:old_nousr bl sigdelset nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 152] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L3 bl __stack_chk_fail .L3: ldp x29, x30, [sp], 160 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size NOTIFY_INIT, .-NOTIFY_INIT .align 2 .global NOTIFY .type NOTIFY, %function NOTIFY: .LFB8: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str w0, [sp, 28] mov w1, 10 ldr w0, [sp, 28] bl kill nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size NOTIFY, .-NOTIFY .align 2 .global WAIT_NOTIFY .type WAIT_NOTIFY, %function WAIT_NOTIFY: .LFB9: .cfi_startproc stp x29, x30, [sp, -16]! .cfi_def_cfa_offset 16 .cfi_offset 29, -16 .cfi_offset 30, -8 mov x29, sp b .L6 .L7: adrp x0, old_nousr add x0, x0, :lo12:old_nousr bl sigsuspend .L6: adrp x0, sig_flag add x0, x0, :lo12:sig_flag ldr w0, [x0] cmp w0, 0 beq .L7 adrp x0, sig_flag add x0, x0, :lo12:sig_flag str wzr, [x0] nop ldp x29, x30, [sp], 16 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE9: .size WAIT_NOTIFY, .-WAIT_NOTIFY .section .rodata .align 3 .LC0: .string "Usage: %s filename\n" .align 3 .LC1: .string "Couldn't open %s: %s\n" .align 3 .LC2: .string "stat(2) failed for file %s: %s\n" .align 3 .LC3: .string "Couldn't enable mandatory locking" .align 3 .LC4: .string "write(2) error" .align 3 .LC5: .string "fork(2) failed" .align 3 .LC6: .string "fcntl(2) failed" .align 3 .LC7: .string "Read lock denied, error = %d (%s)\n" .align 3 .LC8: .string "Oops! Read lock acquired when parent process has write lock.. ?!\n" .align 3 .LC9: .string "lseek(2) failed" .align 3 .LC10: .string "read(2) returned with error %d (%s); mandatory locking seems to work.\n" .align 3 .LC11: .string "read(2) returned success: %s; mandatory locking doesn't work.\n" .text .align 2 .global main .type main, %function main: .LFB10: .cfi_startproc stp x29, x30, [sp, -240]! .cfi_def_cfa_offset 240 .cfi_offset 29, -240 .cfi_offset 30, -232 mov x29, sp stp x19, x20, [sp, 16] .cfi_offset 19, -224 .cfi_offset 20, -216 str w0, [sp, 44] str x1, [sp, 32] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 232] mov x1, 0 ldr w0, [sp, 44] cmp w0, 1 bgt .L9 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x3, [x0] ldr x0, [sp, 32] ldr x0, [x0] mov x2, x0 adrp x0, .LC0 add x1, x0, :lo12:.LC0 mov x0, x3 bl fprintf mov w0, 1 bl exit .L9: ldr x0, [sp, 32] add x0, x0, 8 ldr x0, [x0] mov w2, 420 mov w1, 578 bl open str w0, [sp, 56] ldr w0, [sp, 56] cmp w0, 0 bge .L10 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x19, [x0] ldr x0, [sp, 32] add x0, x0, 8 ldr x20, [x0] bl __errno_location ldr w0, [x0] bl strerror mov x3, x0 mov x2, x20 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x19 bl fprintf mov w0, 1 bl exit .L10: add x0, sp, 104 mov x1, x0 ldr w0, [sp, 56] bl fstat cmp w0, 0 bge .L11 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x19, [x0] ldr x0, [sp, 32] add x0, x0, 8 ldr x20, [x0] bl __errno_location ldr w0, [x0] bl strerror mov x3, x0 mov x2, x20 adrp x0, .LC2 add x1, x0, :lo12:.LC2 mov x0, x19 bl fprintf mov w0, 1 bl exit .L11: ldr w1, [sp, 120] mov w0, -1033 and w0, w1, w0 orr w0, w0, 1024 mov w1, w0 ldr w0, [sp, 56] bl fchmod cmp w0, 0 bge .L12 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl perror mov w0, 1 bl exit .L12: mov x2, 7 adrp x0, file_contents.1 add x1, x0, :lo12:file_contents.1 ldr w0, [sp, 56] bl write cmp x0, 0 bge .L13 adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl perror mov w0, 1 bl exit .L13: bl NOTIFY_INIT bl fork str w0, [sp, 60] ldr w0, [sp, 60] cmp w0, 0 bge .L14 adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl perror mov w0, 1 bl exit .L14: ldr w0, [sp, 60] cmp w0, 0 bne .L15 bl WAIT_NOTIFY mov w2, 2048 mov w1, 4 ldr w0, [sp, 56] bl fcntl cmp w0, 0 bge .L16 adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl perror mov w0, 1 bl exit .L16: strh wzr, [sp, 72] strh wzr, [sp, 74] str xzr, [sp, 80] str xzr, [sp, 88] add x0, sp, 72 mov x2, x0 mov w1, 6 ldr w0, [sp, 56] bl fcntl cmp w0, 0 bge .L17 bl __errno_location ldr w19, [x0] bl __errno_location ldr w0, [x0] bl strerror mov x2, x0 mov w1, w19 adrp x0, .LC7 add x0, x0, :lo12:.LC7 bl printf mov w2, 0 mov x1, 0 ldr w0, [sp, 56] bl lseek cmp x0, 0 bge .L19 b .L26 .L17: adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 65 mov x1, 1 adrp x0, .LC8 add x0, x0, :lo12:.LC8 bl fwrite mov w0, 1 bl exit .L26: adrp x0, .LC9 add x0, x0, :lo12:.LC9 bl perror mov w0, 1 bl exit .L19: mov x2, 7 adrp x0, readbuff.0 add x1, x0, :lo12:readbuff.0 ldr w0, [sp, 56] bl read str x0, [sp, 64] ldr x0, [sp, 64] cmp x0, 0 bge .L20 bl __errno_location ldr w19, [x0] bl __errno_location ldr w0, [x0] bl strerror mov x2, x0 mov w1, w19 adrp x0, .LC10 add x0, x0, :lo12:.LC10 bl printf b .L22 .L20: adrp x0, readbuff.0 add x1, x0, :lo12:readbuff.0 ldr x0, [sp, 64] add x0, x1, x0 strb wzr, [x0] adrp x0, readbuff.0 add x1, x0, :lo12:readbuff.0 adrp x0, .LC11 add x0, x0, :lo12:.LC11 bl printf b .L22 .L15: mov w0, 1 strh w0, [sp, 72] strh wzr, [sp, 74] str xzr, [sp, 80] str xzr, [sp, 88] add x0, sp, 72 mov x2, x0 mov w1, 6 ldr w0, [sp, 56] bl fcntl cmp w0, 0 bge .L23 adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl perror ldr w0, [sp, 60] bl NOTIFY mov w0, 1 bl exit .L23: ldr w0, [sp, 60] bl NOTIFY mov x0, 0 bl wait .L22: mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 232] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L25 bl __stack_chk_fail .L25: mov w0, w1 ldp x19, x20, [sp, 16] ldp x29, x30, [sp], 240 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_restore 20 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE10: .size main, .-main .section .rodata .align 3 .type file_contents.1, %object .size file_contents.1, 8 file_contents.1: .string "abcdefg" .local readbuff.0 .comm readbuff.0,8,8 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "%d%d%d" .align 3 .LC1: .string "0" .align 3 .LC2: .string "1" .text .align 2 .global gao .type gao, %function gao: .LFB0: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 40] mov x1, 0 add x2, sp, 36 add x1, sp, 32 add x0, sp, 28 mov x3, x2 mov x2, x1 mov x1, x0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl __isoc99_scanf ldr w0, [sp, 32] cmp w0, 1 bne .L2 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts b .L13 .L2: ldr w0, [sp, 28] cmp w0, 2 bne .L4 ldr w0, [sp, 32] and w0, w0, 1 cmp w0, 0 beq .L5 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts b .L13 .L5: ldr w0, [sp, 36] and w0, w0, 1 cmp w0, 0 beq .L7 ldr w0, [sp, 32] cmp w0, 0 bne .L7 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts b .L13 .L7: ldr w1, [sp, 32] ldr w0, [sp, 36] add w0, w1, w0 cmp w0, 1 ble .L8 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl puts b .L13 .L8: adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts b .L13 .L4: ldr w1, [sp, 32] ldr w0, [sp, 28] cmp w1, w0 bne .L9 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl puts b .L13 .L9: ldr w1, [sp, 36] ldr w0, [sp, 28] cmp w1, w0 bne .L10 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl puts b .L13 .L10: ldr w1, [sp, 32] ldr w0, [sp, 36] add w1, w1, w0 ldr w0, [sp, 28] cmp w1, w0 ble .L11 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl puts b .L13 .L11: adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts .L13: nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 40] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L12 bl __stack_chk_fail .L12: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size gao, .-gao .section .rodata .align 3 .LC3: .string "%*d%d" .text .align 2 .global main .type main, %function main: .LFB1: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 24] mov x1, 0 add x0, sp, 20 mov x1, x0 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl __isoc99_scanf b .L15 .L16: bl gao .L15: ldr w0, [sp, 20] sub w1, w0, #1 str w1, [sp, 20] cmp w0, 0 bne .L16 mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 24] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L18 bl __stack_chk_fail .L18: mov w0, w1 ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global check_line .type check_line, %function check_line: .LFB6: .cfi_startproc sub sp, sp, #32 .cfi_def_cfa_offset 32 str x0, [sp, 8] str wzr, [sp, 28] b .L2 .L6: ldrsw x0, [sp, 28] lsl x0, x0, 3 ldr x1, [sp, 8] add x0, x1, x0 ldr x0, [x0] ldrb w0, [x0] cmp w0, 32 beq .L3 ldrsw x0, [sp, 28] lsl x0, x0, 3 ldr x1, [sp, 8] add x0, x1, x0 ldr x0, [x0] ldrb w0, [x0] cmp w0, 9 beq .L3 ldrsw x0, [sp, 28] lsl x0, x0, 3 ldr x1, [sp, 8] add x0, x1, x0 ldr x0, [x0] ldrb w0, [x0] cmp w0, 0 bne .L4 .L3: ldr w0, [sp, 28] add w0, w0, 1 str w0, [sp, 28] b .L2 .L4: mov w0, 1 b .L5 .L2: ldrsw x0, [sp, 28] lsl x0, x0, 3 ldr x1, [sp, 8] add x0, x1, x0 ldr x0, [x0] cmp x0, 0 bne .L6 mov w0, 0 .L5: add sp, sp, 32 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size check_line, .-check_line .align 2 .global check_null .type check_null, %function check_null: .LFB7: .cfi_startproc sub sp, sp, #32 .cfi_def_cfa_offset 32 str x0, [sp, 8] str wzr, [sp, 24] mov w0, 1 str w0, [sp, 28] b .L8 .L10: ldrsw x0, [sp, 24] ldr x1, [sp, 8] add x0, x1, x0 ldrb w0, [x0] cmp w0, 9 beq .L9 ldrsw x0, [sp, 24] ldr x1, [sp, 8] add x0, x1, x0 ldrb w0, [x0] cmp w0, 32 beq .L9 str wzr, [sp, 28] .L9: ldr w0, [sp, 24] add w0, w0, 1 str w0, [sp, 24] .L8: ldrsw x0, [sp, 24] ldr x1, [sp, 8] add x0, x1, x0 ldrb w0, [x0] cmp w0, 0 bne .L10 ldr w0, [sp, 28] add sp, sp, 32 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size check_null, .-check_null ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global a .bss .align 2 .type a, %object .size a, 4 a: .zero 4 .global b .align 2 .type b, %object .size b, 4 b: .zero 4 .global b2 .align 2 .type b2, %object .size b2, 4 b2: .zero 4 .global d .align 3 .type d, %object .size d, 0 d: .global vb1 .align 2 .type vb1, %object .size vb1, 4 vb1: .zero 4 .local vb3 .comm vb3,4,4 .text .align 2 .global func1 .type func1, %function func1: .LFB0: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str w0, [sp, 12] ldr w0, [sp, 12] add w1, w0, 1 adrp x0, vb1 add x0, x0, :lo12:vb1 str w1, [x0] adrp x0, vb1 add x0, x0, :lo12:vb1 ldr w0, [x0] add w1, w0, 1 adrp x0, :got:vb2 ldr x0, [x0, #:got_lo12:vb2] str w1, [x0] adrp x0, :got:vb2 ldr x0, [x0, #:got_lo12:vb2] ldr w0, [x0] add w1, w0, 1 adrp x0, vb3 add x0, x0, :lo12:vb3 str w1, [x0] adrp x0, vb3 add x0, x0, :lo12:vb3 ldr w0, [x0] add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size func1, .-func1 .align 2 .global func2 .type func2, %function func2: .LFB1: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str w0, [sp, 12] ldr w0, [sp, 12] add w1, w0, 1 adrp x0, :got:vb4 ldr x0, [x0, #:got_lo12:vb4] str w1, [x0] adrp x0, :got:vb4 ldr x0, [x0, #:got_lo12:vb4] ldr w0, [x0] add w1, w0, 1 adrp x0, vb5.1 add x0, x0, :lo12:vb5.1 str w1, [x0] adrp x0, vb5.1 add x0, x0, :lo12:vb5.1 ldr w0, [x0] add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size func2, .-func2 .local vb7 .comm vb7,4,4 .align 2 .global func3 .type func3, %function func3: .LFB2: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str w0, [sp, 12] ldr w0, [sp, 12] add w1, w0, 1 adrp x0, :got:vb6 ldr x0, [x0, #:got_lo12:vb6] str w1, [x0] adrp x0, :got:vb6 ldr x0, [x0, #:got_lo12:vb6] ldr w0, [x0] add w1, w0, 1 adrp x0, vb7 add x0, x0, :lo12:vb7 str w1, [x0] adrp x0, vb7 add x0, x0, :lo12:vb7 ldr w0, [x0] add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE2: .size func3, .-func3 .global vb8 .bss .align 2 .type vb8, %object .size vb8, 4 vb8: .zero 4 .local vb10 .comm vb10,4,4 .text .align 2 .global func4 .type func4, %function func4: .LFB3: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str w0, [sp, 12] ldr w0, [sp, 12] add w1, w0, 1 adrp x0, vb8 add x0, x0, :lo12:vb8 str w1, [x0] adrp x0, vb8 add x0, x0, :lo12:vb8 ldr w0, [x0] add w1, w0, 1 adrp x0, :got:vb9 ldr x0, [x0, #:got_lo12:vb9] str w1, [x0] adrp x0, :got:vb9 ldr x0, [x0, #:got_lo12:vb9] ldr w0, [x0] add w1, w0, 1 adrp x0, vb10 add x0, x0, :lo12:vb10 str w1, [x0] adrp x0, vb10 add x0, x0, :lo12:vb10 ldr w0, [x0] add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE3: .size func4, .-func4 .global vb11 .bss .align 2 .type vb11, %object .size vb11, 4 vb11: .zero 4 .text .align 2 .global func5 .type func5, %function func5: .LFB4: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str w0, [sp, 12] ldr w0, [sp, 12] add w1, w0, 1 adrp x0, vb11 add x0, x0, :lo12:vb11 str w1, [x0] adrp x0, vb11 add x0, x0, :lo12:vb11 ldr w0, [x0] add w1, w0, 1 adrp x0, :got:vb12 ldr x0, [x0, #:got_lo12:vb12] str w1, [x0] adrp x0, :got:vb12 ldr x0, [x0, #:got_lo12:vb12] ldr w0, [x0] add w1, w0, 1 adrp x0, :got:vb13 ldr x0, [x0, #:got_lo12:vb13] str w1, [x0] adrp x0, :got:vb13 ldr x0, [x0, #:got_lo12:vb13] ldr w0, [x0] add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE4: .size func5, .-func5 .align 2 .global func6 .type func6, %function func6: .LFB5: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str w0, [sp, 12] ldr w0, [sp, 12] add w1, w0, 1 adrp x0, :got:vb14 ldr x0, [x0, #:got_lo12:vb14] str w1, [x0] adrp x0, :got:vb14 ldr x0, [x0, #:got_lo12:vb14] ldr w0, [x0] add w1, w0, 1 adrp x0, vb15.0 add x0, x0, :lo12:vb15.0 str w1, [x0] adrp x0, vb15.0 add x0, x0, :lo12:vb15.0 ldr w0, [x0] add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE5: .size func6, .-func6 .local vb5.1 .comm vb5.1,4,4 .local vb15.0 .comm vb15.0,4,4 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "Enter real and imaginary value of complex number: " .align 3 .LC1: .string "%lf%lf" .align 3 .LC2: .string "r = %g\ntheta = %g rads\n" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 56] mov x1, 0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf add x1, sp, 32 add x0, sp, 24 mov x2, x1 mov x1, x0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl __isoc99_scanf ldr d1, [sp, 24] ldr d0, [sp, 24] fmul d1, d1, d0 ldr d2, [sp, 32] ldr d0, [sp, 32] fmul d0, d2, d0 fadd d0, d1, d0 bl sqrt str d0, [sp, 40] ldr d1, [sp, 24] ldr d0, [sp, 32] fdiv d0, d1, d0 bl atan str d0, [sp, 48] ldr d1, [sp, 48] ldr d0, [sp, 40] adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 56] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L3 bl __stack_chk_fail .L3: mov w0, w1 ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .type SS, %object .size SS, 1 SS: .byte 40 .type MOSI, %object .size MOSI, 1 MOSI: .byte 41 .type MISO, %object .size MISO, 1 MISO: .byte 42 .type SCK, %object .size SCK, 1 SCK: .byte 43 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global __progname .section .rodata .align 3 .LC0: .string "" .section .data.rel.local,"aw" .align 3 .type __progname, %object .size __progname, 8 __progname: .xword .LC0 .text .align 2 .global ___start .type ___start, %function ___start: .LFB6: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str w0, [sp, 44] str x1, [sp, 32] str x2, [sp, 24] adrp x0, :got:environ ldr x0, [x0, #:got_lo12:environ] ldr x1, [sp, 24] str x1, [x0] ldr x0, [sp, 32] ldr x1, [x0] adrp x0, __progname add x0, x0, :lo12:__progname str x1, [x0] bl _libc_init adrp x0, :got:environ ldr x0, [x0, #:got_lo12:environ] ldr x0, [x0] mov x2, x0 ldr x1, [sp, 32] ldr w0, [sp, 44] bl main bl exit .cfi_endproc .LFE6: .size ___start, .-___start ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC2: .string "<<\354\240\220\354\210\230\355\221\234>>" .align 3 .LC3: .string "%23s\n" .align 3 .LC4: .string "\355\217\211\352\267\240" .align 3 .LC5: .string "\354\264\235\354\240\220\354\210\230" .align 3 .LC6: .string "\354\230\201\354\226\264" .align 3 .LC7: .string "\354\210\230\355\225\231" .align 3 .LC8: .string "\352\265\255\354\226\264" .align 3 .LC9: .string "\354\235\264\353\246\204" .align 3 .LC10: .string "%4s%6s%6s%6s%8s%9s\n" .align 3 .LC11: .string "---------------------------------------" .align 3 .LC12: .string "%4s%6d%6d%6d%8d%9.2f\n" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -96]! .cfi_def_cfa_offset 96 .cfi_offset 29, -96 .cfi_offset 30, -88 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 88] mov x1, 0 adrp x0, .LC0 add x1, x0, :lo12:.LC0 add x0, sp, 32 ldr x2, [x1] str x2, [x0] ldr x1, [x1, 7] str x1, [x0, 7] adrp x0, .LC1 add x1, x0, :lo12:.LC1 add x0, sp, 48 ldp q0, q1, [x1] stp q0, q1, [x0] ldr w1, [x1, 32] str w1, [x0, 32] adrp x0, .LC2 add x1, x0, :lo12:.LC2 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl printf adrp x0, .LC4 add x6, x0, :lo12:.LC4 adrp x0, .LC5 add x5, x0, :lo12:.LC5 adrp x0, .LC6 add x4, x0, :lo12:.LC6 adrp x0, .LC7 add x3, x0, :lo12:.LC7 adrp x0, .LC8 add x2, x0, :lo12:.LC8 adrp x0, .LC9 add x1, x0, :lo12:.LC9 adrp x0, .LC10 add x0, x0, :lo12:.LC10 bl printf adrp x0, .LC11 add x0, x0, :lo12:.LC11 bl puts str wzr, [sp, 28] b .L2 .L3: add x2, sp, 32 ldrsw x1, [sp, 28] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 add x6, x2, x0 ldrsw x1, [sp, 28] mov x0, x1 lsl x0, x0, 1 add x0, x0, x1 lsl x0, x0, 2 add x1, sp, 48 ldr w7, [x1, x0] ldrsw x1, [sp, 28] mov x0, x1 lsl x0, x0, 1 add x0, x0, x1 lsl x0, x0, 2 add x1, sp, 52 ldr w3, [x1, x0] ldrsw x1, [sp, 28] mov x0, x1 lsl x0, x0, 1 add x0, x0, x1 lsl x0, x0, 2 add x1, sp, 56 ldr w4, [x1, x0] ldrsw x1, [sp, 28] mov x0, x1 lsl x0, x0, 1 add x0, x0, x1 lsl x0, x0, 2 add x1, sp, 48 ldr w2, [x1, x0] ldrsw x1, [sp, 28] mov x0, x1 lsl x0, x0, 1 add x0, x0, x1 lsl x0, x0, 2 add x1, sp, 52 ldr w0, [x1, x0] add w2, w2, w0 ldrsw x1, [sp, 28] mov x0, x1 lsl x0, x0, 1 add x0, x0, x1 lsl x0, x0, 2 add x1, sp, 48 ldr w0, [x1, x0] add w5, w2, w0 ldrsw x1, [sp, 28] mov x0, x1 lsl x0, x0, 1 add x0, x0, x1 lsl x0, x0, 2 add x1, sp, 48 ldr w2, [x1, x0] ldrsw x1, [sp, 28] mov x0, x1 lsl x0, x0, 1 add x0, x0, x1 lsl x0, x0, 2 add x1, sp, 52 ldr w0, [x1, x0] add w2, w2, w0 ldrsw x1, [sp, 28] mov x0, x1 lsl x0, x0, 1 add x0, x0, x1 lsl x0, x0, 2 add x1, sp, 56 ldr w0, [x1, x0] add w0, w2, w0 scvtf d1, w0 fmov d0, 3.0e+0 fdiv d0, d1, d0 mov w2, w7 mov x1, x6 adrp x0, .LC12 add x0, x0, :lo12:.LC12 bl printf ldr w0, [sp, 28] add w0, w0, 1 str w0, [sp, 28] .L2: ldr w0, [sp, 28] cmp w0, 2 ble .L3 mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 88] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L5 bl __stack_chk_fail .L5: mov w0, w1 ldp x29, x30, [sp], 96 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main .section .rodata .align 3 .LC0: .ascii "\353\214\200\355\225" .ascii "\353\257\274\352\265" .ascii "\353\247\214\354\204" .align 3 .LC1: .word 92 .word 95 .word 89 .word 100 .word 77 .word 62 .word 58 .word 88 .word 74 .text ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global __src_osax_payload .data .align 3 .type __src_osax_payload, %object .size __src_osax_payload, 40352 __src_osax_payload: .byte -49 .byte -6 .byte -19 .byte -2 .byte 7 .byte 0 .byte 0 .byte 1 .byte 3 .byte 0 .byte 0 .byte 0 .byte 6 .byte 0 .byte 0 .byte 0 .byte 19 .byte 0 .byte 0 .byte 0 .byte 40 .byte 11 .byte 0 .byte 0 .byte -123 .byte 0 .byte 16 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 25 .byte 0 .byte 0 .byte 0 .byte 24 .byte 3 .byte 0 .byte 0 .byte 95 .byte 95 .byte 84 .byte 69 .byte 88 .byte 84 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 112 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 112 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 9 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 116 .byte 101 .byte 120 .byte 116 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 84 .byte 69 .byte 88 .byte 84 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 13 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 31 .byte 56 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 13 .byte 0 .byte 0 .byte 4 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 4 .byte 0 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 115 .byte 116 .byte 117 .byte 98 .byte 115 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 84 .byte 69 .byte 88 .byte 84 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 32 .byte 69 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 116 .byte 1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 32 .byte 69 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 8 .byte 4 .byte 0 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 6 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 115 .byte 116 .byte 117 .byte 98 .byte 95 .byte 104 .byte 101 .byte 108 .byte 112 .byte 101 .byte 114 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 84 .byte 69 .byte 88 .byte 84 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -108 .byte 70 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 124 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -108 .byte 70 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 4 .byte 0 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 99 .byte 111 .byte 110 .byte 115 .byte 116 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 84 .byte 69 .byte 88 .byte 84 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 16 .byte 73 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 112 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 16 .byte 73 .byte 0 .byte 0 .byte 4 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 99 .byte 115 .byte 116 .byte 114 .byte 105 .byte 110 .byte 103 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 84 .byte 69 .byte 88 .byte 84 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -128 .byte 73 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -29 .byte 36 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -128 .byte 73 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 109 .byte 101 .byte 116 .byte 104 .byte 110 .byte 97 .byte 109 .byte 101 .byte 0 .byte 95 .byte 95 .byte 84 .byte 69 .byte 88 .byte 84 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 99 .byte 110 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 99 .byte 110 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 99 .byte 108 .byte 97 .byte 115 .byte 115 .byte 110 .byte 97 .byte 109 .byte 101 .byte 95 .byte 95 .byte 84 .byte 69 .byte 88 .byte 84 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 97 .byte 111 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 8 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 97 .byte 111 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 109 .byte 101 .byte 116 .byte 104 .byte 116 .byte 121 .byte 112 .byte 101 .byte 0 .byte 95 .byte 95 .byte 84 .byte 69 .byte 88 .byte 84 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 105 .byte 111 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 8 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 105 .byte 111 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 117 .byte 110 .byte 119 .byte 105 .byte 110 .byte 100 .byte 95 .byte 105 .byte 110 .byte 102 .byte 111 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 84 .byte 69 .byte 88 .byte 84 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 116 .byte 111 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -116 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 116 .byte 111 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 25 .byte 0 .byte 0 .byte 0 .byte 88 .byte 4 .byte 0 .byte 0 .byte 95 .byte 95 .byte 68 .byte 65 .byte 84 .byte 65 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 112 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 16 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 112 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 16 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 13 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 110 .byte 108 .byte 95 .byte 115 .byte 121 .byte 109 .byte 98 .byte 111 .byte 108 .byte 95 .byte 112 .byte 116 .byte 114 .byte 0 .byte 95 .byte 95 .byte 68 .byte 65 .byte 84 .byte 65 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 112 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 8 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 112 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 6 .byte 0 .byte 0 .byte 0 .byte 62 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 103 .byte 111 .byte 116 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 68 .byte 65 .byte 84 .byte 65 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 8 .byte 112 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 8 .byte 112 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 6 .byte 0 .byte 0 .byte 0 .byte 63 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 108 .byte 97 .byte 95 .byte 115 .byte 121 .byte 109 .byte 98 .byte 111 .byte 108 .byte 95 .byte 112 .byte 116 .byte 114 .byte 0 .byte 95 .byte 95 .byte 68 .byte 65 .byte 84 .byte 65 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 80 .byte 112 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -16 .byte 1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 80 .byte 112 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 7 .byte 0 .byte 0 .byte 0 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 99 .byte 111 .byte 110 .byte 115 .byte 116 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 68 .byte 65 .byte 84 .byte 65 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 64 .byte 114 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -88 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 64 .byte 114 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 99 .byte 102 .byte 115 .byte 116 .byte 114 .byte 105 .byte 110 .byte 103 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 68 .byte 65 .byte 84 .byte 65 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -24 .byte 114 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 32 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -24 .byte 114 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 99 .byte 108 .byte 97 .byte 115 .byte 115 .byte 108 .byte 105 .byte 115 .byte 116 .byte 95 .byte 95 .byte 68 .byte 65 .byte 84 .byte 65 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 8 .byte 117 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 8 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 8 .byte 117 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 16 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 110 .byte 108 .byte 99 .byte 108 .byte 115 .byte 108 .byte 105 .byte 115 .byte 116 .byte 95 .byte 95 .byte 68 .byte 65 .byte 84 .byte 65 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 16 .byte 117 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 8 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 16 .byte 117 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 16 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 105 .byte 109 .byte 97 .byte 103 .byte 101 .byte 105 .byte 110 .byte 102 .byte 111 .byte 95 .byte 95 .byte 68 .byte 65 .byte 84 .byte 65 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 24 .byte 117 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 8 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 24 .byte 117 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 99 .byte 111 .byte 110 .byte 115 .byte 116 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 68 .byte 65 .byte 84 .byte 65 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 32 .byte 117 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -80 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 32 .byte 117 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 115 .byte 101 .byte 108 .byte 114 .byte 101 .byte 102 .byte 115 .byte 0 .byte 0 .byte 95 .byte 95 .byte 68 .byte 65 .byte 84 .byte 65 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -48 .byte 117 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 96 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -48 .byte 117 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 16 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 99 .byte 108 .byte 97 .byte 115 .byte 115 .byte 114 .byte 101 .byte 102 .byte 115 .byte 95 .byte 95 .byte 68 .byte 65 .byte 84 .byte 65 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 48 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 24 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 48 .byte 118 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 16 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 100 .byte 97 .byte 116 .byte 97 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 68 .byte 65 .byte 84 .byte 65 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 80 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte 118 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 98 .byte 115 .byte 115 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 68 .byte 65 .byte 84 .byte 65 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -104 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 25 .byte 0 .byte 0 .byte 0 .byte 72 .byte 0 .byte 0 .byte 0 .byte 95 .byte 95 .byte 76 .byte 73 .byte 78 .byte 75 .byte 69 .byte 68 .byte 73 .byte 84 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 32 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -96 .byte 29 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 13 .byte 0 .byte 0 .byte 0 .byte 48 .byte 0 .byte 0 .byte 0 .byte 24 .byte 0 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 46 .byte 47 .byte 115 .byte 114 .byte 99 .byte 47 .byte 111 .byte 115 .byte 97 .byte 120 .byte 47 .byte 112 .byte 97 .byte 121 .byte 108 .byte 111 .byte 97 .byte 100 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 34 .byte 0 .byte 0 .byte -128 .byte 48 .byte 0 .byte 0 .byte 0 .byte 0 .byte -128 .byte 0 .byte 0 .byte 32 .byte 0 .byte 0 .byte 0 .byte 32 .byte -128 .byte 0 .byte 0 .byte -56 .byte 1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -24 .byte -127 .byte 0 .byte 0 .byte -16 .byte 5 .byte 0 .byte 0 .byte -40 .byte -121 .byte 0 .byte 0 .byte 96 .byte 1 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 24 .byte 0 .byte 0 .byte 0 .byte 96 .byte -119 .byte 0 .byte 0 .byte 127 .byte 0 .byte 0 .byte 0 .byte 104 .byte -109 .byte 0 .byte 0 .byte 56 .byte 10 .byte 0 .byte 0 .byte 11 .byte 0 .byte 0 .byte 0 .byte 80 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 35 .byte 0 .byte 0 .byte 0 .byte 35 .byte 0 .byte 0 .byte 0 .byte 14 .byte 0 .byte 0 .byte 0 .byte 49 .byte 0 .byte 0 .byte 0 .byte 78 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 80 .byte -111 .byte 0 .byte 0 .byte -122 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 27 .byte 0 .byte 0 .byte 0 .byte 24 .byte 0 .byte 0 .byte 0 .byte 74 .byte 31 .byte -79 .byte 51 .byte 89 .byte 70 .byte 49 .byte -61 .byte -92 .byte 2 .byte -16 .byte -111 .byte -115 .byte 26 .byte 80 .byte 37 .byte 36 .byte 0 .byte 0 .byte 0 .byte 16 .byte 0 .byte 0 .byte 0 .byte 0 .byte 13 .byte 10 .byte 0 .byte 4 .byte 15 .byte 10 .byte 0 .byte 42 .byte 0 .byte 0 .byte 0 .byte 16 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 12 .byte 0 .byte 0 .byte 0 .byte 88 .byte 0 .byte 0 .byte 0 .byte 24 .byte 0 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 23 .byte 0 .byte 0 .byte 0 .byte 1 .byte 0 .byte 47 .byte 83 .byte 121 .byte 115 .byte 116 .byte 101 .byte 109 .byte 47 .byte 76 .byte 105 .byte 98 .byte 114 .byte 97 .byte 114 .byte 121 .byte 47 .byte 70 .byte 114 .byte 97 .byte 109 .byte 101 .byte 119 .byte 111 .byte 114 .byte 107 .byte 115 .byte 47 .byte 67 .byte 111 .byte 99 .byte 111 .byte 97 .byte 46 .byte 102 .byte 114 .byte 97 .byte 109 .byte 101 .byte 119 .byte 111 .byte 114 .byte 107 .byte 47 .byte 86 .byte 101 .byte 114 .byte 115 .byte 105 .byte 111 .byte 110 .byte 115 .byte 47 .byte 65 .byte 47 .byte 67 .byte 111 .byte 99 .byte 111 .byte 97 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 12 .byte 0 .byte 0 .byte 0 .byte 88 .byte 0 .byte 0 .byte 0 .byte 24 .byte 0 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -94 .byte 0 .byte 0 .byte 0 .byte 2 .byte 0 .byte 47 .byte 83 .byte 121 .byte 115 .byte 116 .byte 101 .byte 109 .byte 47 .byte 76 .byte 105 .byte 98 .byte 114 .byte 97 .byte 114 .byte 121 .byte 47 .byte 70 .byte 114 .byte 97 .byte 109 .byte 101 .byte 119 .byte 111 .byte 114 .byte 107 .byte 115 .byte 47 .byte 67 .byte 97 .byte 114 .byte 98 .byte 111 .byte 110 .byte 46 .byte 102 .byte 114 .byte 97 .byte 109 .byte 101 .byte 119 .byte 111 .byte 114 .byte 107 .byte 47 .byte 86 .byte 101 .byte 114 .byte 115 .byte 105 .byte 111 .byte 110 .byte 115 .byte 47 .byte 65 .byte 47 .byte 67 .byte 97 .byte 114 .byte 98 .byte 111 .byte 110 .byte 0 .byte 0 .byte 0 .byte 12 .byte 0 .byte 0 .byte 0 .byte 56 .byte 0 .byte 0 .byte 0 .byte 24 .byte 0 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 1 .byte 100 .byte 1 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 47 .byte 117 .byte 115 .byte 114 .byte 47 .byte 108 .byte 105 .byte 98 .byte 47 .byte 108 .byte 105 .byte 98 .byte 83 .byte 121 .byte 115 .byte 116 .byte 101 .byte 109 .byte 46 .byte 66 .byte 46 .byte 100 .byte 121 .byte 108 .byte 105 .byte 98 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 12 .byte 0 .byte 0 .byte 0 .byte 104 .byte 0 .byte 0 .byte 0 .byte 24 .byte 0 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte -127 .byte -117 .byte 6 .byte 0 .byte 0 .byte -106 .byte 0 .byte 47 .byte 83 .byte 121 .byte 115 .byte 116 .byte 101 .byte 109 .byte 47 .byte 76 .byte 105 .byte 98 .byte 114 .byte 97 .byte 114 .byte 121 .byte 47 .byte 70 .byte 114 .byte 97 .byte 109 .byte 101 .byte 119 .byte 111 .byte 114 .byte 107 .byte 115 .byte 47 .byte 67 .byte 111 .byte 114 .byte 101 .byte 70 .byte 111 .byte 117 .byte 110 .byte 100 .byte 97 .byte 116 .byte 105 .byte 111 .byte 110 .byte 46 .byte 102 .byte 114 .byte 97 .byte 109 .byte 101 .byte 119 .byte 111 .byte 114 .byte 107 .byte 47 .byte 86 .byte 101 .byte 114 .byte 115 .byte 105 .byte 111 .byte 110 .byte 115 .byte 47 .byte 65 .byte 47 .byte 67 .byte 111 .byte 114 .byte 101 .byte 70 .byte 111 .byte 117 .byte 110 .byte 100 .byte 97 .byte 116 .byte 105 .byte 111 .byte 110 .byte 0 .byte 0 .byte 0 .byte 12 .byte 0 .byte 0 .byte 0 .byte 104 .byte 0 .byte 0 .byte 0 .byte 24 .byte 0 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 13 .byte 75 .byte 5 .byte 0 .byte 0 .byte 64 .byte 0 .byte 47 .byte 83 .byte 121 .byte 115 .byte 116 .byte 101 .byte 109 .byte 47 .byte 76 .byte 105 .byte 98 .byte 114 .byte 97 .byte 114 .byte 121 .byte 47 .byte 70 .byte 114 .byte 97 .byte 109 .byte 101 .byte 119 .byte 111 .byte 114 .byte 107 .byte 115 .byte 47 .byte 67 .byte 111 .byte 114 .byte 101 .byte 71 .byte 114 .byte 97 .byte 112 .byte 104 .byte 105 .byte 99 .byte 115 .byte 46 .byte 102 .byte 114 .byte 97 .byte 109 .byte 101 .byte 119 .byte 111 .byte 114 .byte 107 .byte 47 .byte 86 .byte 101 .byte 114 .byte 115 .byte 105 .byte 111 .byte 110 .byte 115 .byte 47 .byte 65 .byte 47 .byte 67 .byte 111 .byte 114 .byte 101 .byte 71 .byte 114 .byte 97 .byte 112 .byte 104 .byte 105 .byte 99 .byte 115 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 12 .byte 0 .byte 0 .byte 0 .byte 96 .byte 0 .byte 0 .byte 0 .byte 24 .byte 0 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte -127 .byte -117 .byte 6 .byte 0 .byte 0 .byte 44 .byte 1 .byte 47 .byte 83 .byte 121 .byte 115 .byte 116 .byte 101 .byte 109 .byte 47 .byte 76 .byte 105 .byte 98 .byte 114 .byte 97 .byte 114 .byte 121 .byte 47 .byte 70 .byte 114 .byte 97 .byte 109 .byte 101 .byte 119 .byte 111 .byte 114 .byte 107 .byte 115 .byte 47 .byte 70 .byte 111 .byte 117 .byte 110 .byte 100 .byte 97 .byte 116 .byte 105 .byte 111 .byte 110 .byte 46 .byte 102 .byte 114 .byte 97 .byte 109 .byte 101 .byte 119 .byte 111 .byte 114 .byte 107 .byte 47 .byte 86 .byte 101 .byte 114 .byte 115 .byte 105 .byte 111 .byte 110 .byte 115 .byte 47 .byte 67 .byte 47 .byte 70 .byte 111 .byte 117 .byte 110 .byte 100 .byte 97 .byte 116 .byte 105 .byte 111 .byte 110 .byte 0 .byte 0 .byte 0 .byte 12 .byte 0 .byte 0 .byte 0 .byte 56 .byte 0 .byte 0 .byte 0 .byte 24 .byte 0 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -28 .byte 0 .byte 0 .byte 0 .byte 1 .byte 0 .byte 47 .byte 117 .byte 115 .byte 114 .byte 47 .byte 108 .byte 105 .byte 98 .byte 47 .byte 108 .byte 105 .byte 98 .byte 111 .byte 98 .byte 106 .byte 99 .byte 46 .byte 65 .byte 46 .byte 100 .byte 121 .byte 108 .byte 105 .byte 98 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 38 .byte 0 .byte 0 .byte 0 .byte 16 .byte 0 .byte 0 .byte 0 .byte 56 .byte -119 .byte 0 .byte 0 .byte 40 .byte 0 .byte 0 .byte 0 .byte 41 .byte 0 .byte 0 .byte 0 .byte 16 .byte 0 .byte 0 .byte 0 .byte 96 .byte -119 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -117 .byte 69 .byte 24 .byte 72 .byte -125 .byte -8 .byte 13 .byte 116 .byte 37 .byte 72 .byte -125 .byte -8 .byte 15 .byte 116 .byte 38 .byte 72 .byte -125 .byte -8 .byte 14 .byte 117 .byte 39 .byte 72 .byte -115 .byte 69 .byte 16 .byte 72 .byte -125 .byte 120 .byte 16 .byte 3 .byte -71 .byte 0 .byte -113 .byte 0 .byte 0 .byte -72 .byte 0 .byte -102 .byte 0 .byte 0 .byte 72 .byte 15 .byte 79 .byte -63 .byte 93 .byte -61 .byte -72 .byte 16 .byte 14 .byte 0 .byte 0 .byte 93 .byte -61 .byte -72 .byte 0 .byte -128 .byte 0 .byte 0 .byte 93 .byte -61 .byte 49 .byte -64 .byte 93 .byte -61 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -112 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -117 .byte 69 .byte 24 .byte 72 .byte -115 .byte 72 .byte -13 .byte 72 .byte -125 .byte -7 .byte 2 .byte 119 .byte 14 .byte 72 .byte -115 .byte 13 .byte -49 .byte 59 .byte 0 .byte 0 .byte 72 .byte -117 .byte 68 .byte -63 .byte -104 .byte 93 .byte -61 .byte 49 .byte -64 .byte 93 .byte -61 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 102 .byte -112 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -117 .byte 69 .byte 24 .byte 72 .byte -115 .byte 72 .byte -13 .byte 72 .byte -125 .byte -7 .byte 2 .byte 119 .byte 14 .byte 72 .byte -115 .byte 13 .byte -73 .byte 59 .byte 0 .byte 0 .byte 72 .byte -117 .byte 68 .byte -63 .byte -104 .byte 93 .byte -61 .byte 49 .byte -64 .byte 93 .byte -61 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 102 .byte -112 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -117 .byte 69 .byte 24 .byte 72 .byte -115 .byte 72 .byte -13 .byte 72 .byte -125 .byte -7 .byte 2 .byte 119 .byte 14 .byte 72 .byte -115 .byte 13 .byte -97 .byte 59 .byte 0 .byte 0 .byte 72 .byte -117 .byte 68 .byte -63 .byte -104 .byte 93 .byte -61 .byte 49 .byte -64 .byte 93 .byte -61 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 102 .byte -112 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -115 .byte 77 .byte 16 .byte 72 .byte -117 .byte 69 .byte 24 .byte 72 .byte -125 .byte -8 .byte 13 .byte 116 .byte 33 .byte 72 .byte -125 .byte -8 .byte 15 .byte 116 .byte 43 .byte 72 .byte -125 .byte -8 .byte 14 .byte 117 .byte 33 .byte 72 .byte -125 .byte 121 .byte 16 .byte 3 .byte -71 .byte 16 .byte -37 .byte 55 .byte 0 .byte -72 .byte 0 .byte -11 .byte 54 .byte 0 .byte 72 .byte 15 .byte 79 .byte -63 .byte 93 .byte -61 .byte -72 .byte 0 .byte -101 .byte 73 .byte 0 .byte 72 .byte -125 .byte 121 .byte 16 .byte 6 .byte 116 .byte 2 .byte 49 .byte -64 .byte 93 .byte -61 .byte -72 .byte 0 .byte 0 .byte 49 .byte 0 .byte 93 .byte -61 .byte 102 .byte 15 .byte 31 .byte 68 .byte 0 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -115 .byte 77 .byte 16 .byte 72 .byte -117 .byte 69 .byte 24 .byte 72 .byte -125 .byte -8 .byte 13 .byte 116 .byte 26 .byte 72 .byte -125 .byte -8 .byte 15 .byte 116 .byte 36 .byte 72 .byte -125 .byte -8 .byte 14 .byte 117 .byte 26 .byte -72 .byte 0 .byte 117 .byte 5 .byte 0 .byte 72 .byte -125 .byte 121 .byte 16 .byte 3 .byte 126 .byte 14 .byte -21 .byte 14 .byte -72 .byte 0 .byte -106 .byte 5 .byte 0 .byte 72 .byte -125 .byte 121 .byte 16 .byte 6 .byte 116 .byte 2 .byte 49 .byte -64 .byte 93 .byte -61 .byte -72 .byte 0 .byte 48 .byte 5 .byte 0 .byte 93 .byte -61 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -117 .byte 69 .byte 24 .byte 72 .byte -125 .byte -8 .byte 13 .byte 116 .byte 41 .byte 72 .byte -125 .byte -8 .byte 14 .byte 116 .byte 44 .byte 72 .byte -125 .byte -8 .byte 15 .byte 117 .byte 47 .byte 72 .byte -115 .byte 69 .byte 16 .byte 72 .byte -125 .byte 120 .byte 16 .byte 3 .byte 72 .byte -115 .byte 13 .byte -42 .byte 58 .byte 0 .byte 0 .byte 72 .byte -115 .byte 5 .byte -23 .byte 59 .byte 0 .byte 0 .byte 72 .byte 15 .byte 79 .byte -63 .byte 93 .byte -61 .byte 72 .byte -115 .byte 5 .byte -56 .byte 61 .byte 0 .byte 0 .byte 93 .byte -61 .byte 72 .byte -115 .byte 5 .byte -55 .byte 60 .byte 0 .byte 0 .byte 93 .byte -61 .byte 49 .byte -64 .byte 93 .byte -61 .byte 15 .byte 31 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -117 .byte 69 .byte 24 .byte 72 .byte -115 .byte 72 .byte -13 .byte 72 .byte -125 .byte -7 .byte 2 .byte 119 .byte 14 .byte 72 .byte -115 .byte 13 .byte -25 .byte 99 .byte 0 .byte 0 .byte 72 .byte -117 .byte 68 .byte -63 .byte -104 .byte 93 .byte -61 .byte 49 .byte -64 .byte 93 .byte -61 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 102 .byte -112 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -117 .byte 77 .byte 24 .byte 72 .byte -125 .byte -7 .byte 13 .byte 116 .byte 37 .byte 72 .byte -115 .byte 69 .byte 16 .byte 72 .byte -125 .byte -7 .byte 14 .byte 116 .byte 36 .byte 72 .byte -125 .byte -7 .byte 15 .byte 117 .byte 55 .byte 72 .byte -125 .byte 120 .byte 16 .byte 3 .byte 72 .byte -115 .byte 13 .byte 52 .byte 65 .byte 0 .byte 0 .byte 72 .byte -115 .byte 5 .byte 77 .byte 66 .byte 0 .byte 0 .byte -21 .byte 28 .byte 72 .byte -115 .byte 5 .byte 76 .byte 73 .byte 0 .byte 0 .byte 93 .byte -61 .byte 72 .byte -125 .byte 120 .byte 16 .byte 3 .byte 72 .byte -115 .byte 13 .byte 86 .byte 67 .byte 0 .byte 0 .byte 72 .byte -115 .byte 5 .byte -8 .byte 69 .byte 0 .byte 0 .byte 72 .byte 15 .byte 79 .byte -63 .byte 93 .byte -61 .byte 49 .byte -64 .byte 93 .byte -61 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -117 .byte 77 .byte 24 .byte 72 .byte -125 .byte -7 .byte 13 .byte 116 .byte 37 .byte 72 .byte -115 .byte 69 .byte 16 .byte 72 .byte -125 .byte -7 .byte 14 .byte 116 .byte 36 .byte 72 .byte -125 .byte -7 .byte 15 .byte 117 .byte 55 .byte 72 .byte -125 .byte 120 .byte 16 .byte 3 .byte 72 .byte -115 .byte 13 .byte -35 .byte 73 .byte 0 .byte 0 .byte 72 .byte -115 .byte 5 .byte -10 .byte 74 .byte 0 .byte 0 .byte -21 .byte 28 .byte 72 .byte -115 .byte 5 .byte 91 .byte 79 .byte 0 .byte 0 .byte 93 .byte -61 .byte 72 .byte -125 .byte 120 .byte 16 .byte 3 .byte 72 .byte -115 .byte 13 .byte 47 .byte 76 .byte 0 .byte 0 .byte 72 .byte -115 .byte 5 .byte 125 .byte 78 .byte 0 .byte 0 .byte 72 .byte 15 .byte 79 .byte -63 .byte 93 .byte -61 .byte 49 .byte -64 .byte 93 .byte -61 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -115 .byte 69 .byte 16 .byte 72 .byte -117 .byte 77 .byte 24 .byte 72 .byte -125 .byte -7 .byte 13 .byte 116 .byte 58 .byte 72 .byte -125 .byte -7 .byte 14 .byte 116 .byte 27 .byte 72 .byte -125 .byte -7 .byte 15 .byte 117 .byte 62 .byte 72 .byte -125 .byte 120 .byte 16 .byte 3 .byte 72 .byte -115 .byte 13 .byte -68 .byte 79 .byte 0 .byte 0 .byte 72 .byte -115 .byte 5 .byte -43 .byte 80 .byte 0 .byte 0 .byte -21 .byte 19 .byte 72 .byte -125 .byte 120 .byte 16 .byte 3 .byte 72 .byte -115 .byte 13 .byte 23 .byte 82 .byte 0 .byte 0 .byte 72 .byte -115 .byte 5 .byte -125 .byte 84 .byte 0 .byte 0 .byte 72 .byte 15 .byte 79 .byte -63 .byte 93 .byte -61 .byte 72 .byte -125 .byte 120 .byte 16 .byte 6 .byte 117 .byte 9 .byte 72 .byte -115 .byte 5 .byte 59 .byte 85 .byte 0 .byte 0 .byte 93 .byte -61 .byte 49 .byte -64 .byte 93 .byte -61 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -115 .byte 69 .byte 16 .byte 72 .byte -117 .byte 77 .byte 24 .byte 72 .byte -125 .byte -7 .byte 13 .byte 116 .byte 28 .byte 72 .byte -125 .byte -7 .byte 15 .byte 116 .byte 42 .byte 72 .byte -125 .byte -7 .byte 14 .byte 117 .byte 32 .byte 72 .byte -125 .byte 120 .byte 16 .byte 3 .byte 126 .byte 25 .byte 72 .byte -115 .byte 5 .byte -23 .byte 86 .byte 0 .byte 0 .byte 93 .byte -61 .byte 72 .byte -125 .byte 120 .byte 16 .byte 6 .byte 117 .byte 9 .byte 72 .byte -115 .byte 5 .byte -28 .byte 87 .byte 0 .byte 0 .byte 93 .byte -61 .byte 49 .byte -64 .byte 93 .byte -61 .byte 72 .byte -115 .byte 5 .byte -72 .byte 85 .byte 0 .byte 0 .byte 93 .byte -61 .byte 15 .byte 31 .byte 68 .byte 0 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 65 .byte 87 .byte 65 .byte 86 .byte 65 .byte 84 .byte 83 .byte 72 .byte -127 .byte -20 .byte -112 .byte 4 .byte 0 .byte 0 .byte 72 .byte -117 .byte 5 .byte -105 .byte 95 .byte 0 .byte 0 .byte 72 .byte -117 .byte 0 .byte 72 .byte -119 .byte 69 .byte -40 .byte 72 .byte -115 .byte 61 .byte 81 .byte 98 .byte 0 .byte 0 .byte 49 .byte -64 .byte -24 .byte 30 .byte 53 .byte 0 .byte 0 .byte 72 .byte -117 .byte 61 .byte -117 .byte 101 .byte 0 .byte 0 .byte 72 .byte -117 .byte 53 .byte 44 .byte 101 .byte 0 .byte 0 .byte -1 .byte 21 .byte 126 .byte 95 .byte 0 .byte 0 .byte 72 .byte -123 .byte -64 .byte 15 .byte -124 .byte -75 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte 21 .byte 30 .byte 101 .byte 0 .byte 0 .byte 72 .byte -115 .byte -67 .byte 96 .byte -1 .byte -1 .byte -1 .byte 72 .byte -119 .byte -58 .byte -24 .byte 123 .byte 53 .byte 0 .byte 0 .byte 72 .byte -117 .byte -123 .byte 104 .byte -1 .byte -1 .byte -1 .byte 72 .byte -125 .byte -64 .byte -13 .byte 72 .byte -125 .byte -8 .byte 3 .byte 15 .byte -125 .byte -97 .byte 0 .byte 0 .byte 0 .byte 72 .byte -115 .byte 61 .byte -102 .byte 92 .byte 0 .byte 0 .byte -24 .byte 54 .byte 53 .byte 0 .byte 0 .byte 76 .byte -117 .byte 96 .byte 24 .byte -57 .byte -123 .byte 92 .byte -5 .byte -1 .byte -1 .byte 0 .byte 4 .byte 0 .byte 0 .byte 72 .byte -115 .byte -67 .byte 96 .byte -5 .byte -1 .byte -1 .byte 72 .byte -115 .byte -75 .byte 92 .byte -5 .byte -1 .byte -1 .byte -24 .byte -63 .byte 52 .byte 0 .byte 0 .byte 73 .byte -57 .byte -58 .byte -1 .byte -1 .byte -1 .byte -1 .byte -123 .byte -64 .byte 15 .byte -124 .byte -61 .byte 1 .byte 0 .byte 0 .byte 77 .byte 1 .byte -26 .byte 72 .byte -117 .byte -123 .byte 104 .byte -1 .byte -1 .byte -1 .byte 72 .byte -125 .byte -8 .byte 13 .byte 15 .byte -124 .byte -12 .byte 1 .byte 0 .byte 0 .byte 72 .byte -125 .byte -8 .byte 14 .byte 15 .byte -124 .byte -6 .byte 1 .byte 0 .byte 0 .byte 72 .byte -125 .byte -8 .byte 15 .byte 15 .byte -123 .byte 18 .byte 2 .byte 0 .byte 0 .byte 73 .byte -115 .byte -66 .byte 0 .byte -128 .byte 0 .byte 0 .byte 72 .byte -125 .byte -67 .byte 112 .byte -1 .byte -1 .byte -1 .byte 3 .byte 72 .byte -115 .byte 5 .byte 32 .byte 56 .byte 0 .byte 0 .byte 72 .byte -115 .byte 53 .byte 51 .byte 57 .byte 0 .byte 0 .byte 72 .byte 15 .byte 79 .byte -16 .byte -23 .byte -15 .byte 1 .byte 0 .byte 0 .byte 15 .byte 87 .byte -64 .byte 15 .byte 41 .byte -123 .byte 96 .byte -1 .byte -1 .byte -1 .byte 72 .byte -57 .byte -123 .byte 112 .byte -1 .byte -1 .byte -1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte -115 .byte 61 .byte -36 .byte 97 .byte 0 .byte 0 .byte 49 .byte -64 .byte -24 .byte 41 .byte 52 .byte 0 .byte 0 .byte 72 .byte -115 .byte 61 .byte -20 .byte 87 .byte 0 .byte 0 .byte -24 .byte -125 .byte 52 .byte 0 .byte 0 .byte 72 .byte -123 .byte -64 .byte 15 .byte -124 .byte -24 .byte 0 .byte 0 .byte 0 .byte 76 .byte -115 .byte 5 .byte 9 .byte 88 .byte 0 .byte 0 .byte 72 .byte -115 .byte -99 .byte 96 .byte -5 .byte -1 .byte -1 .byte -66 .byte -1 .byte 0 .byte 0 .byte 0 .byte -71 .byte -1 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -33 .byte -70 .byte 0 .byte 0 .byte 0 .byte 0 .byte 73 .byte -119 .byte -63 .byte 49 .byte -64 .byte -24 .byte 20 .byte 52 .byte 0 .byte 0 .byte -58 .byte -123 .byte 97 .byte -1 .byte -1 .byte -1 .byte 1 .byte 72 .byte -115 .byte -67 .byte 98 .byte -1 .byte -1 .byte -1 .byte 76 .byte -115 .byte 5 .byte -89 .byte 91 .byte 0 .byte 0 .byte -66 .byte 104 .byte 0 .byte 0 .byte 0 .byte -71 .byte 104 .byte 0 .byte 0 .byte 0 .byte -70 .byte 0 .byte 0 .byte 0 .byte 0 .byte 73 .byte -119 .byte -39 .byte 49 .byte -64 .byte -24 .byte -26 .byte 51 .byte 0 .byte 0 .byte 72 .byte -119 .byte -33 .byte -24 .byte -122 .byte 52 .byte 0 .byte 0 .byte -65 .byte 1 .byte 0 .byte 0 .byte 0 .byte -66 .byte 1 .byte 0 .byte 0 .byte 0 .byte 49 .byte -46 .byte -24 .byte 93 .byte 52 .byte 0 .byte 0 .byte -119 .byte 5 .byte -75 .byte 100 .byte 0 .byte 0 .byte 72 .byte -115 .byte 29 .byte 34 .byte 97 .byte 0 .byte 0 .byte -125 .byte -8 .byte -1 .byte 116 .byte 96 .byte 72 .byte -115 .byte -75 .byte 96 .byte -1 .byte -1 .byte -1 .byte -119 .byte -57 .byte -70 .byte 106 .byte 0 .byte 0 .byte 0 .byte -24 .byte -52 .byte 51 .byte 0 .byte 0 .byte -125 .byte -8 .byte -1 .byte 116 .byte 72 .byte 72 .byte -115 .byte -67 .byte 96 .byte -5 .byte -1 .byte -1 .byte -66 .byte -128 .byte 1 .byte 0 .byte 0 .byte -24 .byte -68 .byte 51 .byte 0 .byte 0 .byte -123 .byte -64 .byte 117 .byte 51 .byte -117 .byte 61 .byte 118 .byte 100 .byte 0 .byte 0 .byte -66 .byte -128 .byte 0 .byte 0 .byte 0 .byte -24 .byte -58 .byte 51 .byte 0 .byte 0 .byte -125 .byte -8 .byte -1 .byte 116 .byte 30 .byte 72 .byte -115 .byte 61 .byte 100 .byte 100 .byte 0 .byte 0 .byte 72 .byte -115 .byte 21 .byte 85 .byte 6 .byte 0 .byte 0 .byte 49 .byte -10 .byte 49 .byte -55 .byte -24 .byte -38 .byte 51 .byte 0 .byte 0 .byte 72 .byte -115 .byte 29 .byte -99 .byte 96 .byte 0 .byte 0 .byte 72 .byte -119 .byte -33 .byte -21 .byte 42 .byte -24 .byte 45 .byte 51 .byte 0 .byte 0 .byte 72 .byte -123 .byte -64 .byte 116 .byte 25 .byte 72 .byte -117 .byte 53 .byte 47 .byte 99 .byte 0 .byte 0 .byte 72 .byte -119 .byte -57 .byte -1 .byte 21 .byte -122 .byte 93 .byte 0 .byte 0 .byte 72 .byte -123 .byte -64 .byte 15 .byte -123 .byte -11 .byte -2 .byte -1 .byte -1 .byte 72 .byte -115 .byte 61 .byte 78 .byte 96 .byte 0 .byte 0 .byte 49 .byte -64 .byte -24 .byte -5 .byte 50 .byte 0 .byte 0 .byte 72 .byte -117 .byte 5 .byte 88 .byte 93 .byte 0 .byte 0 .byte 72 .byte -117 .byte 0 .byte 72 .byte 59 .byte 69 .byte -40 .byte 15 .byte -123 .byte 121 .byte 4 .byte 0 .byte 0 .byte 72 .byte -127 .byte -60 .byte -112 .byte 4 .byte 0 .byte 0 .byte 91 .byte 65 .byte 92 .byte 65 .byte 94 .byte 65 .byte 95 .byte 93 .byte -61 .byte -24 .byte 20 .byte 51 .byte 0 .byte 0 .byte 69 .byte 49 .byte -10 .byte -123 .byte -64 .byte 15 .byte -124 .byte 45 .byte -2 .byte -1 .byte -1 .byte 76 .byte -115 .byte -67 .byte 96 .byte -5 .byte -1 .byte -1 .byte 49 .byte -37 .byte 102 .byte -112 .byte -119 .byte -33 .byte -24 .byte -21 .byte 50 .byte 0 .byte 0 .byte 72 .byte -119 .byte -57 .byte 76 .byte -119 .byte -2 .byte -24 .byte 112 .byte 51 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -124 .byte 37 .byte 4 .byte 0 .byte 0 .byte -1 .byte -61 .byte -24 .byte -35 .byte 50 .byte 0 .byte 0 .byte 57 .byte -61 .byte 114 .byte -37 .byte -23 .byte -8 .byte -3 .byte -1 .byte -1 .byte 73 .byte -115 .byte -66 .byte 16 .byte 14 .byte 0 .byte 0 .byte 72 .byte -115 .byte 53 .byte 78 .byte 57 .byte 0 .byte 0 .byte -21 .byte 39 .byte 72 .byte -125 .byte -67 .byte 112 .byte -1 .byte -1 .byte -1 .byte 3 .byte -72 .byte 0 .byte -113 .byte 0 .byte 0 .byte -65 .byte 0 .byte -102 .byte 0 .byte 0 .byte 72 .byte 15 .byte 79 .byte -8 .byte 76 .byte 1 .byte -9 .byte 72 .byte -115 .byte 53 .byte 54 .byte 56 .byte 0 .byte 0 .byte -21 .byte 5 .byte 49 .byte -10 .byte 76 .byte -119 .byte -9 .byte -24 .byte -6 .byte 3 .byte 0 .byte 0 .byte 72 .byte -123 .byte -64 .byte 116 .byte 94 .byte 72 .byte -119 .byte -61 .byte 68 .byte -117 .byte 32 .byte 72 .byte -119 .byte -63 .byte 76 .byte 41 .byte -15 .byte 72 .byte -115 .byte 61 .byte 42 .byte 96 .byte 0 .byte 0 .byte 69 .byte 49 .byte -1 .byte 76 .byte -119 .byte -10 .byte 72 .byte -119 .byte -62 .byte 49 .byte -64 .byte -24 .byte 46 .byte 50 .byte 0 .byte 0 .byte 74 .byte -117 .byte 124 .byte 35 .byte 4 .byte -1 .byte 21 .byte -89 .byte 92 .byte 0 .byte 0 .byte 72 .byte -119 .byte 5 .byte -8 .byte 98 .byte 0 .byte 0 .byte 72 .byte -117 .byte -123 .byte 104 .byte -1 .byte -1 .byte -1 .byte 72 .byte -125 .byte -8 .byte 13 .byte 116 .byte 40 .byte 72 .byte -125 .byte -8 .byte 14 .byte 116 .byte 50 .byte 72 .byte -125 .byte -8 .byte 15 .byte 117 .byte 60 .byte 73 .byte -115 .byte -66 .byte 0 .byte 96 .byte 0 .byte 0 .byte 76 .byte -115 .byte 61 .byte -75 .byte 57 .byte 0 .byte 0 .byte -21 .byte 47 .byte 72 .byte -115 .byte 61 .byte -72 .byte 95 .byte 0 .byte 0 .byte -23 .byte -73 .byte -3 .byte -1 .byte -1 .byte 73 .byte -115 .byte -66 .byte 0 .byte 112 .byte 0 .byte 0 .byte 76 .byte -115 .byte 61 .byte -123 .byte 59 .byte 0 .byte 0 .byte -21 .byte 19 .byte 73 .byte -115 .byte -66 .byte 0 .byte 112 .byte 0 .byte 0 .byte 76 .byte -115 .byte 61 .byte 127 .byte 58 .byte 0 .byte 0 .byte -21 .byte 3 .byte 76 .byte -119 .byte -9 .byte 76 .byte -119 .byte -2 .byte -24 .byte 96 .byte 3 .byte 0 .byte 0 .byte 72 .byte -123 .byte -64 .byte 116 .byte 52 .byte 72 .byte -119 .byte -61 .byte 68 .byte -117 .byte 56 .byte 72 .byte -119 .byte -63 .byte 76 .byte 41 .byte -15 .byte 72 .byte -115 .byte 61 .byte -48 .byte 95 .byte 0 .byte 0 .byte 76 .byte -119 .byte -10 .byte 72 .byte -119 .byte -62 .byte 49 .byte -64 .byte -24 .byte -105 .byte 49 .byte 0 .byte 0 .byte 74 .byte -117 .byte 124 .byte 59 .byte 4 .byte -1 .byte 21 .byte 16 .byte 92 .byte 0 .byte 0 .byte 72 .byte -119 .byte 5 .byte 105 .byte 98 .byte 0 .byte 0 .byte -21 .byte 25 .byte 72 .byte -57 .byte 5 .byte 92 .byte 98 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte -115 .byte 61 .byte 125 .byte 95 .byte 0 .byte 0 .byte 49 .byte -64 .byte -24 .byte 106 .byte 49 .byte 0 .byte 0 .byte 72 .byte -117 .byte -123 .byte 104 .byte -1 .byte -1 .byte -1 .byte 72 .byte -125 .byte -8 .byte 13 .byte 116 .byte 47 .byte 72 .byte -125 .byte -8 .byte 14 .byte 116 .byte 57 .byte 72 .byte -125 .byte -8 .byte 15 .byte 117 .byte 86 .byte 73 .byte -115 .byte -66 .byte 0 .byte 0 .byte 35 .byte 0 .byte 72 .byte -125 .byte -67 .byte 112 .byte -1 .byte -1 .byte -1 .byte 3 .byte 72 .byte -115 .byte 5 .byte -35 .byte 59 .byte 0 .byte 0 .byte 72 .byte -115 .byte 53 .byte -10 .byte 60 .byte 0 .byte 0 .byte 72 .byte 15 .byte 79 .byte -16 .byte -21 .byte 56 .byte 73 .byte -115 .byte -66 .byte 0 .byte 80 .byte 51 .byte 0 .byte 72 .byte -115 .byte 53 .byte -22 .byte 67 .byte 0 .byte 0 .byte -21 .byte 40 .byte 73 .byte -115 .byte -66 .byte 0 .byte -27 .byte 39 .byte 0 .byte 72 .byte -125 .byte -67 .byte 112 .byte -1 .byte -1 .byte -1 .byte 3 .byte 72 .byte -115 .byte 5 .byte -22 .byte 61 .byte 0 .byte 0 .byte 72 .byte -115 .byte 53 .byte -116 .byte 64 .byte 0 .byte 0 .byte 72 .byte 15 .byte 79 .byte -16 .byte -21 .byte 5 .byte 49 .byte -10 .byte 76 .byte -119 .byte -9 .byte -24 .byte -107 .byte 2 .byte 0 .byte 0 .byte 72 .byte -119 .byte -61 .byte 72 .byte -123 .byte -64 .byte 116 .byte 28 .byte 72 .byte -119 .byte -39 .byte 76 .byte 41 .byte -15 .byte 72 .byte -115 .byte 61 .byte 72 .byte 95 .byte 0 .byte 0 .byte 76 .byte -119 .byte -10 .byte 72 .byte -119 .byte -38 .byte 49 .byte -64 .byte -24 .byte -49 .byte 48 .byte 0 .byte 0 .byte -21 .byte 14 .byte 72 .byte -115 .byte 61 .byte 18 .byte 95 .byte 0 .byte 0 .byte 49 .byte -64 .byte -24 .byte -65 .byte 48 .byte 0 .byte 0 .byte 72 .byte -119 .byte 29 .byte -92 .byte 97 .byte 0 .byte 0 .byte 72 .byte -117 .byte -123 .byte 104 .byte -1 .byte -1 .byte -1 .byte 72 .byte -125 .byte -8 .byte 13 .byte 116 .byte 47 .byte 72 .byte -125 .byte -8 .byte 14 .byte 116 .byte 57 .byte 72 .byte -125 .byte -8 .byte 15 .byte 117 .byte 86 .byte 73 .byte -115 .byte -66 .byte 0 .byte 0 .byte 50 .byte 0 .byte 72 .byte -125 .byte -67 .byte 112 .byte -1 .byte -1 .byte -1 .byte 3 .byte 72 .byte -115 .byte 5 .byte 52 .byte 68 .byte 0 .byte 0 .byte 72 .byte -115 .byte 53 .byte 77 .byte 69 .byte 0 .byte 0 .byte 72 .byte 15 .byte 79 .byte -16 .byte -21 .byte 56 .byte 73 .byte -115 .byte -66 .byte 0 .byte 80 .byte 73 .byte 0 .byte 72 .byte -115 .byte 53 .byte -89 .byte 73 .byte 0 .byte 0 .byte -21 .byte 40 .byte 73 .byte -115 .byte -66 .byte 0 .byte -5 .byte 55 .byte 0 .byte 72 .byte -125 .byte -67 .byte 112 .byte -1 .byte -1 .byte -1 .byte 3 .byte 72 .byte -115 .byte 5 .byte 113 .byte 70 .byte 0 .byte 0 .byte 72 .byte -115 .byte 53 .byte -65 .byte 72 .byte 0 .byte 0 .byte 72 .byte 15 .byte 79 .byte -16 .byte -21 .byte 5 .byte 49 .byte -10 .byte 76 .byte -119 .byte -9 .byte -24 .byte -29 .byte 1 .byte 0 .byte 0 .byte 72 .byte -119 .byte -61 .byte 72 .byte -123 .byte -64 .byte 116 .byte 28 .byte 72 .byte -119 .byte -39 .byte 76 .byte 41 .byte -15 .byte 72 .byte -115 .byte 61 .byte -42 .byte 94 .byte 0 .byte 0 .byte 76 .byte -119 .byte -10 .byte 72 .byte -119 .byte -38 .byte 49 .byte -64 .byte -24 .byte 29 .byte 48 .byte 0 .byte 0 .byte -21 .byte 14 .byte 72 .byte -115 .byte 61 .byte -96 .byte 94 .byte 0 .byte 0 .byte 49 .byte -64 .byte -24 .byte 13 .byte 48 .byte 0 .byte 0 .byte 72 .byte -119 .byte 29 .byte -6 .byte 96 .byte 0 .byte 0 .byte 72 .byte -117 .byte -123 .byte 104 .byte -1 .byte -1 .byte -1 .byte 72 .byte -125 .byte -8 .byte 13 .byte 116 .byte 47 .byte 72 .byte -125 .byte -8 .byte 14 .byte 116 .byte 74 .byte 72 .byte -125 .byte -8 .byte 15 .byte 117 .byte 61 .byte 73 .byte -115 .byte -66 .byte 0 .byte 0 .byte 49 .byte 0 .byte 72 .byte -125 .byte -67 .byte 112 .byte -1 .byte -1 .byte -1 .byte 3 .byte 72 .byte -115 .byte 5 .byte -63 .byte 73 .byte 0 .byte 0 .byte 72 .byte -115 .byte 53 .byte -38 .byte 74 .byte 0 .byte 0 .byte 72 .byte 15 .byte 79 .byte -16 .byte -21 .byte 76 .byte 72 .byte -125 .byte -67 .byte 112 .byte -1 .byte -1 .byte -1 .byte 6 .byte 117 .byte 16 .byte 73 .byte -115 .byte -66 .byte 0 .byte -101 .byte 73 .byte 0 .byte 72 .byte -115 .byte 53 .byte 75 .byte 79 .byte 0 .byte 0 .byte -21 .byte 50 .byte 49 .byte -10 .byte 76 .byte -119 .byte -9 .byte -21 .byte 43 .byte 72 .byte -125 .byte -67 .byte 112 .byte -1 .byte -1 .byte -1 .byte 3 .byte -72 .byte 16 .byte -37 .byte 55 .byte 0 .byte -65 .byte 0 .byte -11 .byte 54 .byte 0 .byte 72 .byte 15 .byte 79 .byte -8 .byte 72 .byte -115 .byte 5 .byte -26 .byte 75 .byte 0 .byte 0 .byte 72 .byte -115 .byte 53 .byte 82 .byte 78 .byte 0 .byte 0 .byte 72 .byte 15 .byte 79 .byte -16 .byte 76 .byte 1 .byte -9 .byte -24 .byte 29 .byte 1 .byte 0 .byte 0 .byte 72 .byte -119 .byte -61 .byte 72 .byte -123 .byte -64 .byte 116 .byte 28 .byte 72 .byte -119 .byte -39 .byte 76 .byte 41 .byte -15 .byte 72 .byte -115 .byte 61 .byte 80 .byte 94 .byte 0 .byte 0 .byte 76 .byte -119 .byte -10 .byte 72 .byte -119 .byte -38 .byte 49 .byte -64 .byte -24 .byte 87 .byte 47 .byte 0 .byte 0 .byte -21 .byte 14 .byte 72 .byte -115 .byte 61 .byte 26 .byte 94 .byte 0 .byte 0 .byte 49 .byte -64 .byte -24 .byte 71 .byte 47 .byte 0 .byte 0 .byte 72 .byte -119 .byte 29 .byte 60 .byte 96 .byte 0 .byte 0 .byte 72 .byte -117 .byte -123 .byte 104 .byte -1 .byte -1 .byte -1 .byte 72 .byte -125 .byte -8 .byte 13 .byte 116 .byte 28 .byte 72 .byte -125 .byte -8 .byte 14 .byte 116 .byte 48 .byte 72 .byte -125 .byte -8 .byte 15 .byte 117 .byte 68 .byte 73 .byte -115 .byte -66 .byte 0 .byte 48 .byte 5 .byte 0 .byte 72 .byte -115 .byte 53 .byte 126 .byte 79 .byte 0 .byte 0 .byte -21 .byte 57 .byte 72 .byte -125 .byte -67 .byte 112 .byte -1 .byte -1 .byte -1 .byte 6 .byte 117 .byte 42 .byte 73 .byte -115 .byte -66 .byte 0 .byte -106 .byte 5 .byte 0 .byte 72 .byte -115 .byte 53 .byte -125 .byte 81 .byte 0 .byte 0 .byte -21 .byte 31 .byte 72 .byte -125 .byte -67 .byte 112 .byte -1 .byte -1 .byte -1 .byte 3 .byte 126 .byte 16 .byte 73 .byte -115 .byte -66 .byte 0 .byte 117 .byte 5 .byte 0 .byte 72 .byte -115 .byte 53 .byte 94 .byte 80 .byte 0 .byte 0 .byte -21 .byte 5 .byte 49 .byte -10 .byte 76 .byte -119 .byte -9 .byte -24 .byte 125 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -61 .byte 72 .byte -123 .byte -64 .byte 116 .byte 28 .byte 72 .byte -119 .byte -39 .byte 76 .byte 41 .byte -15 .byte 72 .byte -115 .byte 61 .byte -16 .byte 93 .byte 0 .byte 0 .byte 76 .byte -119 .byte -10 .byte 72 .byte -119 .byte -38 .byte 49 .byte -64 .byte -24 .byte -73 .byte 46 .byte 0 .byte 0 .byte -21 .byte 14 .byte 72 .byte -115 .byte 61 .byte -70 .byte 93 .byte 0 .byte 0 .byte 49 .byte -64 .byte -24 .byte -89 .byte 46 .byte 0 .byte 0 .byte 72 .byte -119 .byte 29 .byte -92 .byte 95 .byte 0 .byte 0 .byte 72 .byte -115 .byte 61 .byte 82 .byte 86 .byte 0 .byte 0 .byte -24 .byte 30 .byte 47 .byte 0 .byte 0 .byte 72 .byte -119 .byte 5 .byte -103 .byte 95 .byte 0 .byte 0 .byte -24 .byte 70 .byte 46 .byte 0 .byte 0 .byte -119 .byte 5 .byte -106 .byte 95 .byte 0 .byte 0 .byte -23 .byte 84 .byte -6 .byte -1 .byte -1 .byte -119 .byte -33 .byte -24 .byte -78 .byte 46 .byte 0 .byte 0 .byte 73 .byte -119 .byte -58 .byte -23 .byte -44 .byte -7 .byte -1 .byte -1 .byte -24 .byte -103 .byte 46 .byte 0 .byte 0 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 65 .byte 87 .byte 65 .byte 86 .byte 65 .byte 85 .byte 65 .byte 84 .byte 83 .byte 72 .byte -125 .byte -20 .byte 24 .byte 72 .byte -117 .byte 5 .byte -88 .byte 88 .byte 0 .byte 0 .byte 72 .byte -117 .byte 0 .byte 72 .byte -119 .byte 69 .byte -48 .byte 49 .byte -64 .byte 72 .byte -123 .byte -1 .byte 15 .byte -124 .byte 30 .byte 1 .byte 0 .byte 0 .byte 72 .byte -119 .byte -13 .byte 72 .byte -123 .byte -10 .byte 15 .byte -124 .byte 18 .byte 1 .byte 0 .byte 0 .byte 72 .byte -119 .byte 125 .byte -64 .byte 72 .byte -119 .byte -33 .byte -24 .byte -26 .byte 46 .byte 0 .byte 0 .byte 73 .byte -119 .byte -57 .byte 73 .byte -1 .byte -57 .byte 72 .byte -71 .byte -85 .byte -86 .byte -86 .byte -86 .byte -86 .byte -86 .byte -86 .byte -86 .byte 76 .byte -119 .byte -8 .byte 72 .byte -9 .byte -31 .byte 73 .byte -119 .byte -43 .byte 72 .byte -119 .byte 101 .byte -56 .byte 73 .byte -47 .byte -19 .byte 73 .byte -115 .byte 69 .byte 15 .byte 72 .byte -125 .byte -32 .byte -16 .byte 73 .byte -119 .byte -28 .byte 73 .byte 41 .byte -60 .byte 76 .byte -119 .byte -28 .byte 73 .byte -119 .byte -26 .byte 73 .byte 41 .byte -58 .byte 76 .byte -119 .byte -12 .byte 76 .byte -119 .byte -25 .byte 76 .byte -119 .byte -18 .byte -24 .byte -13 .byte 45 .byte 0 .byte 0 .byte 76 .byte -119 .byte -9 .byte 76 .byte -119 .byte -18 .byte -24 .byte -24 .byte 45 .byte 0 .byte 0 .byte 73 .byte -125 .byte -1 .byte 3 .byte 114 .byte 93 .byte 72 .byte -1 .byte -61 .byte 49 .byte -64 .byte -66 .byte -48 .byte 0 .byte 0 .byte 0 .byte -21 .byte 27 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 102 .byte -112 .byte -120 .byte 20 .byte 7 .byte 72 .byte -125 .byte -61 .byte 3 .byte 72 .byte -1 .byte -64 .byte 73 .byte 57 .byte -59 .byte 118 .byte 54 .byte 15 .byte -74 .byte 75 .byte -1 .byte -78 .byte 1 .byte 76 .byte -119 .byte -9 .byte -128 .byte -7 .byte 63 .byte 116 .byte -29 .byte 49 .byte -46 .byte -128 .byte -7 .byte 58 .byte 15 .byte -99 .byte -62 .byte -115 .byte 20 .byte -46 .byte 0 .byte -54 .byte -64 .byte -30 .byte 4 .byte 15 .byte -74 .byte 11 .byte -128 .byte -7 .byte 58 .byte -65 .byte -55 .byte 0 .byte 0 .byte 0 .byte 15 .byte 76 .byte -2 .byte 0 .byte -54 .byte 64 .byte 0 .byte -6 .byte 76 .byte -119 .byte -25 .byte -21 .byte -69 .byte 72 .byte -117 .byte 117 .byte -64 .byte 72 .byte -119 .byte -16 .byte 73 .byte -125 .byte -1 .byte 3 .byte 114 .byte 63 .byte 49 .byte -55 .byte 65 .byte -128 .byte 60 .byte 14 .byte 0 .byte 116 .byte 20 .byte 15 .byte 31 .byte 68 .byte 0 .byte 0 .byte 72 .byte -1 .byte -63 .byte 73 .byte 57 .byte -51 .byte 118 .byte 38 .byte 65 .byte -128 .byte 60 .byte 14 .byte 0 .byte 117 .byte -15 .byte -118 .byte 20 .byte 8 .byte 65 .byte 58 .byte 20 .byte 12 .byte 116 .byte -24 .byte 72 .byte -1 .byte -64 .byte 72 .byte -119 .byte -63 .byte 72 .byte 41 .byte -15 .byte 72 .byte -127 .byte -7 .byte -96 .byte -122 .byte 2 .byte 0 .byte 114 .byte -62 .byte 49 .byte -10 .byte -21 .byte 3 .byte 72 .byte -119 .byte -58 .byte 72 .byte -117 .byte 101 .byte -56 .byte 72 .byte -119 .byte -16 .byte 72 .byte -117 .byte 13 .byte 113 .byte 87 .byte 0 .byte 0 .byte 72 .byte -117 .byte 9 .byte 72 .byte 59 .byte 77 .byte -48 .byte 117 .byte 15 .byte 72 .byte -115 .byte 101 .byte -40 .byte 91 .byte 65 .byte 92 .byte 65 .byte 93 .byte 65 .byte 94 .byte 65 .byte 95 .byte 93 .byte -61 .byte -24 .byte 32 .byte 45 .byte 0 .byte 0 .byte 15 .byte 31 .byte 64 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 65 .byte 87 .byte 65 .byte 86 .byte 65 .byte 85 .byte 65 .byte 84 .byte 83 .byte 72 .byte -127 .byte -20 .byte -120 .byte 6 .byte 0 .byte 0 .byte 72 .byte -117 .byte 5 .byte 29 .byte 93 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 88 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte 5 .byte 23 .byte 93 .byte 0 .byte 0 .byte 72 .byte -119 .byte 69 .byte -64 .byte 72 .byte -117 .byte 5 .byte 28 .byte 93 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte -24 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte 5 .byte -34 .byte 92 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 0 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte 5 .byte -40 .byte 92 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 8 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte 5 .byte -70 .byte 92 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte -32 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte 5 .byte -60 .byte 92 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 16 .byte -1 .byte -1 .byte -1 .byte 76 .byte -115 .byte -83 .byte 80 .byte -3 .byte -1 .byte -1 .byte -23 .byte -38 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte 5 .byte 66 .byte 93 .byte 0 .byte 0 .byte 49 .byte -55 .byte 72 .byte -123 .byte -64 .byte 15 .byte -107 .byte -63 .byte -115 .byte 81 .byte 2 .byte 72 .byte -117 .byte 53 .byte 56 .byte 93 .byte 0 .byte 0 .byte 72 .byte -123 .byte -10 .byte 15 .byte 68 .byte -47 .byte -115 .byte 74 .byte 4 .byte 72 .byte -125 .byte 61 .byte 47 .byte 93 .byte 0 .byte 0 .byte 0 .byte 15 .byte 68 .byte -54 .byte 72 .byte -123 .byte -64 .byte 15 .byte 68 .byte -54 .byte -119 .byte -54 .byte -125 .byte -54 .byte 8 .byte 72 .byte -125 .byte 61 .byte 33 .byte 93 .byte 0 .byte 0 .byte 0 .byte 15 .byte 68 .byte -47 .byte 72 .byte -123 .byte -64 .byte 15 .byte 68 .byte -47 .byte -119 .byte -47 .byte -125 .byte -55 .byte 16 .byte 72 .byte -125 .byte 61 .byte 19 .byte 93 .byte 0 .byte 0 .byte 0 .byte 15 .byte 68 .byte -54 .byte 72 .byte -123 .byte -10 .byte 15 .byte 68 .byte -54 .byte 72 .byte -123 .byte -64 .byte 15 .byte 68 .byte -54 .byte -119 .byte -53 .byte -125 .byte -53 .byte 32 .byte 72 .byte -125 .byte 61 .byte -1 .byte 92 .byte 0 .byte 0 .byte 0 .byte 15 .byte 68 .byte -39 .byte -66 .byte -11 .byte 3 .byte 0 .byte 0 .byte 72 .byte -115 .byte -67 .byte 91 .byte -7 .byte -1 .byte -1 .byte -24 .byte 5 .byte 44 .byte 0 .byte 0 .byte 102 .byte -57 .byte -123 .byte 84 .byte -7 .byte -1 .byte -1 .byte 57 .byte 0 .byte -57 .byte -123 .byte 80 .byte -7 .byte -1 .byte -1 .byte 49 .byte 46 .byte 48 .byte 46 .byte -119 .byte -99 .byte 86 .byte -7 .byte -1 .byte -1 .byte -58 .byte -123 .byte 90 .byte -7 .byte -1 .byte -1 .byte 10 .byte -70 .byte 11 .byte 0 .byte 0 .byte 0 .byte -117 .byte -67 .byte 84 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -75 .byte 80 .byte -7 .byte -1 .byte -1 .byte 49 .byte -55 .byte -24 .byte 92 .byte 44 .byte 0 .byte 0 .byte 102 .byte -112 .byte -117 .byte -99 .byte 84 .byte -1 .byte -1 .byte -1 .byte -119 .byte -33 .byte -66 .byte 2 .byte 0 .byte 0 .byte 0 .byte -24 .byte 78 .byte 44 .byte 0 .byte 0 .byte -119 .byte -33 .byte -24 .byte -19 .byte 43 .byte 0 .byte 0 .byte -117 .byte 61 .byte -91 .byte 92 .byte 0 .byte 0 .byte 49 .byte -10 .byte 49 .byte -46 .byte -24 .byte -52 .byte 43 .byte 0 .byte 0 .byte -125 .byte -8 .byte -1 .byte 116 .byte -20 .byte -70 .byte 0 .byte 1 .byte 0 .byte 0 .byte -119 .byte -123 .byte 84 .byte -1 .byte -1 .byte -1 .byte -119 .byte -57 .byte 76 .byte -119 .byte -18 .byte 49 .byte -55 .byte -24 .byte 16 .byte 44 .byte 0 .byte 0 .byte -123 .byte -64 .byte 126 .byte -72 .byte 72 .byte -104 .byte -58 .byte -124 .byte 5 .byte 80 .byte -3 .byte -1 .byte -1 .byte 0 .byte -118 .byte -123 .byte 80 .byte -3 .byte -1 .byte -1 .byte 76 .byte -119 .byte -21 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte -100 .byte 85 .byte 0 .byte 0 .byte 65 .byte -65 .byte 0 .byte 64 .byte 0 .byte 0 .byte 116 .byte 64 .byte 76 .byte -119 .byte -21 .byte -112 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 29 .byte -21 .byte 48 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 51 .byte 43 .byte 0 .byte 0 .byte -123 .byte -64 .byte 117 .byte 21 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -60 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -18 .byte 49 .byte -1 .byte -21 .byte 17 .byte 15 .byte -66 .byte 59 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -18 .byte -123 .byte -1 .byte 15 .byte -120 .byte 90 .byte 1 .byte 0 .byte 0 .byte 72 .byte 15 .byte -66 .byte -57 .byte 72 .byte -117 .byte 13 .byte 46 .byte 85 .byte 0 .byte 0 .byte -117 .byte 68 .byte -127 .byte 60 .byte 68 .byte 33 .byte -8 .byte 76 .byte -115 .byte 99 .byte 1 .byte -123 .byte -64 .byte 76 .byte 15 .byte 68 .byte -29 .byte 69 .byte -123 .byte -10 .byte 15 .byte -124 .byte 20 .byte -1 .byte -1 .byte -1 .byte 68 .byte -119 .byte -16 .byte -79 .byte 104 .byte -66 .byte 1 .byte 0 .byte 0 .byte 0 .byte 65 .byte -65 .byte 0 .byte 64 .byte 0 .byte 0 .byte 72 .byte -115 .byte 61 .byte 126 .byte 82 .byte 0 .byte 0 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 56 .byte -116 .byte 53 .byte 79 .byte -3 .byte -1 .byte -1 .byte 117 .byte 33 .byte 72 .byte -119 .byte -14 .byte 15 .byte -74 .byte 12 .byte 62 .byte 72 .byte 57 .byte -58 .byte 115 .byte 8 .byte 72 .byte -115 .byte 114 .byte 1 .byte -124 .byte -55 .byte 117 .byte -29 .byte 72 .byte 57 .byte -62 .byte 114 .byte 8 .byte -124 .byte -55 .byte 15 .byte -124 .byte 5 .byte -2 .byte -1 .byte -1 .byte -128 .byte -67 .byte 80 .byte -3 .byte -1 .byte -1 .byte 115 .byte 15 .byte -123 .byte -65 .byte 4 .byte 0 .byte 0 .byte 65 .byte -125 .byte -2 .byte 2 .byte 15 .byte -110 .byte -63 .byte 65 .byte -125 .byte -2 .byte 1 .byte 118 .byte 70 .byte -128 .byte -67 .byte 81 .byte -3 .byte -1 .byte -1 .byte 112 .byte 15 .byte -123 .byte -91 .byte 4 .byte 0 .byte 0 .byte 65 .byte -125 .byte -2 .byte 3 .byte 15 .byte -110 .byte -63 .byte 114 .byte 48 .byte -128 .byte -67 .byte 82 .byte -3 .byte -1 .byte -1 .byte 97 .byte 15 .byte -123 .byte -113 .byte 4 .byte 0 .byte 0 .byte 65 .byte -125 .byte -2 .byte 4 .byte 15 .byte -110 .byte -63 .byte 114 .byte 26 .byte -128 .byte -67 .byte 83 .byte -3 .byte -1 .byte -1 .byte 99 .byte 15 .byte -123 .byte 121 .byte 4 .byte 0 .byte 0 .byte 65 .byte -125 .byte -2 .byte 5 .byte 15 .byte -110 .byte -63 .byte 15 .byte -125 .byte 82 .byte 4 .byte 0 .byte 0 .byte 49 .byte -46 .byte -124 .byte -55 .byte 15 .byte -124 .byte 98 .byte 4 .byte 0 .byte 0 .byte -124 .byte -46 .byte 15 .byte -124 .byte 90 .byte 4 .byte 0 .byte 0 .byte 72 .byte -125 .byte 61 .byte -44 .byte 90 .byte 0 .byte 0 .byte 0 .byte 15 .byte -124 .byte 70 .byte -2 .byte -1 .byte -1 .byte 65 .byte -118 .byte 4 .byte 36 .byte 76 .byte -119 .byte -29 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte 54 .byte 84 .byte 0 .byte 0 .byte 65 .byte -65 .byte 0 .byte 64 .byte 0 .byte 0 .byte 116 .byte 74 .byte 76 .byte -119 .byte -29 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -112 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 29 .byte -21 .byte 58 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -61 .byte 41 .byte 0 .byte 0 .byte -123 .byte -64 .byte 117 .byte 31 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -60 .byte 68 .byte 41 .byte -29 .byte -21 .byte 35 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -91 .byte 41 .byte 0 .byte 0 .byte -23 .byte -87 .byte -2 .byte -1 .byte -1 .byte 15 .byte -66 .byte 59 .byte 68 .byte 41 .byte -29 .byte -123 .byte -1 .byte 121 .byte 10 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -116 .byte 41 .byte 0 .byte 0 .byte 76 .byte -119 .byte -25 .byte -119 .byte -34 .byte -24 .byte -46 .byte 34 .byte 0 .byte 0 .byte 72 .byte -123 .byte -64 .byte 15 .byte -124 .byte -87 .byte -3 .byte -1 .byte -1 .byte 72 .byte -119 .byte -61 .byte -117 .byte 61 .byte 96 .byte 90 .byte 0 .byte 0 .byte 72 .byte -119 .byte -58 .byte -24 .byte -40 .byte 40 .byte 0 .byte 0 .byte 73 .byte -119 .byte -58 .byte 72 .byte -117 .byte 61 .byte 22 .byte 90 .byte 0 .byte 0 .byte 72 .byte -117 .byte -75 .byte -32 .byte -2 .byte -1 .byte -1 .byte 72 .byte -119 .byte -62 .byte 49 .byte -64 .byte 72 .byte -117 .byte 13 .byte -101 .byte 83 .byte 0 .byte 0 .byte 73 .byte -119 .byte -49 .byte -1 .byte -47 .byte 72 .byte -119 .byte -57 .byte 72 .byte -117 .byte -75 .byte 16 .byte -1 .byte -1 .byte -1 .byte 49 .byte -64 .byte 65 .byte -1 .byte -41 .byte 72 .byte -119 .byte 93 .byte -56 .byte 72 .byte -119 .byte 69 .byte -48 .byte 72 .byte 57 .byte -61 .byte 15 .byte -124 .byte 53 .byte 3 .byte 0 .byte 0 .byte 72 .byte -117 .byte 61 .byte -41 .byte 89 .byte 0 .byte 0 .byte 72 .byte -117 .byte -75 .byte 88 .byte -1 .byte -1 .byte -1 .byte 76 .byte -119 .byte 117 .byte -72 .byte 76 .byte -119 .byte -14 .byte 49 .byte -64 .byte 72 .byte -117 .byte 13 .byte 88 .byte 83 .byte 0 .byte 0 .byte 72 .byte -119 .byte -53 .byte -1 .byte -47 .byte 73 .byte -119 .byte -57 .byte 15 .byte 87 .byte -64 .byte 15 .byte 41 .byte -123 .byte 112 .byte -1 .byte -1 .byte -1 .byte 15 .byte 41 .byte 69 .byte -128 .byte 15 .byte 41 .byte 69 .byte -112 .byte 15 .byte 41 .byte 69 .byte -96 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -57 .byte 72 .byte -117 .byte 117 .byte -64 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -7 .byte -1 .byte -1 .byte -1 .byte -45 .byte 72 .byte -123 .byte -64 .byte 15 .byte -124 .byte -128 .byte 0 .byte 0 .byte 0 .byte 73 .byte -119 .byte -60 .byte 72 .byte -117 .byte 69 .byte -128 .byte 76 .byte -117 .byte 48 .byte 69 .byte 49 .byte -19 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte 69 .byte -128 .byte 76 .byte 57 .byte 48 .byte 116 .byte 8 .byte 76 .byte -119 .byte -1 .byte -24 .byte -1 .byte 40 .byte 0 .byte 0 .byte 72 .byte -117 .byte -123 .byte 120 .byte -1 .byte -1 .byte -1 .byte 74 .byte -117 .byte 28 .byte -24 .byte 72 .byte -119 .byte -33 .byte 72 .byte -117 .byte -75 .byte 16 .byte -1 .byte -1 .byte -1 .byte 49 .byte -64 .byte -1 .byte 21 .byte -46 .byte 82 .byte 0 .byte 0 .byte 72 .byte 57 .byte 69 .byte -56 .byte 116 .byte 65 .byte 73 .byte -1 .byte -59 .byte 77 .byte 57 .byte -27 .byte 114 .byte -60 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 76 .byte -119 .byte -1 .byte 72 .byte -117 .byte 117 .byte -64 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -7 .byte -1 .byte -1 .byte -1 .byte 21 .byte -93 .byte 82 .byte 0 .byte 0 .byte 73 .byte -119 .byte -60 .byte 72 .byte -123 .byte -64 .byte 76 .byte -115 .byte -83 .byte 80 .byte -3 .byte -1 .byte -1 .byte 117 .byte -118 .byte 76 .byte -117 .byte 117 .byte -72 .byte -23 .byte 74 .byte 2 .byte 0 .byte 0 .byte 72 .byte -123 .byte -37 .byte 76 .byte -115 .byte -83 .byte 80 .byte -3 .byte -1 .byte -1 .byte 76 .byte -117 .byte 117 .byte -72 .byte 15 .byte -124 .byte 54 .byte 2 .byte 0 .byte 0 .byte 72 .byte -117 .byte 61 .byte -40 .byte 88 .byte 0 .byte 0 .byte 72 .byte -57 .byte -123 .byte 24 .byte -1 .byte -1 .byte -1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte -115 .byte 53 .byte 118 .byte 80 .byte 0 .byte 0 .byte 72 .byte -115 .byte -107 .byte 24 .byte -1 .byte -1 .byte -1 .byte -24 .byte 116 .byte 40 .byte 0 .byte 0 .byte 72 .byte -117 .byte -123 .byte 24 .byte -1 .byte -1 .byte -1 .byte 72 .byte -119 .byte 69 .byte -80 .byte 72 .byte -123 .byte -64 .byte 15 .byte -124 .byte -3 .byte 1 .byte 0 .byte 0 .byte 15 .byte 87 .byte -64 .byte 15 .byte 41 .byte 69 .byte -96 .byte 15 .byte 41 .byte 69 .byte -112 .byte 15 .byte 41 .byte 69 .byte -128 .byte 15 .byte 41 .byte -123 .byte 112 .byte -1 .byte -1 .byte -1 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte 125 .byte -80 .byte 72 .byte -117 .byte 117 .byte -64 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -7 .byte -1 .byte -1 .byte -1 .byte 21 .byte 6 .byte 82 .byte 0 .byte 0 .byte 72 .byte -123 .byte -64 .byte 15 .byte -124 .byte -68 .byte 1 .byte 0 .byte 0 .byte 73 .byte -119 .byte -60 .byte 72 .byte -117 .byte 69 .byte -128 .byte 72 .byte -117 .byte 0 .byte 72 .byte -119 .byte -123 .byte 96 .byte -1 .byte -1 .byte -1 .byte 69 .byte 49 .byte -10 .byte 102 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte 69 .byte -128 .byte 72 .byte -117 .byte -115 .byte 96 .byte -1 .byte -1 .byte -1 .byte 72 .byte 57 .byte 8 .byte 116 .byte 9 .byte 72 .byte -117 .byte 125 .byte -80 .byte -24 .byte -41 .byte 39 .byte 0 .byte 0 .byte 72 .byte -117 .byte -123 .byte 120 .byte -1 .byte -1 .byte -1 .byte 78 .byte -117 .byte 60 .byte -16 .byte 72 .byte -57 .byte -123 .byte 24 .byte -1 .byte -1 .byte -1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 76 .byte -119 .byte -1 .byte 72 .byte -115 .byte 53 .byte -84 .byte 79 .byte 0 .byte 0 .byte 72 .byte -115 .byte -107 .byte 24 .byte -1 .byte -1 .byte -1 .byte -24 .byte -67 .byte 39 .byte 0 .byte 0 .byte 72 .byte -117 .byte -67 .byte 24 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte -75 .byte 16 .byte -1 .byte -1 .byte -1 .byte 49 .byte -64 .byte -1 .byte 21 .byte -123 .byte 81 .byte 0 .byte 0 .byte 72 .byte 59 .byte 69 .byte -48 .byte 116 .byte 63 .byte 73 .byte -1 .byte -58 .byte 77 .byte 57 .byte -26 .byte 114 .byte -105 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte 125 .byte -80 .byte 72 .byte -117 .byte 117 .byte -64 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -7 .byte -1 .byte -1 .byte -1 .byte 21 .byte 85 .byte 81 .byte 0 .byte 0 .byte 73 .byte -119 .byte -60 .byte 72 .byte -123 .byte -64 .byte 76 .byte -117 .byte 117 .byte -72 .byte 15 .byte -123 .byte 89 .byte -1 .byte -1 .byte -1 .byte -23 .byte -1 .byte 0 .byte 0 .byte 0 .byte 77 .byte -123 .byte -1 .byte 76 .byte -117 .byte 117 .byte -72 .byte 15 .byte -124 .byte -14 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte 61 .byte 52 .byte 87 .byte 0 .byte 0 .byte 76 .byte -117 .byte -75 .byte 0 .byte -1 .byte -1 .byte -1 .byte 76 .byte -119 .byte -10 .byte 72 .byte -117 .byte 85 .byte -48 .byte 72 .byte -117 .byte 5 .byte 23 .byte 81 .byte 0 .byte 0 .byte 73 .byte -119 .byte -60 .byte -1 .byte -48 .byte 72 .byte -119 .byte -123 .byte -96 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte 61 .byte 20 .byte 87 .byte 0 .byte 0 .byte -71 .byte 1 .byte 0 .byte 0 .byte 0 .byte 76 .byte -117 .byte -83 .byte 8 .byte -1 .byte -1 .byte -1 .byte 76 .byte -119 .byte -18 .byte 72 .byte -115 .byte -107 .byte -96 .byte -2 .byte -1 .byte -1 .byte 65 .byte -1 .byte -44 .byte 73 .byte -119 .byte -60 .byte 72 .byte -117 .byte 61 .byte -23 .byte 86 .byte 0 .byte 0 .byte 76 .byte -119 .byte -10 .byte 76 .byte -117 .byte 117 .byte -56 .byte 76 .byte -119 .byte -14 .byte -1 .byte 21 .byte -47 .byte 80 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 80 .byte -7 .byte -1 .byte -1 .byte 72 .byte -117 .byte 61 .byte -45 .byte 86 .byte 0 .byte 0 .byte -71 .byte 1 .byte 0 .byte 0 .byte 0 .byte 76 .byte -119 .byte -18 .byte 76 .byte -115 .byte -83 .byte 80 .byte -3 .byte -1 .byte -1 .byte 72 .byte -115 .byte -107 .byte 80 .byte -7 .byte -1 .byte -1 .byte -1 .byte 21 .byte -89 .byte 80 .byte 0 .byte 0 .byte 72 .byte -119 .byte 69 .byte -48 .byte -117 .byte 61 .byte 61 .byte 87 .byte 0 .byte 0 .byte 72 .byte -119 .byte -58 .byte -24 .byte 21 .byte 38 .byte 0 .byte 0 .byte -117 .byte 61 .byte 47 .byte 87 .byte 0 .byte 0 .byte 76 .byte -119 .byte -26 .byte -24 .byte -59 .byte 37 .byte 0 .byte 0 .byte -117 .byte 61 .byte 33 .byte 87 .byte 0 .byte 0 .byte 72 .byte -117 .byte 117 .byte -72 .byte 76 .byte -119 .byte -14 .byte -24 .byte -53 .byte 37 .byte 0 .byte 0 .byte 72 .byte -119 .byte -33 .byte -1 .byte 21 .byte 124 .byte 80 .byte 0 .byte 0 .byte 76 .byte -119 .byte -1 .byte 72 .byte -115 .byte 53 .byte 103 .byte 78 .byte 0 .byte 0 .byte 72 .byte -119 .byte -62 .byte -24 .byte -126 .byte 38 .byte 0 .byte 0 .byte 72 .byte -117 .byte 125 .byte -48 .byte 76 .byte -117 .byte 117 .byte -72 .byte 72 .byte -117 .byte 5 .byte 83 .byte 80 .byte 0 .byte 0 .byte 72 .byte -119 .byte -61 .byte -1 .byte -48 .byte 76 .byte -119 .byte -25 .byte -1 .byte -45 .byte 76 .byte -119 .byte -9 .byte -24 .byte 47 .byte 37 .byte 0 .byte 0 .byte -23 .byte 20 .byte -6 .byte -1 .byte -1 .byte -128 .byte -67 .byte 84 .byte -3 .byte -1 .byte -1 .byte 101 .byte 117 .byte 17 .byte 65 .byte -125 .byte -2 .byte 6 .byte 15 .byte -110 .byte -63 .byte -78 .byte 1 .byte -124 .byte -55 .byte 15 .byte -123 .byte -98 .byte -5 .byte -1 .byte -1 .byte -79 .byte 115 .byte -66 .byte 1 .byte 0 .byte 0 .byte 0 .byte 72 .byte -115 .byte 61 .byte 119 .byte 77 .byte 0 .byte 0 .byte 72 .byte -115 .byte 29 .byte 125 .byte 77 .byte 0 .byte 0 .byte 76 .byte -115 .byte 5 .byte -124 .byte 77 .byte 0 .byte 0 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte 64 .byte 0 .byte 56 .byte -116 .byte 53 .byte 79 .byte -3 .byte -1 .byte -1 .byte 15 .byte -123 .byte -85 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -14 .byte 15 .byte -74 .byte 12 .byte 62 .byte 72 .byte 57 .byte -58 .byte 115 .byte 8 .byte 72 .byte -115 .byte 114 .byte 1 .byte -124 .byte -55 .byte 117 .byte -33 .byte 72 .byte 57 .byte -62 .byte 15 .byte -126 .byte -114 .byte 0 .byte 0 .byte 0 .byte -124 .byte -55 .byte 15 .byte -123 .byte -122 .byte 0 .byte 0 .byte 0 .byte 72 .byte -125 .byte 61 .byte 30 .byte 86 .byte 0 .byte 0 .byte 0 .byte 15 .byte -124 .byte -112 .byte -7 .byte -1 .byte -1 .byte 72 .byte -117 .byte 5 .byte 33 .byte 86 .byte 0 .byte 0 .byte 72 .byte -123 .byte -64 .byte 15 .byte -124 .byte -128 .byte -7 .byte -1 .byte -1 .byte 65 .byte -118 .byte 4 .byte 36 .byte 76 .byte -119 .byte -29 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte 112 .byte 79 .byte 0 .byte 0 .byte 65 .byte -65 .byte 0 .byte 64 .byte 0 .byte 0 .byte 116 .byte 72 .byte 76 .byte -119 .byte -29 .byte 15 .byte 31 .byte 68 .byte 0 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 33 .byte -23 .byte 36 .byte 7 .byte 0 .byte 0 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 3 .byte 37 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte 8 .byte 7 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 68 .byte 41 .byte -29 .byte -23 .byte 9 .byte 7 .byte 0 .byte 0 .byte -79 .byte 115 .byte -66 .byte 1 .byte 0 .byte 0 .byte 0 .byte 72 .byte -115 .byte 61 .byte -69 .byte 76 .byte 0 .byte 0 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 56 .byte -116 .byte 53 .byte 79 .byte -3 .byte -1 .byte -1 .byte 15 .byte -123 .byte -85 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -14 .byte 15 .byte -74 .byte 12 .byte 30 .byte 72 .byte 57 .byte -58 .byte 115 .byte 8 .byte 72 .byte -115 .byte 114 .byte 1 .byte -124 .byte -55 .byte 117 .byte -33 .byte 72 .byte 57 .byte -62 .byte 15 .byte -126 .byte -114 .byte 0 .byte 0 .byte 0 .byte -124 .byte -55 .byte 15 .byte -123 .byte -122 .byte 0 .byte 0 .byte 0 .byte 72 .byte -125 .byte 61 .byte 78 .byte 85 .byte 0 .byte 0 .byte 0 .byte 15 .byte -124 .byte -64 .byte -8 .byte -1 .byte -1 .byte 72 .byte -117 .byte 5 .byte 89 .byte 85 .byte 0 .byte 0 .byte 72 .byte -123 .byte -64 .byte 15 .byte -124 .byte -80 .byte -8 .byte -1 .byte -1 .byte 65 .byte -118 .byte 4 .byte 36 .byte 76 .byte -119 .byte -29 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte -96 .byte 78 .byte 0 .byte 0 .byte 65 .byte -65 .byte 0 .byte 64 .byte 0 .byte 0 .byte 116 .byte 72 .byte 76 .byte -119 .byte -29 .byte 15 .byte 31 .byte 68 .byte 0 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 33 .byte -23 .byte -71 .byte 8 .byte 0 .byte 0 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 51 .byte 36 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte -99 .byte 8 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 68 .byte 41 .byte -29 .byte -23 .byte -98 .byte 8 .byte 0 .byte 0 .byte -79 .byte 115 .byte -66 .byte 1 .byte 0 .byte 0 .byte 0 .byte 76 .byte -117 .byte 53 .byte 58 .byte 78 .byte 0 .byte 0 .byte 72 .byte -115 .byte 29 .byte -15 .byte 75 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 56 .byte -116 .byte 53 .byte 79 .byte -3 .byte -1 .byte -1 .byte 15 .byte -123 .byte -64 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -14 .byte 66 .byte 15 .byte -74 .byte 12 .byte 6 .byte 72 .byte 57 .byte -58 .byte 115 .byte 8 .byte 72 .byte -115 .byte 114 .byte 1 .byte -124 .byte -55 .byte 117 .byte -34 .byte 72 .byte 57 .byte -62 .byte 15 .byte -126 .byte -94 .byte 0 .byte 0 .byte 0 .byte -124 .byte -55 .byte 15 .byte -123 .byte -102 .byte 0 .byte 0 .byte 0 .byte 72 .byte -125 .byte 61 .byte 125 .byte 84 .byte 0 .byte 0 .byte 0 .byte 15 .byte -124 .byte -17 .byte -9 .byte -1 .byte -1 .byte 72 .byte -117 .byte 5 .byte 120 .byte 84 .byte 0 .byte 0 .byte 72 .byte -123 .byte -64 .byte 15 .byte -124 .byte -33 .byte -9 .byte -1 .byte -1 .byte 72 .byte -117 .byte 5 .byte -128 .byte 84 .byte 0 .byte 0 .byte 72 .byte -123 .byte -64 .byte 15 .byte -124 .byte -49 .byte -9 .byte -1 .byte -1 .byte 65 .byte -118 .byte 4 .byte 36 .byte 76 .byte -119 .byte -29 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte -65 .byte 77 .byte 0 .byte 0 .byte 65 .byte -65 .byte 0 .byte 64 .byte 0 .byte 0 .byte 116 .byte 71 .byte 76 .byte -119 .byte -29 .byte 15 .byte 31 .byte 64 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 33 .byte -23 .byte 100 .byte 11 .byte 0 .byte 0 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 83 .byte 35 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte 72 .byte 11 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte 49 .byte -1 .byte -23 .byte 65 .byte 11 .byte 0 .byte 0 .byte -79 .byte 119 .byte -66 .byte 1 .byte 0 .byte 0 .byte 0 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 102 .byte -112 .byte 56 .byte -116 .byte 53 .byte 79 .byte -3 .byte -1 .byte -1 .byte 15 .byte -123 .byte -128 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -14 .byte 15 .byte -74 .byte 12 .byte 62 .byte 72 .byte 57 .byte -58 .byte 115 .byte 8 .byte 72 .byte -115 .byte 114 .byte 1 .byte -124 .byte -55 .byte 117 .byte -33 .byte 72 .byte 57 .byte -62 .byte 114 .byte 103 .byte -124 .byte -55 .byte 117 .byte 99 .byte 65 .byte -118 .byte 4 .byte 36 .byte 76 .byte -119 .byte -29 .byte -124 .byte -64 .byte 116 .byte 75 .byte 76 .byte -119 .byte -29 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 33 .byte -23 .byte -115 .byte 5 .byte 0 .byte 0 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -77 .byte 34 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte 113 .byte 5 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte 49 .byte -1 .byte -23 .byte 106 .byte 5 .byte 0 .byte 0 .byte -79 .byte 119 .byte -66 .byte 1 .byte 0 .byte 0 .byte 0 .byte 72 .byte -115 .byte 61 .byte 127 .byte 74 .byte 0 .byte 0 .byte 76 .byte -115 .byte 5 .byte -123 .byte 74 .byte 0 .byte 0 .byte 76 .byte -115 .byte 13 .byte -112 .byte 74 .byte 0 .byte 0 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 56 .byte -116 .byte 53 .byte 79 .byte -3 .byte -1 .byte -1 .byte 15 .byte -123 .byte -123 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -14 .byte 15 .byte -74 .byte 12 .byte 30 .byte 72 .byte 57 .byte -58 .byte 115 .byte 8 .byte 72 .byte -115 .byte 114 .byte 1 .byte -124 .byte -55 .byte 117 .byte -33 .byte 72 .byte 57 .byte -62 .byte 114 .byte 108 .byte -124 .byte -55 .byte 117 .byte 104 .byte 65 .byte -118 .byte 4 .byte 36 .byte 76 .byte -119 .byte -29 .byte -124 .byte -64 .byte 116 .byte 75 .byte 76 .byte -119 .byte -29 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 33 .byte -23 .byte 87 .byte 9 .byte 0 .byte 0 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 3 .byte 34 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte 59 .byte 9 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte -70 .byte 0 .byte 64 .byte 0 .byte 0 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte 49 .byte -1 .byte -23 .byte 52 .byte 9 .byte 0 .byte 0 .byte -79 .byte 119 .byte -66 .byte 1 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 56 .byte -116 .byte 53 .byte 79 .byte -3 .byte -1 .byte -1 .byte 15 .byte -123 .byte -128 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -14 .byte 15 .byte -74 .byte 12 .byte 62 .byte 72 .byte 57 .byte -58 .byte 115 .byte 8 .byte 72 .byte -115 .byte 114 .byte 1 .byte -124 .byte -55 .byte 117 .byte -33 .byte 72 .byte 57 .byte -62 .byte 114 .byte 103 .byte -124 .byte -55 .byte 117 .byte 99 .byte 65 .byte -118 .byte 4 .byte 36 .byte 76 .byte -119 .byte -29 .byte -124 .byte -64 .byte 116 .byte 75 .byte 76 .byte -119 .byte -29 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 33 .byte -23 .byte 115 .byte 15 .byte 0 .byte 0 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 99 .byte 33 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte 87 .byte 15 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte 49 .byte -1 .byte -23 .byte 80 .byte 15 .byte 0 .byte 0 .byte -79 .byte 119 .byte -66 .byte 1 .byte 0 .byte 0 .byte 0 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 102 .byte -112 .byte 56 .byte -116 .byte 53 .byte 79 .byte -3 .byte -1 .byte -1 .byte 15 .byte -123 .byte -128 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -14 .byte 66 .byte 15 .byte -74 .byte 12 .byte 6 .byte 72 .byte 57 .byte -58 .byte 115 .byte 8 .byte 72 .byte -115 .byte 114 .byte 1 .byte -124 .byte -55 .byte 117 .byte -34 .byte 72 .byte 57 .byte -62 .byte 114 .byte 102 .byte -124 .byte -55 .byte 117 .byte 98 .byte 65 .byte -118 .byte 4 .byte 36 .byte 76 .byte -119 .byte -29 .byte -124 .byte -64 .byte 116 .byte 74 .byte 76 .byte -119 .byte -29 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 33 .byte -23 .byte 112 .byte 16 .byte 0 .byte 0 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -61 .byte 32 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte 84 .byte 16 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte 49 .byte -1 .byte -23 .byte 77 .byte 16 .byte 0 .byte 0 .byte -79 .byte 119 .byte -66 .byte 1 .byte 0 .byte 0 .byte 0 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 102 .byte -112 .byte 56 .byte -116 .byte 53 .byte 79 .byte -3 .byte -1 .byte -1 .byte 15 .byte -123 .byte -128 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -14 .byte 66 .byte 15 .byte -74 .byte 12 .byte 14 .byte 72 .byte 57 .byte -58 .byte 115 .byte 8 .byte 72 .byte -115 .byte 114 .byte 1 .byte -124 .byte -55 .byte 117 .byte -34 .byte 72 .byte 57 .byte -62 .byte 114 .byte 102 .byte -124 .byte -55 .byte 117 .byte 98 .byte 65 .byte -118 .byte 4 .byte 36 .byte 76 .byte -119 .byte -29 .byte -124 .byte -64 .byte 116 .byte 74 .byte 76 .byte -119 .byte -29 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 33 .byte -23 .byte -60 .byte 16 .byte 0 .byte 0 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 35 .byte 32 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte -88 .byte 16 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte 49 .byte -1 .byte -23 .byte -95 .byte 16 .byte 0 .byte 0 .byte -79 .byte 119 .byte -66 .byte 1 .byte 0 .byte 0 .byte 0 .byte 72 .byte -115 .byte 61 .byte 27 .byte 72 .byte 0 .byte 0 .byte 15 .byte 31 .byte 68 .byte 0 .byte 0 .byte 56 .byte -116 .byte 53 .byte 79 .byte -3 .byte -1 .byte -1 .byte 15 .byte -123 .byte -128 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -14 .byte 15 .byte -74 .byte 12 .byte 62 .byte 72 .byte 57 .byte -58 .byte 115 .byte 8 .byte 72 .byte -115 .byte 114 .byte 1 .byte -124 .byte -55 .byte 117 .byte -33 .byte 72 .byte 57 .byte -62 .byte 114 .byte 103 .byte -124 .byte -55 .byte 117 .byte 99 .byte 65 .byte -118 .byte 4 .byte 36 .byte 76 .byte -119 .byte -29 .byte -124 .byte -64 .byte 116 .byte 75 .byte 76 .byte -119 .byte -29 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 33 .byte -23 .byte -82 .byte 21 .byte 0 .byte 0 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -125 .byte 31 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte -110 .byte 21 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte 49 .byte -1 .byte -23 .byte -117 .byte 21 .byte 0 .byte 0 .byte -79 .byte 119 .byte -66 .byte 1 .byte 0 .byte 0 .byte 0 .byte 72 .byte -115 .byte 61 .byte -119 .byte 71 .byte 0 .byte 0 .byte 15 .byte 31 .byte 68 .byte 0 .byte 0 .byte 56 .byte -116 .byte 53 .byte 79 .byte -3 .byte -1 .byte -1 .byte 15 .byte -123 .byte -101 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -14 .byte 15 .byte -74 .byte 12 .byte 62 .byte 72 .byte 57 .byte -58 .byte 115 .byte 8 .byte 72 .byte -115 .byte 114 .byte 1 .byte -124 .byte -55 .byte 117 .byte -33 .byte 72 .byte 57 .byte -62 .byte 15 .byte -126 .byte 126 .byte 0 .byte 0 .byte 0 .byte -124 .byte -55 .byte 117 .byte 122 .byte 72 .byte -125 .byte 61 .byte -6 .byte 79 .byte 0 .byte 0 .byte 0 .byte 15 .byte -124 .byte 68 .byte -13 .byte -1 .byte -1 .byte 65 .byte -118 .byte 4 .byte 36 .byte 76 .byte -119 .byte -29 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte 52 .byte 73 .byte 0 .byte 0 .byte 65 .byte -65 .byte 0 .byte 64 .byte 0 .byte 0 .byte 116 .byte 76 .byte 76 .byte -119 .byte -29 .byte 102 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 33 .byte -23 .byte -2 .byte 22 .byte 0 .byte 0 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -61 .byte 30 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte -30 .byte 22 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 68 .byte 41 .byte -29 .byte -23 .byte -29 .byte 22 .byte 0 .byte 0 .byte -79 .byte 119 .byte -66 .byte 1 .byte 0 .byte 0 .byte 0 .byte -112 .byte 56 .byte -116 .byte 53 .byte 79 .byte -3 .byte -1 .byte -1 .byte 15 .byte -123 .byte -61 .byte -14 .byte -1 .byte -1 .byte 72 .byte -119 .byte -14 .byte 72 .byte -115 .byte 13 .byte -54 .byte 70 .byte 0 .byte 0 .byte 15 .byte -74 .byte 12 .byte 14 .byte 72 .byte 57 .byte -58 .byte 115 .byte 8 .byte 72 .byte -115 .byte 114 .byte 1 .byte -124 .byte -55 .byte 117 .byte -40 .byte 72 .byte 57 .byte -62 .byte 15 .byte -126 .byte -97 .byte -14 .byte -1 .byte -1 .byte -124 .byte -55 .byte 15 .byte -123 .byte -105 .byte -14 .byte -1 .byte -1 .byte 65 .byte -118 .byte 4 .byte 36 .byte 76 .byte -119 .byte -29 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte -121 .byte 72 .byte 0 .byte 0 .byte 65 .byte -65 .byte 0 .byte 64 .byte 0 .byte 0 .byte 116 .byte 79 .byte 76 .byte -119 .byte -29 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 102 .byte -112 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 33 .byte -23 .byte -104 .byte 21 .byte 0 .byte 0 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 19 .byte 30 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte 124 .byte 21 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte 49 .byte -1 .byte -23 .byte 117 .byte 21 .byte 0 .byte 0 .byte 15 .byte -66 .byte 59 .byte 68 .byte 41 .byte -29 .byte -123 .byte -1 .byte 121 .byte 10 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -33 .byte 29 .byte 0 .byte 0 .byte 76 .byte -119 .byte -25 .byte -119 .byte -34 .byte -24 .byte 37 .byte 23 .byte 0 .byte 0 .byte 72 .byte -57 .byte -123 .byte 112 .byte -1 .byte -1 .byte -1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte -115 .byte -99 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -119 .byte -99 .byte 120 .byte -1 .byte -1 .byte -1 .byte 72 .byte -71 .byte 0 .byte 0 .byte 0 .byte 32 .byte 32 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte 77 .byte -128 .byte -117 .byte 61 .byte -104 .byte 78 .byte 0 .byte 0 .byte 72 .byte -119 .byte -58 .byte -24 .byte 16 .byte 29 .byte 0 .byte 0 .byte 72 .byte -119 .byte 69 .byte -120 .byte 72 .byte -117 .byte 5 .byte -51 .byte 71 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 80 .byte -7 .byte -1 .byte -1 .byte -72 .byte 0 .byte 0 .byte 0 .byte -62 .byte 72 .byte -119 .byte -123 .byte 88 .byte -7 .byte -1 .byte -1 .byte 72 .byte -115 .byte 5 .byte 91 .byte 23 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 96 .byte -7 .byte -1 .byte -1 .byte 72 .byte -115 .byte 5 .byte -51 .byte 73 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 104 .byte -7 .byte -1 .byte -1 .byte 72 .byte -119 .byte -99 .byte 112 .byte -7 .byte -1 .byte -1 .byte 72 .byte -117 .byte 61 .byte -96 .byte 71 .byte 0 .byte 0 .byte 72 .byte -115 .byte -75 .byte 80 .byte -7 .byte -1 .byte -1 .byte -24 .byte -120 .byte 29 .byte 0 .byte 0 .byte 72 .byte -119 .byte -33 .byte -66 .byte 8 .byte 0 .byte 0 .byte 0 .byte -24 .byte 45 .byte 29 .byte 0 .byte 0 .byte -23 .byte 106 .byte -15 .byte -1 .byte -1 .byte 15 .byte -66 .byte 59 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte -123 .byte -1 .byte 15 .byte -120 .byte 118 .byte 13 .byte 0 .byte 0 .byte 72 .byte 15 .byte -66 .byte -57 .byte 72 .byte -117 .byte 13 .byte 78 .byte 71 .byte 0 .byte 0 .byte -117 .byte 68 .byte -127 .byte 60 .byte 68 .byte 33 .byte -8 .byte 76 .byte -115 .byte 123 .byte 1 .byte -123 .byte -64 .byte 76 .byte 15 .byte 68 .byte -5 .byte 76 .byte -119 .byte -25 .byte 68 .byte -119 .byte -10 .byte -24 .byte 34 .byte 27 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -124 .byte 42 .byte -15 .byte -1 .byte -1 .byte 65 .byte -119 .byte -60 .byte 15 .byte 87 .byte -64 .byte 15 .byte 41 .byte -123 .byte -112 .byte -2 .byte -1 .byte -1 .byte 15 .byte 41 .byte -123 .byte -128 .byte -2 .byte -1 .byte -1 .byte -117 .byte 61 .byte -48 .byte 77 .byte 0 .byte 0 .byte -119 .byte -58 .byte 72 .byte -115 .byte -107 .byte -128 .byte -2 .byte -1 .byte -1 .byte -24 .byte 78 .byte 28 .byte 0 .byte 0 .byte -14 .byte 15 .byte 16 .byte -123 .byte -128 .byte -2 .byte -1 .byte -1 .byte -14 .byte 15 .byte 16 .byte -115 .byte -120 .byte -2 .byte -1 .byte -1 .byte 15 .byte 40 .byte 21 .byte -21 .byte 31 .byte 0 .byte 0 .byte 15 .byte 87 .byte -62 .byte 15 .byte 87 .byte -54 .byte 72 .byte -115 .byte -67 .byte 80 .byte -7 .byte -1 .byte -1 .byte -24 .byte 7 .byte 28 .byte 0 .byte 0 .byte -117 .byte 61 .byte -109 .byte 77 .byte 0 .byte 0 .byte 68 .byte -119 .byte -26 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte -24 .byte 28 .byte 28 .byte 0 .byte 0 .byte 76 .byte -117 .byte -83 .byte 120 .byte -7 .byte -1 .byte -1 .byte 72 .byte -117 .byte -115 .byte 112 .byte -7 .byte -1 .byte -1 .byte 72 .byte -117 .byte -107 .byte 104 .byte -7 .byte -1 .byte -1 .byte 72 .byte -117 .byte -75 .byte 96 .byte -7 .byte -1 .byte -1 .byte 76 .byte -117 .byte -123 .byte 80 .byte -7 .byte -1 .byte -1 .byte 72 .byte -117 .byte -99 .byte 88 .byte -7 .byte -1 .byte -1 .byte 72 .byte -117 .byte 125 .byte -104 .byte 76 .byte -117 .byte 77 .byte -112 .byte 76 .byte -117 .byte 85 .byte -120 .byte 76 .byte -117 .byte 93 .byte -128 .byte 76 .byte -117 .byte -75 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte -123 .byte 120 .byte -1 .byte -1 .byte -1 .byte 65 .byte 85 .byte 81 .byte 82 .byte 86 .byte 83 .byte 65 .byte 80 .byte 87 .byte 65 .byte 81 .byte 65 .byte 82 .byte 65 .byte 83 .byte 80 .byte 65 .byte 86 .byte -24 .byte -121 .byte 27 .byte 0 .byte 0 .byte 72 .byte -125 .byte -60 .byte 96 .byte -124 .byte -64 .byte 116 .byte 106 .byte 65 .byte -118 .byte 7 .byte 76 .byte -119 .byte -5 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte 78 .byte 70 .byte 0 .byte 0 .byte 116 .byte 76 .byte 76 .byte -119 .byte -5 .byte 102 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte -71 .byte 0 .byte 64 .byte 0 .byte 0 .byte 33 .byte -56 .byte -123 .byte -64 .byte 116 .byte 29 .byte -23 .byte 43 .byte 13 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -29 .byte 27 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte 19 .byte 13 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 65 .byte -119 .byte -35 .byte 69 .byte 41 .byte -3 .byte 49 .byte -1 .byte -23 .byte 12 .byte 13 .byte 0 .byte 0 .byte -117 .byte 61 .byte -83 .byte 76 .byte 0 .byte 0 .byte 76 .byte -117 .byte -115 .byte 120 .byte -7 .byte -1 .byte -1 .byte 72 .byte -117 .byte -115 .byte 112 .byte -7 .byte -1 .byte -1 .byte 72 .byte -117 .byte -107 .byte 104 .byte -7 .byte -1 .byte -1 .byte 72 .byte -117 .byte -99 .byte 96 .byte -7 .byte -1 .byte -1 .byte 76 .byte -117 .byte -123 .byte 80 .byte -7 .byte -1 .byte -1 .byte 72 .byte -117 .byte -123 .byte 88 .byte -7 .byte -1 .byte -1 .byte -23 .byte 106 .byte 16 .byte 0 .byte 0 .byte 15 .byte -66 .byte 59 .byte 68 .byte 41 .byte -29 .byte -123 .byte -1 .byte 121 .byte 10 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 122 .byte 27 .byte 0 .byte 0 .byte 76 .byte -119 .byte -25 .byte -119 .byte -34 .byte -24 .byte -64 .byte 20 .byte 0 .byte 0 .byte -117 .byte 61 .byte 90 .byte 76 .byte 0 .byte 0 .byte 72 .byte -119 .byte 69 .byte -56 .byte 72 .byte -119 .byte -58 .byte -24 .byte -50 .byte 26 .byte 0 .byte 0 .byte 72 .byte -119 .byte -61 .byte 72 .byte -119 .byte -123 .byte 96 .byte -1 .byte -1 .byte -1 .byte -117 .byte 61 .byte 62 .byte 76 .byte 0 .byte 0 .byte 72 .byte -119 .byte -58 .byte -24 .byte -26 .byte 26 .byte 0 .byte 0 .byte 73 .byte -119 .byte -58 .byte 72 .byte -117 .byte 61 .byte -12 .byte 75 .byte 0 .byte 0 .byte 72 .byte -117 .byte -75 .byte 88 .byte -1 .byte -1 .byte -1 .byte 72 .byte -119 .byte -38 .byte 49 .byte -64 .byte 72 .byte -117 .byte 13 .byte 121 .byte 69 .byte 0 .byte 0 .byte 72 .byte -119 .byte -53 .byte -1 .byte -47 .byte 15 .byte 87 .byte -64 .byte 15 .byte 41 .byte -123 .byte 112 .byte -1 .byte -1 .byte -1 .byte 15 .byte 41 .byte 69 .byte -128 .byte 15 .byte 41 .byte 69 .byte -112 .byte 15 .byte 41 .byte 69 .byte -96 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte 69 .byte -48 .byte 72 .byte -119 .byte -57 .byte 72 .byte -117 .byte 117 .byte -64 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -7 .byte -1 .byte -1 .byte -1 .byte -45 .byte 72 .byte -123 .byte -64 .byte 76 .byte -119 .byte 117 .byte -80 .byte 15 .byte -124 .byte -125 .byte 0 .byte 0 .byte 0 .byte 73 .byte -119 .byte -59 .byte 72 .byte -117 .byte 69 .byte -128 .byte 76 .byte -117 .byte 32 .byte 76 .byte -117 .byte 61 .byte -17 .byte 74 .byte 0 .byte 0 .byte 69 .byte 49 .byte -10 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 102 .byte -112 .byte 72 .byte -117 .byte 69 .byte -128 .byte 76 .byte 57 .byte 32 .byte 116 .byte 9 .byte 72 .byte -117 .byte 125 .byte -48 .byte -24 .byte 14 .byte 27 .byte 0 .byte 0 .byte 72 .byte -117 .byte -123 .byte 120 .byte -1 .byte -1 .byte -1 .byte 74 .byte -117 .byte 28 .byte -16 .byte 72 .byte -119 .byte -33 .byte 76 .byte -119 .byte -2 .byte 49 .byte -64 .byte -1 .byte 21 .byte -27 .byte 68 .byte 0 .byte 0 .byte 72 .byte 57 .byte 69 .byte -56 .byte 116 .byte 52 .byte 73 .byte -1 .byte -58 .byte 77 .byte 57 .byte -18 .byte 114 .byte -57 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte 125 .byte -48 .byte 72 .byte -117 .byte 117 .byte -64 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -7 .byte -1 .byte -1 .byte -1 .byte 21 .byte -75 .byte 68 .byte 0 .byte 0 .byte 73 .byte -119 .byte -59 .byte 72 .byte -123 .byte -64 .byte 117 .byte -121 .byte 49 .byte -37 .byte 76 .byte -117 .byte -75 .byte 96 .byte -1 .byte -1 .byte -1 .byte 76 .byte -119 .byte -9 .byte -24 .byte -100 .byte 20 .byte 0 .byte 0 .byte 73 .byte -119 .byte -57 .byte 72 .byte -117 .byte 5 .byte 122 .byte 68 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 24 .byte -1 .byte -1 .byte -1 .byte -72 .byte 0 .byte 0 .byte 0 .byte -62 .byte 72 .byte -119 .byte -123 .byte 32 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte 5 .byte -88 .byte 22 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 40 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte 5 .byte -86 .byte 70 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 48 .byte -1 .byte -1 .byte -1 .byte 72 .byte -119 .byte -99 .byte 56 .byte -1 .byte -1 .byte -1 .byte 76 .byte -119 .byte -67 .byte 64 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte 93 .byte -56 .byte 72 .byte -119 .byte -99 .byte 72 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte 61 .byte 59 .byte 68 .byte 0 .byte 0 .byte 72 .byte -115 .byte -75 .byte 24 .byte -1 .byte -1 .byte -1 .byte -24 .byte 35 .byte 26 .byte 0 .byte 0 .byte 72 .byte 57 .byte 93 .byte -80 .byte 15 .byte -123 .byte 21 .byte 1 .byte 0 .byte 0 .byte -117 .byte 61 .byte -57 .byte 74 .byte 0 .byte 0 .byte 76 .byte -119 .byte -10 .byte -24 .byte 111 .byte 25 .byte 0 .byte 0 .byte 72 .byte -119 .byte 69 .byte -56 .byte 72 .byte -117 .byte 61 .byte 124 .byte 74 .byte 0 .byte 0 .byte 72 .byte -117 .byte -75 .byte 88 .byte -1 .byte -1 .byte -1 .byte 76 .byte -119 .byte -14 .byte 49 .byte -64 .byte 72 .byte -117 .byte 13 .byte 1 .byte 68 .byte 0 .byte 0 .byte 72 .byte -119 .byte -53 .byte -1 .byte -47 .byte 15 .byte 87 .byte -64 .byte 15 .byte 41 .byte -123 .byte 112 .byte -1 .byte -1 .byte -1 .byte 15 .byte 41 .byte 69 .byte -128 .byte 15 .byte 41 .byte 69 .byte -112 .byte 15 .byte 41 .byte 69 .byte -96 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte 69 .byte -48 .byte 72 .byte -119 .byte -57 .byte 72 .byte -117 .byte 117 .byte -64 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -7 .byte -1 .byte -1 .byte -1 .byte -45 .byte 72 .byte -123 .byte -64 .byte 76 .byte -119 .byte 125 .byte -72 .byte 15 .byte -124 .byte 123 .byte 0 .byte 0 .byte 0 .byte 73 .byte -119 .byte -60 .byte 72 .byte -117 .byte 69 .byte -128 .byte 76 .byte -117 .byte 40 .byte 76 .byte -117 .byte 53 .byte 119 .byte 73 .byte 0 .byte 0 .byte 69 .byte 49 .byte -1 .byte 15 .byte 31 .byte 64 .byte 0 .byte 72 .byte -117 .byte 69 .byte -128 .byte 76 .byte 57 .byte 40 .byte 116 .byte 9 .byte 72 .byte -117 .byte 125 .byte -48 .byte -24 .byte -98 .byte 25 .byte 0 .byte 0 .byte 72 .byte -117 .byte -123 .byte 120 .byte -1 .byte -1 .byte -1 .byte 74 .byte -117 .byte 28 .byte -8 .byte 72 .byte -119 .byte -33 .byte 76 .byte -119 .byte -10 .byte 49 .byte -64 .byte -1 .byte 21 .byte 117 .byte 67 .byte 0 .byte 0 .byte 72 .byte 57 .byte 69 .byte -56 .byte 116 .byte 52 .byte 73 .byte -1 .byte -57 .byte 77 .byte 57 .byte -25 .byte 114 .byte -57 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte 125 .byte -48 .byte 72 .byte -117 .byte 117 .byte -64 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -7 .byte -1 .byte -1 .byte -1 .byte 21 .byte 69 .byte 67 .byte 0 .byte 0 .byte 73 .byte -119 .byte -60 .byte 72 .byte -123 .byte -64 .byte 117 .byte -113 .byte 49 .byte -37 .byte 72 .byte -119 .byte -33 .byte -1 .byte 21 .byte 66 .byte 67 .byte 0 .byte 0 .byte 72 .byte -117 .byte 125 .byte -72 .byte 72 .byte -115 .byte 53 .byte 44 .byte 65 .byte 0 .byte 0 .byte 72 .byte -119 .byte -62 .byte -24 .byte 71 .byte 25 .byte 0 .byte 0 .byte 76 .byte -117 .byte -75 .byte 96 .byte -1 .byte -1 .byte -1 .byte 76 .byte -119 .byte -9 .byte -23 .byte -85 .byte 6 .byte 0 .byte 0 .byte 15 .byte -66 .byte 59 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte -123 .byte -1 .byte 15 .byte -120 .byte -85 .byte 13 .byte 0 .byte 0 .byte -70 .byte 0 .byte 64 .byte 0 .byte 0 .byte 72 .byte 15 .byte -66 .byte -57 .byte 72 .byte -117 .byte 13 .byte -49 .byte 66 .byte 0 .byte 0 .byte -117 .byte 68 .byte -127 .byte 60 .byte 33 .byte -48 .byte 76 .byte -115 .byte 123 .byte 1 .byte -123 .byte -64 .byte 76 .byte 15 .byte 68 .byte -5 .byte 76 .byte -119 .byte -25 .byte 68 .byte -119 .byte -10 .byte -24 .byte -92 .byte 22 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -124 .byte -84 .byte -20 .byte -1 .byte -1 .byte 65 .byte -119 .byte -60 .byte 65 .byte -118 .byte 7 .byte 76 .byte -119 .byte -5 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte -102 .byte 66 .byte 0 .byte 0 .byte 68 .byte -119 .byte 101 .byte -56 .byte 76 .byte -119 .byte 125 .byte -48 .byte 116 .byte 80 .byte 76 .byte -119 .byte -5 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte -71 .byte 0 .byte 64 .byte 0 .byte 0 .byte 33 .byte -56 .byte -123 .byte -64 .byte 116 .byte 29 .byte -23 .byte -37 .byte 6 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 35 .byte 24 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte -61 .byte 6 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -2 .byte 49 .byte -1 .byte -23 .byte -68 .byte 6 .byte 0 .byte 0 .byte 15 .byte -66 .byte 59 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte -123 .byte -1 .byte 15 .byte -120 .byte -27 .byte 13 .byte 0 .byte 0 .byte 72 .byte 15 .byte -66 .byte -57 .byte 72 .byte -117 .byte 13 .byte 23 .byte 66 .byte 0 .byte 0 .byte -117 .byte 68 .byte -127 .byte 60 .byte 65 .byte -67 .byte 0 .byte 64 .byte 0 .byte 0 .byte 68 .byte 33 .byte -8 .byte 76 .byte -115 .byte 123 .byte 1 .byte -123 .byte -64 .byte 76 .byte 15 .byte 68 .byte -5 .byte 76 .byte -119 .byte -25 .byte 68 .byte -119 .byte -10 .byte -24 .byte 21 .byte 17 .byte 0 .byte 0 .byte 72 .byte -119 .byte 69 .byte -56 .byte 65 .byte -118 .byte 7 .byte 76 .byte -119 .byte -5 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte -30 .byte 65 .byte 0 .byte 0 .byte 116 .byte 76 .byte 76 .byte -119 .byte -5 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -24 .byte -123 .byte -64 .byte 116 .byte 29 .byte -21 .byte 48 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 115 .byte 23 .byte 0 .byte 0 .byte -123 .byte -64 .byte 117 .byte 21 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -60 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -2 .byte 49 .byte -1 .byte -21 .byte 17 .byte 15 .byte -66 .byte 59 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -2 .byte -123 .byte -1 .byte 15 .byte -120 .byte 81 .byte 13 .byte 0 .byte 0 .byte 72 .byte 15 .byte -66 .byte -57 .byte 72 .byte -117 .byte 13 .byte 110 .byte 65 .byte 0 .byte 0 .byte -117 .byte 68 .byte -127 .byte 60 .byte 68 .byte 33 .byte -24 .byte 76 .byte -115 .byte 99 .byte 1 .byte -123 .byte -64 .byte 76 .byte 15 .byte 68 .byte -29 .byte 76 .byte -119 .byte -1 .byte 68 .byte -119 .byte -10 .byte -24 .byte 114 .byte 16 .byte 0 .byte 0 .byte 72 .byte -119 .byte 69 .byte -48 .byte 65 .byte -118 .byte 4 .byte 36 .byte 76 .byte -119 .byte -29 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte 62 .byte 65 .byte 0 .byte 0 .byte 65 .byte -65 .byte 0 .byte 64 .byte 0 .byte 0 .byte 116 .byte 66 .byte 76 .byte -119 .byte -29 .byte 15 .byte 31 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 29 .byte -21 .byte 43 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -45 .byte 22 .byte 0 .byte 0 .byte -123 .byte -64 .byte 117 .byte 16 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -60 .byte 68 .byte 41 .byte -29 .byte -21 .byte 20 .byte 15 .byte -66 .byte 59 .byte 68 .byte 41 .byte -29 .byte -123 .byte -1 .byte 121 .byte 10 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -85 .byte 22 .byte 0 .byte 0 .byte 76 .byte -119 .byte -25 .byte -119 .byte -34 .byte -24 .byte -63 .byte 19 .byte 0 .byte 0 .byte -119 .byte 69 .byte -80 .byte -117 .byte 61 .byte -120 .byte 71 .byte 0 .byte 0 .byte 72 .byte -117 .byte 117 .byte -56 .byte -24 .byte -1 .byte 21 .byte 0 .byte 0 .byte 72 .byte -117 .byte 61 .byte 64 .byte 71 .byte 0 .byte 0 .byte 72 .byte -117 .byte -75 .byte 88 .byte -1 .byte -1 .byte -1 .byte 72 .byte -119 .byte 69 .byte -72 .byte 72 .byte -119 .byte -62 .byte 49 .byte -64 .byte 76 .byte -117 .byte 37 .byte -63 .byte 64 .byte 0 .byte 0 .byte 65 .byte -1 .byte -44 .byte 15 .byte 87 .byte -64 .byte 15 .byte 41 .byte -123 .byte 112 .byte -1 .byte -1 .byte -1 .byte 15 .byte 41 .byte 69 .byte -128 .byte 15 .byte 41 .byte 69 .byte -112 .byte 15 .byte 41 .byte 69 .byte -96 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 96 .byte -1 .byte -1 .byte -1 .byte 72 .byte -119 .byte -57 .byte 72 .byte -117 .byte 117 .byte -64 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -7 .byte -1 .byte -1 .byte 65 .byte -1 .byte -44 .byte 72 .byte -123 .byte -64 .byte 15 .byte -124 .byte -125 .byte 0 .byte 0 .byte 0 .byte 73 .byte -119 .byte -57 .byte 72 .byte -117 .byte 69 .byte -128 .byte 76 .byte -117 .byte 48 .byte 72 .byte -117 .byte 29 .byte 57 .byte 70 .byte 0 .byte 0 .byte 69 .byte 49 .byte -19 .byte 102 .byte 15 .byte 31 .byte 68 .byte 0 .byte 0 .byte 72 .byte -117 .byte 69 .byte -128 .byte 76 .byte 57 .byte 48 .byte 116 .byte 12 .byte 72 .byte -117 .byte -67 .byte 96 .byte -1 .byte -1 .byte -1 .byte -24 .byte 91 .byte 22 .byte 0 .byte 0 .byte 72 .byte -117 .byte -123 .byte 120 .byte -1 .byte -1 .byte -1 .byte 78 .byte -117 .byte 36 .byte -24 .byte 76 .byte -119 .byte -25 .byte 72 .byte -119 .byte -34 .byte 49 .byte -64 .byte -1 .byte 21 .byte 50 .byte 64 .byte 0 .byte 0 .byte 72 .byte 57 .byte 69 .byte -56 .byte 116 .byte 56 .byte 73 .byte -1 .byte -59 .byte 77 .byte 57 .byte -3 .byte 114 .byte -60 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte -67 .byte 96 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte 117 .byte -64 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -7 .byte -1 .byte -1 .byte -1 .byte 21 .byte -1 .byte 63 .byte 0 .byte 0 .byte 73 .byte -119 .byte -57 .byte 72 .byte -123 .byte -64 .byte 117 .byte -121 .byte 69 .byte 49 .byte -28 .byte 76 .byte -119 .byte -91 .byte -16 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte 125 .byte -72 .byte -24 .byte -28 .byte 15 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte -48 .byte -2 .byte -1 .byte -1 .byte -117 .byte 61 .byte 119 .byte 70 .byte 0 .byte 0 .byte 72 .byte -117 .byte 117 .byte -48 .byte -24 .byte -18 .byte 20 .byte 0 .byte 0 .byte 72 .byte -117 .byte 61 .byte 47 .byte 70 .byte 0 .byte 0 .byte 72 .byte -117 .byte -75 .byte 88 .byte -1 .byte -1 .byte -1 .byte 72 .byte -119 .byte -123 .byte -8 .byte -2 .byte -1 .byte -1 .byte 72 .byte -119 .byte -62 .byte 49 .byte -64 .byte 72 .byte -117 .byte 13 .byte -83 .byte 63 .byte 0 .byte 0 .byte 72 .byte -119 .byte -53 .byte -1 .byte -47 .byte 15 .byte 87 .byte -64 .byte 15 .byte 41 .byte -123 .byte 112 .byte -1 .byte -1 .byte -1 .byte 15 .byte 41 .byte 69 .byte -128 .byte 15 .byte 41 .byte 69 .byte -112 .byte 15 .byte 41 .byte 69 .byte -96 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 96 .byte -1 .byte -1 .byte -1 .byte 72 .byte -119 .byte -57 .byte 72 .byte -117 .byte 117 .byte -64 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -7 .byte -1 .byte -1 .byte -1 .byte -45 .byte 72 .byte -123 .byte -64 .byte 15 .byte -124 .byte 126 .byte 0 .byte 0 .byte 0 .byte 73 .byte -119 .byte -57 .byte 72 .byte -117 .byte 69 .byte -128 .byte 76 .byte -117 .byte 40 .byte 72 .byte -117 .byte 29 .byte 36 .byte 69 .byte 0 .byte 0 .byte 69 .byte 49 .byte -28 .byte -112 .byte 72 .byte -117 .byte 69 .byte -128 .byte 76 .byte 57 .byte 40 .byte 116 .byte 12 .byte 72 .byte -117 .byte -67 .byte 96 .byte -1 .byte -1 .byte -1 .byte -24 .byte 75 .byte 21 .byte 0 .byte 0 .byte 72 .byte -117 .byte -123 .byte 120 .byte -1 .byte -1 .byte -1 .byte 78 .byte -117 .byte 52 .byte -32 .byte 76 .byte -119 .byte -9 .byte 72 .byte -119 .byte -34 .byte 49 .byte -64 .byte -1 .byte 21 .byte 34 .byte 63 .byte 0 .byte 0 .byte 72 .byte 57 .byte 69 .byte -48 .byte 116 .byte 56 .byte 73 .byte -1 .byte -60 .byte 77 .byte 57 .byte -4 .byte 114 .byte -60 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte -67 .byte 96 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte 117 .byte -64 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -7 .byte -1 .byte -1 .byte -1 .byte 21 .byte -17 .byte 62 .byte 0 .byte 0 .byte 73 .byte -119 .byte -57 .byte 72 .byte -123 .byte -64 .byte 117 .byte -116 .byte 69 .byte 49 .byte -10 .byte 72 .byte -117 .byte 61 .byte 69 .byte 69 .byte 0 .byte 0 .byte 72 .byte -117 .byte -75 .byte -24 .byte -2 .byte -1 .byte -1 .byte 76 .byte -119 .byte -14 .byte 76 .byte -117 .byte 61 .byte -52 .byte 62 .byte 0 .byte 0 .byte 65 .byte -1 .byte -41 .byte 65 .byte -119 .byte -60 .byte 76 .byte -117 .byte -67 .byte -8 .byte -2 .byte -1 .byte -1 .byte 76 .byte -119 .byte -1 .byte -24 .byte -73 .byte 14 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte -40 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte 5 .byte 17 .byte 69 .byte 0 .byte 0 .byte 72 .byte -117 .byte 13 .byte 42 .byte 69 .byte 0 .byte 0 .byte 72 .byte -117 .byte -99 .byte -16 .byte -2 .byte -1 .byte -1 .byte 72 .byte -119 .byte -33 .byte 76 .byte -119 .byte -10 .byte 76 .byte -119 .byte -6 .byte 73 .byte -119 .byte -59 .byte -1 .byte -47 .byte 72 .byte -117 .byte 5 .byte 110 .byte 62 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 24 .byte -1 .byte -1 .byte -1 .byte -72 .byte 0 .byte 0 .byte 0 .byte -62 .byte 72 .byte -119 .byte -123 .byte 32 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte 5 .byte -52 .byte 17 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 40 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte 5 .byte -50 .byte 64 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 48 .byte -1 .byte -1 .byte -1 .byte 72 .byte -119 .byte -99 .byte 56 .byte -1 .byte -1 .byte -1 .byte 68 .byte -119 .byte -91 .byte 72 .byte -1 .byte -1 .byte -1 .byte 76 .byte -119 .byte -5 .byte 76 .byte -119 .byte -67 .byte 64 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte 61 .byte 48 .byte 62 .byte 0 .byte 0 .byte 72 .byte -115 .byte -75 .byte 24 .byte -1 .byte -1 .byte -1 .byte -24 .byte 24 .byte 20 .byte 0 .byte 0 .byte -125 .byte 125 .byte -80 .byte 0 .byte 15 .byte -124 .byte -79 .byte 1 .byte 0 .byte 0 .byte -117 .byte 61 .byte -68 .byte 68 .byte 0 .byte 0 .byte 72 .byte -117 .byte 93 .byte -72 .byte 72 .byte -119 .byte -34 .byte -24 .byte 96 .byte 19 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 96 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte 61 .byte 106 .byte 68 .byte 0 .byte 0 .byte 72 .byte -117 .byte -75 .byte 88 .byte -1 .byte -1 .byte -1 .byte 72 .byte -119 .byte -38 .byte 49 .byte -64 .byte 72 .byte -117 .byte 13 .byte -17 .byte 61 .byte 0 .byte 0 .byte 72 .byte -119 .byte -53 .byte -1 .byte -47 .byte 15 .byte 87 .byte -64 .byte 15 .byte 41 .byte -123 .byte 112 .byte -1 .byte -1 .byte -1 .byte 15 .byte 41 .byte 69 .byte -128 .byte 15 .byte 41 .byte 69 .byte -112 .byte 15 .byte 41 .byte 69 .byte -96 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte 69 .byte -80 .byte 72 .byte -119 .byte -57 .byte 72 .byte -117 .byte 117 .byte -64 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -7 .byte -1 .byte -1 .byte -1 .byte -45 .byte 72 .byte -123 .byte -64 .byte 15 .byte -124 .byte -128 .byte 0 .byte 0 .byte 0 .byte 73 .byte -119 .byte -57 .byte 72 .byte -117 .byte 69 .byte -128 .byte 76 .byte -117 .byte 48 .byte 76 .byte -117 .byte 45 .byte 105 .byte 67 .byte 0 .byte 0 .byte 49 .byte -37 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte 69 .byte -128 .byte 76 .byte 57 .byte 48 .byte 116 .byte 9 .byte 72 .byte -117 .byte 125 .byte -80 .byte -24 .byte -114 .byte 19 .byte 0 .byte 0 .byte 72 .byte -117 .byte -123 .byte 120 .byte -1 .byte -1 .byte -1 .byte 76 .byte -117 .byte 36 .byte -40 .byte 76 .byte -119 .byte -25 .byte 76 .byte -119 .byte -18 .byte 49 .byte -64 .byte -1 .byte 21 .byte 101 .byte 61 .byte 0 .byte 0 .byte 72 .byte 57 .byte -123 .byte 96 .byte -1 .byte -1 .byte -1 .byte 116 .byte 53 .byte 72 .byte -1 .byte -61 .byte 76 .byte 57 .byte -5 .byte 114 .byte -60 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte 125 .byte -80 .byte 72 .byte -117 .byte 117 .byte -64 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -7 .byte -1 .byte -1 .byte -1 .byte 21 .byte 50 .byte 61 .byte 0 .byte 0 .byte 73 .byte -119 .byte -57 .byte 72 .byte -123 .byte -64 .byte 117 .byte -118 .byte 69 .byte 49 .byte -28 .byte 76 .byte -119 .byte -25 .byte 76 .byte -117 .byte 61 .byte 45 .byte 61 .byte 0 .byte 0 .byte 65 .byte -1 .byte -41 .byte 72 .byte -117 .byte -67 .byte -48 .byte -2 .byte -1 .byte -1 .byte 76 .byte -115 .byte 53 .byte 17 .byte 59 .byte 0 .byte 0 .byte 76 .byte -119 .byte -10 .byte 72 .byte -119 .byte -62 .byte -24 .byte 41 .byte 19 .byte 0 .byte 0 .byte 72 .byte -117 .byte 61 .byte 2 .byte 67 .byte 0 .byte 0 .byte 72 .byte -117 .byte -75 .byte 0 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte 85 .byte -48 .byte 72 .byte -117 .byte 5 .byte -24 .byte 60 .byte 0 .byte 0 .byte 72 .byte -119 .byte -61 .byte -1 .byte -48 .byte 72 .byte -119 .byte -123 .byte -96 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte 61 .byte -27 .byte 66 .byte 0 .byte 0 .byte -71 .byte 1 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte -75 .byte 8 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -107 .byte -96 .byte -2 .byte -1 .byte -1 .byte -1 .byte -45 .byte 73 .byte -119 .byte -60 .byte -117 .byte 61 .byte 87 .byte 67 .byte 0 .byte 0 .byte 72 .byte -119 .byte -58 .byte -24 .byte -19 .byte 17 .byte 0 .byte 0 .byte -117 .byte 61 .byte 73 .byte 67 .byte 0 .byte 0 .byte 72 .byte -117 .byte -99 .byte -8 .byte -2 .byte -1 .byte -1 .byte 72 .byte -119 .byte -34 .byte 72 .byte -117 .byte 85 .byte -56 .byte -24 .byte -20 .byte 17 .byte 0 .byte 0 .byte 72 .byte -117 .byte -67 .byte -16 .byte -2 .byte -1 .byte -1 .byte 65 .byte -1 .byte -41 .byte 72 .byte -117 .byte -67 .byte -40 .byte -2 .byte -1 .byte -1 .byte 76 .byte -119 .byte -10 .byte 72 .byte -119 .byte -62 .byte -24 .byte -94 .byte 18 .byte 0 .byte 0 .byte 76 .byte -119 .byte -25 .byte -1 .byte 21 .byte 121 .byte 60 .byte 0 .byte 0 .byte 72 .byte -117 .byte 125 .byte -72 .byte -24 .byte 94 .byte 17 .byte 0 .byte 0 .byte 72 .byte -119 .byte -33 .byte -24 .byte 86 .byte 17 .byte 0 .byte 0 .byte 76 .byte -115 .byte -83 .byte 80 .byte -3 .byte -1 .byte -1 .byte -23 .byte 52 .byte -26 .byte -1 .byte -1 .byte 15 .byte -66 .byte 59 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte -123 .byte -1 .byte 15 .byte -120 .byte -92 .byte 8 .byte 0 .byte 0 .byte 72 .byte 15 .byte -66 .byte -57 .byte 72 .byte -117 .byte 13 .byte 24 .byte 60 .byte 0 .byte 0 .byte -117 .byte 68 .byte -127 .byte 60 .byte 68 .byte 33 .byte -8 .byte 76 .byte -115 .byte 123 .byte 1 .byte -123 .byte -64 .byte 76 .byte 15 .byte 68 .byte -5 .byte 76 .byte -119 .byte -25 .byte 68 .byte -119 .byte -10 .byte -24 .byte -20 .byte 15 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -124 .byte -12 .byte -27 .byte -1 .byte -1 .byte 65 .byte -119 .byte -60 .byte 65 .byte -118 .byte 7 .byte 76 .byte -119 .byte -5 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte -30 .byte 59 .byte 0 .byte 0 .byte 116 .byte 80 .byte 76 .byte -119 .byte -5 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte -71 .byte 0 .byte 64 .byte 0 .byte 0 .byte 33 .byte -56 .byte -123 .byte -64 .byte 116 .byte 29 .byte -23 .byte -33 .byte 1 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 115 .byte 17 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte -57 .byte 1 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 68 .byte 41 .byte -5 .byte -23 .byte -56 .byte 1 .byte 0 .byte 0 .byte 15 .byte -66 .byte 59 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -2 .byte -123 .byte -1 .byte 15 .byte -120 .byte 67 .byte 8 .byte 0 .byte 0 .byte 72 .byte 15 .byte -66 .byte -57 .byte 72 .byte -117 .byte 13 .byte 108 .byte 59 .byte 0 .byte 0 .byte -117 .byte 68 .byte -127 .byte 60 .byte -71 .byte 0 .byte 64 .byte 0 .byte 0 .byte 33 .byte -56 .byte 76 .byte -115 .byte 107 .byte 1 .byte -123 .byte -64 .byte 76 .byte 15 .byte 68 .byte -21 .byte 72 .byte -117 .byte 125 .byte -48 .byte 68 .byte -119 .byte -10 .byte -24 .byte 59 .byte 14 .byte 0 .byte 0 .byte 65 .byte -119 .byte -60 .byte 65 .byte -118 .byte 69 .byte 0 .byte 76 .byte -119 .byte -21 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte 56 .byte 59 .byte 0 .byte 0 .byte 116 .byte 66 .byte 76 .byte -119 .byte -21 .byte 15 .byte 31 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte -71 .byte 0 .byte 64 .byte 0 .byte 0 .byte 33 .byte -56 .byte -123 .byte -64 .byte 116 .byte 25 .byte -21 .byte 39 .byte 102 .byte 15 .byte 31 .byte 68 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -45 .byte 16 .byte 0 .byte 0 .byte -123 .byte -64 .byte 117 .byte 16 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -60 .byte 68 .byte 41 .byte -21 .byte -21 .byte 20 .byte 15 .byte -66 .byte 59 .byte 68 .byte 41 .byte -21 .byte -123 .byte -1 .byte 121 .byte 10 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -85 .byte 16 .byte 0 .byte 0 .byte 76 .byte -119 .byte -17 .byte -119 .byte -34 .byte -24 .byte -63 .byte 13 .byte 0 .byte 0 .byte -14 .byte 65 .byte 15 .byte 42 .byte -60 .byte -14 .byte 15 .byte 42 .byte -56 .byte -14 .byte 15 .byte 17 .byte -123 .byte 80 .byte -7 .byte -1 .byte -1 .byte -14 .byte 15 .byte 17 .byte -115 .byte 88 .byte -7 .byte -1 .byte -1 .byte -117 .byte 61 .byte 114 .byte 65 .byte 0 .byte 0 .byte -117 .byte 117 .byte -56 .byte 72 .byte -115 .byte -107 .byte 80 .byte -7 .byte -1 .byte -1 .byte -24 .byte 31 .byte 16 .byte 0 .byte 0 .byte 76 .byte -115 .byte -83 .byte 80 .byte -3 .byte -1 .byte -1 .byte -23 .byte -105 .byte -28 .byte -1 .byte -1 .byte 15 .byte -66 .byte 59 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte -123 .byte -1 .byte 15 .byte -120 .byte 97 .byte 7 .byte 0 .byte 0 .byte 72 .byte 15 .byte -66 .byte -57 .byte 72 .byte -117 .byte 13 .byte 123 .byte 58 .byte 0 .byte 0 .byte -117 .byte 68 .byte -127 .byte 60 .byte 68 .byte 33 .byte -8 .byte 76 .byte -115 .byte 123 .byte 1 .byte -123 .byte -64 .byte 76 .byte 15 .byte 68 .byte -5 .byte 76 .byte -119 .byte -25 .byte 68 .byte -119 .byte -10 .byte -24 .byte 79 .byte 14 .byte 0 .byte 0 .byte -119 .byte -123 .byte 80 .byte -7 .byte -1 .byte -1 .byte -123 .byte -64 .byte 15 .byte -124 .byte 81 .byte -28 .byte -1 .byte -1 .byte 65 .byte -118 .byte 7 .byte 76 .byte -119 .byte -5 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte 66 .byte 58 .byte 0 .byte 0 .byte 116 .byte 80 .byte 76 .byte -119 .byte -5 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte -71 .byte 0 .byte 64 .byte 0 .byte 0 .byte 33 .byte -56 .byte -123 .byte -64 .byte 116 .byte 29 .byte -23 .byte -18 .byte 4 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -45 .byte 15 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte -42 .byte 4 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -2 .byte 49 .byte -1 .byte -23 .byte -49 .byte 4 .byte 0 .byte 0 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -87 .byte 15 .byte 0 .byte 0 .byte -23 .byte -115 .byte -14 .byte -1 .byte -1 .byte 15 .byte -66 .byte 59 .byte 68 .byte 41 .byte -5 .byte -123 .byte -1 .byte 121 .byte 10 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -112 .byte 15 .byte 0 .byte 0 .byte 76 .byte -119 .byte -1 .byte -119 .byte -34 .byte -24 .byte 54 .byte 14 .byte 0 .byte 0 .byte -117 .byte 61 .byte 112 .byte 64 .byte 0 .byte 0 .byte 68 .byte -119 .byte -26 .byte -24 .byte 42 .byte 15 .byte 0 .byte 0 .byte -23 .byte -93 .byte -29 .byte -1 .byte -1 .byte 15 .byte -66 .byte 59 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte -123 .byte -1 .byte 15 .byte -120 .byte 122 .byte 7 .byte 0 .byte 0 .byte 72 .byte 15 .byte -66 .byte -57 .byte 72 .byte -117 .byte 13 .byte -121 .byte 57 .byte 0 .byte 0 .byte -117 .byte 68 .byte -127 .byte 60 .byte 68 .byte 33 .byte -8 .byte 76 .byte -115 .byte 123 .byte 1 .byte -123 .byte -64 .byte 76 .byte 15 .byte 68 .byte -5 .byte 76 .byte -119 .byte -25 .byte 68 .byte -119 .byte -10 .byte -24 .byte 91 .byte 13 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -124 .byte 99 .byte -29 .byte -1 .byte -1 .byte 65 .byte -119 .byte -60 .byte 65 .byte -118 .byte 7 .byte 76 .byte -119 .byte -5 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte 81 .byte 57 .byte 0 .byte 0 .byte 116 .byte 79 .byte 76 .byte -119 .byte -5 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 102 .byte -112 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte -71 .byte 0 .byte 64 .byte 0 .byte 0 .byte 33 .byte -56 .byte -123 .byte -64 .byte 116 .byte 29 .byte -23 .byte -77 .byte 5 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -29 .byte 14 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte -101 .byte 5 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 68 .byte 41 .byte -5 .byte -23 .byte -100 .byte 5 .byte 0 .byte 0 .byte 15 .byte -66 .byte 59 .byte 65 .byte -119 .byte -35 .byte 69 .byte 41 .byte -3 .byte -123 .byte -1 .byte 15 .byte -120 .byte 56 .byte 7 .byte 0 .byte 0 .byte 72 .byte 15 .byte -66 .byte -57 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte -71 .byte 0 .byte 64 .byte 0 .byte 0 .byte 33 .byte -56 .byte 76 .byte -115 .byte 115 .byte 1 .byte -123 .byte -64 .byte 76 .byte 15 .byte 68 .byte -13 .byte 76 .byte -119 .byte -1 .byte 68 .byte -119 .byte -18 .byte -24 .byte 66 .byte 13 .byte 0 .byte 0 .byte -13 .byte 15 .byte 17 .byte 69 .byte -48 .byte 65 .byte -118 .byte 6 .byte 76 .byte -119 .byte -13 .byte -124 .byte -64 .byte 65 .byte -65 .byte 0 .byte 64 .byte 0 .byte 0 .byte 68 .byte -119 .byte 101 .byte -56 .byte 116 .byte 69 .byte 76 .byte -119 .byte -13 .byte 102 .byte 15 .byte 31 .byte 68 .byte 0 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 72 .byte -117 .byte 13 .byte -111 .byte 56 .byte 0 .byte 0 .byte -117 .byte 68 .byte -127 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 23 .byte -21 .byte 42 .byte 15 .byte 31 .byte 64 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 67 .byte 14 .byte 0 .byte 0 .byte -123 .byte -64 .byte 117 .byte 21 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -60 .byte 65 .byte -119 .byte -35 .byte 69 .byte 41 .byte -11 .byte 49 .byte -1 .byte -21 .byte 17 .byte 15 .byte -66 .byte 59 .byte 65 .byte -119 .byte -35 .byte 69 .byte 41 .byte -11 .byte -123 .byte -1 .byte 15 .byte -120 .byte -87 .byte 6 .byte 0 .byte 0 .byte 72 .byte 15 .byte -66 .byte -57 .byte 72 .byte -117 .byte 13 .byte 62 .byte 56 .byte 0 .byte 0 .byte -117 .byte 68 .byte -127 .byte 60 .byte 65 .byte -68 .byte 0 .byte 64 .byte 0 .byte 0 .byte 68 .byte 33 .byte -8 .byte 76 .byte -115 .byte 123 .byte 1 .byte -123 .byte -64 .byte 76 .byte 15 .byte 68 .byte -5 .byte 76 .byte -119 .byte -9 .byte 68 .byte -119 .byte -18 .byte -24 .byte -100 .byte 12 .byte 0 .byte 0 .byte 15 .byte 41 .byte -123 .byte 96 .byte -1 .byte -1 .byte -1 .byte 65 .byte -118 .byte 7 .byte 76 .byte -119 .byte -5 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte 6 .byte 56 .byte 0 .byte 0 .byte 116 .byte 64 .byte 76 .byte -119 .byte -5 .byte -112 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -32 .byte -123 .byte -64 .byte 116 .byte 29 .byte -21 .byte 48 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -93 .byte 13 .byte 0 .byte 0 .byte -123 .byte -64 .byte 117 .byte 21 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -60 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -2 .byte 49 .byte -1 .byte -21 .byte 17 .byte 15 .byte -66 .byte 59 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -2 .byte -123 .byte -1 .byte 15 .byte -120 .byte 30 .byte 6 .byte 0 .byte 0 .byte 72 .byte 15 .byte -66 .byte -57 .byte 72 .byte -117 .byte 13 .byte -98 .byte 55 .byte 0 .byte 0 .byte -117 .byte 68 .byte -127 .byte 60 .byte 68 .byte 33 .byte -32 .byte 76 .byte -115 .byte 107 .byte 1 .byte -123 .byte -64 .byte 76 .byte 15 .byte 68 .byte -21 .byte 76 .byte -119 .byte -1 .byte 68 .byte -119 .byte -10 .byte -24 .byte 2 .byte 12 .byte 0 .byte 0 .byte -13 .byte 15 .byte 17 .byte 69 .byte -80 .byte 65 .byte -118 .byte 69 .byte 0 .byte 76 .byte -119 .byte -21 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte 109 .byte 55 .byte 0 .byte 0 .byte 65 .byte -65 .byte 0 .byte 64 .byte 0 .byte 0 .byte 68 .byte -117 .byte 101 .byte -56 .byte 116 .byte 77 .byte 76 .byte -119 .byte -21 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte 64 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 29 .byte -21 .byte 43 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -13 .byte 12 .byte 0 .byte 0 .byte -123 .byte -64 .byte 117 .byte 16 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -60 .byte 68 .byte 41 .byte -21 .byte -21 .byte 20 .byte 15 .byte -66 .byte 59 .byte 68 .byte 41 .byte -21 .byte -123 .byte -1 .byte 121 .byte 10 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -53 .byte 12 .byte 0 .byte 0 .byte 76 .byte -119 .byte -17 .byte -119 .byte -34 .byte -24 .byte 113 .byte 11 .byte 0 .byte 0 .byte -13 .byte 15 .byte 16 .byte 109 .byte -80 .byte 15 .byte 40 .byte -59 .byte -13 .byte 15 .byte 89 .byte 5 .byte 1 .byte 16 .byte 0 .byte 0 .byte -13 .byte 15 .byte 44 .byte -64 .byte 15 .byte 87 .byte -64 .byte -14 .byte 15 .byte 42 .byte -64 .byte -14 .byte 15 .byte 16 .byte -115 .byte -112 .byte -2 .byte -1 .byte -1 .byte -14 .byte 15 .byte 16 .byte -107 .byte -104 .byte -2 .byte -1 .byte -1 .byte 102 .byte 15 .byte 40 .byte -39 .byte 102 .byte 15 .byte 40 .byte -31 .byte -14 .byte 15 .byte 94 .byte -30 .byte -14 .byte 15 .byte 94 .byte -40 .byte -14 .byte 15 .byte 94 .byte -60 .byte -14 .byte 15 .byte 44 .byte -64 .byte 15 .byte 87 .byte -64 .byte -14 .byte 15 .byte 90 .byte -61 .byte 15 .byte 87 .byte -37 .byte -14 .byte 15 .byte 42 .byte -40 .byte -14 .byte 15 .byte 94 .byte -45 .byte -14 .byte 15 .byte 90 .byte -46 .byte -13 .byte 15 .byte 16 .byte 29 .byte -76 .byte 15 .byte 0 .byte 0 .byte -13 .byte 15 .byte 94 .byte -40 .byte -13 .byte 15 .byte 90 .byte -37 .byte -14 .byte 15 .byte 89 .byte -39 .byte -13 .byte 15 .byte 16 .byte 77 .byte -48 .byte -13 .byte 15 .byte 88 .byte -51 .byte -13 .byte 15 .byte 90 .byte -55 .byte -14 .byte 15 .byte 92 .byte -39 .byte -14 .byte 15 .byte 17 .byte 93 .byte -48 .byte 15 .byte 40 .byte -115 .byte 96 .byte -1 .byte -1 .byte -1 .byte 15 .byte 87 .byte 13 .byte 112 .byte 15 .byte 0 .byte 0 .byte -13 .byte 15 .byte 90 .byte -55 .byte -14 .byte 15 .byte 17 .byte -115 .byte 96 .byte -1 .byte -1 .byte -1 .byte -13 .byte 15 .byte 90 .byte -64 .byte 15 .byte 87 .byte -55 .byte -13 .byte 15 .byte 90 .byte -54 .byte 72 .byte -115 .byte -67 .byte -96 .byte -2 .byte -1 .byte -1 .byte -24 .byte 101 .byte 11 .byte 0 .byte 0 .byte 76 .byte -117 .byte -83 .byte -56 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte -115 .byte -64 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte -107 .byte -72 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte -75 .byte -80 .byte -2 .byte -1 .byte -1 .byte 76 .byte -117 .byte -123 .byte -96 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte -99 .byte -88 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte 5 .byte 4 .byte 54 .byte 0 .byte 0 .byte 76 .byte -117 .byte 72 .byte 40 .byte 76 .byte -117 .byte 80 .byte 32 .byte 76 .byte -117 .byte 88 .byte 24 .byte 76 .byte -117 .byte 112 .byte 16 .byte 76 .byte -117 .byte 56 .byte 72 .byte -117 .byte 64 .byte 8 .byte 72 .byte -115 .byte -67 .byte 24 .byte -1 .byte -1 .byte -1 .byte 65 .byte 85 .byte 81 .byte 82 .byte 86 .byte 83 .byte 65 .byte 80 .byte 65 .byte 81 .byte 65 .byte 82 .byte 65 .byte 83 .byte 65 .byte 86 .byte 80 .byte 65 .byte 87 .byte -24 .byte -14 .byte 10 .byte 0 .byte 0 .byte 72 .byte -125 .byte -60 .byte 96 .byte 72 .byte -117 .byte -123 .byte 64 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte -115 .byte 56 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte -107 .byte 48 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte -75 .byte 40 .byte -1 .byte -1 .byte -1 .byte 76 .byte -117 .byte -123 .byte 24 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte -99 .byte 32 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -67 .byte 80 .byte -2 .byte -1 .byte -1 .byte -14 .byte 15 .byte 16 .byte 69 .byte -48 .byte -14 .byte 15 .byte 16 .byte -115 .byte 96 .byte -1 .byte -1 .byte -1 .byte 80 .byte 81 .byte 82 .byte 86 .byte 83 .byte 65 .byte 80 .byte -24 .byte -68 .byte 10 .byte 0 .byte 0 .byte 72 .byte -125 .byte -60 .byte 48 .byte -117 .byte 61 .byte 62 .byte 60 .byte 0 .byte 0 .byte 76 .byte -117 .byte -115 .byte 120 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte -115 .byte 112 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte -107 .byte 104 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte -99 .byte 96 .byte -2 .byte -1 .byte -1 .byte 76 .byte -117 .byte -123 .byte 80 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte -123 .byte 88 .byte -2 .byte -1 .byte -1 .byte 68 .byte -119 .byte -26 .byte 65 .byte 81 .byte 81 .byte 82 .byte 83 .byte 80 .byte 65 .byte 80 .byte -24 .byte -34 .byte 10 .byte 0 .byte 0 .byte 72 .byte -125 .byte -60 .byte 48 .byte 76 .byte -115 .byte -83 .byte 80 .byte -3 .byte -1 .byte -1 .byte -23 .byte 52 .byte -33 .byte -1 .byte -1 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -6 .byte 10 .byte 0 .byte 0 .byte -23 .byte 92 .byte -14 .byte -1 .byte -1 .byte 15 .byte -66 .byte 59 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -2 .byte -123 .byte -1 .byte 15 .byte -120 .byte -104 .byte 3 .byte 0 .byte 0 .byte 72 .byte 15 .byte -66 .byte -57 .byte 72 .byte -117 .byte 13 .byte 9 .byte 53 .byte 0 .byte 0 .byte -117 .byte 68 .byte -127 .byte 60 .byte -71 .byte 0 .byte 64 .byte 0 .byte 0 .byte 33 .byte -56 .byte 76 .byte -115 .byte 99 .byte 1 .byte -123 .byte -64 .byte 76 .byte 15 .byte 68 .byte -29 .byte 76 .byte -119 .byte -1 .byte 68 .byte -119 .byte -10 .byte -24 .byte 105 .byte 9 .byte 0 .byte 0 .byte -13 .byte 15 .byte 17 .byte 69 .byte -56 .byte 65 .byte -118 .byte 4 .byte 36 .byte 76 .byte -119 .byte -29 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte -44 .byte 52 .byte 0 .byte 0 .byte 65 .byte -65 .byte 0 .byte 64 .byte 0 .byte 0 .byte 116 .byte 72 .byte 76 .byte -119 .byte -29 .byte 102 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte 68 .byte 33 .byte -8 .byte -123 .byte -64 .byte 116 .byte 29 .byte -21 .byte 43 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 99 .byte 10 .byte 0 .byte 0 .byte -123 .byte -64 .byte 117 .byte 16 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -60 .byte 68 .byte 41 .byte -29 .byte -21 .byte 20 .byte 15 .byte -66 .byte 59 .byte 68 .byte 41 .byte -29 .byte -123 .byte -1 .byte 121 .byte 10 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 59 .byte 10 .byte 0 .byte 0 .byte 76 .byte -119 .byte -25 .byte -119 .byte -34 .byte -24 .byte -31 .byte 8 .byte 0 .byte 0 .byte 15 .byte 40 .byte -56 .byte -117 .byte 61 .byte 24 .byte 59 .byte 0 .byte 0 .byte 72 .byte -115 .byte -75 .byte 80 .byte -7 .byte -1 .byte -1 .byte -70 .byte 1 .byte 0 .byte 0 .byte 0 .byte -13 .byte 15 .byte 16 .byte 69 .byte -56 .byte -24 .byte -48 .byte 9 .byte 0 .byte 0 .byte -23 .byte 61 .byte -34 .byte -1 .byte -1 .byte 65 .byte -67 .byte 0 .byte 64 .byte 0 .byte 0 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -3 .byte 9 .byte 0 .byte 0 .byte -23 .byte 30 .byte -14 .byte -1 .byte -1 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -18 .byte 9 .byte 0 .byte 0 .byte -23 .byte -78 .byte -14 .byte -1 .byte -1 .byte 15 .byte -66 .byte 59 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte -123 .byte -1 .byte 15 .byte -120 .byte -101 .byte 2 .byte 0 .byte 0 .byte 72 .byte 15 .byte -66 .byte -57 .byte 72 .byte -117 .byte 13 .byte -3 .byte 51 .byte 0 .byte 0 .byte -117 .byte 68 .byte -127 .byte 60 .byte 68 .byte 33 .byte -8 .byte 76 .byte -115 .byte 123 .byte 1 .byte -123 .byte -64 .byte 76 .byte 15 .byte 68 .byte -5 .byte 76 .byte -119 .byte -25 .byte 68 .byte -119 .byte -10 .byte -24 .byte -47 .byte 7 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -124 .byte -39 .byte -35 .byte -1 .byte -1 .byte 65 .byte -119 .byte -60 .byte 65 .byte -118 .byte 7 .byte 76 .byte -119 .byte -5 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte -57 .byte 51 .byte 0 .byte 0 .byte 116 .byte 65 .byte 76 .byte -119 .byte -5 .byte 102 .byte -112 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte -71 .byte 0 .byte 64 .byte 0 .byte 0 .byte 33 .byte -56 .byte -123 .byte -64 .byte 116 .byte 25 .byte -23 .byte -115 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 99 .byte 9 .byte 0 .byte 0 .byte -123 .byte -64 .byte 117 .byte 121 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -60 .byte 68 .byte 41 .byte -5 .byte -21 .byte 125 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 69 .byte 9 .byte 0 .byte 0 .byte -23 .byte 95 .byte -9 .byte -1 .byte -1 .byte 15 .byte -66 .byte 59 .byte 68 .byte 41 .byte -5 .byte -123 .byte -1 .byte 121 .byte 10 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 44 .byte 9 .byte 0 .byte 0 .byte 76 .byte -119 .byte -1 .byte -119 .byte -34 .byte -24 .byte 66 .byte 6 .byte 0 .byte 0 .byte -117 .byte 29 .byte 12 .byte 58 .byte 0 .byte 0 .byte -119 .byte -57 .byte -24 .byte -21 .byte 8 .byte 0 .byte 0 .byte -119 .byte -33 .byte 68 .byte -119 .byte -26 .byte -119 .byte -62 .byte -24 .byte -63 .byte 8 .byte 0 .byte 0 .byte -23 .byte 52 .byte -35 .byte -1 .byte -1 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -6 .byte 8 .byte 0 .byte 0 .byte -23 .byte -60 .byte -9 .byte -1 .byte -1 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -21 .byte 8 .byte 0 .byte 0 .byte -23 .byte -94 .byte -8 .byte -1 .byte -1 .byte 15 .byte -66 .byte 59 .byte 68 .byte 41 .byte -5 .byte -123 .byte -1 .byte 121 .byte 10 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -46 .byte 8 .byte 0 .byte 0 .byte 76 .byte -119 .byte -1 .byte -119 .byte -34 .byte -24 .byte -24 .byte 5 .byte 0 .byte 0 .byte 72 .byte -57 .byte -123 .byte 80 .byte -7 .byte -1 .byte -1 .byte 0 .byte 8 .byte 0 .byte 0 .byte -117 .byte 61 .byte -89 .byte 57 .byte 0 .byte 0 .byte -71 .byte 32 .byte 0 .byte 0 .byte 0 .byte 68 .byte -119 .byte -26 .byte 72 .byte -115 .byte -107 .byte 80 .byte -7 .byte -1 .byte -1 .byte -125 .byte -8 .byte 1 .byte 117 .byte 10 .byte -24 .byte 98 .byte 8 .byte 0 .byte 0 .byte -23 .byte -55 .byte -36 .byte -1 .byte -1 .byte -24 .byte -2 .byte 7 .byte 0 .byte 0 .byte -23 .byte -65 .byte -36 .byte -1 .byte -1 .byte 15 .byte -66 .byte 59 .byte 65 .byte -119 .byte -34 .byte 69 .byte 41 .byte -26 .byte -123 .byte -1 .byte 15 .byte -120 .byte -78 .byte 1 .byte 0 .byte 0 .byte 72 .byte 15 .byte -66 .byte -57 .byte 72 .byte -117 .byte 13 .byte -93 .byte 50 .byte 0 .byte 0 .byte -117 .byte 68 .byte -127 .byte 60 .byte 68 .byte 33 .byte -8 .byte 76 .byte -115 .byte 123 .byte 1 .byte -123 .byte -64 .byte 76 .byte 15 .byte 68 .byte -5 .byte 76 .byte -119 .byte -25 .byte 68 .byte -119 .byte -10 .byte -24 .byte 119 .byte 6 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -124 .byte 127 .byte -36 .byte -1 .byte -1 .byte 65 .byte -119 .byte -60 .byte 65 .byte -118 .byte 7 .byte 76 .byte -119 .byte -5 .byte -124 .byte -64 .byte 76 .byte -117 .byte 53 .byte 109 .byte 50 .byte 0 .byte 0 .byte 116 .byte 75 .byte 76 .byte -119 .byte -5 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -124 .byte -64 .byte 120 .byte 28 .byte 72 .byte 15 .byte -66 .byte -64 .byte 65 .byte -117 .byte 68 .byte -122 .byte 60 .byte -71 .byte 0 .byte 64 .byte 0 .byte 0 .byte 33 .byte -56 .byte -123 .byte -64 .byte 116 .byte 29 .byte -23 .byte -27 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 15 .byte -66 .byte -8 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 3 .byte 8 .byte 0 .byte 0 .byte -123 .byte -64 .byte 15 .byte -123 .byte -51 .byte 0 .byte 0 .byte 0 .byte 15 .byte -74 .byte 67 .byte 1 .byte 72 .byte -1 .byte -61 .byte -124 .byte -64 .byte 117 .byte -64 .byte 68 .byte 41 .byte -5 .byte -23 .byte -50 .byte 0 .byte 0 .byte 0 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -34 .byte 7 .byte 0 .byte 0 .byte -23 .byte -119 .byte -8 .byte -1 .byte -1 .byte 15 .byte -66 .byte 59 .byte 68 .byte 41 .byte -29 .byte -123 .byte -1 .byte 121 .byte 10 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -59 .byte 7 .byte 0 .byte 0 .byte 76 .byte -119 .byte -25 .byte -119 .byte -34 .byte -24 .byte -37 .byte 5 .byte 0 .byte 0 .byte -119 .byte -61 .byte -117 .byte 61 .byte -93 .byte 56 .byte 0 .byte 0 .byte -119 .byte -58 .byte 72 .byte -115 .byte -107 .byte 112 .byte -1 .byte -1 .byte -1 .byte -24 .byte 39 .byte 7 .byte 0 .byte 0 .byte -117 .byte -67 .byte 112 .byte -1 .byte -1 .byte -1 .byte 72 .byte -115 .byte -75 .byte 80 .byte -7 .byte -1 .byte -1 .byte -24 .byte 9 .byte 7 .byte 0 .byte 0 .byte 72 .byte -117 .byte -67 .byte 80 .byte -7 .byte -1 .byte -1 .byte -119 .byte -34 .byte -1 .byte 21 .byte 100 .byte 56 .byte 0 .byte 0 .byte -23 .byte -81 .byte -37 .byte -1 .byte -1 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 117 .byte 7 .byte 0 .byte 0 .byte -23 .byte -55 .byte -8 .byte -1 .byte -1 .byte 65 .byte -68 .byte 0 .byte 64 .byte 0 .byte 0 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 96 .byte 7 .byte 0 .byte 0 .byte -23 .byte 90 .byte -7 .byte -1 .byte -1 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 81 .byte 7 .byte 0 .byte 0 .byte -23 .byte -27 .byte -7 .byte -1 .byte -1 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 66 .byte 7 .byte 0 .byte 0 .byte -23 .byte 111 .byte -4 .byte -1 .byte -1 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 51 .byte 7 .byte 0 .byte 0 .byte -23 .byte 104 .byte -3 .byte -1 .byte -1 .byte 15 .byte -66 .byte 59 .byte 68 .byte 41 .byte -5 .byte -123 .byte -1 .byte 121 .byte 10 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte 26 .byte 7 .byte 0 .byte 0 .byte 76 .byte -119 .byte -1 .byte -119 .byte -34 .byte -24 .byte 48 .byte 4 .byte 0 .byte 0 .byte 72 .byte -57 .byte -123 .byte 80 .byte -7 .byte -1 .byte -1 .byte 8 .byte 0 .byte 0 .byte 0 .byte -117 .byte 61 .byte -17 .byte 55 .byte 0 .byte 0 .byte -71 .byte 32 .byte 0 .byte 0 .byte 0 .byte 68 .byte -119 .byte -26 .byte 72 .byte -115 .byte -107 .byte 80 .byte -7 .byte -1 .byte -1 .byte -125 .byte -8 .byte 1 .byte 117 .byte 7 .byte -24 .byte 80 .byte 6 .byte 0 .byte 0 .byte -21 .byte 5 .byte -24 .byte -93 .byte 6 .byte 0 .byte 0 .byte -117 .byte 61 .byte -55 .byte 55 .byte 0 .byte 0 .byte 68 .byte -119 .byte -26 .byte -24 .byte 101 .byte 6 .byte 0 .byte 0 .byte -23 .byte -4 .byte -38 .byte -1 .byte -1 .byte -66 .byte 0 .byte 64 .byte 0 .byte 0 .byte -24 .byte -62 .byte 6 .byte 0 .byte 0 .byte -23 .byte 81 .byte -2 .byte -1 .byte -1 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 65 .byte 87 .byte 65 .byte 86 .byte 83 .byte 72 .byte -125 .byte -20 .byte 24 .byte 72 .byte -119 .byte -8 .byte 73 .byte -119 .byte -25 .byte 72 .byte -117 .byte 13 .byte -42 .byte 48 .byte 0 .byte 0 .byte 72 .byte -117 .byte 9 .byte 72 .byte -119 .byte 77 .byte -32 .byte 72 .byte -57 .byte 69 .byte -40 .byte 0 .byte 0 .byte 0 .byte 0 .byte -115 .byte 78 .byte 1 .byte 72 .byte -119 .byte -29 .byte 72 .byte -125 .byte -63 .byte 15 .byte 72 .byte -125 .byte -31 .byte -16 .byte 72 .byte 41 .byte -53 .byte 72 .byte -119 .byte -36 .byte 65 .byte -119 .byte -10 .byte 72 .byte -119 .byte -33 .byte 72 .byte -119 .byte -58 .byte 76 .byte -119 .byte -14 .byte -24 .byte -74 .byte 6 .byte 0 .byte 0 .byte 65 .byte -58 .byte 4 .byte 30 .byte 0 .byte 72 .byte -115 .byte 53 .byte -71 .byte 46 .byte 0 .byte 0 .byte 72 .byte -115 .byte 85 .byte -40 .byte 72 .byte -119 .byte -33 .byte 49 .byte -64 .byte -24 .byte -28 .byte 6 .byte 0 .byte 0 .byte 72 .byte -117 .byte 69 .byte -40 .byte 76 .byte -119 .byte -4 .byte 72 .byte -117 .byte 13 .byte 122 .byte 48 .byte 0 .byte 0 .byte 72 .byte -117 .byte 9 .byte 72 .byte 59 .byte 77 .byte -32 .byte 117 .byte 11 .byte 72 .byte -115 .byte 101 .byte -24 .byte 91 .byte 65 .byte 94 .byte 65 .byte 95 .byte 93 .byte -61 .byte -24 .byte 45 .byte 6 .byte 0 .byte 0 .byte -112 .byte 85 .byte 72 .byte -119 .byte -27 .byte 65 .byte 86 .byte 65 .byte 85 .byte 83 .byte 80 .byte 72 .byte -119 .byte -5 .byte 72 .byte -117 .byte 61 .byte -12 .byte 54 .byte 0 .byte 0 .byte -24 .byte 97 .byte 6 .byte 0 .byte 0 .byte 72 .byte -117 .byte 53 .byte 56 .byte 54 .byte 0 .byte 0 .byte 72 .byte -119 .byte -57 .byte -1 .byte 21 .byte 71 .byte 48 .byte 0 .byte 0 .byte 73 .byte -119 .byte -58 .byte 72 .byte -117 .byte 67 .byte 32 .byte 72 .byte -117 .byte 64 .byte 8 .byte 72 .byte -117 .byte 120 .byte 24 .byte -24 .byte 51 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte 13 .byte -92 .byte 54 .byte 0 .byte 0 .byte 76 .byte -119 .byte -9 .byte 73 .byte -119 .byte -59 .byte -1 .byte -47 .byte 72 .byte -117 .byte 67 .byte 32 .byte 72 .byte -117 .byte 64 .byte 8 .byte 72 .byte -117 .byte 120 .byte 24 .byte 72 .byte -125 .byte -60 .byte 8 .byte 91 .byte 65 .byte 93 .byte 65 .byte 94 .byte 93 .byte -23 .byte -1 .byte 4 .byte 0 .byte 0 .byte 102 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 65 .byte 87 .byte 65 .byte 86 .byte 65 .byte 85 .byte 65 .byte 84 .byte 83 .byte 72 .byte -127 .byte -20 .byte -8 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -67 .byte 40 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte 5 .byte -50 .byte 47 .byte 0 .byte 0 .byte 72 .byte -117 .byte 0 .byte 72 .byte -119 .byte 69 .byte -48 .byte 72 .byte -117 .byte 61 .byte 56 .byte 54 .byte 0 .byte 0 .byte 72 .byte -57 .byte -123 .byte 72 .byte -1 .byte -1 .byte -1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte -115 .byte 53 .byte -42 .byte 45 .byte 0 .byte 0 .byte 72 .byte -115 .byte -107 .byte 72 .byte -1 .byte -1 .byte -1 .byte -24 .byte -44 .byte 5 .byte 0 .byte 0 .byte 72 .byte -117 .byte -99 .byte 72 .byte -1 .byte -1 .byte -1 .byte 72 .byte -123 .byte -37 .byte 15 .byte -124 .byte 93 .byte 1 .byte 0 .byte 0 .byte 15 .byte 87 .byte -64 .byte 15 .byte 41 .byte -123 .byte 16 .byte -1 .byte -1 .byte -1 .byte 15 .byte 41 .byte -123 .byte 0 .byte -1 .byte -1 .byte -1 .byte 15 .byte 41 .byte -123 .byte -16 .byte -2 .byte -1 .byte -1 .byte 15 .byte 41 .byte -123 .byte -32 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte 53 .byte 92 .byte 53 .byte 0 .byte 0 .byte 72 .byte -115 .byte -107 .byte -32 .byte -2 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -1 .byte -1 .byte -1 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -33 .byte -1 .byte 21 .byte 95 .byte 47 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 56 .byte -1 .byte -1 .byte -1 .byte 72 .byte -123 .byte -64 .byte 15 .byte -124 .byte 10 .byte 1 .byte 0 .byte 0 .byte 72 .byte -119 .byte -99 .byte 64 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte -123 .byte -16 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte 0 .byte 72 .byte -119 .byte -123 .byte 48 .byte -1 .byte -1 .byte -1 .byte 76 .byte -117 .byte 37 .byte 0 .byte 53 .byte 0 .byte 0 .byte 69 .byte 49 .byte -1 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 72 .byte -117 .byte -123 .byte -16 .byte -2 .byte -1 .byte -1 .byte 72 .byte -117 .byte -115 .byte 48 .byte -1 .byte -1 .byte -1 .byte 72 .byte 57 .byte 8 .byte 116 .byte 12 .byte 72 .byte -117 .byte -67 .byte 64 .byte -1 .byte -1 .byte -1 .byte -24 .byte 17 .byte 5 .byte 0 .byte 0 .byte 72 .byte -117 .byte -123 .byte -24 .byte -2 .byte -1 .byte -1 .byte 78 .byte -117 .byte 44 .byte -8 .byte 72 .byte -57 .byte -123 .byte 72 .byte -1 .byte -1 .byte -1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 76 .byte -119 .byte -17 .byte 72 .byte -115 .byte 53 .byte -26 .byte 44 .byte 0 .byte 0 .byte 72 .byte -115 .byte -107 .byte 72 .byte -1 .byte -1 .byte -1 .byte -24 .byte -9 .byte 4 .byte 0 .byte 0 .byte 72 .byte -117 .byte -67 .byte 72 .byte -1 .byte -1 .byte -1 .byte 76 .byte -119 .byte -26 .byte 49 .byte -64 .byte -1 .byte 21 .byte -61 .byte 46 .byte 0 .byte 0 .byte -117 .byte 61 .byte 93 .byte 53 .byte 0 .byte 0 .byte 72 .byte -119 .byte -58 .byte -24 .byte -43 .byte 3 .byte 0 .byte 0 .byte 73 .byte -119 .byte -58 .byte 72 .byte -119 .byte -57 .byte 72 .byte -117 .byte -75 .byte 40 .byte -1 .byte -1 .byte -1 .byte -24 .byte -109 .byte 3 .byte 0 .byte 0 .byte -119 .byte -61 .byte 76 .byte -119 .byte -9 .byte -24 .byte -113 .byte 3 .byte 0 .byte 0 .byte -124 .byte -37 .byte 117 .byte 83 .byte 73 .byte -1 .byte -57 .byte 76 .byte 59 .byte -67 .byte 56 .byte -1 .byte -1 .byte -1 .byte 15 .byte -126 .byte 101 .byte -1 .byte -1 .byte -1 .byte 65 .byte -72 .byte 16 .byte 0 .byte 0 .byte 0 .byte 72 .byte -117 .byte -67 .byte 64 .byte -1 .byte -1 .byte -1 .byte 72 .byte -117 .byte 53 .byte 81 .byte 52 .byte 0 .byte 0 .byte 72 .byte -115 .byte -107 .byte -32 .byte -2 .byte -1 .byte -1 .byte 72 .byte -115 .byte -115 .byte 80 .byte -1 .byte -1 .byte -1 .byte -1 .byte 21 .byte 93 .byte 46 .byte 0 .byte 0 .byte 65 .byte -67 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte -119 .byte -123 .byte 56 .byte -1 .byte -1 .byte -1 .byte 72 .byte -123 .byte -64 .byte 15 .byte -123 .byte 16 .byte -1 .byte -1 .byte -1 .byte -21 .byte 3 .byte 69 .byte 49 .byte -19 .byte 72 .byte -117 .byte 5 .byte 43 .byte 46 .byte 0 .byte 0 .byte 72 .byte -117 .byte 0 .byte 72 .byte 59 .byte 69 .byte -48 .byte 117 .byte 21 .byte 76 .byte -119 .byte -24 .byte 72 .byte -127 .byte -60 .byte -8 .byte 0 .byte 0 .byte 0 .byte 91 .byte 65 .byte 92 .byte 65 .byte 93 .byte 65 .byte 94 .byte 65 .byte 95 .byte 93 .byte -61 .byte -24 .byte -44 .byte 3 .byte 0 .byte 0 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -125 .byte -57 .byte 32 .byte 72 .byte -117 .byte 118 .byte 32 .byte -70 .byte 8 .byte 0 .byte 0 .byte 0 .byte 93 .byte -23 .byte -111 .byte 3 .byte 0 .byte 0 .byte 102 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -117 .byte 127 .byte 32 .byte -66 .byte 8 .byte 0 .byte 0 .byte 0 .byte 93 .byte -23 .byte 123 .byte 3 .byte 0 .byte 0 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 76 .byte -117 .byte 13 .byte 69 .byte 52 .byte 0 .byte 0 .byte 72 .byte -117 .byte 71 .byte 32 .byte 72 .byte -117 .byte 119 .byte 40 .byte 72 .byte -117 .byte 21 .byte 30 .byte 52 .byte 0 .byte 0 .byte 72 .byte -117 .byte 79 .byte 48 .byte 72 .byte -119 .byte -57 .byte 73 .byte -119 .byte -56 .byte 93 .byte 65 .byte -1 .byte -31 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 65 .byte 86 .byte 83 .byte 73 .byte -119 .byte -10 .byte 72 .byte -119 .byte -5 .byte 72 .byte -125 .byte -57 .byte 32 .byte 72 .byte -117 .byte 118 .byte 32 .byte -70 .byte 3 .byte 0 .byte 0 .byte 0 .byte -24 .byte 25 .byte 3 .byte 0 .byte 0 .byte 72 .byte -125 .byte -61 .byte 40 .byte 73 .byte -117 .byte 118 .byte 40 .byte 72 .byte -119 .byte -33 .byte -70 .byte 3 .byte 0 .byte 0 .byte 0 .byte 91 .byte 65 .byte 94 .byte 93 .byte -23 .byte 0 .byte 3 .byte 0 .byte 0 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 83 .byte 80 .byte 72 .byte -119 .byte -5 .byte 72 .byte -117 .byte 127 .byte 40 .byte -66 .byte 3 .byte 0 .byte 0 .byte 0 .byte -24 .byte -25 .byte 2 .byte 0 .byte 0 .byte 72 .byte -117 .byte 123 .byte 32 .byte -66 .byte 3 .byte 0 .byte 0 .byte 0 .byte 72 .byte -125 .byte -60 .byte 8 .byte 91 .byte 93 .byte -23 .byte -45 .byte 2 .byte 0 .byte 0 .byte 15 .byte 31 .byte 68 .byte 0 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 65 .byte 87 .byte 65 .byte 86 .byte 83 .byte 72 .byte -125 .byte -20 .byte 24 .byte 72 .byte -119 .byte -8 .byte 73 .byte -119 .byte -25 .byte 72 .byte -117 .byte 13 .byte 6 .byte 45 .byte 0 .byte 0 .byte 72 .byte -117 .byte 9 .byte 72 .byte -119 .byte 77 .byte -32 .byte -57 .byte 69 .byte -36 .byte 0 .byte 0 .byte 0 .byte 0 .byte -115 .byte 78 .byte 1 .byte 72 .byte -119 .byte -29 .byte 72 .byte -125 .byte -63 .byte 15 .byte 72 .byte -125 .byte -31 .byte -16 .byte 72 .byte 41 .byte -53 .byte 72 .byte -119 .byte -36 .byte 65 .byte -119 .byte -10 .byte 72 .byte -119 .byte -33 .byte 72 .byte -119 .byte -58 .byte 76 .byte -119 .byte -14 .byte -24 .byte -25 .byte 2 .byte 0 .byte 0 .byte 65 .byte -58 .byte 4 .byte 30 .byte 0 .byte 72 .byte -115 .byte 53 .byte 4 .byte 43 .byte 0 .byte 0 .byte 72 .byte -115 .byte 85 .byte -36 .byte 72 .byte -119 .byte -33 .byte 49 .byte -64 .byte -24 .byte 21 .byte 3 .byte 0 .byte 0 .byte -117 .byte 69 .byte -36 .byte 76 .byte -119 .byte -4 .byte 72 .byte -117 .byte 13 .byte -84 .byte 44 .byte 0 .byte 0 .byte 72 .byte -117 .byte 9 .byte 72 .byte 59 .byte 77 .byte -32 .byte 117 .byte 11 .byte 72 .byte -115 .byte 101 .byte -24 .byte 91 .byte 65 .byte 94 .byte 65 .byte 95 .byte 93 .byte -61 .byte -24 .byte 95 .byte 2 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -117 .byte 5 .byte 5 .byte 51 .byte 0 .byte 0 .byte 72 .byte -117 .byte 53 .byte -122 .byte 50 .byte 0 .byte 0 .byte -117 .byte 79 .byte 48 .byte 72 .byte -117 .byte 87 .byte 32 .byte 76 .byte -117 .byte 71 .byte 40 .byte 72 .byte -119 .byte -57 .byte 49 .byte -64 .byte 93 .byte -1 .byte 37 .byte 119 .byte 44 .byte 0 .byte 0 .byte 15 .byte 31 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -125 .byte -57 .byte 32 .byte 72 .byte -117 .byte 118 .byte 32 .byte -70 .byte 3 .byte 0 .byte 0 .byte 0 .byte 93 .byte -23 .byte -15 .byte 1 .byte 0 .byte 0 .byte 102 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 72 .byte -117 .byte 127 .byte 32 .byte -66 .byte 3 .byte 0 .byte 0 .byte 0 .byte 93 .byte -23 .byte -37 .byte 1 .byte 0 .byte 0 .byte 102 .byte 46 .byte 15 .byte 31 .byte -124 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 65 .byte 87 .byte 65 .byte 86 .byte 83 .byte 72 .byte -125 .byte -20 .byte 24 .byte 72 .byte -119 .byte -8 .byte 73 .byte -119 .byte -25 .byte 72 .byte -117 .byte 13 .byte 6 .byte 44 .byte 0 .byte 0 .byte 72 .byte -117 .byte 9 .byte 72 .byte -119 .byte 77 .byte -32 .byte -57 .byte 69 .byte -36 .byte 0 .byte 0 .byte 0 .byte 0 .byte -115 .byte 78 .byte 1 .byte 72 .byte -119 .byte -29 .byte 72 .byte -125 .byte -63 .byte 15 .byte 72 .byte -125 .byte -31 .byte -16 .byte 72 .byte 41 .byte -53 .byte 72 .byte -119 .byte -36 .byte 65 .byte -119 .byte -10 .byte 72 .byte -119 .byte -33 .byte 72 .byte -119 .byte -58 .byte 76 .byte -119 .byte -14 .byte -24 .byte -25 .byte 1 .byte 0 .byte 0 .byte 65 .byte -58 .byte 4 .byte 30 .byte 0 .byte 72 .byte -115 .byte 53 .byte 4 .byte 42 .byte 0 .byte 0 .byte 72 .byte -115 .byte 85 .byte -36 .byte 72 .byte -119 .byte -33 .byte 49 .byte -64 .byte -24 .byte 21 .byte 2 .byte 0 .byte 0 .byte -117 .byte 69 .byte -36 .byte 76 .byte -119 .byte -4 .byte 72 .byte -117 .byte 13 .byte -84 .byte 43 .byte 0 .byte 0 .byte 72 .byte -117 .byte 9 .byte 72 .byte 59 .byte 77 .byte -32 .byte 117 .byte 11 .byte 72 .byte -115 .byte 101 .byte -24 .byte 91 .byte 65 .byte 94 .byte 65 .byte 95 .byte 93 .byte -61 .byte -24 .byte 95 .byte 1 .byte 0 .byte 0 .byte 15 .byte 31 .byte 0 .byte 85 .byte 72 .byte -119 .byte -27 .byte 65 .byte 87 .byte 65 .byte 86 .byte 83 .byte 72 .byte -125 .byte -20 .byte 24 .byte 72 .byte -119 .byte -8 .byte 73 .byte -119 .byte -25 .byte 72 .byte -117 .byte 13 .byte 118 .byte 43 .byte 0 .byte 0 .byte 72 .byte -117 .byte 9 .byte 72 .byte -119 .byte 77 .byte -32 .byte -57 .byte 69 .byte -36 .byte 0 .byte 0 .byte 0 .byte 0 .byte -115 .byte 78 .byte 1 .byte 72 .byte -119 .byte -29 .byte 72 .byte -125 .byte -63 .byte 15 .byte 72 .byte -125 .byte -31 .byte -16 .byte 72 .byte 41 .byte -53 .byte 72 .byte -119 .byte -36 .byte 65 .byte -119 .byte -10 .byte 72 .byte -119 .byte -33 .byte 72 .byte -119 .byte -58 .byte 76 .byte -119 .byte -14 .byte -24 .byte 87 .byte 1 .byte 0 .byte 0 .byte 65 .byte -58 .byte 4 .byte 30 .byte 0 .byte 72 .byte -115 .byte 53 .byte 119 .byte 41 .byte 0 .byte 0 .byte 72 .byte -115 .byte 85 .byte -36 .byte 72 .byte -119 .byte -33 .byte 49 .byte -64 .byte -24 .byte -123 .byte 1 .byte 0 .byte 0 .byte -13 .byte 15 .byte 16 .byte 69 .byte -36 .byte 76 .byte -119 .byte -4 .byte 72 .byte -117 .byte 5 .byte 26 .byte 43 .byte 0 .byte 0 .byte 72 .byte -117 .byte 0 .byte 72 .byte 59 .byte 69 .byte -32 .byte 117 .byte 11 .byte 72 .byte -115 .byte 101 .byte -24 .byte 91 .byte 65 .byte 94 .byte 65 .byte 95 .byte 93 .byte -61 .byte -24 .byte -51 .byte 0 .byte 0 .byte 0 .byte -112 .byte -1 .byte 37 .byte 42 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 44 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 46 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 48 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 50 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 52 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 54 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 56 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 58 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 60 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 62 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 64 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 66 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 68 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 70 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 72 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 74 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 76 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 78 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 80 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 82 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 84 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 86 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 88 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 90 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 92 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 94 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 96 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 98 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 100 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 102 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 104 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 106 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 108 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 110 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 112 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 114 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 116 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 118 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 120 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 122 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 124 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte 126 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -128 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -126 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -124 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -122 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -120 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -118 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -116 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -114 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -112 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -110 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -108 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -106 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -104 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -102 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -100 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -98 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -96 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -94 .byte 43 .byte 0 .byte 0 .byte -1 .byte 37 .byte -92 .byte 43 .byte 0 .byte 0 .byte 76 .byte -115 .byte 29 .byte 101 .byte 41 .byte 0 .byte 0 .byte 65 .byte 83 .byte -1 .byte 37 .byte -91 .byte 41 .byte 0 .byte 0 .byte -112 .byte 104 .byte 29 .byte 3 .byte 0 .byte 0 .byte -23 .byte -26 .byte -1 .byte -1 .byte -1 .byte 104 .byte 58 .byte 3 .byte 0 .byte 0 .byte -23 .byte -36 .byte -1 .byte -1 .byte -1 .byte 104 .byte 88 .byte 3 .byte 0 .byte 0 .byte -23 .byte -46 .byte -1 .byte -1 .byte -1 .byte 104 .byte 117 .byte 3 .byte 0 .byte 0 .byte -23 .byte -56 .byte -1 .byte -1 .byte -1 .byte 104 .byte -123 .byte 3 .byte 0 .byte 0 .byte -23 .byte -66 .byte -1 .byte -1 .byte -1 .byte 104 .byte -104 .byte 3 .byte 0 .byte 0 .byte -23 .byte -76 .byte -1 .byte -1 .byte -1 .byte 104 .byte -81 .byte 3 .byte 0 .byte 0 .byte -23 .byte -86 .byte -1 .byte -1 .byte -1 .byte 104 .byte -56 .byte 3 .byte 0 .byte 0 .byte -23 .byte -96 .byte -1 .byte -1 .byte -1 .byte 104 .byte -27 .byte 3 .byte 0 .byte 0 .byte -23 .byte -106 .byte -1 .byte -1 .byte -1 .byte 104 .byte 10 .byte 4 .byte 0 .byte 0 .byte -23 .byte -116 .byte -1 .byte -1 .byte -1 .byte 104 .byte 36 .byte 4 .byte 0 .byte 0 .byte -23 .byte -126 .byte -1 .byte -1 .byte -1 .byte 104 .byte 51 .byte 4 .byte 0 .byte 0 .byte -23 .byte 120 .byte -1 .byte -1 .byte -1 .byte 104 .byte 64 .byte 4 .byte 0 .byte 0 .byte -23 .byte 110 .byte -1 .byte -1 .byte -1 .byte 104 .byte 78 .byte 4 .byte 0 .byte 0 .byte -23 .byte 100 .byte -1 .byte -1 .byte -1 .byte 104 .byte 92 .byte 4 .byte 0 .byte 0 .byte -23 .byte 90 .byte -1 .byte -1 .byte -1 .byte 104 .byte 114 .byte 4 .byte 0 .byte 0 .byte -23 .byte 80 .byte -1 .byte -1 .byte -1 .byte 104 .byte -127 .byte 4 .byte 0 .byte 0 .byte -23 .byte 70 .byte -1 .byte -1 .byte -1 .byte 104 .byte -106 .byte 4 .byte 0 .byte 0 .byte -23 .byte 60 .byte -1 .byte -1 .byte -1 .byte 104 .byte -91 .byte 4 .byte 0 .byte 0 .byte -23 .byte 50 .byte -1 .byte -1 .byte -1 .byte 104 .byte 95 .byte 5 .byte 0 .byte 0 .byte -23 .byte 40 .byte -1 .byte -1 .byte -1 .byte 104 .byte 118 .byte 5 .byte 0 .byte 0 .byte -23 .byte 30 .byte -1 .byte -1 .byte -1 .byte 104 .byte -125 .byte 5 .byte 0 .byte 0 .byte -23 .byte 20 .byte -1 .byte -1 .byte -1 .byte 104 .byte -112 .byte 5 .byte 0 .byte 0 .byte -23 .byte 10 .byte -1 .byte -1 .byte -1 .byte 104 .byte -95 .byte 5 .byte 0 .byte 0 .byte -23 .byte 0 .byte -1 .byte -1 .byte -1 .byte 104 .byte -80 .byte 5 .byte 0 .byte 0 .byte -23 .byte -10 .byte -2 .byte -1 .byte -1 .byte 104 .byte -65 .byte 5 .byte 0 .byte 0 .byte -23 .byte -20 .byte -2 .byte -1 .byte -1 .byte 104 .byte -50 .byte 5 .byte 0 .byte 0 .byte -23 .byte -30 .byte -2 .byte -1 .byte -1 .byte 104 .byte -35 .byte 5 .byte 0 .byte 0 .byte -23 .byte -40 .byte -2 .byte -1 .byte -1 .byte 104 .byte -4 .byte 2 .byte 0 .byte 0 .byte -23 .byte -50 .byte -2 .byte -1 .byte -1 .byte 104 .byte 10 .byte 3 .byte 0 .byte 0 .byte -23 .byte -60 .byte -2 .byte -1 .byte -1 .byte 104 .byte 32 .byte 0 .byte 0 .byte 0 .byte -23 .byte -70 .byte -2 .byte -1 .byte -1 .byte 104 .byte 63 .byte 0 .byte 0 .byte 0 .byte -23 .byte -80 .byte -2 .byte -1 .byte -1 .byte 104 .byte 104 .byte 0 .byte 0 .byte 0 .byte -23 .byte -90 .byte -2 .byte -1 .byte -1 .byte 104 .byte -118 .byte 0 .byte 0 .byte 0 .byte -23 .byte -100 .byte -2 .byte -1 .byte -1 .byte 104 .byte -78 .byte 0 .byte 0 .byte 0 .byte -23 .byte -110 .byte -2 .byte -1 .byte -1 .byte 104 .byte -43 .byte 0 .byte 0 .byte 0 .byte -23 .byte -120 .byte -2 .byte -1 .byte -1 .byte 104 .byte -16 .byte 0 .byte 0 .byte 0 .byte -23 .byte 126 .byte -2 .byte -1 .byte -1 .byte 104 .byte 22 .byte 1 .byte 0 .byte 0 .byte -23 .byte 116 .byte -2 .byte -1 .byte -1 .byte 104 .byte 50 .byte 1 .byte 0 .byte 0 .byte -23 .byte 106 .byte -2 .byte -1 .byte -1 .byte 104 .byte 77 .byte 1 .byte 0 .byte 0 .byte -23 .byte 96 .byte -2 .byte -1 .byte -1 .byte 104 .byte 103 .byte 1 .byte 0 .byte 0 .byte -23 .byte 86 .byte -2 .byte -1 .byte -1 .byte 104 .byte -123 .byte 1 .byte 0 .byte 0 .byte -23 .byte 76 .byte -2 .byte -1 .byte -1 .byte 104 .byte -101 .byte 1 .byte 0 .byte 0 .byte -23 .byte 66 .byte -2 .byte -1 .byte -1 .byte 104 .byte -67 .byte 1 .byte 0 .byte 0 .byte -23 .byte 56 .byte -2 .byte -1 .byte -1 .byte 104 .byte -39 .byte 1 .byte 0 .byte 0 .byte -23 .byte 46 .byte -2 .byte -1 .byte -1 .byte 104 .byte 2 .byte 2 .byte 0 .byte 0 .byte -23 .byte 36 .byte -2 .byte -1 .byte -1 .byte 104 .byte 43 .byte 2 .byte 0 .byte 0 .byte -23 .byte 26 .byte -2 .byte -1 .byte -1 .byte 104 .byte 65 .byte 2 .byte 0 .byte 0 .byte -23 .byte 16 .byte -2 .byte -1 .byte -1 .byte 104 .byte 91 .byte 2 .byte 0 .byte 0 .byte -23 .byte 6 .byte -2 .byte -1 .byte -1 .byte 104 .byte 117 .byte 2 .byte 0 .byte 0 .byte -23 .byte -4 .byte -3 .byte -1 .byte -1 .byte 104 .byte -109 .byte 2 .byte 0 .byte 0 .byte -23 .byte -14 .byte -3 .byte -1 .byte -1 .byte 104 .byte -84 .byte 2 .byte 0 .byte 0 .byte -23 .byte -24 .byte -3 .byte -1 .byte -1 .byte 104 .byte -54 .byte 2 .byte 0 .byte 0 .byte -23 .byte -34 .byte -3 .byte -1 .byte -1 .byte 104 .byte -32 .byte 2 .byte 0 .byte 0 .byte -23 .byte -44 .byte -3 .byte -1 .byte -1 .byte 104 .byte 0 .byte 0 .byte 0 .byte 0 .byte -23 .byte -54 .byte -3 .byte -1 .byte -1 .byte 104 .byte 15 .byte 0 .byte 0 .byte 0 .byte -23 .byte -64 .byte -3 .byte -1 .byte -1 .byte 104 .byte -76 .byte 4 .byte 0 .byte 0 .byte -23 .byte -74 .byte -3 .byte -1 .byte -1 .byte 104 .byte -57 .byte 4 .byte 0 .byte 0 .byte -23 .byte -84 .byte -3 .byte -1 .byte -1 .byte 104 .byte -24 .byte 4 .byte 0 .byte 0 .byte -23 .byte -94 .byte -3 .byte -1 .byte -1 .byte 104 .byte -2 .byte 4 .byte 0 .byte 0 .byte -23 .byte -104 .byte -3 .byte -1 .byte -1 .byte 104 .byte 25 .byte 5 .byte 0 .byte 0 .byte -23 .byte -114 .byte -3 .byte -1 .byte -1 .byte 104 .byte 60 .byte 5 .byte 0 .byte 0 .byte -23 .byte -124 .byte -3 .byte -1 .byte -1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -128 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -128 .byte 0 .byte 0 .byte 0 .byte -128 .byte 0 .byte 0 .byte 0 .byte -128 .byte 0 .byte 0 .byte 0 .byte -128 .byte 0 .byte 0 .byte 0 .byte -128 .byte 0 .byte 0 .byte -128 .byte 62 .byte 0 .byte 0 .byte -128 .byte 63 .byte 0 .byte 112 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 112 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 96 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 80 .byte 51 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -27 .byte 39 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 35 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 80 .byte 73 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -5 .byte 55 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 50 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 70 .byte 56 .byte 32 .byte 57 .byte 68 .byte 32 .byte 52 .byte 54 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 53 .byte 32 .byte 66 .byte 54 .byte 32 .byte 51 .byte 68 .byte 32 .byte 52 .byte 52 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 52 .byte 32 .byte 56 .byte 57 .byte 32 .byte 66 .byte 53 .byte 32 .byte 52 .byte 48 .byte 32 .byte 70 .byte 69 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 52 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 50 .byte 32 .byte 52 .byte 49 .byte 32 .byte 70 .byte 70 .byte 32 .byte 68 .byte 52 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 55 .byte 53 .byte 32 .byte 55 .byte 48 .byte 32 .byte 51 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 69 .byte 56 .byte 32 .byte 70 .byte 68 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 68 .byte 32 .byte 48 .byte 66 .byte 32 .byte 56 .byte 68 .byte 32 .byte 52 .byte 52 .byte 32 .byte 48 .byte 48 .byte 32 .byte 69 .byte 56 .byte 32 .byte 68 .byte 56 .byte 32 .byte 54 .byte 70 .byte 32 .byte 51 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 53 .byte 32 .byte 49 .byte 55 .byte 32 .byte 51 .byte 69 .byte 32 .byte 52 .byte 52 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 54 .byte 32 .byte 51 .byte 49 .byte 32 .byte 68 .byte 50 .byte 32 .byte 52 .byte 49 .byte 32 .byte 70 .byte 70 .byte 32 .byte 68 .byte 52 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 50 .byte 56 .byte 32 .byte 70 .byte 69 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 53 .byte 32 .byte 66 .byte 66 .byte 32 .byte 56 .byte 50 .byte 32 .byte 52 .byte 52 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 65 .byte 32 .byte 52 .byte 49 .byte 32 .byte 70 .byte 70 .byte 0 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 63 .byte 63 .byte 32 .byte 56 .byte 66 .byte 32 .byte 63 .byte 63 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 52 .byte 32 .byte 56 .byte 57 .byte 32 .byte 63 .byte 63 .byte 32 .byte 52 .byte 49 .byte 32 .byte 70 .byte 70 .byte 32 .byte 68 .byte 52 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 51 .byte 55 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 68 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 52 .byte 54 .byte 32 .byte 48 .byte 48 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 51 .byte 55 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 54 .byte 32 .byte 51 .byte 49 .byte 32 .byte 68 .byte 50 .byte 32 .byte 52 .byte 49 .byte 32 .byte 70 .byte 70 .byte 32 .byte 68 .byte 52 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 70 .byte 69 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 63 .byte 63 .byte 32 .byte 56 .byte 66 .byte 32 .byte 63 .byte 63 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 52 .byte 54 .byte 32 .byte 48 .byte 48 .byte 0 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 67 .byte 32 .byte 50 .byte 52 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 52 .byte 32 .byte 56 .byte 57 .byte 32 .byte 66 .byte 68 .byte 32 .byte 57 .byte 52 .byte 32 .byte 70 .byte 69 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 52 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 65 .byte 32 .byte 52 .byte 49 .byte 32 .byte 70 .byte 70 .byte 32 .byte 68 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 56 .byte 53 .byte 32 .byte 52 .byte 48 .byte 32 .byte 70 .byte 69 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 68 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 69 .byte 32 .byte 52 .byte 49 .byte 32 .byte 70 .byte 70 .byte 32 .byte 68 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 51 .byte 49 .byte 32 .byte 68 .byte 50 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 70 .byte 70 .byte 32 .byte 68 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 55 .byte 48 .byte 32 .byte 70 .byte 69 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 67 .byte 32 .byte 50 .byte 52 .byte 0 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 66 .byte 53 .byte 32 .byte 69 .byte 48 .byte 32 .byte 70 .byte 68 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 66 .byte 68 .byte 32 .byte 66 .byte 56 .byte 32 .byte 70 .byte 69 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 65 .byte 32 .byte 52 .byte 49 .byte 32 .byte 70 .byte 70 .byte 32 .byte 68 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 53 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 66 .byte 53 .byte 32 .byte 56 .byte 48 .byte 32 .byte 70 .byte 69 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 49 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 57 .byte 68 .byte 32 .byte 67 .byte 56 .byte 32 .byte 70 .byte 69 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 0 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 54 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 53 .byte 32 .byte 70 .byte 54 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 52 .byte 32 .byte 54 .byte 55 .byte 32 .byte 48 .byte 54 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 68 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 70 .byte 70 .byte 32 .byte 49 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 48 .byte 56 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 67 .byte 55 .byte 32 .byte 56 .byte 53 .byte 32 .byte 49 .byte 67 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 55 .byte 53 .byte 32 .byte 66 .byte 48 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 0 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 54 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 51 .byte 67 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 53 .byte 32 .byte 70 .byte 70 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 52 .byte 32 .byte 65 .byte 67 .byte 32 .byte 48 .byte 54 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 68 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 65 .byte 52 .byte 32 .byte 52 .byte 66 .byte 32 .byte 48 .byte 48 .byte 32 .byte 70 .byte 70 .byte 32 .byte 49 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 52 .byte 51 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 54 .byte 66 .byte 32 .byte 51 .byte 67 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 49 .byte 48 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 67 .byte 55 .byte 32 .byte 56 .byte 53 .byte 32 .byte 49 .byte 67 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 54 .byte 57 .byte 32 .byte 51 .byte 67 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 55 .byte 53 .byte 32 .byte 66 .byte 48 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 54 .byte 65 .byte 32 .byte 51 .byte 67 .byte 32 .byte 48 .byte 48 .byte 0 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 69 .byte 32 .byte 69 .byte 56 .byte 32 .byte 57 .byte 57 .byte 32 .byte 54 .byte 68 .byte 32 .byte 52 .byte 65 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 53 .byte 32 .byte 70 .byte 70 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 52 .byte 32 .byte 65 .byte 50 .byte 32 .byte 48 .byte 54 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 68 .byte 32 .byte 69 .byte 66 .byte 32 .byte 69 .byte 68 .byte 32 .byte 53 .byte 65 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 53 .byte 32 .byte 65 .byte 67 .byte 32 .byte 57 .byte 48 .byte 32 .byte 53 .byte 65 .byte 32 .byte 48 .byte 48 .byte 32 .byte 70 .byte 70 .byte 32 .byte 49 .byte 53 .byte 32 .byte 66 .byte 69 .byte 32 .byte 49 .byte 66 .byte 32 .byte 53 .byte 50 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 53 .byte 67 .byte 32 .byte 54 .byte 68 .byte 32 .byte 52 .byte 65 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 51 .byte 48 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 51 .byte 68 .byte 32 .byte 65 .byte 52 .byte 32 .byte 49 .byte 49 .byte 32 .byte 52 .byte 69 .byte 32 .byte 48 .byte 48 .byte 32 .byte 69 .byte 56 .byte 32 .byte 53 .byte 65 .byte 32 .byte 56 .byte 66 .byte 32 .byte 49 .byte 55 .byte 32 .byte 48 .byte 48 .byte 32 .byte 56 .byte 56 .byte 32 .byte 48 .byte 53 .byte 32 .byte 53 .byte 68 .byte 32 .byte 50 .byte 56 .byte 32 .byte 53 .byte 68 .byte 32 .byte 48 .byte 48 .byte 32 .byte 56 .byte 52 .byte 32 .byte 67 .byte 48 .byte 32 .byte 55 .byte 52 .byte 32 .byte 49 .byte 52 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 68 .byte 32 .byte 54 .byte 65 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 69 .byte 67 .byte 32 .byte 50 .byte 56 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 54 .byte 68 .byte 32 .byte 67 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 55 .byte 68 .byte 32 .byte 67 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 57 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 66 .byte 69 .byte 32 .byte 70 .byte 56 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 68 .byte 32 .byte 52 .byte 53 .byte 32 .byte 50 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 53 .byte 32 .byte 68 .byte 48 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 66 .byte 32 .byte 55 .byte 68 .byte 32 .byte 50 .byte 56 .byte 32 .byte 52 .byte 49 .byte 32 .byte 56 .byte 48 .byte 32 .byte 55 .byte 68 .byte 32 .byte 51 .byte 56 .byte 32 .byte 48 .byte 49 .byte 32 .byte 55 .byte 53 .byte 32 .byte 50 .byte 66 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 67 .byte 70 .byte 32 .byte 55 .byte 52 .byte 32 .byte 53 .byte 57 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 66 .byte 32 .byte 52 .byte 67 .byte 32 .byte 50 .byte 49 .byte 32 .byte 70 .byte 51 .byte 32 .byte 52 .byte 49 .byte 32 .byte 70 .byte 54 .byte 32 .byte 67 .byte 55 .byte 32 .byte 48 .byte 49 .byte 32 .byte 52 .byte 57 .byte 32 .byte 48 .byte 70 .byte 32 .byte 52 .byte 53 .byte 32 .byte 68 .byte 70 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 70 .byte 32 .byte 69 .byte 56 .byte 32 .byte 53 .byte 49 .byte 32 .byte 50 .byte 54 .byte 32 .byte 49 .byte 50 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 70 .byte 32 .byte 69 .byte 56 .byte 32 .byte 57 .byte 66 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 69 .byte 67 .byte 32 .byte 50 .byte 56 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 54 .byte 68 .byte 32 .byte 66 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 65 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 57 .byte 32 .byte 70 .byte 56 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 68 .byte 32 .byte 52 .byte 53 .byte 32 .byte 50 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 53 .byte 32 .byte 67 .byte 56 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 66 .byte 32 .byte 55 .byte 68 .byte 32 .byte 50 .byte 56 .byte 32 .byte 52 .byte 49 .byte 32 .byte 56 .byte 48 .byte 32 .byte 55 .byte 68 .byte 32 .byte 51 .byte 56 .byte 32 .byte 48 .byte 49 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 55 .byte 68 .byte 32 .byte 67 .byte 48 .byte 32 .byte 55 .byte 53 .byte 32 .byte 53 .byte 66 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 67 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 68 .byte 55 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 52 .byte 32 .byte 65 .byte 55 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 66 .byte 32 .byte 52 .byte 56 .byte 32 .byte 50 .byte 49 .byte 32 .byte 67 .byte 66 .byte 32 .byte 52 .byte 49 .byte 32 .byte 70 .byte 54 .byte 32 .byte 67 .byte 55 .byte 32 .byte 48 .byte 49 .byte 32 .byte 52 .byte 57 .byte 32 .byte 48 .byte 70 .byte 32 .byte 52 .byte 53 .byte 32 .byte 68 .byte 70 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 70 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 69 .byte 67 .byte 32 .byte 55 .byte 56 .byte 32 .byte 52 .byte 57 .byte 32 .byte 66 .byte 67 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 66 .byte 69 .byte 32 .byte 70 .byte 56 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 68 .byte 32 .byte 53 .byte 68 .byte 32 .byte 50 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 54 .byte 68 .byte 32 .byte 66 .byte 56 .byte 32 .byte 52 .byte 49 .byte 32 .byte 56 .byte 48 .byte 32 .byte 55 .byte 68 .byte 32 .byte 51 .byte 48 .byte 32 .byte 48 .byte 49 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 55 .byte 68 .byte 32 .byte 67 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 53 .byte 68 .byte 32 .byte 68 .byte 48 .byte 32 .byte 55 .byte 53 .byte 32 .byte 51 .byte 50 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 55 .byte 53 .byte 32 .byte 56 .byte 48 .byte 32 .byte 51 .byte 49 .byte 32 .byte 68 .byte 50 .byte 32 .byte 51 .byte 49 .byte 32 .byte 67 .byte 57 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 70 .byte 32 .byte 69 .byte 56 .byte 32 .byte 48 .byte 51 .byte 32 .byte 55 .byte 57 .byte 32 .byte 49 .byte 52 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 49 .byte 66 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 53 .byte 32 .byte 69 .byte 51 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 53 .byte 32 .byte 67 .byte 69 .byte 32 .byte 48 .byte 51 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 67 .byte 32 .byte 50 .byte 49 .byte 32 .byte 70 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 52 .byte 51 .byte 32 .byte 49 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 53 .byte 32 .byte 67 .byte 56 .byte 32 .byte 69 .byte 57 .byte 32 .byte 66 .byte 49 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 55 .byte 53 .byte 32 .byte 56 .byte 48 .byte 32 .byte 51 .byte 49 .byte 32 .byte 68 .byte 50 .byte 32 .byte 51 .byte 49 .byte 32 .byte 67 .byte 57 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 70 .byte 32 .byte 69 .byte 56 .byte 32 .byte 68 .byte 52 .byte 32 .byte 55 .byte 56 .byte 32 .byte 49 .byte 52 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 51 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 53 .byte 32 .byte 69 .byte 54 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 53 .byte 32 .byte 70 .byte 70 .byte 32 .byte 48 .byte 51 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 57 .byte 32 .byte 70 .byte 56 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 50 .byte 49 .byte 32 .byte 67 .byte 56 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 54 .byte 48 .byte 32 .byte 49 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 66 .byte 66 .byte 32 .byte 55 .byte 56 .byte 32 .byte 49 .byte 52 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 53 .byte 32 .byte 69 .byte 52 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 52 .byte 32 .byte 51 .byte 57 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 55 .byte 32 .byte 52 .byte 57 .byte 32 .byte 70 .byte 70 .byte 32 .byte 67 .byte 70 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 48 .byte 32 .byte 69 .byte 65 .byte 32 .byte 48 .byte 52 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 54 .byte 53 .byte 32 .byte 67 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 66 .byte 32 .byte 48 .byte 51 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 67 .byte 48 .byte 32 .byte 51 .byte 49 .byte 32 .byte 70 .byte 54 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 68 .byte 69 .byte 32 .byte 52 .byte 48 .byte 32 .byte 48 .byte 70 .byte 32 .byte 57 .byte 52 .byte 32 .byte 67 .byte 54 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 50 .byte 32 .byte 69 .byte 56 .byte 32 .byte 68 .byte 48 .byte 32 .byte 70 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 68 .byte 69 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 69 .byte 67 .byte 32 .byte 49 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 55 .byte 68 .byte 32 .byte 67 .byte 48 .byte 32 .byte 52 .byte 49 .byte 32 .byte 56 .byte 65 .byte 32 .byte 53 .byte 68 .byte 32 .byte 51 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 54 .byte 68 .byte 32 .byte 67 .byte 56 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 66 .byte 32 .byte 54 .byte 53 .byte 32 .byte 50 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 49 .byte 55 .byte 32 .byte 49 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 48 .byte 70 .byte 32 .byte 55 .byte 69 .byte 32 .byte 70 .byte 51 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 54 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 55 .byte 32 .byte 56 .byte 48 .byte 32 .byte 70 .byte 66 .byte 32 .byte 48 .byte 49 .byte 32 .byte 55 .byte 52 .byte 32 .byte 54 .byte 69 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 53 .byte 32 .byte 70 .byte 54 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 52 .byte 32 .byte 50 .byte 52 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 70 .byte 70 .byte 32 .byte 67 .byte 69 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 48 .byte 32 .byte 55 .byte 69 .byte 32 .byte 48 .byte 50 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 66 .byte 32 .byte 48 .byte 51 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 67 .byte 48 .byte 32 .byte 51 .byte 49 .byte 32 .byte 70 .byte 54 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 68 .byte 67 .byte 32 .byte 52 .byte 48 .byte 32 .byte 48 .byte 70 .byte 32 .byte 57 .byte 52 .byte 32 .byte 67 .byte 54 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 55 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 50 .byte 32 .byte 69 .byte 56 .byte 32 .byte 70 .byte 52 .byte 32 .byte 55 .byte 69 .byte 32 .byte 49 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 68 .byte 67 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 53 .byte 32 .byte 50 .byte 57 .byte 32 .byte 48 .byte 50 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 70 .byte 32 .byte 56 .byte 66 .byte 32 .byte 54 .byte 67 .byte 32 .byte 70 .byte 52 .byte 32 .byte 50 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 70 .byte 32 .byte 69 .byte 56 .byte 32 .byte 57 .byte 50 .byte 32 .byte 49 .byte 52 .byte 32 .byte 49 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 53 .byte 32 .byte 54 .byte 70 .byte 32 .byte 56 .byte 69 .byte 32 .byte 49 .byte 67 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 56 .byte 32 .byte 52 .byte 57 .byte 32 .byte 50 .byte 51 .byte 32 .byte 52 .byte 68 .byte 32 .byte 48 .byte 48 .byte 32 .byte 70 .byte 70 .byte 32 .byte 57 .byte 49 .byte 32 .byte 56 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 56 .byte 56 .byte 32 .byte 52 .byte 53 .byte 32 .byte 68 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 70 .byte 32 .byte 69 .byte 56 .byte 32 .byte 54 .byte 65 .byte 32 .byte 49 .byte 52 .byte 32 .byte 49 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 70 .byte 54 .byte 32 .byte 52 .byte 53 .byte 32 .byte 68 .byte 48 .byte 32 .byte 48 .byte 49 .byte 32 .byte 55 .byte 52 .byte 32 .byte 48 .byte 56 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 55 .byte 32 .byte 69 .byte 57 .byte 32 .byte 69 .byte 68 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 53 .byte 32 .byte 70 .byte 54 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 70 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 52 .byte 32 .byte 65 .byte 66 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 70 .byte 70 .byte 32 .byte 67 .byte 69 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 48 .byte 32 .byte 57 .byte 69 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 56 .byte 32 .byte 70 .byte 56 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 50 .byte 49 .byte 32 .byte 69 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 53 .byte 32 .byte 68 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 56 .byte 32 .byte 48 .byte 51 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 67 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 67 .byte 52 .byte 32 .byte 55 .byte 52 .byte 32 .byte 50 .byte 55 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 67 .byte 53 .byte 32 .byte 49 .byte 54 .byte 32 .byte 49 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 55 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 54 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 49 .byte 53 .byte 32 .byte 54 .byte 52 .byte 32 .byte 49 .byte 49 .byte 32 .byte 70 .byte 55 .byte 32 .byte 70 .byte 70 .byte 32 .byte 69 .byte 56 .byte 32 .byte 56 .byte 70 .byte 32 .byte 67 .byte 52 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 51 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 57 .byte 67 .byte 32 .byte 49 .byte 54 .byte 32 .byte 49 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 69 .byte 66 .byte 32 .byte 50 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 53 .byte 32 .byte 55 .byte 66 .byte 32 .byte 56 .byte 51 .byte 32 .byte 49 .byte 67 .byte 32 .byte 48 .byte 48 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 69 .byte 67 .byte 32 .byte 51 .byte 56 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 54 .byte 68 .byte 32 .byte 66 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 67 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 66 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 67 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 57 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 56 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 66 .byte 70 .byte 32 .byte 70 .byte 56 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 68 .byte 32 .byte 52 .byte 53 .byte 32 .byte 50 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 53 .byte 32 .byte 67 .byte 48 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 66 .byte 32 .byte 55 .byte 53 .byte 32 .byte 50 .byte 56 .byte 32 .byte 52 .byte 49 .byte 32 .byte 56 .byte 48 .byte 32 .byte 55 .byte 68 .byte 32 .byte 51 .byte 56 .byte 32 .byte 48 .byte 49 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 54 .byte 53 .byte 32 .byte 67 .byte 56 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 69 .byte 67 .byte 32 .byte 52 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 68 .byte 32 .byte 65 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 52 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 53 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 69 .byte 32 .byte 69 .byte 56 .byte 32 .byte 70 .byte 68 .byte 32 .byte 55 .byte 66 .byte 32 .byte 70 .byte 49 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 56 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 53 .byte 32 .byte 67 .byte 51 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 53 .byte 32 .byte 50 .byte 51 .byte 32 .byte 48 .byte 51 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 56 .byte 32 .byte 70 .byte 56 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 50 .byte 49 .byte 32 .byte 68 .byte 56 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 55 .byte 56 .byte 32 .byte 49 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 51 .byte 32 .byte 70 .byte 70 .byte 32 .byte 48 .byte 50 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 67 .byte 32 .byte 51 .byte 70 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 54 .byte 68 .byte 32 .byte 65 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 53 .byte 68 .byte 32 .byte 66 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 48 .byte 53 .byte 32 .byte 48 .byte 68 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 49 .byte 32 .byte 69 .byte 67 .byte 32 .byte 66 .byte 56 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 53 .byte 53 .byte 32 .byte 56 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 55 .byte 68 .byte 32 .byte 66 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 66 .byte 32 .byte 70 .byte 56 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 48 .byte 48 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 70 .byte 48 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 52 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 56 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 67 .byte 52 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 53 .byte 32 .byte 65 .byte 65 .byte 32 .byte 48 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 50 .byte 49 .byte 32 .byte 69 .byte 51 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 55 .byte 51 .byte 32 .byte 49 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 51 .byte 32 .byte 70 .byte 69 .byte 32 .byte 48 .byte 50 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 67 .byte 32 .byte 66 .byte 54 .byte 32 .byte 48 .byte 50 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 55 .byte 68 .byte 32 .byte 57 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 65 .byte 68 .byte 32 .byte 53 .byte 48 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 54 .byte 53 .byte 32 .byte 56 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 48 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 49 .byte 32 .byte 69 .byte 67 .byte 32 .byte 49 .byte 56 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 68 .byte 32 .byte 66 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 53 .byte 53 .byte 32 .byte 57 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 55 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 55 .byte 68 .byte 32 .byte 66 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 66 .byte 32 .byte 70 .byte 56 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 53 .byte 32 .byte 69 .byte 56 .byte 32 .byte 70 .byte 66 .byte 32 .byte 56 .byte 66 .byte 32 .byte 69 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 52 .byte 32 .byte 52 .byte 56 .byte 32 .byte 66 .byte 56 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 53 .byte 32 .byte 67 .byte 52 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 53 .byte 32 .byte 54 .byte 70 .byte 32 .byte 48 .byte 54 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 50 .byte 49 .byte 32 .byte 69 .byte 51 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 55 .byte 51 .byte 32 .byte 49 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 51 .byte 32 .byte 70 .byte 69 .byte 32 .byte 48 .byte 50 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 67 .byte 32 .byte 48 .byte 56 .byte 32 .byte 48 .byte 51 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 55 .byte 68 .byte 32 .byte 56 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 54 .byte 53 .byte 32 .byte 57 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 48 .byte 53 .byte 32 .byte 69 .byte 53 .byte 32 .byte 65 .byte 54 .byte 32 .byte 49 .byte 52 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 53 .byte 68 .byte 32 .byte 66 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 67 .byte 32 .byte 48 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 56 .byte 68 .byte 32 .byte 55 .byte 48 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 54 .byte 52 .byte 32 .byte 48 .byte 51 .byte 32 .byte 48 .byte 56 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 54 .byte 53 .byte 32 .byte 67 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 68 .byte 32 .byte 51 .byte 53 .byte 32 .byte 56 .byte 51 .byte 32 .byte 56 .byte 69 .byte 32 .byte 49 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 66 .byte 53 .byte 32 .byte 70 .byte 48 .byte 32 .byte 70 .byte 69 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 51 .byte 49 .byte 32 .byte 68 .byte 50 .byte 32 .byte 51 .byte 49 .byte 32 .byte 67 .byte 57 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 67 .byte 50 .byte 32 .byte 48 .byte 69 .byte 32 .byte 48 .byte 52 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 69 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 53 .byte 32 .byte 53 .byte 69 .byte 32 .byte 57 .byte 50 .byte 32 .byte 49 .byte 51 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 67 .byte 50 .byte 32 .byte 48 .byte 69 .byte 32 .byte 48 .byte 52 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 54 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 65 .byte 32 .byte 69 .byte 56 .byte 32 .byte 70 .byte 54 .byte 32 .byte 48 .byte 66 .byte 32 .byte 48 .byte 52 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 53 .byte 32 .byte 69 .byte 49 .byte 32 .byte 70 .byte 65 .byte 32 .byte 49 .byte 52 .byte 32 .byte 48 .byte 48 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 69 .byte 67 .byte 32 .byte 52 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 68 .byte 32 .byte 65 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 52 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 55 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 69 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 68 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 69 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 70 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 70 .byte 56 .byte 32 .byte 48 .byte 50 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 67 .byte 32 .byte 57 .byte 52 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 55 .byte 68 .byte 32 .byte 65 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 53 .byte 68 .byte 32 .byte 66 .byte 56 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 69 .byte 67 .byte 32 .byte 54 .byte 56 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 53 .byte 32 .byte 56 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 68 .byte 32 .byte 67 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 53 .byte 53 .byte 32 .byte 68 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 51 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 67 .byte 32 .byte 52 .byte 57 .byte 32 .byte 66 .byte 69 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 67 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 68 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 69 .byte 57 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 53 .byte 32 .byte 70 .byte 55 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 69 .byte 67 .byte 32 .byte 52 .byte 56 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 57 .byte 32 .byte 52 .byte 49 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 53 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 54 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 49 .byte 68 .byte 32 .byte 70 .byte 52 .byte 32 .byte 69 .byte 67 .byte 32 .byte 49 .byte 52 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 51 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 50 .byte 52 .byte 32 .byte 48 .byte 55 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 55 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 68 .byte 32 .byte 65 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 69 .byte 32 .byte 69 .byte 56 .byte 32 .byte 69 .byte 54 .byte 32 .byte 66 .byte 69 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 53 .byte 32 .byte 67 .byte 48 .byte 32 .byte 55 .byte 52 .byte 32 .byte 50 .byte 55 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 48 .byte 68 .byte 32 .byte 50 .byte 69 .byte 32 .byte 68 .byte 56 .byte 32 .byte 49 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 56 .byte 48 .byte 32 .byte 51 .byte 57 .byte 32 .byte 48 .byte 49 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 53 .byte 53 .byte 32 .byte 67 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 53 .byte 32 .byte 65 .byte 56 .byte 32 .byte 55 .byte 53 .byte 32 .byte 49 .byte 65 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 54 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 53 .byte 32 .byte 69 .byte 56 .byte 32 .byte 51 .byte 70 .byte 32 .byte 68 .byte 56 .byte 32 .byte 70 .byte 50 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 69 .byte 67 .byte 32 .byte 52 .byte 56 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 57 .byte 32 .byte 52 .byte 49 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 53 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 52 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 69 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 49 .byte 68 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 49 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 51 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 67 .byte 32 .byte 48 .byte 55 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 68 .byte 32 .byte 57 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 69 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 53 .byte 53 .byte 32 .byte 68 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 53 .byte 32 .byte 67 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 53 .byte 32 .byte 67 .byte 48 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 52 .byte 32 .byte 57 .byte 55 .byte 32 .byte 48 .byte 51 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 48 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 56 .byte 48 .byte 32 .byte 51 .byte 56 .byte 32 .byte 48 .byte 49 .byte 32 .byte 55 .byte 53 .byte 32 .byte 51 .byte 51 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 55 .byte 68 .byte 32 .byte 68 .byte 48 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 68 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 51 .byte 32 .byte 67 .byte 53 .byte 32 .byte 50 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 53 .byte 68 .byte 32 .byte 67 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 70 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 49 .byte 32 .byte 69 .byte 67 .byte 32 .byte 65 .byte 56 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 49 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 55 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 55 .byte 53 .byte 32 .byte 68 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 66 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 68 .byte 32 .byte 51 .byte 53 .byte 32 .byte 48 .byte 51 .byte 32 .byte 65 .byte 50 .byte 32 .byte 49 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 54 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 50 .byte 52 .byte 32 .byte 48 .byte 55 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 55 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 54 .byte 68 .byte 32 .byte 65 .byte 56 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 69 .byte 32 .byte 69 .byte 56 .byte 32 .byte 54 .byte 53 .byte 32 .byte 67 .byte 67 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 53 .byte 53 .byte 32 .byte 67 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 53 .byte 32 .byte 67 .byte 48 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 52 .byte 32 .byte 56 .byte 57 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 53 .byte 68 .byte 32 .byte 66 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 53 .byte 32 .byte 67 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 49 .byte 68 .byte 32 .byte 54 .byte 69 .byte 32 .byte 56 .byte 53 .byte 32 .byte 49 .byte 54 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 66 .byte 53 .byte 32 .byte 51 .byte 56 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 70 .byte 70 .byte 32 .byte 51 .byte 49 .byte 32 .byte 68 .byte 50 .byte 32 .byte 51 .byte 49 .byte 32 .byte 67 .byte 57 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 70 .byte 32 .byte 69 .byte 56 .byte 32 .byte 67 .byte 56 .byte 32 .byte 48 .byte 57 .byte 32 .byte 48 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 56 .byte 48 .byte 32 .byte 51 .byte 66 .byte 32 .byte 48 .byte 49 .byte 32 .byte 55 .byte 53 .byte 32 .byte 49 .byte 67 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 55 .byte 68 .byte 32 .byte 67 .byte 56 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 55 .byte 53 .byte 32 .byte 68 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 55 .byte 53 .byte 32 .byte 67 .byte 48 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 53 .byte 32 .byte 69 .byte 56 .byte 32 .byte 55 .byte 65 .byte 32 .byte 70 .byte 53 .byte 32 .byte 70 .byte 48 .byte 32 .byte 70 .byte 70 .byte 32 .byte 69 .byte 57 .byte 32 .byte 54 .byte 69 .byte 32 .byte 48 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 53 .byte 68 .byte 32 .byte 68 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 53 .byte 32 .byte 68 .byte 66 .byte 32 .byte 55 .byte 52 .byte 32 .byte 52 .byte 52 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 54 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 52 .byte 32 .byte 48 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 70 .byte 32 .byte 69 .byte 56 .byte 32 .byte 70 .byte 66 .byte 32 .byte 48 .byte 54 .byte 32 .byte 48 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 55 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 55 .byte 53 .byte 32 .byte 65 .byte 56 .byte 32 .byte 69 .byte 56 .byte 32 .byte 51 .byte 49 .byte 32 .byte 67 .byte 68 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 67 .byte 55 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 70 .byte 32 .byte 69 .byte 56 .byte 32 .byte 68 .byte 69 .byte 32 .byte 48 .byte 54 .byte 32 .byte 48 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 53 .byte 32 .byte 70 .byte 70 .byte 32 .byte 55 .byte 53 .byte 32 .byte 52 .byte 52 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 55 .byte 68 .byte 32 .byte 67 .byte 48 .byte 32 .byte 69 .byte 56 .byte 32 .byte 56 .byte 65 .byte 32 .byte 48 .byte 65 .byte 32 .byte 48 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 55 .byte 68 .byte 32 .byte 67 .byte 56 .byte 32 .byte 69 .byte 56 .byte 32 .byte 67 .byte 55 .byte 32 .byte 48 .byte 54 .byte 32 .byte 48 .byte 53 .byte 32 .byte 48 .byte 48 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 69 .byte 67 .byte 32 .byte 52 .byte 56 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 67 .byte 32 .byte 52 .byte 49 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 53 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 66 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 67 .byte 32 .byte 48 .byte 51 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 63 .byte 63 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 54 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 67 .byte 67 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 53 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 53 .byte 32 .byte 67 .byte 48 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 52 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 69 .byte 67 .byte 32 .byte 52 .byte 56 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 67 .byte 32 .byte 52 .byte 49 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 53 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 55 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 69 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 53 .byte 32 .byte 52 .byte 67 .byte 32 .byte 50 .byte 70 .byte 32 .byte 49 .byte 51 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 66 .byte 32 .byte 49 .byte 67 .byte 32 .byte 48 .byte 54 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 68 .byte 70 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 54 .byte 32 .byte 69 .byte 56 .byte 32 .byte 65 .byte 68 .byte 32 .byte 69 .byte 66 .byte 32 .byte 70 .byte 69 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 53 .byte 53 .byte 32 .byte 67 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 53 .byte 32 .byte 67 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 53 .byte 32 .byte 67 .byte 48 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 52 .byte 32 .byte 56 .byte 52 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 69 .byte 67 .byte 32 .byte 53 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 53 .byte 32 .byte 68 .byte 48 .byte 32 .byte 56 .byte 53 .byte 32 .byte 70 .byte 54 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 52 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 50 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 49 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 53 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 69 .byte 32 .byte 52 .byte 57 .byte 32 .byte 67 .byte 49 .byte 32 .byte 69 .byte 69 .byte 32 .byte 50 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 55 .byte 53 .byte 32 .byte 65 .byte 70 .byte 32 .byte 67 .byte 54 .byte 32 .byte 48 .byte 54 .byte 32 .byte 48 .byte 48 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 50 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 68 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 66 .byte 69 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 63 .byte 63 .byte 32 .byte 48 .byte 48 .byte 32 .byte 56 .byte 52 .byte 32 .byte 67 .byte 48 .byte 32 .byte 55 .byte 52 .byte 32 .byte 53 .byte 57 .byte 32 .byte 48 .byte 70 .byte 32 .byte 66 .byte 54 .byte 32 .byte 53 .byte 68 .byte 32 .byte 65 .byte 70 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 68 .byte 32 .byte 52 .byte 53 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 69 .byte 67 .byte 32 .byte 53 .byte 56 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 53 .byte 32 .byte 63 .byte 63 .byte 32 .byte 67 .byte 56 .byte 32 .byte 51 .byte 69 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 53 .byte 32 .byte 68 .byte 48 .byte 32 .byte 56 .byte 53 .byte 32 .byte 70 .byte 54 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 52 .byte 32 .byte 48 .byte 65 .byte 32 .byte 48 .byte 50 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 49 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 53 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 69 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 70 .byte 32 .byte 52 .byte 57 .byte 32 .byte 67 .byte 49 .byte 32 .byte 69 .byte 70 .byte 32 .byte 50 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 55 .byte 53 .byte 32 .byte 65 .byte 70 .byte 32 .byte 67 .byte 54 .byte 32 .byte 48 .byte 54 .byte 32 .byte 48 .byte 48 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 49 .byte 54 .byte 32 .byte 48 .byte 51 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 68 .byte 32 .byte 63 .byte 63 .byte 32 .byte 67 .byte 57 .byte 32 .byte 51 .byte 69 .byte 32 .byte 48 .byte 48 .byte 32 .byte 66 .byte 69 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 69 .byte 56 .byte 32 .byte 63 .byte 63 .byte 32 .byte 54 .byte 67 .byte 32 .byte 51 .byte 55 .byte 32 .byte 48 .byte 48 .byte 32 .byte 56 .byte 52 .byte 32 .byte 67 .byte 48 .byte 32 .byte 55 .byte 52 .byte 32 .byte 53 .byte 57 .byte 32 .byte 48 .byte 70 .byte 32 .byte 66 .byte 54 .byte 32 .byte 53 .byte 68 .byte 32 .byte 65 .byte 70 .byte 0 .byte 53 .byte 53 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 55 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 53 .byte 32 .byte 52 .byte 49 .byte 32 .byte 53 .byte 52 .byte 32 .byte 53 .byte 51 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 51 .byte 32 .byte 69 .byte 67 .byte 32 .byte 52 .byte 56 .byte 32 .byte 52 .byte 49 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 53 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 69 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 53 .byte 32 .byte 67 .byte 54 .byte 32 .byte 70 .byte 69 .byte 32 .byte 52 .byte 67 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 52 .byte 53 .byte 32 .byte 68 .byte 48 .byte 32 .byte 52 .byte 53 .byte 32 .byte 56 .byte 53 .byte 32 .byte 69 .byte 68 .byte 32 .byte 48 .byte 70 .byte 32 .byte 56 .byte 52 .byte 32 .byte 49 .byte 70 .byte 32 .byte 48 .byte 50 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 68 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 55 .byte 32 .byte 52 .byte 57 .byte 32 .byte 67 .byte 49 .byte 32 .byte 69 .byte 70 .byte 32 .byte 50 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 68 .byte 32 .byte 55 .byte 53 .byte 32 .byte 67 .byte 70 .byte 32 .byte 67 .byte 54 .byte 32 .byte 48 .byte 54 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 57 .byte 32 .byte 70 .byte 55 .byte 32 .byte 69 .byte 56 .byte 32 .byte 48 .byte 55 .byte 32 .byte 49 .byte 67 .byte 32 .byte 48 .byte 51 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 66 .byte 32 .byte 51 .byte 68 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 52 .byte 68 .byte 32 .byte 48 .byte 48 .byte 32 .byte 66 .byte 69 .byte 32 .byte 48 .byte 49 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 48 .byte 48 .byte 32 .byte 69 .byte 56 .byte 32 .byte 68 .byte 53 .byte 32 .byte 53 .byte 54 .byte 32 .byte 52 .byte 53 .byte 32 .byte 48 .byte 48 .byte 32 .byte 56 .byte 52 .byte 32 .byte 67 .byte 48 .byte 32 .byte 55 .byte 52 .byte 32 .byte 54 .byte 67 .byte 32 .byte 52 .byte 57 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 52 .byte 32 .byte 52 .byte 56 .byte 32 .byte 56 .byte 57 .byte 32 .byte 69 .byte 48 .byte 32 .byte 52 .byte 67 .byte 32 .byte 56 .byte 68 .byte 32 .byte 52 .byte 48 .byte 32 .byte 69 .byte 48 .byte 32 .byte 52 .byte 67 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 108 .byte 111 .byte 97 .byte 100 .byte 101 .byte 100 .byte 32 .byte 112 .byte 97 .byte 121 .byte 108 .byte 111 .byte 97 .byte 100 .byte 0 .byte 85 .byte 83 .byte 69 .byte 82 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 99 .byte 111 .byte 117 .byte 108 .byte 100 .byte 32 .byte 110 .byte 111 .byte 116 .byte 32 .byte 103 .byte 101 .byte 116 .byte 32 .byte 39 .byte 101 .byte 110 .byte 118 .byte 32 .byte 85 .byte 83 .byte 69 .byte 82 .byte 39 .byte 33 .byte 32 .byte 97 .byte 98 .byte 111 .byte 114 .byte 116 .byte 46 .byte 46 .byte 0 .byte 47 .byte 116 .byte 109 .byte 112 .byte 47 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 95 .byte 37 .byte 115 .byte 46 .byte 115 .byte 111 .byte 99 .byte 107 .byte 101 .byte 116 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 110 .byte 111 .byte 119 .byte 32 .byte 108 .byte 105 .byte 115 .byte 116 .byte 101 .byte 110 .byte 105 .byte 110 .byte 103 .byte 46 .byte 46 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 102 .byte 97 .byte 105 .byte 108 .byte 101 .byte 100 .byte 32 .byte 116 .byte 111 .byte 32 .byte 115 .byte 112 .byte 97 .byte 119 .byte 110 .byte 32 .byte 116 .byte 104 .byte 114 .byte 101 .byte 97 .byte 100 .byte 46 .byte 46 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 115 .byte 32 .byte 102 .byte 117 .byte 110 .byte 99 .byte 116 .byte 105 .byte 111 .byte 110 .byte 97 .byte 108 .byte 105 .byte 116 .byte 121 .byte 32 .byte 105 .byte 115 .byte 32 .byte 111 .byte 110 .byte 108 .byte 121 .byte 32 .byte 115 .byte 117 .byte 112 .byte 112 .byte 111 .byte 114 .byte 116 .byte 101 .byte 100 .byte 32 .byte 111 .byte 110 .byte 32 .byte 109 .byte 97 .byte 99 .byte 79 .byte 83 .byte 32 .byte 72 .byte 105 .byte 103 .byte 104 .byte 32 .byte 83 .byte 105 .byte 101 .byte 114 .byte 114 .byte 97 .byte 44 .byte 32 .byte 77 .byte 111 .byte 106 .byte 97 .byte 118 .byte 101 .byte 32 .byte 97 .byte 110 .byte 100 .byte 32 .byte 67 .byte 97 .byte 116 .byte 97 .byte 108 .byte 105 .byte 110 .byte 97 .byte 33 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 99 .byte 111 .byte 117 .byte 108 .byte 100 .byte 32 .byte 110 .byte 111 .byte 116 .byte 32 .byte 108 .byte 111 .byte 99 .byte 97 .byte 116 .byte 101 .byte 32 .byte 112 .byte 111 .byte 105 .byte 110 .byte 116 .byte 101 .byte 114 .byte 32 .byte 116 .byte 111 .byte 32 .byte 100 .byte 111 .byte 99 .byte 107 .byte 46 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 115 .byte 33 .byte 32 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 115 .byte 32 .byte 102 .byte 117 .byte 110 .byte 99 .byte 116 .byte 105 .byte 111 .byte 110 .byte 97 .byte 108 .byte 105 .byte 116 .byte 121 .byte 32 .byte 119 .byte 105 .byte 108 .byte 108 .byte 32 .byte 110 .byte 111 .byte 116 .byte 32 .byte 119 .byte 111 .byte 114 .byte 107 .byte 33 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 40 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 120 .byte 41 .byte 32 .byte 100 .byte 111 .byte 99 .byte 107 .byte 46 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 115 .byte 32 .byte 102 .byte 111 .byte 117 .byte 110 .byte 100 .byte 32 .byte 97 .byte 116 .byte 32 .byte 97 .byte 100 .byte 100 .byte 114 .byte 101 .byte 115 .byte 115 .byte 32 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 88 .byte 32 .byte 40 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 120 .byte 41 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 99 .byte 111 .byte 117 .byte 108 .byte 100 .byte 32 .byte 110 .byte 111 .byte 116 .byte 32 .byte 108 .byte 111 .byte 99 .byte 97 .byte 116 .byte 101 .byte 32 .byte 112 .byte 111 .byte 105 .byte 110 .byte 116 .byte 101 .byte 114 .byte 32 .byte 116 .byte 111 .byte 32 .byte 100 .byte 112 .byte 112 .byte 109 .byte 33 .byte 32 .byte 109 .byte 111 .byte 118 .byte 105 .byte 110 .byte 103 .byte 32 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 115 .byte 32 .byte 119 .byte 105 .byte 108 .byte 108 .byte 32 .byte 110 .byte 111 .byte 116 .byte 32 .byte 119 .byte 111 .byte 114 .byte 107 .byte 33 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 40 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 120 .byte 41 .byte 32 .byte 100 .byte 112 .byte 112 .byte 109 .byte 32 .byte 102 .byte 111 .byte 117 .byte 110 .byte 100 .byte 32 .byte 97 .byte 116 .byte 32 .byte 97 .byte 100 .byte 100 .byte 114 .byte 101 .byte 115 .byte 115 .byte 32 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 88 .byte 32 .byte 40 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 120 .byte 41 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 102 .byte 97 .byte 105 .byte 108 .byte 101 .byte 100 .byte 32 .byte 116 .byte 111 .byte 32 .byte 103 .byte 101 .byte 116 .byte 32 .byte 112 .byte 111 .byte 105 .byte 110 .byte 116 .byte 101 .byte 114 .byte 32 .byte 116 .byte 111 .byte 32 .byte 97 .byte 100 .byte 100 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 32 .byte 102 .byte 117 .byte 110 .byte 99 .byte 116 .byte 105 .byte 111 .byte 110 .byte 46 .byte 46 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 40 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 120 .byte 41 .byte 32 .byte 97 .byte 100 .byte 100 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 32 .byte 102 .byte 111 .byte 117 .byte 110 .byte 100 .byte 32 .byte 97 .byte 116 .byte 32 .byte 97 .byte 100 .byte 100 .byte 114 .byte 101 .byte 115 .byte 115 .byte 32 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 88 .byte 32 .byte 40 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 120 .byte 41 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 102 .byte 97 .byte 105 .byte 108 .byte 101 .byte 100 .byte 32 .byte 116 .byte 111 .byte 32 .byte 103 .byte 101 .byte 116 .byte 32 .byte 112 .byte 111 .byte 105 .byte 110 .byte 116 .byte 101 .byte 114 .byte 32 .byte 116 .byte 111 .byte 32 .byte 114 .byte 101 .byte 109 .byte 111 .byte 118 .byte 101 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 32 .byte 102 .byte 117 .byte 110 .byte 99 .byte 116 .byte 105 .byte 111 .byte 110 .byte 46 .byte 46 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 40 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 120 .byte 41 .byte 32 .byte 114 .byte 101 .byte 109 .byte 111 .byte 118 .byte 101 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 32 .byte 102 .byte 111 .byte 117 .byte 110 .byte 100 .byte 32 .byte 97 .byte 116 .byte 32 .byte 97 .byte 100 .byte 100 .byte 114 .byte 101 .byte 115 .byte 115 .byte 32 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 88 .byte 32 .byte 40 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 120 .byte 41 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 102 .byte 97 .byte 105 .byte 108 .byte 101 .byte 100 .byte 32 .byte 116 .byte 111 .byte 32 .byte 103 .byte 101 .byte 116 .byte 32 .byte 112 .byte 111 .byte 105 .byte 110 .byte 116 .byte 101 .byte 114 .byte 32 .byte 116 .byte 111 .byte 32 .byte 109 .byte 111 .byte 118 .byte 101 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 32 .byte 102 .byte 117 .byte 110 .byte 99 .byte 116 .byte 105 .byte 111 .byte 110 .byte 46 .byte 46 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 40 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 120 .byte 41 .byte 32 .byte 109 .byte 111 .byte 118 .byte 101 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 32 .byte 102 .byte 111 .byte 117 .byte 110 .byte 100 .byte 32 .byte 97 .byte 116 .byte 32 .byte 97 .byte 100 .byte 100 .byte 114 .byte 101 .byte 115 .byte 115 .byte 32 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 88 .byte 32 .byte 40 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 120 .byte 41 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 102 .byte 97 .byte 105 .byte 108 .byte 101 .byte 100 .byte 32 .byte 116 .byte 111 .byte 32 .byte 103 .byte 101 .byte 116 .byte 32 .byte 112 .byte 111 .byte 105 .byte 110 .byte 116 .byte 101 .byte 114 .byte 32 .byte 116 .byte 111 .byte 32 .byte 115 .byte 101 .byte 116 .byte 70 .byte 114 .byte 111 .byte 110 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 32 .byte 102 .byte 117 .byte 110 .byte 99 .byte 116 .byte 105 .byte 111 .byte 110 .byte 46 .byte 46 .byte 0 .byte 91 .byte 121 .byte 97 .byte 98 .byte 97 .byte 105 .byte 45 .byte 115 .byte 97 .byte 93 .byte 32 .byte 40 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 120 .byte 41 .byte 32 .byte 115 .byte 101 .byte 116 .byte 70 .byte 114 .byte 111 .byte 110 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 32 .byte 102 .byte 111 .byte 117 .byte 110 .byte 100 .byte 32 .byte 97 .byte 116 .byte 32 .byte 97 .byte 100 .byte 100 .byte 114 .byte 101 .byte 115 .byte 115 .byte 32 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 88 .byte 32 .byte 40 .byte 48 .byte 120 .byte 37 .byte 108 .byte 108 .byte 120 .byte 41 .byte 0 .byte 68 .byte 111 .byte 99 .byte 107 .byte 46 .byte 77 .byte 97 .byte 110 .byte 97 .byte 103 .byte 101 .byte 100 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 0 .byte 95 .byte 95 .byte 84 .byte 69 .byte 88 .byte 84 .byte 0 .byte 37 .byte 115 .byte 0 .byte 104 .byte 97 .byte 110 .byte 100 .byte 115 .byte 104 .byte 97 .byte 107 .byte 101 .byte 0 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 99 .byte 114 .byte 101 .byte 97 .byte 116 .byte 101 .byte 0 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 100 .byte 101 .byte 115 .byte 116 .byte 114 .byte 111 .byte 121 .byte 0 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 109 .byte 111 .byte 118 .byte 101 .byte 0 .byte 119 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 95 .byte 115 .byte 99 .byte 97 .byte 108 .byte 101 .byte 0 .byte 119 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 95 .byte 109 .byte 111 .byte 118 .byte 101 .byte 0 .byte 119 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 95 .byte 97 .byte 108 .byte 112 .byte 104 .byte 97 .byte 0 .byte 119 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 95 .byte 97 .byte 108 .byte 112 .byte 104 .byte 97 .byte 95 .byte 102 .byte 97 .byte 100 .byte 101 .byte 0 .byte 119 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 95 .byte 108 .byte 101 .byte 118 .byte 101 .byte 108 .byte 0 .byte 119 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 95 .byte 115 .byte 116 .byte 105 .byte 99 .byte 107 .byte 121 .byte 0 .byte 119 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 95 .byte 102 .byte 111 .byte 99 .byte 117 .byte 115 .byte 0 .byte 119 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 95 .byte 115 .byte 104 .byte 97 .byte 100 .byte 111 .byte 119 .byte 0 .byte 49 .byte 46 .byte 48 .byte 46 .byte 57 .byte 0 .byte 95 .byte 99 .byte 117 .byte 114 .byte 114 .byte 101 .byte 110 .byte 116 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 0 .byte 37 .byte 108 .byte 108 .byte 100 .byte 0 .byte 95 .byte 100 .byte 105 .byte 115 .byte 112 .byte 108 .byte 97 .byte 121 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 115 .byte 0 .byte 118 .byte 56 .byte 64 .byte 63 .byte 48 .byte 0 .byte 37 .byte 100 .byte 0 .byte 37 .byte 102 .byte 0 .byte 85 .byte 84 .byte 70 .byte 56 .byte 83 .byte 116 .byte 114 .byte 105 .byte 110 .byte 103 .byte 0 .byte 108 .byte 111 .byte 97 .byte 100 .byte 0 .byte 112 .byte 114 .byte 111 .byte 99 .byte 101 .byte 115 .byte 115 .byte 73 .byte 110 .byte 102 .byte 111 .byte 0 .byte 111 .byte 112 .byte 101 .byte 114 .byte 97 .byte 116 .byte 105 .byte 110 .byte 103 .byte 83 .byte 121 .byte 115 .byte 116 .byte 101 .byte 109 .byte 86 .byte 101 .byte 114 .byte 115 .byte 105 .byte 111 .byte 110 .byte 0 .byte 99 .byte 117 .byte 114 .byte 114 .byte 101 .byte 110 .byte 116 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 102 .byte 111 .byte 114 .byte 68 .byte 105 .byte 115 .byte 112 .byte 108 .byte 97 .byte 121 .byte 85 .byte 85 .byte 73 .byte 68 .byte 58 .byte 0 .byte 110 .byte 117 .byte 109 .byte 98 .byte 101 .byte 114 .byte 87 .byte 105 .byte 116 .byte 104 .byte 85 .byte 110 .byte 115 .byte 105 .byte 103 .byte 110 .byte 101 .byte 100 .byte 76 .byte 111 .byte 110 .byte 103 .byte 76 .byte 111 .byte 110 .byte 103 .byte 58 .byte 0 .byte 97 .byte 114 .byte 114 .byte 97 .byte 121 .byte 87 .byte 105 .byte 116 .byte 104 .byte 79 .byte 98 .byte 106 .byte 101 .byte 99 .byte 116 .byte 115 .byte 58 .byte 99 .byte 111 .byte 117 .byte 110 .byte 116 .byte 58 .byte 0 .byte 115 .byte 112 .byte 105 .byte 100 .byte 0 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 115 .byte 70 .byte 111 .byte 114 .byte 68 .byte 105 .byte 115 .byte 112 .byte 108 .byte 97 .byte 121 .byte 58 .byte 0 .byte 99 .byte 111 .byte 117 .byte 110 .byte 116 .byte 66 .byte 121 .byte 69 .byte 110 .byte 117 .byte 109 .byte 101 .byte 114 .byte 97 .byte 116 .byte 105 .byte 110 .byte 103 .byte 87 .byte 105 .byte 116 .byte 104 .byte 83 .byte 116 .byte 97 .byte 116 .byte 101 .byte 58 .byte 111 .byte 98 .byte 106 .byte 101 .byte 99 .byte 116 .byte 115 .byte 58 .byte 99 .byte 111 .byte 117 .byte 110 .byte 116 .byte 58 .byte 0 .byte 105 .byte 110 .byte 105 .byte 116 .byte 0 .byte 100 .byte 105 .byte 115 .byte 112 .byte 108 .byte 97 .byte 121 .byte 73 .byte 68 .byte 70 .byte 111 .byte 114 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 58 .byte 0 .byte 109 .byte 111 .byte 118 .byte 101 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 58 .byte 116 .byte 111 .byte 68 .byte 105 .byte 115 .byte 112 .byte 108 .byte 97 .byte 121 .byte 58 .byte 100 .byte 105 .byte 115 .byte 112 .byte 108 .byte 97 .byte 121 .byte 85 .byte 85 .byte 73 .byte 68 .byte 58 .byte 0 .byte 80 .byte 97 .byte 121 .byte 108 .byte 111 .byte 97 .byte 100 .byte 0 .byte 118 .byte 49 .byte 54 .byte 64 .byte 48 .byte 58 .byte 56 .byte 0 .byte 0 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 0 .byte 28 .byte 0 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 40 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 40 .byte 0 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 1 .byte 97 .byte 1 .byte 3 .byte 1 .byte -47 .byte 88 .byte 5 .byte 1 .byte 0 .byte 13 .byte 0 .byte 0 .byte 64 .byte 0 .byte 0 .byte 0 .byte 64 .byte 0 .byte 0 .byte 0 .byte 32 .byte 69 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 64 .byte 0 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 12 .byte 0 .byte 12 .byte 0 .byte 60 .byte 0 .byte 4 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 112 .byte 3 .byte 0 .byte 6 .byte 96 .byte 10 .byte 0 .byte 2 .byte 48 .byte 50 .byte 0 .byte 1 .byte -64 .byte 50 .byte 0 .byte 5 .byte 48 .byte 51 .byte 0 .byte 2 .byte 32 .byte 53 .byte 0 .byte 0 .byte -112 .byte 53 .byte 0 .byte 4 .byte -48 .byte 53 .byte 0 .byte 3 .byte 0 .byte 54 .byte 0 .byte 1 .byte -112 .byte 54 .byte 0 .byte 0 .byte 0 .byte 55 .byte 0 .byte 1 .byte 1 .byte 0 .byte 1 .byte 1 .byte 33 .byte 0 .byte 2 .byte 1 .byte 25 .byte 1 .byte 3 .byte 1 .byte 17 .byte 11 .byte 4 .byte 1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -64 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -54 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -48 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -38 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -28 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -18 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -8 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 2 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 12 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 22 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 32 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 42 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 52 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 62 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 82 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 92 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 102 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 112 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 122 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -124 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -114 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -104 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -94 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -84 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -74 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -68 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -58 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -92 .byte 70 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -82 .byte 70 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -72 .byte 70 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -62 .byte 70 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -52 .byte 70 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -42 .byte 70 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -32 .byte 70 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -22 .byte 70 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -12 .byte 70 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -2 .byte 70 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 8 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 18 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 28 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 38 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 48 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 58 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 68 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 78 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 88 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -44 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -34 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -24 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -14 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -4 .byte 72 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 6 .byte 73 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 98 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 108 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 118 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -128 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -118 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -108 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -98 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -88 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -78 .byte 71 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 40 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 32 .byte 66 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 64 .byte 66 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 87 .byte 110 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 16 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 56 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -112 .byte 66 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -48 .byte 66 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 87 .byte 110 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 52 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -64 .byte 67 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -32 .byte 67 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 87 .byte 110 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 104 .byte 79 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 114 .byte 78 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 124 .byte 77 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 108 .byte 105 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 25 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -117 .byte 105 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 44 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -48 .byte 105 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 26 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -21 .byte 105 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 35 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 15 .byte 106 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 92 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 108 .byte 106 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 87 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -60 .byte 106 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 64 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 5 .byte 107 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 73 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 79 .byte 107 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 57 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -119 .byte 107 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 55 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -63 .byte 107 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 61 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -1 .byte 107 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 58 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 58 .byte 108 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 64 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 123 .byte 108 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 56 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -76 .byte 108 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 62 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -13 .byte 108 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 61 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -56 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 49 .byte 109 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 67 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 112 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 112 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 64 .byte 0 .byte 0 .byte 0 .byte 24 .byte 0 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 0 .byte 110 .byte 110 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 105 .byte 111 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 112 .byte 16 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 0 .byte 40 .byte 0 .byte 0 .byte 0 .byte 40 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 97 .byte 111 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 32 .byte 117 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 8 .byte 0 .byte 0 .byte 0 .byte 8 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 97 .byte 111 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 99 .byte 110 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 115 .byte 110 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 127 .byte 110 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -106 .byte 110 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -78 .byte 110 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -50 .byte 110 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -26 .byte 110 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -21 .byte 110 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -3 .byte 110 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 40 .byte 111 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 45 .byte 111 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 64 .byte 111 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 64 .byte 117 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -120 .byte 117 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 17 .byte 33 .byte 80 .byte 96 .byte 62 .byte 66 .byte 83 .byte 67 .byte 83 .byte 67 .byte 83 .byte 65 .byte 83 .byte 66 .byte -128 .byte 16 .byte 24 .byte 112 .byte 8 .byte 82 .byte 66 .byte 83 .byte 67 .byte 82 .byte 71 .byte 112 .byte 40 .byte 92 .byte 71 .byte 82 .byte 67 .byte 81 .byte 19 .byte 64 .byte 95 .byte 95 .byte 68 .byte 101 .byte 102 .byte 97 .byte 117 .byte 108 .byte 116 .byte 82 .byte 117 .byte 110 .byte 101 .byte 76 .byte 111 .byte 99 .byte 97 .byte 108 .byte 101 .byte 0 .byte 81 .byte 113 .byte 16 .byte -112 .byte 64 .byte 95 .byte 95 .byte 78 .byte 83 .byte 67 .byte 111 .byte 110 .byte 99 .byte 114 .byte 101 .byte 116 .byte 101 .byte 83 .byte 116 .byte 97 .byte 99 .byte 107 .byte 66 .byte 108 .byte 111 .byte 99 .byte 107 .byte 0 .byte -112 .byte 64 .byte 95 .byte 95 .byte 95 .byte 115 .byte 116 .byte 97 .byte 99 .byte 107 .byte 95 .byte 99 .byte 104 .byte 107 .byte 95 .byte 103 .byte 117 .byte 97 .byte 114 .byte 100 .byte 0 .byte -112 .byte 64 .byte 95 .byte 95 .byte 100 .byte 105 .byte 115 .byte 112 .byte 97 .byte 116 .byte 99 .byte 104 .byte 95 .byte 109 .byte 97 .byte 105 .byte 110 .byte 95 .byte 113 .byte 0 .byte -112 .byte 64 .byte 100 .byte 121 .byte 108 .byte 100 .byte 95 .byte 115 .byte 116 .byte 117 .byte 98 .byte 95 .byte 98 .byte 105 .byte 110 .byte 100 .byte 101 .byte 114 .byte 0 .byte -128 .byte 24 .byte -112 .byte 20 .byte 64 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 95 .byte 78 .byte 83 .byte 65 .byte 114 .byte 114 .byte 97 .byte 121 .byte 0 .byte -128 .byte -16 .byte 11 .byte -112 .byte 64 .byte 95 .byte 95 .byte 95 .byte 67 .byte 70 .byte 67 .byte 111 .byte 110 .byte 115 .byte 116 .byte 97 .byte 110 .byte 116 .byte 83 .byte 116 .byte 114 .byte 105 .byte 110 .byte 103 .byte 67 .byte 108 .byte 97 .byte 115 .byte 115 .byte 82 .byte 101 .byte 102 .byte 101 .byte 114 .byte 101 .byte 110 .byte 99 .byte 101 .byte 0 .byte -128 .byte -96 .byte -7 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte 1 .byte -64 .byte 16 .byte 24 .byte -112 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 65 .byte 102 .byte 102 .byte 105 .byte 110 .byte 101 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 73 .byte 100 .byte 101 .byte 110 .byte 116 .byte 105 .byte 116 .byte 121 .byte 0 .byte -128 .byte -104 .byte -10 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte 1 .byte -112 .byte 22 .byte 64 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 95 .byte 78 .byte 83 .byte 78 .byte 117 .byte 109 .byte 98 .byte 101 .byte 114 .byte 0 .byte -128 .byte -88 .byte 12 .byte -112 .byte 64 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 95 .byte 78 .byte 83 .byte 80 .byte 114 .byte 111 .byte 99 .byte 101 .byte 115 .byte 115 .byte 73 .byte 110 .byte 102 .byte 111 .byte 0 .byte -128 .byte -16 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte 1 .byte -112 .byte 23 .byte 64 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 95 .byte 78 .byte 83 .byte 79 .byte 98 .byte 106 .byte 101 .byte 99 .byte 116 .byte 0 .byte -128 .byte 64 .byte -112 .byte 64 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 77 .byte 69 .byte 84 .byte 65 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 95 .byte 78 .byte 83 .byte 79 .byte 98 .byte 106 .byte 101 .byte 99 .byte 116 .byte 0 .byte -128 .byte -56 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte 1 .byte -112 .byte -112 .byte 64 .byte 95 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 101 .byte 109 .byte 112 .byte 116 .byte 121 .byte 95 .byte 99 .byte 97 .byte 99 .byte 104 .byte 101 .byte 0 .byte -76 .byte -112 .byte 64 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 109 .byte 115 .byte 103 .byte 83 .byte 101 .byte 110 .byte 100 .byte 0 .byte -128 .byte -88 .byte -13 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte -1 .byte 1 .byte -112 .byte 64 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 114 .byte 101 .byte 108 .byte 101 .byte 97 .byte 115 .byte 101 .byte 0 .byte -112 .byte 64 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 114 .byte 101 .byte 116 .byte 97 .byte 105 .byte 110 .byte 0 .byte -112 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 113 .byte 80 .byte 20 .byte 64 .byte 95 .byte 67 .byte 70 .byte 69 .byte 113 .byte 117 .byte 97 .byte 108 .byte 0 .byte -112 .byte 0 .byte 113 .byte 88 .byte 20 .byte 64 .byte 95 .byte 67 .byte 70 .byte 82 .byte 101 .byte 108 .byte 101 .byte 97 .byte 115 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte 96 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 65 .byte 102 .byte 102 .byte 105 .byte 110 .byte 101 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 67 .byte 111 .byte 110 .byte 99 .byte 97 .byte 116 .byte 0 .byte -112 .byte 0 .byte 113 .byte 104 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 65 .byte 102 .byte 102 .byte 105 .byte 110 .byte 101 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 69 .byte 113 .byte 117 .byte 97 .byte 108 .byte 84 .byte 111 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 0 .byte -112 .byte 0 .byte 113 .byte 112 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 65 .byte 102 .byte 102 .byte 105 .byte 110 .byte 101 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 77 .byte 97 .byte 107 .byte 101 .byte 83 .byte 99 .byte 97 .byte 108 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte 120 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 65 .byte 102 .byte 102 .byte 105 .byte 110 .byte 101 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 77 .byte 97 .byte 107 .byte 101 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 108 .byte 97 .byte 116 .byte 105 .byte 111 .byte 110 .byte 0 .byte -112 .byte 0 .byte 113 .byte -128 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 65 .byte 102 .byte 102 .byte 105 .byte 110 .byte 101 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 108 .byte 97 .byte 116 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte -120 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 67 .byte 108 .byte 101 .byte 97 .byte 114 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 84 .byte 97 .byte 103 .byte 115 .byte 0 .byte -112 .byte 0 .byte 113 .byte -112 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 67 .byte 111 .byte 112 .byte 121 .byte 77 .byte 97 .byte 110 .byte 97 .byte 103 .byte 101 .byte 100 .byte 68 .byte 105 .byte 115 .byte 112 .byte 108 .byte 97 .byte 121 .byte 70 .byte 111 .byte 114 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte -104 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 71 .byte 101 .byte 116 .byte 67 .byte 111 .byte 110 .byte 110 .byte 101 .byte 99 .byte 116 .byte 105 .byte 111 .byte 110 .byte 80 .byte 83 .byte 78 .byte 0 .byte -112 .byte 0 .byte 113 .byte -96 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 71 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 66 .byte 111 .byte 117 .byte 110 .byte 100 .byte 115 .byte 0 .byte -112 .byte 0 .byte 113 .byte -88 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 71 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 79 .byte 119 .byte 110 .byte 101 .byte 114 .byte 0 .byte -112 .byte 0 .byte 113 .byte -80 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 71 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 0 .byte -112 .byte 0 .byte 113 .byte -72 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 72 .byte 105 .byte 100 .byte 101 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 115 .byte 0 .byte -112 .byte 0 .byte 113 .byte -64 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 73 .byte 110 .byte 118 .byte 97 .byte 108 .byte 105 .byte 100 .byte 97 .byte 116 .byte 101 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 83 .byte 104 .byte 97 .byte 100 .byte 111 .byte 119 .byte 0 .byte -112 .byte 0 .byte 113 .byte -56 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 77 .byte 97 .byte 105 .byte 110 .byte 67 .byte 111 .byte 110 .byte 110 .byte 101 .byte 99 .byte 116 .byte 105 .byte 111 .byte 110 .byte 73 .byte 68 .byte 0 .byte -112 .byte 0 .byte 113 .byte -48 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 77 .byte 97 .byte 110 .byte 97 .byte 103 .byte 101 .byte 100 .byte 68 .byte 105 .byte 115 .byte 112 .byte 108 .byte 97 .byte 121 .byte 71 .byte 101 .byte 116 .byte 67 .byte 117 .byte 114 .byte 114 .byte 101 .byte 110 .byte 116 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte -40 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 77 .byte 97 .byte 110 .byte 97 .byte 103 .byte 101 .byte 100 .byte 68 .byte 105 .byte 115 .byte 112 .byte 108 .byte 97 .byte 121 .byte 83 .byte 101 .byte 116 .byte 67 .byte 117 .byte 114 .byte 114 .byte 101 .byte 110 .byte 116 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte -32 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 77 .byte 111 .byte 118 .byte 101 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 0 .byte -112 .byte 0 .byte 113 .byte -24 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 83 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 65 .byte 108 .byte 112 .byte 104 .byte 97 .byte 0 .byte -112 .byte 0 .byte 113 .byte -16 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 83 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 76 .byte 101 .byte 118 .byte 101 .byte 108 .byte 0 .byte -112 .byte 0 .byte 113 .byte -8 .byte 1 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 83 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 76 .byte 105 .byte 115 .byte 116 .byte 65 .byte 108 .byte 112 .byte 104 .byte 97 .byte 0 .byte -112 .byte 0 .byte 113 .byte -128 .byte 2 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 83 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 84 .byte 97 .byte 103 .byte 115 .byte 0 .byte -112 .byte 0 .byte 113 .byte -120 .byte 2 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 83 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 0 .byte -112 .byte 0 .byte 113 .byte -112 .byte 2 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 83 .byte 83 .byte 104 .byte 111 .byte 119 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 115 .byte 0 .byte -112 .byte 0 .byte 113 .byte -104 .byte 2 .byte 21 .byte 64 .byte 95 .byte 67 .byte 71 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 76 .byte 101 .byte 118 .byte 101 .byte 108 .byte 70 .byte 111 .byte 114 .byte 75 .byte 101 .byte 121 .byte 0 .byte -112 .byte 0 .byte 113 .byte -96 .byte 2 .byte 22 .byte 64 .byte 95 .byte 78 .byte 83 .byte 76 .byte 111 .byte 103 .byte 0 .byte -112 .byte 0 .byte 113 .byte -88 .byte 2 .byte 22 .byte 64 .byte 95 .byte 78 .byte 83 .byte 85 .byte 115 .byte 101 .byte 114 .byte 78 .byte 97 .byte 109 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte -80 .byte 2 .byte 19 .byte 64 .byte 95 .byte 95 .byte 66 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 111 .byte 98 .byte 106 .byte 101 .byte 99 .byte 116 .byte 95 .byte 97 .byte 115 .byte 115 .byte 105 .byte 103 .byte 110 .byte 0 .byte -112 .byte 0 .byte 113 .byte -72 .byte 2 .byte 19 .byte 64 .byte 95 .byte 95 .byte 66 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 111 .byte 98 .byte 106 .byte 101 .byte 99 .byte 116 .byte 95 .byte 100 .byte 105 .byte 115 .byte 112 .byte 111 .byte 115 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte -64 .byte 2 .byte 19 .byte 64 .byte 95 .byte 95 .byte 78 .byte 83 .byte 71 .byte 101 .byte 116 .byte 69 .byte 120 .byte 101 .byte 99 .byte 117 .byte 116 .byte 97 .byte 98 .byte 108 .byte 101 .byte 80 .byte 97 .byte 116 .byte 104 .byte 0 .byte -112 .byte 0 .byte 113 .byte -56 .byte 2 .byte 19 .byte 64 .byte 95 .byte 95 .byte 95 .byte 98 .byte 122 .byte 101 .byte 114 .byte 111 .byte 0 .byte -112 .byte 0 .byte 113 .byte -48 .byte 2 .byte 19 .byte 64 .byte 95 .byte 95 .byte 95 .byte 109 .byte 97 .byte 115 .byte 107 .byte 114 .byte 117 .byte 110 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte -40 .byte 2 .byte 19 .byte 64 .byte 95 .byte 95 .byte 95 .byte 115 .byte 110 .byte 112 .byte 114 .byte 105 .byte 110 .byte 116 .byte 102 .byte 95 .byte 99 .byte 104 .byte 107 .byte 0 .byte -112 .byte 0 .byte 113 .byte -32 .byte 2 .byte 19 .byte 64 .byte 95 .byte 95 .byte 95 .byte 115 .byte 116 .byte 97 .byte 99 .byte 107 .byte 95 .byte 99 .byte 104 .byte 107 .byte 95 .byte 102 .byte 97 .byte 105 .byte 108 .byte 0 .byte -112 .byte 0 .byte 113 .byte -24 .byte 2 .byte 19 .byte 64 .byte 95 .byte 95 .byte 100 .byte 121 .byte 108 .byte 100 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 105 .byte 109 .byte 97 .byte 103 .byte 101 .byte 95 .byte 110 .byte 97 .byte 109 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte -16 .byte 2 .byte 19 .byte 64 .byte 95 .byte 95 .byte 100 .byte 121 .byte 108 .byte 100 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 105 .byte 109 .byte 97 .byte 103 .byte 101 .byte 95 .byte 118 .byte 109 .byte 97 .byte 100 .byte 100 .byte 114 .byte 95 .byte 115 .byte 108 .byte 105 .byte 100 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte -8 .byte 2 .byte 19 .byte 64 .byte 95 .byte 95 .byte 100 .byte 121 .byte 108 .byte 100 .byte 95 .byte 105 .byte 109 .byte 97 .byte 103 .byte 101 .byte 95 .byte 99 .byte 111 .byte 117 .byte 110 .byte 116 .byte 0 .byte -112 .byte 0 .byte 113 .byte -128 .byte 3 .byte 19 .byte 64 .byte 95 .byte 97 .byte 99 .byte 99 .byte 101 .byte 112 .byte 116 .byte 0 .byte -112 .byte 0 .byte 113 .byte -120 .byte 3 .byte 19 .byte 64 .byte 95 .byte 98 .byte 105 .byte 110 .byte 100 .byte 0 .byte -112 .byte 0 .byte 113 .byte -112 .byte 3 .byte 19 .byte 64 .byte 95 .byte 99 .byte 104 .byte 109 .byte 111 .byte 100 .byte 0 .byte -112 .byte 0 .byte 113 .byte -104 .byte 3 .byte 19 .byte 64 .byte 95 .byte 99 .byte 108 .byte 111 .byte 115 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte -96 .byte 3 .byte 19 .byte 64 .byte 95 .byte 100 .byte 105 .byte 115 .byte 112 .byte 97 .byte 116 .byte 99 .byte 104 .byte 95 .byte 115 .byte 121 .byte 110 .byte 99 .byte 0 .byte -112 .byte 0 .byte 113 .byte -88 .byte 3 .byte 19 .byte 64 .byte 95 .byte 103 .byte 101 .byte 116 .byte 101 .byte 110 .byte 118 .byte 0 .byte -112 .byte 0 .byte 113 .byte -80 .byte 3 .byte 19 .byte 64 .byte 95 .byte 103 .byte 101 .byte 116 .byte 115 .byte 101 .byte 103 .byte 98 .byte 121 .byte 110 .byte 97 .byte 109 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte -72 .byte 3 .byte 19 .byte 64 .byte 95 .byte 108 .byte 105 .byte 115 .byte 116 .byte 101 .byte 110 .byte 0 .byte -112 .byte 0 .byte 113 .byte -64 .byte 3 .byte 19 .byte 64 .byte 95 .byte 109 .byte 101 .byte 109 .byte 99 .byte 112 .byte 121 .byte 0 .byte -112 .byte 0 .byte 113 .byte -56 .byte 3 .byte 23 .byte 64 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 97 .byte 108 .byte 108 .byte 111 .byte 99 .byte 0 .byte -112 .byte 0 .byte 113 .byte -48 .byte 3 .byte 23 .byte 64 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 101 .byte 110 .byte 117 .byte 109 .byte 101 .byte 114 .byte 97 .byte 116 .byte 105 .byte 111 .byte 110 .byte 77 .byte 117 .byte 116 .byte 97 .byte 116 .byte 105 .byte 111 .byte 110 .byte 0 .byte -112 .byte 0 .byte 113 .byte -40 .byte 3 .byte 23 .byte 64 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 103 .byte 101 .byte 116 .byte 67 .byte 108 .byte 97 .byte 115 .byte 115 .byte 0 .byte -112 .byte 0 .byte 113 .byte -32 .byte 3 .byte 23 .byte 64 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 109 .byte 115 .byte 103 .byte 83 .byte 101 .byte 110 .byte 100 .byte 95 .byte 115 .byte 116 .byte 114 .byte 101 .byte 116 .byte 0 .byte -112 .byte 0 .byte 113 .byte -24 .byte 3 .byte 23 .byte 64 .byte 95 .byte 111 .byte 98 .byte 106 .byte 101 .byte 99 .byte 116 .byte 95 .byte 103 .byte 101 .byte 116 .byte 73 .byte 110 .byte 115 .byte 116 .byte 97 .byte 110 .byte 99 .byte 101 .byte 86 .byte 97 .byte 114 .byte 105 .byte 97 .byte 98 .byte 108 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte -16 .byte 3 .byte 23 .byte 64 .byte 95 .byte 111 .byte 98 .byte 106 .byte 101 .byte 99 .byte 116 .byte 95 .byte 115 .byte 101 .byte 116 .byte 73 .byte 110 .byte 115 .byte 116 .byte 97 .byte 110 .byte 99 .byte 101 .byte 86 .byte 97 .byte 114 .byte 105 .byte 97 .byte 98 .byte 108 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte -8 .byte 3 .byte 19 .byte 64 .byte 95 .byte 112 .byte 116 .byte 104 .byte 114 .byte 101 .byte 97 .byte 100 .byte 95 .byte 99 .byte 114 .byte 101 .byte 97 .byte 116 .byte 101 .byte 0 .byte -112 .byte 0 .byte 113 .byte -128 .byte 4 .byte 19 .byte 64 .byte 95 .byte 114 .byte 101 .byte 99 .byte 118 .byte 0 .byte -112 .byte 0 .byte 113 .byte -120 .byte 4 .byte 19 .byte 64 .byte 95 .byte 115 .byte 101 .byte 110 .byte 100 .byte 0 .byte -112 .byte 0 .byte 113 .byte -112 .byte 4 .byte 19 .byte 64 .byte 95 .byte 115 .byte 104 .byte 117 .byte 116 .byte 100 .byte 111 .byte 119 .byte 110 .byte 0 .byte -112 .byte 0 .byte 113 .byte -104 .byte 4 .byte 19 .byte 64 .byte 95 .byte 115 .byte 111 .byte 99 .byte 107 .byte 101 .byte 116 .byte 0 .byte -112 .byte 0 .byte 113 .byte -96 .byte 4 .byte 19 .byte 64 .byte 95 .byte 115 .byte 115 .byte 99 .byte 97 .byte 110 .byte 102 .byte 0 .byte -112 .byte 0 .byte 113 .byte -88 .byte 4 .byte 19 .byte 64 .byte 95 .byte 115 .byte 116 .byte 114 .byte 99 .byte 109 .byte 112 .byte 0 .byte -112 .byte 0 .byte 113 .byte -80 .byte 4 .byte 19 .byte 64 .byte 95 .byte 115 .byte 116 .byte 114 .byte 108 .byte 101 .byte 110 .byte 0 .byte -112 .byte 0 .byte 113 .byte -72 .byte 4 .byte 19 .byte 64 .byte 95 .byte 117 .byte 110 .byte 108 .byte 105 .byte 110 .byte 107 .byte 0 .byte -112 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 1 .byte 95 .byte 0 .byte 5 .byte 0 .byte 2 .byte 103 .byte 101 .byte 116 .byte 95 .byte 0 .byte 21 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 0 .byte -87 .byte 2 .byte 0 .byte 5 .byte 100 .byte 0 .byte 89 .byte 97 .byte 100 .byte 100 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 0 .byte -93 .byte 1 .byte 114 .byte 101 .byte 109 .byte 111 .byte 118 .byte 101 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 0 .byte -67 .byte 1 .byte 109 .byte 111 .byte 118 .byte 101 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 0 .byte -41 .byte 1 .byte 115 .byte 101 .byte 116 .byte 95 .byte 102 .byte 114 .byte 111 .byte 110 .byte 116 .byte 95 .byte 119 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 95 .byte 0 .byte -15 .byte 1 .byte 0 .byte 2 .byte 111 .byte 99 .byte 107 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 115 .byte 95 .byte 0 .byte 111 .byte 112 .byte 112 .byte 109 .byte 95 .byte 0 .byte -119 .byte 1 .byte 0 .byte 2 .byte 111 .byte 102 .byte 102 .byte 115 .byte 101 .byte 116 .byte 0 .byte -124 .byte 1 .byte 112 .byte 97 .byte 116 .byte 116 .byte 101 .byte 114 .byte 110 .byte 0 .byte -117 .byte 2 .byte 3 .byte 0 .byte -128 .byte 26 .byte 0 .byte 0 .byte 2 .byte 111 .byte 102 .byte 102 .byte 115 .byte 101 .byte 116 .byte 0 .byte -98 .byte 1 .byte 112 .byte 97 .byte 116 .byte 116 .byte 101 .byte 114 .byte 110 .byte 0 .byte -112 .byte 2 .byte 3 .byte 0 .byte -48 .byte 26 .byte 0 .byte 0 .byte 2 .byte 111 .byte 102 .byte 102 .byte 115 .byte 101 .byte 116 .byte 0 .byte -72 .byte 1 .byte 112 .byte 97 .byte 116 .byte 116 .byte 101 .byte 114 .byte 110 .byte 0 .byte -107 .byte 2 .byte 3 .byte 0 .byte -128 .byte 27 .byte 0 .byte 0 .byte 2 .byte 111 .byte 102 .byte 102 .byte 115 .byte 101 .byte 116 .byte 0 .byte -46 .byte 1 .byte 112 .byte 97 .byte 116 .byte 116 .byte 101 .byte 114 .byte 110 .byte 0 .byte -102 .byte 2 .byte 3 .byte 0 .byte -80 .byte 27 .byte 0 .byte 0 .byte 2 .byte 111 .byte 102 .byte 102 .byte 115 .byte 101 .byte 116 .byte 0 .byte -20 .byte 1 .byte 112 .byte 97 .byte 116 .byte 116 .byte 101 .byte 114 .byte 110 .byte 0 .byte -97 .byte 2 .byte 3 .byte 0 .byte -32 .byte 27 .byte 0 .byte 0 .byte 2 .byte 111 .byte 102 .byte 102 .byte 115 .byte 101 .byte 116 .byte 0 .byte -122 .byte 2 .byte 112 .byte 97 .byte 116 .byte 116 .byte 101 .byte 114 .byte 110 .byte 0 .byte -92 .byte 2 .byte 3 .byte 0 .byte -80 .byte 28 .byte 0 .byte 3 .byte 0 .byte -128 .byte 29 .byte 0 .byte 3 .byte 0 .byte -48 .byte 29 .byte 0 .byte 3 .byte 0 .byte -128 .byte 30 .byte 0 .byte 3 .byte 0 .byte -32 .byte 30 .byte 0 .byte 3 .byte 0 .byte -64 .byte 31 .byte 0 .byte 3 .byte 0 .byte -96 .byte 32 .byte 0 .byte 0 .byte 2 .byte 77 .byte 69 .byte 84 .byte 65 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 95 .byte 80 .byte 97 .byte 121 .byte 108 .byte 111 .byte 97 .byte 100 .byte 0 .byte -45 .byte 2 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 95 .byte 80 .byte 97 .byte 121 .byte 108 .byte 111 .byte 97 .byte 100 .byte 0 .byte -39 .byte 2 .byte 4 .byte 0 .byte -56 .byte -20 .byte 1 .byte 0 .byte 4 .byte 0 .byte -16 .byte -20 .byte 1 .byte 0 .byte 0 .byte -128 .byte 26 .byte 80 .byte 48 .byte 48 .byte 48 .byte 80 .byte 80 .byte 80 .byte 48 .byte 96 .byte 96 .byte 96 .byte 80 .byte -16 .byte 13 .byte -16 .byte 2 .byte -32 .byte 76 .byte -112 .byte 1 .byte 112 .byte -16 .byte 3 .byte 32 .byte 32 .byte 48 .byte 64 .byte 48 .byte -112 .byte 1 .byte 48 .byte 32 .byte 32 .byte -112 .byte 1 .byte 0 .byte 0 .byte 0 .byte -27 .byte 6 .byte 0 .byte 0 .byte 14 .byte 1 .byte 0 .byte 0 .byte 112 .byte 16 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -11 .byte 6 .byte 0 .byte 0 .byte 14 .byte 1 .byte 0 .byte 0 .byte 96 .byte 23 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 3 .byte 7 .byte 0 .byte 0 .byte 14 .byte 1 .byte 0 .byte 0 .byte -48 .byte 24 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 22 .byte 7 .byte 0 .byte 0 .byte 14 .byte 1 .byte 0 .byte 0 .byte 48 .byte 63 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 40 .byte 7 .byte 0 .byte 0 .byte 14 .byte 1 .byte 0 .byte 0 .byte -64 .byte 63 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte 7 .byte 0 .byte 0 .byte 14 .byte 1 .byte 0 .byte 0 .byte 48 .byte 64 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 104 .byte 7 .byte 0 .byte 0 .byte 30 .byte 1 .byte -128 .byte 0 .byte 32 .byte 66 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -124 .byte 7 .byte 0 .byte 0 .byte 30 .byte 1 .byte -128 .byte 0 .byte 64 .byte 66 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -93 .byte 7 .byte 0 .byte 0 .byte 14 .byte 1 .byte 0 .byte 0 .byte 96 .byte 66 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -60 .byte 7 .byte 0 .byte 0 .byte 30 .byte 1 .byte -128 .byte 0 .byte -112 .byte 66 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -29 .byte 7 .byte 0 .byte 0 .byte 30 .byte 1 .byte -128 .byte 0 .byte -48 .byte 66 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 5 .byte 8 .byte 0 .byte 0 .byte 14 .byte 1 .byte 0 .byte 0 .byte 0 .byte 67 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 19 .byte 8 .byte 0 .byte 0 .byte 14 .byte 1 .byte 0 .byte 0 .byte -112 .byte 67 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 49 .byte 8 .byte 0 .byte 0 .byte 30 .byte 1 .byte -128 .byte 0 .byte -64 .byte 67 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 77 .byte 8 .byte 0 .byte 0 .byte 30 .byte 1 .byte -128 .byte 0 .byte -32 .byte 67 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 108 .byte 8 .byte 0 .byte 0 .byte 14 .byte 1 .byte 0 .byte 0 .byte 0 .byte 68 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 126 .byte 8 .byte 0 .byte 0 .byte 14 .byte 1 .byte 0 .byte 0 .byte -112 .byte 68 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -114 .byte 8 .byte 0 .byte 0 .byte 30 .byte 13 .byte -128 .byte 0 .byte 64 .byte 114 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -74 .byte 8 .byte 0 .byte 0 .byte 30 .byte 13 .byte -128 .byte 0 .byte 112 .byte 114 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -31 .byte 8 .byte 0 .byte 0 .byte 30 .byte 13 .byte -128 .byte 0 .byte -96 .byte 114 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 9 .byte 9 .byte 0 .byte 0 .byte 14 .byte 15 .byte 0 .byte 0 .byte 8 .byte 117 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 29 .byte 9 .byte 0 .byte 0 .byte 14 .byte 16 .byte 0 .byte 0 .byte 16 .byte 117 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 57 .byte 9 .byte 0 .byte 0 .byte 14 .byte 18 .byte 0 .byte 0 .byte 32 .byte 117 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 88 .byte 9 .byte 0 .byte 0 .byte 14 .byte 18 .byte 0 .byte 0 .byte 64 .byte 117 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 118 .byte 9 .byte 0 .byte 0 .byte 14 .byte 18 .byte 0 .byte 0 .byte -120 .byte 117 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -112 .byte 9 .byte 0 .byte 0 .byte 14 .byte 22 .byte 0 .byte 0 .byte -104 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -99 .byte 9 .byte 0 .byte 0 .byte 14 .byte 22 .byte 0 .byte 0 .byte -96 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -71 .byte 9 .byte 0 .byte 0 .byte 14 .byte 22 .byte 0 .byte 0 .byte -88 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -57 .byte 9 .byte 0 .byte 0 .byte 14 .byte 22 .byte 0 .byte 0 .byte -80 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -40 .byte 9 .byte 0 .byte 0 .byte 14 .byte 22 .byte 0 .byte 0 .byte -72 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -25 .byte 9 .byte 0 .byte 0 .byte 14 .byte 22 .byte 0 .byte 0 .byte -64 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -4 .byte 9 .byte 0 .byte 0 .byte 14 .byte 22 .byte 0 .byte 0 .byte -56 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 11 .byte 10 .byte 0 .byte 0 .byte 14 .byte 22 .byte 0 .byte 0 .byte -48 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 24 .byte 10 .byte 0 .byte 0 .byte 14 .byte 22 .byte 0 .byte 0 .byte -44 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 39 .byte 10 .byte 0 .byte 0 .byte 14 .byte 22 .byte 0 .byte 0 .byte -40 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 2 .byte 0 .byte 0 .byte 0 .byte 15 .byte 21 .byte 0 .byte 0 .byte 112 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 24 .byte 0 .byte 0 .byte 0 .byte 15 .byte 21 .byte 0 .byte 0 .byte 72 .byte 118 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 50 .byte 0 .byte 0 .byte 0 .byte 15 .byte 1 .byte 0 .byte 0 .byte -128 .byte 13 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte 0 .byte 0 .byte 0 .byte 15 .byte 1 .byte 0 .byte 0 .byte 0 .byte 15 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 95 .byte 0 .byte 0 .byte 0 .byte 15 .byte 1 .byte 0 .byte 0 .byte 0 .byte 13 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 119 .byte 0 .byte 0 .byte 0 .byte 15 .byte 1 .byte 0 .byte 0 .byte -128 .byte 14 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -112 .byte 0 .byte 0 .byte 0 .byte 15 .byte 1 .byte 0 .byte 0 .byte 80 .byte 13 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -95 .byte 0 .byte 0 .byte 0 .byte 15 .byte 1 .byte 0 .byte 0 .byte -48 .byte 14 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -77 .byte 0 .byte 0 .byte 0 .byte 15 .byte 1 .byte 0 .byte 0 .byte -32 .byte 13 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -54 .byte 0 .byte 0 .byte 0 .byte 15 .byte 1 .byte 0 .byte 0 .byte -64 .byte 15 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -30 .byte 0 .byte 0 .byte 0 .byte 15 .byte 1 .byte 0 .byte 0 .byte -80 .byte 13 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -5 .byte 0 .byte 0 .byte 0 .byte 15 .byte 1 .byte 0 .byte 0 .byte 96 .byte 15 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 21 .byte 1 .byte 0 .byte 0 .byte 15 .byte 1 .byte 0 .byte 0 .byte 48 .byte 14 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 50 .byte 1 .byte 0 .byte 0 .byte 15 .byte 1 .byte 0 .byte 0 .byte 32 .byte 16 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 80 .byte 1 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 4 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 89 .byte 1 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 4 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 100 .byte 1 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 125 .byte 1 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -96 .byte 1 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -69 .byte 1 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -41 .byte 1 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -7 .byte 1 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 21 .byte 2 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 41 .byte 2 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 72 .byte 2 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 93 .byte 2 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 113 .byte 2 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -124 .byte 2 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -101 .byte 2 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -86 .byte 2 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -59 .byte 2 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -38 .byte 2 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -4 .byte 2 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 30 .byte 3 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 45 .byte 3 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 64 .byte 3 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 83 .byte 3 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 106 .byte 3 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 124 .byte 3 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -109 .byte 3 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -94 .byte 3 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 5 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -73 .byte 3 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 6 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -66 .byte 3 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 6 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -54 .byte 3 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 4 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -32 .byte 3 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 6 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -9 .byte 3 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 14 .byte 4 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 6 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 42 .byte 4 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 69 .byte 4 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 91 .byte 4 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 114 .byte 4 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -122 .byte 4 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -99 .byte 4 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -77 .byte 4 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 4 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -43 .byte 4 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -34 .byte 4 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -22 .byte 4 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -6 .byte 4 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 12 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 31 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 49 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 71 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 101 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 120 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -117 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -109 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -103 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -96 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -89 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -74 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -66 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -52 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -44 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -36 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -24 .byte 5 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 2 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 17 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 31 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 51 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 65 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 78 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 106 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 7 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -122 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -106 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -100 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -94 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -84 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -76 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -68 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -60 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -52 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte -44 .byte 6 .byte 0 .byte 0 .byte 1 .byte 0 .byte 0 .byte 3 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 49 .byte 0 .byte 0 .byte 0 .byte 50 .byte 0 .byte 0 .byte 0 .byte 51 .byte 0 .byte 0 .byte 0 .byte 52 .byte 0 .byte 0 .byte 0 .byte 54 .byte 0 .byte 0 .byte 0 .byte 55 .byte 0 .byte 0 .byte 0 .byte 56 .byte 0 .byte 0 .byte 0 .byte 57 .byte 0 .byte 0 .byte 0 .byte 58 .byte 0 .byte 0 .byte 0 .byte 59 .byte 0 .byte 0 .byte 0 .byte 60 .byte 0 .byte 0 .byte 0 .byte 61 .byte 0 .byte 0 .byte 0 .byte 62 .byte 0 .byte 0 .byte 0 .byte 63 .byte 0 .byte 0 .byte 0 .byte 64 .byte 0 .byte 0 .byte 0 .byte 65 .byte 0 .byte 0 .byte 0 .byte 66 .byte 0 .byte 0 .byte 0 .byte 67 .byte 0 .byte 0 .byte 0 .byte 68 .byte 0 .byte 0 .byte 0 .byte 69 .byte 0 .byte 0 .byte 0 .byte 70 .byte 0 .byte 0 .byte 0 .byte 71 .byte 0 .byte 0 .byte 0 .byte 72 .byte 0 .byte 0 .byte 0 .byte 73 .byte 0 .byte 0 .byte 0 .byte 74 .byte 0 .byte 0 .byte 0 .byte 75 .byte 0 .byte 0 .byte 0 .byte 76 .byte 0 .byte 0 .byte 0 .byte 77 .byte 0 .byte 0 .byte 0 .byte 83 .byte 0 .byte 0 .byte 0 .byte 84 .byte 0 .byte 0 .byte 0 .byte 87 .byte 0 .byte 0 .byte 0 .byte 89 .byte 0 .byte 0 .byte 0 .byte 90 .byte 0 .byte 0 .byte 0 .byte 91 .byte 0 .byte 0 .byte 0 .byte 92 .byte 0 .byte 0 .byte 0 .byte 95 .byte 0 .byte 0 .byte 0 .byte 96 .byte 0 .byte 0 .byte 0 .byte 97 .byte 0 .byte 0 .byte 0 .byte 99 .byte 0 .byte 0 .byte 0 .byte 100 .byte 0 .byte 0 .byte 0 .byte 101 .byte 0 .byte 0 .byte 0 .byte 102 .byte 0 .byte 0 .byte 0 .byte 103 .byte 0 .byte 0 .byte 0 .byte 104 .byte 0 .byte 0 .byte 0 .byte 105 .byte 0 .byte 0 .byte 0 .byte 106 .byte 0 .byte 0 .byte 0 .byte 107 .byte 0 .byte 0 .byte 0 .byte 108 .byte 0 .byte 0 .byte 0 .byte 109 .byte 0 .byte 0 .byte 0 .byte 110 .byte 0 .byte 0 .byte 0 .byte 112 .byte 0 .byte 0 .byte 0 .byte 115 .byte 0 .byte 0 .byte 0 .byte 116 .byte 0 .byte 0 .byte 0 .byte 117 .byte 0 .byte 0 .byte 0 .byte 118 .byte 0 .byte 0 .byte 0 .byte 119 .byte 0 .byte 0 .byte 0 .byte 120 .byte 0 .byte 0 .byte 0 .byte 121 .byte 0 .byte 0 .byte 0 .byte 122 .byte 0 .byte 0 .byte 0 .byte 123 .byte 0 .byte 0 .byte 0 .byte 124 .byte 0 .byte 0 .byte 0 .byte 125 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 0 .byte 64 .byte 53 .byte 0 .byte 0 .byte 0 .byte 85 .byte 0 .byte 0 .byte 0 .byte 86 .byte 0 .byte 0 .byte 0 .byte 93 .byte 0 .byte 0 .byte 0 .byte 94 .byte 0 .byte 0 .byte 0 .byte 111 .byte 0 .byte 0 .byte 0 .byte 113 .byte 0 .byte 0 .byte 0 .byte 114 .byte 0 .byte 0 .byte 0 .byte 126 .byte 0 .byte 0 .byte 0 .byte 49 .byte 0 .byte 0 .byte 0 .byte 50 .byte 0 .byte 0 .byte 0 .byte 51 .byte 0 .byte 0 .byte 0 .byte 52 .byte 0 .byte 0 .byte 0 .byte 54 .byte 0 .byte 0 .byte 0 .byte 55 .byte 0 .byte 0 .byte 0 .byte 56 .byte 0 .byte 0 .byte 0 .byte 57 .byte 0 .byte 0 .byte 0 .byte 58 .byte 0 .byte 0 .byte 0 .byte 59 .byte 0 .byte 0 .byte 0 .byte 60 .byte 0 .byte 0 .byte 0 .byte 61 .byte 0 .byte 0 .byte 0 .byte 62 .byte 0 .byte 0 .byte 0 .byte 63 .byte 0 .byte 0 .byte 0 .byte 64 .byte 0 .byte 0 .byte 0 .byte 65 .byte 0 .byte 0 .byte 0 .byte 66 .byte 0 .byte 0 .byte 0 .byte 67 .byte 0 .byte 0 .byte 0 .byte 68 .byte 0 .byte 0 .byte 0 .byte 69 .byte 0 .byte 0 .byte 0 .byte 70 .byte 0 .byte 0 .byte 0 .byte 71 .byte 0 .byte 0 .byte 0 .byte 72 .byte 0 .byte 0 .byte 0 .byte 73 .byte 0 .byte 0 .byte 0 .byte 74 .byte 0 .byte 0 .byte 0 .byte 75 .byte 0 .byte 0 .byte 0 .byte 76 .byte 0 .byte 0 .byte 0 .byte 77 .byte 0 .byte 0 .byte 0 .byte 83 .byte 0 .byte 0 .byte 0 .byte 84 .byte 0 .byte 0 .byte 0 .byte 87 .byte 0 .byte 0 .byte 0 .byte 89 .byte 0 .byte 0 .byte 0 .byte 90 .byte 0 .byte 0 .byte 0 .byte 91 .byte 0 .byte 0 .byte 0 .byte 92 .byte 0 .byte 0 .byte 0 .byte 95 .byte 0 .byte 0 .byte 0 .byte 96 .byte 0 .byte 0 .byte 0 .byte 97 .byte 0 .byte 0 .byte 0 .byte 99 .byte 0 .byte 0 .byte 0 .byte 100 .byte 0 .byte 0 .byte 0 .byte 101 .byte 0 .byte 0 .byte 0 .byte 102 .byte 0 .byte 0 .byte 0 .byte 103 .byte 0 .byte 0 .byte 0 .byte 104 .byte 0 .byte 0 .byte 0 .byte 105 .byte 0 .byte 0 .byte 0 .byte 106 .byte 0 .byte 0 .byte 0 .byte 107 .byte 0 .byte 0 .byte 0 .byte 108 .byte 0 .byte 0 .byte 0 .byte 109 .byte 0 .byte 0 .byte 0 .byte 110 .byte 0 .byte 0 .byte 0 .byte 112 .byte 0 .byte 0 .byte 0 .byte 115 .byte 0 .byte 0 .byte 0 .byte 116 .byte 0 .byte 0 .byte 0 .byte 117 .byte 0 .byte 0 .byte 0 .byte 118 .byte 0 .byte 0 .byte 0 .byte 119 .byte 0 .byte 0 .byte 0 .byte 120 .byte 0 .byte 0 .byte 0 .byte 121 .byte 0 .byte 0 .byte 0 .byte 122 .byte 0 .byte 0 .byte 0 .byte 123 .byte 0 .byte 0 .byte 0 .byte 124 .byte 0 .byte 0 .byte 0 .byte 125 .byte 0 .byte 0 .byte 0 .byte 32 .byte 0 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 95 .byte 80 .byte 97 .byte 121 .byte 108 .byte 111 .byte 97 .byte 100 .byte 0 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 77 .byte 69 .byte 84 .byte 65 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 95 .byte 80 .byte 97 .byte 121 .byte 108 .byte 111 .byte 97 .byte 100 .byte 0 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 97 .byte 100 .byte 100 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 111 .byte 102 .byte 102 .byte 115 .byte 101 .byte 116 .byte 0 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 97 .byte 100 .byte 100 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 112 .byte 97 .byte 116 .byte 116 .byte 101 .byte 114 .byte 110 .byte 0 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 100 .byte 111 .byte 99 .byte 107 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 115 .byte 95 .byte 111 .byte 102 .byte 102 .byte 115 .byte 101 .byte 116 .byte 0 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 100 .byte 111 .byte 99 .byte 107 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 115 .byte 95 .byte 112 .byte 97 .byte 116 .byte 116 .byte 101 .byte 114 .byte 110 .byte 0 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 100 .byte 112 .byte 112 .byte 109 .byte 95 .byte 111 .byte 102 .byte 102 .byte 115 .byte 101 .byte 116 .byte 0 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 100 .byte 112 .byte 112 .byte 109 .byte 95 .byte 112 .byte 97 .byte 116 .byte 116 .byte 101 .byte 114 .byte 110 .byte 0 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 109 .byte 111 .byte 118 .byte 101 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 111 .byte 102 .byte 102 .byte 115 .byte 101 .byte 116 .byte 0 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 109 .byte 111 .byte 118 .byte 101 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 112 .byte 97 .byte 116 .byte 116 .byte 101 .byte 114 .byte 110 .byte 0 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 114 .byte 101 .byte 109 .byte 111 .byte 118 .byte 101 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 111 .byte 102 .byte 102 .byte 115 .byte 101 .byte 116 .byte 0 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 114 .byte 101 .byte 109 .byte 111 .byte 118 .byte 101 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 112 .byte 97 .byte 116 .byte 116 .byte 101 .byte 114 .byte 110 .byte 0 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 115 .byte 101 .byte 116 .byte 95 .byte 102 .byte 114 .byte 111 .byte 110 .byte 116 .byte 95 .byte 119 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 95 .byte 111 .byte 102 .byte 102 .byte 115 .byte 101 .byte 116 .byte 0 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 115 .byte 101 .byte 116 .byte 95 .byte 102 .byte 114 .byte 111 .byte 110 .byte 116 .byte 95 .byte 119 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 95 .byte 112 .byte 97 .byte 116 .byte 116 .byte 101 .byte 114 .byte 110 .byte 0 .byte 95 .byte 67 .byte 70 .byte 69 .byte 113 .byte 117 .byte 97 .byte 108 .byte 0 .byte 95 .byte 67 .byte 70 .byte 82 .byte 101 .byte 108 .byte 101 .byte 97 .byte 115 .byte 101 .byte 0 .byte 95 .byte 67 .byte 71 .byte 65 .byte 102 .byte 102 .byte 105 .byte 110 .byte 101 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 67 .byte 111 .byte 110 .byte 99 .byte 97 .byte 116 .byte 0 .byte 95 .byte 67 .byte 71 .byte 65 .byte 102 .byte 102 .byte 105 .byte 110 .byte 101 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 69 .byte 113 .byte 117 .byte 97 .byte 108 .byte 84 .byte 111 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 0 .byte 95 .byte 67 .byte 71 .byte 65 .byte 102 .byte 102 .byte 105 .byte 110 .byte 101 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 73 .byte 100 .byte 101 .byte 110 .byte 116 .byte 105 .byte 116 .byte 121 .byte 0 .byte 95 .byte 67 .byte 71 .byte 65 .byte 102 .byte 102 .byte 105 .byte 110 .byte 101 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 77 .byte 97 .byte 107 .byte 101 .byte 83 .byte 99 .byte 97 .byte 108 .byte 101 .byte 0 .byte 95 .byte 67 .byte 71 .byte 65 .byte 102 .byte 102 .byte 105 .byte 110 .byte 101 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 77 .byte 97 .byte 107 .byte 101 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 108 .byte 97 .byte 116 .byte 105 .byte 111 .byte 110 .byte 0 .byte 95 .byte 67 .byte 71 .byte 65 .byte 102 .byte 102 .byte 105 .byte 110 .byte 101 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 108 .byte 97 .byte 116 .byte 101 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 67 .byte 108 .byte 101 .byte 97 .byte 114 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 84 .byte 97 .byte 103 .byte 115 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 67 .byte 111 .byte 112 .byte 121 .byte 77 .byte 97 .byte 110 .byte 97 .byte 103 .byte 101 .byte 100 .byte 68 .byte 105 .byte 115 .byte 112 .byte 108 .byte 97 .byte 121 .byte 70 .byte 111 .byte 114 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 71 .byte 101 .byte 116 .byte 67 .byte 111 .byte 110 .byte 110 .byte 101 .byte 99 .byte 116 .byte 105 .byte 111 .byte 110 .byte 80 .byte 83 .byte 78 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 71 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 66 .byte 111 .byte 117 .byte 110 .byte 100 .byte 115 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 71 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 79 .byte 119 .byte 110 .byte 101 .byte 114 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 71 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 72 .byte 105 .byte 100 .byte 101 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 115 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 73 .byte 110 .byte 118 .byte 97 .byte 108 .byte 105 .byte 100 .byte 97 .byte 116 .byte 101 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 83 .byte 104 .byte 97 .byte 100 .byte 111 .byte 119 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 77 .byte 97 .byte 105 .byte 110 .byte 67 .byte 111 .byte 110 .byte 110 .byte 101 .byte 99 .byte 116 .byte 105 .byte 111 .byte 110 .byte 73 .byte 68 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 77 .byte 97 .byte 110 .byte 97 .byte 103 .byte 101 .byte 100 .byte 68 .byte 105 .byte 115 .byte 112 .byte 108 .byte 97 .byte 121 .byte 71 .byte 101 .byte 116 .byte 67 .byte 117 .byte 114 .byte 114 .byte 101 .byte 110 .byte 116 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 77 .byte 97 .byte 110 .byte 97 .byte 103 .byte 101 .byte 100 .byte 68 .byte 105 .byte 115 .byte 112 .byte 108 .byte 97 .byte 121 .byte 83 .byte 101 .byte 116 .byte 67 .byte 117 .byte 114 .byte 114 .byte 101 .byte 110 .byte 116 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 77 .byte 111 .byte 118 .byte 101 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 83 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 65 .byte 108 .byte 112 .byte 104 .byte 97 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 83 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 76 .byte 101 .byte 118 .byte 101 .byte 108 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 83 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 76 .byte 105 .byte 115 .byte 116 .byte 65 .byte 108 .byte 112 .byte 104 .byte 97 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 83 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 84 .byte 97 .byte 103 .byte 115 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 83 .byte 101 .byte 116 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 84 .byte 114 .byte 97 .byte 110 .byte 115 .byte 102 .byte 111 .byte 114 .byte 109 .byte 0 .byte 95 .byte 67 .byte 71 .byte 83 .byte 83 .byte 104 .byte 111 .byte 119 .byte 83 .byte 112 .byte 97 .byte 99 .byte 101 .byte 115 .byte 0 .byte 95 .byte 67 .byte 71 .byte 87 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 76 .byte 101 .byte 118 .byte 101 .byte 108 .byte 70 .byte 111 .byte 114 .byte 75 .byte 101 .byte 121 .byte 0 .byte 95 .byte 78 .byte 83 .byte 76 .byte 111 .byte 103 .byte 0 .byte 95 .byte 78 .byte 83 .byte 85 .byte 115 .byte 101 .byte 114 .byte 78 .byte 97 .byte 109 .byte 101 .byte 0 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 95 .byte 78 .byte 83 .byte 65 .byte 114 .byte 114 .byte 97 .byte 121 .byte 0 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 95 .byte 78 .byte 83 .byte 78 .byte 117 .byte 109 .byte 98 .byte 101 .byte 114 .byte 0 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 95 .byte 78 .byte 83 .byte 79 .byte 98 .byte 106 .byte 101 .byte 99 .byte 116 .byte 0 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 95 .byte 78 .byte 83 .byte 80 .byte 114 .byte 111 .byte 99 .byte 101 .byte 115 .byte 115 .byte 73 .byte 110 .byte 102 .byte 111 .byte 0 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 77 .byte 69 .byte 84 .byte 65 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 95 .byte 78 .byte 83 .byte 79 .byte 98 .byte 106 .byte 101 .byte 99 .byte 116 .byte 0 .byte 95 .byte 95 .byte 66 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 111 .byte 98 .byte 106 .byte 101 .byte 99 .byte 116 .byte 95 .byte 97 .byte 115 .byte 115 .byte 105 .byte 103 .byte 110 .byte 0 .byte 95 .byte 95 .byte 66 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 111 .byte 98 .byte 106 .byte 101 .byte 99 .byte 116 .byte 95 .byte 100 .byte 105 .byte 115 .byte 112 .byte 111 .byte 115 .byte 101 .byte 0 .byte 95 .byte 95 .byte 68 .byte 101 .byte 102 .byte 97 .byte 117 .byte 108 .byte 116 .byte 82 .byte 117 .byte 110 .byte 101 .byte 76 .byte 111 .byte 99 .byte 97 .byte 108 .byte 101 .byte 0 .byte 95 .byte 95 .byte 78 .byte 83 .byte 67 .byte 111 .byte 110 .byte 99 .byte 114 .byte 101 .byte 116 .byte 101 .byte 83 .byte 116 .byte 97 .byte 99 .byte 107 .byte 66 .byte 108 .byte 111 .byte 99 .byte 107 .byte 0 .byte 95 .byte 95 .byte 78 .byte 83 .byte 71 .byte 101 .byte 116 .byte 69 .byte 120 .byte 101 .byte 99 .byte 117 .byte 116 .byte 97 .byte 98 .byte 108 .byte 101 .byte 80 .byte 97 .byte 116 .byte 104 .byte 0 .byte 95 .byte 95 .byte 95 .byte 67 .byte 70 .byte 67 .byte 111 .byte 110 .byte 115 .byte 116 .byte 97 .byte 110 .byte 116 .byte 83 .byte 116 .byte 114 .byte 105 .byte 110 .byte 103 .byte 67 .byte 108 .byte 97 .byte 115 .byte 115 .byte 82 .byte 101 .byte 102 .byte 101 .byte 114 .byte 101 .byte 110 .byte 99 .byte 101 .byte 0 .byte 95 .byte 95 .byte 95 .byte 98 .byte 122 .byte 101 .byte 114 .byte 111 .byte 0 .byte 95 .byte 95 .byte 95 .byte 109 .byte 97 .byte 115 .byte 107 .byte 114 .byte 117 .byte 110 .byte 101 .byte 0 .byte 95 .byte 95 .byte 95 .byte 115 .byte 110 .byte 112 .byte 114 .byte 105 .byte 110 .byte 116 .byte 102 .byte 95 .byte 99 .byte 104 .byte 107 .byte 0 .byte 95 .byte 95 .byte 95 .byte 115 .byte 116 .byte 97 .byte 99 .byte 107 .byte 95 .byte 99 .byte 104 .byte 107 .byte 95 .byte 102 .byte 97 .byte 105 .byte 108 .byte 0 .byte 95 .byte 95 .byte 95 .byte 115 .byte 116 .byte 97 .byte 99 .byte 107 .byte 95 .byte 99 .byte 104 .byte 107 .byte 95 .byte 103 .byte 117 .byte 97 .byte 114 .byte 100 .byte 0 .byte 95 .byte 95 .byte 100 .byte 105 .byte 115 .byte 112 .byte 97 .byte 116 .byte 99 .byte 104 .byte 95 .byte 109 .byte 97 .byte 105 .byte 110 .byte 95 .byte 113 .byte 0 .byte 95 .byte 95 .byte 100 .byte 121 .byte 108 .byte 100 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 105 .byte 109 .byte 97 .byte 103 .byte 101 .byte 95 .byte 110 .byte 97 .byte 109 .byte 101 .byte 0 .byte 95 .byte 95 .byte 100 .byte 121 .byte 108 .byte 100 .byte 95 .byte 103 .byte 101 .byte 116 .byte 95 .byte 105 .byte 109 .byte 97 .byte 103 .byte 101 .byte 95 .byte 118 .byte 109 .byte 97 .byte 100 .byte 100 .byte 114 .byte 95 .byte 115 .byte 108 .byte 105 .byte 100 .byte 101 .byte 0 .byte 95 .byte 95 .byte 100 .byte 121 .byte 108 .byte 100 .byte 95 .byte 105 .byte 109 .byte 97 .byte 103 .byte 101 .byte 95 .byte 99 .byte 111 .byte 117 .byte 110 .byte 116 .byte 0 .byte 95 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 101 .byte 109 .byte 112 .byte 116 .byte 121 .byte 95 .byte 99 .byte 97 .byte 99 .byte 104 .byte 101 .byte 0 .byte 95 .byte 97 .byte 99 .byte 99 .byte 101 .byte 112 .byte 116 .byte 0 .byte 95 .byte 98 .byte 105 .byte 110 .byte 100 .byte 0 .byte 95 .byte 99 .byte 104 .byte 109 .byte 111 .byte 100 .byte 0 .byte 95 .byte 99 .byte 108 .byte 111 .byte 115 .byte 101 .byte 0 .byte 95 .byte 100 .byte 105 .byte 115 .byte 112 .byte 97 .byte 116 .byte 99 .byte 104 .byte 95 .byte 115 .byte 121 .byte 110 .byte 99 .byte 0 .byte 95 .byte 103 .byte 101 .byte 116 .byte 101 .byte 110 .byte 118 .byte 0 .byte 95 .byte 103 .byte 101 .byte 116 .byte 115 .byte 101 .byte 103 .byte 98 .byte 121 .byte 110 .byte 97 .byte 109 .byte 101 .byte 0 .byte 95 .byte 108 .byte 105 .byte 115 .byte 116 .byte 101 .byte 110 .byte 0 .byte 95 .byte 109 .byte 101 .byte 109 .byte 99 .byte 112 .byte 121 .byte 0 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 97 .byte 108 .byte 108 .byte 111 .byte 99 .byte 0 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 101 .byte 110 .byte 117 .byte 109 .byte 101 .byte 114 .byte 97 .byte 116 .byte 105 .byte 111 .byte 110 .byte 77 .byte 117 .byte 116 .byte 97 .byte 116 .byte 105 .byte 111 .byte 110 .byte 0 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 103 .byte 101 .byte 116 .byte 67 .byte 108 .byte 97 .byte 115 .byte 115 .byte 0 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 109 .byte 115 .byte 103 .byte 83 .byte 101 .byte 110 .byte 100 .byte 0 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 109 .byte 115 .byte 103 .byte 83 .byte 101 .byte 110 .byte 100 .byte 95 .byte 115 .byte 116 .byte 114 .byte 101 .byte 116 .byte 0 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 114 .byte 101 .byte 108 .byte 101 .byte 97 .byte 115 .byte 101 .byte 0 .byte 95 .byte 111 .byte 98 .byte 106 .byte 99 .byte 95 .byte 114 .byte 101 .byte 116 .byte 97 .byte 105 .byte 110 .byte 0 .byte 95 .byte 111 .byte 98 .byte 106 .byte 101 .byte 99 .byte 116 .byte 95 .byte 103 .byte 101 .byte 116 .byte 73 .byte 110 .byte 115 .byte 116 .byte 97 .byte 110 .byte 99 .byte 101 .byte 86 .byte 97 .byte 114 .byte 105 .byte 97 .byte 98 .byte 108 .byte 101 .byte 0 .byte 95 .byte 111 .byte 98 .byte 106 .byte 101 .byte 99 .byte 116 .byte 95 .byte 115 .byte 101 .byte 116 .byte 73 .byte 110 .byte 115 .byte 116 .byte 97 .byte 110 .byte 99 .byte 101 .byte 86 .byte 97 .byte 114 .byte 105 .byte 97 .byte 98 .byte 108 .byte 101 .byte 0 .byte 95 .byte 112 .byte 116 .byte 104 .byte 114 .byte 101 .byte 97 .byte 100 .byte 95 .byte 99 .byte 114 .byte 101 .byte 97 .byte 116 .byte 101 .byte 0 .byte 95 .byte 114 .byte 101 .byte 99 .byte 118 .byte 0 .byte 95 .byte 115 .byte 101 .byte 110 .byte 100 .byte 0 .byte 95 .byte 115 .byte 104 .byte 117 .byte 116 .byte 100 .byte 111 .byte 119 .byte 110 .byte 0 .byte 95 .byte 115 .byte 111 .byte 99 .byte 107 .byte 101 .byte 116 .byte 0 .byte 95 .byte 115 .byte 115 .byte 99 .byte 97 .byte 110 .byte 102 .byte 0 .byte 95 .byte 115 .byte 116 .byte 114 .byte 99 .byte 109 .byte 112 .byte 0 .byte 95 .byte 115 .byte 116 .byte 114 .byte 108 .byte 101 .byte 110 .byte 0 .byte 95 .byte 117 .byte 110 .byte 108 .byte 105 .byte 110 .byte 107 .byte 0 .byte 100 .byte 121 .byte 108 .byte 100 .byte 95 .byte 115 .byte 116 .byte 117 .byte 98 .byte 95 .byte 98 .byte 105 .byte 110 .byte 100 .byte 101 .byte 114 .byte 0 .byte 43 .byte 91 .byte 80 .byte 97 .byte 121 .byte 108 .byte 111 .byte 97 .byte 100 .byte 32 .byte 108 .byte 111 .byte 97 .byte 100 .byte 93 .byte 0 .byte 95 .byte 104 .byte 101 .byte 120 .byte 95 .byte 102 .byte 105 .byte 110 .byte 100 .byte 95 .byte 115 .byte 101 .byte 113 .byte 0 .byte 95 .byte 104 .byte 97 .byte 110 .byte 100 .byte 108 .byte 101 .byte 95 .byte 99 .byte 111 .byte 110 .byte 110 .byte 101 .byte 99 .byte 116 .byte 105 .byte 111 .byte 110 .byte 0 .byte 95 .byte 116 .byte 111 .byte 107 .byte 101 .byte 110 .byte 95 .byte 116 .byte 111 .byte 95 .byte 117 .byte 105 .byte 110 .byte 116 .byte 54 .byte 52 .byte 116 .byte 0 .byte 95 .byte 95 .byte 95 .byte 100 .byte 111 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 99 .byte 114 .byte 101 .byte 97 .byte 116 .byte 101 .byte 95 .byte 98 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 105 .byte 110 .byte 118 .byte 111 .byte 107 .byte 101 .byte 0 .byte 95 .byte 100 .byte 105 .byte 115 .byte 112 .byte 108 .byte 97 .byte 121 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 102 .byte 111 .byte 114 .byte 95 .byte 100 .byte 105 .byte 115 .byte 112 .byte 108 .byte 97 .byte 121 .byte 95 .byte 117 .byte 117 .byte 105 .byte 100 .byte 0 .byte 95 .byte 95 .byte 95 .byte 99 .byte 111 .byte 112 .byte 121 .byte 95 .byte 104 .byte 101 .byte 108 .byte 112 .byte 101 .byte 114 .byte 95 .byte 98 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 101 .byte 56 .byte 95 .byte 51 .byte 50 .byte 114 .byte 0 .byte 95 .byte 95 .byte 95 .byte 100 .byte 101 .byte 115 .byte 116 .byte 114 .byte 111 .byte 121 .byte 95 .byte 104 .byte 101 .byte 108 .byte 112 .byte 101 .byte 114 .byte 95 .byte 98 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 101 .byte 56 .byte 95 .byte 51 .byte 50 .byte 114 .byte 0 .byte 95 .byte 95 .byte 95 .byte 100 .byte 111 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 100 .byte 101 .byte 115 .byte 116 .byte 114 .byte 111 .byte 121 .byte 95 .byte 98 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 105 .byte 110 .byte 118 .byte 111 .byte 107 .byte 101 .byte 0 .byte 95 .byte 95 .byte 95 .byte 99 .byte 111 .byte 112 .byte 121 .byte 95 .byte 104 .byte 101 .byte 108 .byte 112 .byte 101 .byte 114 .byte 95 .byte 98 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 101 .byte 56 .byte 95 .byte 51 .byte 50 .byte 111 .byte 52 .byte 48 .byte 111 .byte 0 .byte 95 .byte 95 .byte 95 .byte 100 .byte 101 .byte 115 .byte 116 .byte 114 .byte 111 .byte 121 .byte 95 .byte 104 .byte 101 .byte 108 .byte 112 .byte 101 .byte 114 .byte 95 .byte 98 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 101 .byte 56 .byte 95 .byte 51 .byte 50 .byte 111 .byte 52 .byte 48 .byte 111 .byte 0 .byte 95 .byte 116 .byte 111 .byte 107 .byte 101 .byte 110 .byte 95 .byte 116 .byte 111 .byte 95 .byte 105 .byte 110 .byte 116 .byte 0 .byte 95 .byte 95 .byte 95 .byte 100 .byte 111 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 109 .byte 111 .byte 118 .byte 101 .byte 95 .byte 98 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 105 .byte 110 .byte 118 .byte 111 .byte 107 .byte 101 .byte 0 .byte 95 .byte 95 .byte 95 .byte 99 .byte 111 .byte 112 .byte 121 .byte 95 .byte 104 .byte 101 .byte 108 .byte 112 .byte 101 .byte 114 .byte 95 .byte 98 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 101 .byte 56 .byte 95 .byte 51 .byte 50 .byte 111 .byte 0 .byte 95 .byte 95 .byte 95 .byte 100 .byte 101 .byte 115 .byte 116 .byte 114 .byte 111 .byte 121 .byte 95 .byte 104 .byte 101 .byte 108 .byte 112 .byte 101 .byte 114 .byte 95 .byte 98 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 101 .byte 56 .byte 95 .byte 51 .byte 50 .byte 111 .byte 0 .byte 95 .byte 116 .byte 111 .byte 107 .byte 101 .byte 110 .byte 95 .byte 116 .byte 111 .byte 95 .byte 117 .byte 105 .byte 110 .byte 116 .byte 51 .byte 50 .byte 116 .byte 0 .byte 95 .byte 116 .byte 111 .byte 107 .byte 101 .byte 110 .byte 95 .byte 116 .byte 111 .byte 95 .byte 102 .byte 108 .byte 111 .byte 97 .byte 116 .byte 0 .byte 95 .byte 95 .byte 95 .byte 98 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 100 .byte 101 .byte 115 .byte 99 .byte 114 .byte 105 .byte 112 .byte 116 .byte 111 .byte 114 .byte 95 .byte 52 .byte 48 .byte 95 .byte 101 .byte 56 .byte 95 .byte 51 .byte 50 .byte 114 .byte 95 .byte 101 .byte 53 .byte 95 .byte 118 .byte 56 .byte 1 .byte 63 .byte 48 .byte 108 .byte 0 .byte 95 .byte 95 .byte 95 .byte 98 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 100 .byte 101 .byte 115 .byte 99 .byte 114 .byte 105 .byte 112 .byte 116 .byte 111 .byte 114 .byte 95 .byte 53 .byte 54 .byte 95 .byte 101 .byte 56 .byte 95 .byte 51 .byte 50 .byte 111 .byte 52 .byte 48 .byte 111 .byte 95 .byte 101 .byte 53 .byte 95 .byte 118 .byte 56 .byte 1 .byte 63 .byte 48 .byte 108 .byte 0 .byte 95 .byte 95 .byte 95 .byte 98 .byte 108 .byte 111 .byte 99 .byte 107 .byte 95 .byte 100 .byte 101 .byte 115 .byte 99 .byte 114 .byte 105 .byte 112 .byte 116 .byte 111 .byte 114 .byte 95 .byte 53 .byte 50 .byte 95 .byte 101 .byte 56 .byte 95 .byte 51 .byte 50 .byte 111 .byte 95 .byte 101 .byte 53 .byte 95 .byte 118 .byte 56 .byte 1 .byte 63 .byte 48 .byte 108 .byte 0 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 76 .byte 65 .byte 66 .byte 69 .byte 76 .byte 95 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 0 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 76 .byte 65 .byte 66 .byte 69 .byte 76 .byte 95 .byte 78 .byte 79 .byte 78 .byte 76 .byte 65 .byte 90 .byte 89 .byte 95 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 36 .byte 0 .byte 95 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 36 .byte 95 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 77 .byte 69 .byte 84 .byte 72 .byte 79 .byte 68 .byte 83 .byte 95 .byte 80 .byte 97 .byte 121 .byte 108 .byte 111 .byte 97 .byte 100 .byte 0 .byte 95 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 77 .byte 69 .byte 84 .byte 65 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 82 .byte 79 .byte 95 .byte 36 .byte 95 .byte 80 .byte 97 .byte 121 .byte 108 .byte 111 .byte 97 .byte 100 .byte 0 .byte 95 .byte 95 .byte 79 .byte 66 .byte 74 .byte 67 .byte 95 .byte 67 .byte 76 .byte 65 .byte 83 .byte 83 .byte 95 .byte 82 .byte 79 .byte 95 .byte 36 .byte 95 .byte 80 .byte 97 .byte 121 .byte 108 .byte 111 .byte 97 .byte 100 .byte 0 .byte 95 .byte 100 .byte 111 .byte 99 .byte 107 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 115 .byte 0 .byte 95 .byte 100 .byte 112 .byte 95 .byte 100 .byte 101 .byte 115 .byte 107 .byte 116 .byte 111 .byte 112 .byte 95 .byte 112 .byte 105 .byte 99 .byte 116 .byte 117 .byte 114 .byte 101 .byte 95 .byte 109 .byte 97 .byte 110 .byte 97 .byte 103 .byte 101 .byte 114 .byte 0 .byte 95 .byte 97 .byte 100 .byte 100 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 102 .byte 112 .byte 0 .byte 95 .byte 114 .byte 101 .byte 109 .byte 111 .byte 118 .byte 101 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 102 .byte 112 .byte 0 .byte 95 .byte 109 .byte 111 .byte 118 .byte 101 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 95 .byte 102 .byte 112 .byte 0 .byte 95 .byte 115 .byte 101 .byte 116 .byte 95 .byte 102 .byte 114 .byte 111 .byte 110 .byte 116 .byte 95 .byte 119 .byte 105 .byte 110 .byte 100 .byte 111 .byte 119 .byte 95 .byte 102 .byte 112 .byte 0 .byte 95 .byte 109 .byte 97 .byte 110 .byte 97 .byte 103 .byte 101 .byte 100 .byte 95 .byte 115 .byte 112 .byte 97 .byte 99 .byte 101 .byte 0 .byte 95 .byte 95 .byte 99 .byte 111 .byte 110 .byte 110 .byte 101 .byte 99 .byte 116 .byte 105 .byte 111 .byte 110 .byte 0 .byte 95 .byte 100 .byte 97 .byte 101 .byte 109 .byte 111 .byte 110 .byte 95 .byte 115 .byte 111 .byte 99 .byte 107 .byte 102 .byte 100 .byte 0 .byte 95 .byte 100 .byte 97 .byte 101 .byte 109 .byte 111 .byte 110 .byte 95 .byte 116 .byte 104 .byte 114 .byte 101 .byte 97 .byte 100 .byte 0 .byte 0 .byte 0 .global __src_osax_payload_len .align 2 .type __src_osax_payload_len, %object .size __src_osax_payload_len, 4 __src_osax_payload_len: .word 40352 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "enter the no...." .align 3 .LC1: .string "%d" .align 3 .LC2: .string "%d is even no." .align 3 .LC3: .string "%d is odd no." .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 24] mov x1, 0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf add x0, sp, 20 mov x1, x0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl __isoc99_scanf ldr w0, [sp, 20] and w0, w0, 1 cmp w0, 0 bne .L2 ldr w0, [sp, 20] mov w1, w0 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf b .L5 .L2: ldr w0, [sp, 20] mov w1, w0 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl printf .L5: nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 24] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L4 bl __stack_chk_fail .L4: ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -16]! .cfi_def_cfa_offset 16 .cfi_offset 29, -16 .cfi_offset 30, -8 mov x29, sp bl sched_yield mov w0, 1 bl sleep mov w0, 0 ldp x29, x30, [sp], 16 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "Archivos - Guardar en un archivo. \n" .align 3 .LC1: .string "wb" .align 3 .LC2: .string "DatosPersonales001.dat" .align 3 .LC3: .string "Nombre: " .align 3 .LC4: .string "\nApellido: " .align 3 .LC5: .string "\nSexo (f)/(m): " .align 3 .LC6: .string "%c" .align 3 .LC7: .string "\nEdad: " .align 3 .LC8: .string "%d" .align 3 .LC9: .string "\nVerificar que el archivo ha sido creado." .align 3 .LC10: .string "\nImprimir Datos:" .align 3 .LC11: .string "%s \n" .align 3 .LC12: .string "%c \n" .align 3 .LC13: .string "%d \n" .align 3 .LC14: .string "No se ha podido crear el archivo. " .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -80]! .cfi_def_cfa_offset 80 .cfi_offset 29, -80 .cfi_offset 30, -72 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 72] mov x1, 0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl puts adrp x0, .LC1 add x1, x0, :lo12:.LC1 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl fopen str x0, [sp, 16] ldr x0, [sp, 16] cmp x0, 0 beq .L2 adrp x0, :got:stdin ldr x0, [x0, #:got_lo12:stdin] ldr x0, [x0] bl fflush adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl puts add x0, sp, 24 bl gets adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl puts add x0, sp, 24 add x0, x0, 20 bl gets adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl puts add x0, sp, 24 add x0, x0, 40 mov x1, x0 adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl __isoc99_scanf adrp x0, .LC7 add x0, x0, :lo12:.LC7 bl puts add x0, sp, 24 add x0, x0, 44 mov x1, x0 adrp x0, .LC8 add x0, x0, :lo12:.LC8 bl __isoc99_scanf adrp x0, .LC9 add x0, x0, :lo12:.LC9 bl puts adrp x0, .LC10 add x0, x0, :lo12:.LC10 bl puts add x0, sp, 24 mov x1, x0 adrp x0, .LC11 add x0, x0, :lo12:.LC11 bl printf add x0, sp, 24 add x0, x0, 20 mov x1, x0 adrp x0, .LC11 add x0, x0, :lo12:.LC11 bl printf ldrb w0, [sp, 64] mov w1, w0 adrp x0, .LC12 add x0, x0, :lo12:.LC12 bl printf ldr w0, [sp, 68] mov w1, w0 adrp x0, .LC13 add x0, x0, :lo12:.LC13 bl printf add x0, sp, 24 ldr x3, [sp, 16] mov x2, 1 mov x1, 48 bl fwrite ldr x0, [sp, 16] bl fclose b .L3 .L2: adrp x0, .LC14 add x0, x0, :lo12:.LC14 bl puts .L3: mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 72] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L5 bl __stack_chk_fail .L5: mov w0, w1 ldp x29, x30, [sp], 80 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .data .align 2 .type size_zypher, %object .size size_zypher, 4 size_zypher: .word 3198 .align 4 .type zypher, %object .size zypher, 3198 zypher: .string "\177ELF\001\001\001" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\240\377\b" .string "\001" .string "" .string "" .string "" .string "" .string "" .string "" .string "4" .string "" .string "" .string "\240\005" .string "" .string "\0010\242\0204" .string " " .string "\001" .string "(" .string "\024" .string "\023" .string "\001" .string "" .string "" .string "`" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\004" .string "\200@\005" .string "" .string "H\006" .string "" .string "\005" .string "" .string "" .string "\020" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\004<\360\377\275'\274\004\204$\001" .string "\005$!0" .string "" .string "\004" .string "\261\257\f" .string "\277\257\b" .string "\262\257\256" .string "" .string "\f" .string "" .string "\260\257?" .string "@\004!\210@" .string "!0" .string "" .string "!8" .string "" .string "\002" .string "\b$\262" .string "" .string "\f! @" .string "! \002!0" .string "" .string "!8" .string "" .string "!@" .string "" .string "\262" .string "" .string "\f!\220@" .string "" .string "" .string "\005<4\005\245$\001" .string "\004$!0" .string "" .string "!8@\002\270" .string "" .string "\f!@" .string "" .string "+" .string "@\004!\200@" .string "\272" .string "" .string "\f! @" .string "!(@" .string "! \002\260" .string "" .string "\f!0@\002\272" .string "" .string "\f! " .string "\002" .string "" .string "\004<J" .string "\007$!(@" .string "\330\004\204$\252" .string "" .string "\f!0@\002" .string "" .string "\020<" .string "" .string "\021<W\005\006<\360\004\004&_*\3064\242" .string "" .string "\f\374\004%&\311*\006<K\225\3064\360\004\004&\374\004%&" .string "" .string "\020<\242" .string "" .string "\f@\006\002\256@\006\004\216" .string "" .string "\005<@\006\020&\004" .string "\002\256\250" .string "" .string "\f\350\001\245$\004" .string "\004\216" .string "" .string "\005<\250" .string "" .string "\fl\002\245$\264" .string "" .string "\f" .string "" .string "" .string "" .string "\254" .string "" .string "\f" .string "" .string "" .string "" .string "\f" .string "\277\217!\020" .string "" .string "\b" .string "\262\217\004" .string "\261\217" .string "" .string "\260\217\b" .string "\340\003\020" .string "\275'\360\377\275'\004" .string "\260\257! " .string "" .string "" .string "" .string "\020<\f" .string "\277\257\235" .string "" .string "\f\b" .string "\261\257@\006\005\216" .string "" .string "\004<\350\001\204$@\006\020&\250" .string "" .string "\f!\210@" .string "\004" .string "\005\216" .string "" .string "\004<\250" .string "" .string "\fl\002\204$\235" .string "" .string "\f! \002\f" .string "\277\217!\020" .string "" .string "\b" .string "\261\217\004" .string "\260\217\b" .string "\340\003\020" .string "\275'\360\377\275'\b" .string "\261\257!\210\200" .string "! " .string "" .string "\f" .string "\277\257\235" .string "" .string "\f\004" .string "\260\257!\200@" .string "\246" .string "" .string "\f! \002! " .string "\002\f" .string "\277\217\b" .string "\261\217\004" .string "\260\217\235" .string "" .string "\b\020" .string "\275'\310\377\275'! " .string "" .string "4" .string "\277\2570" .string "\261\257\235" .string "" .string "\f," .string "\260\257$" .string "\006$! \240\003!(" .string "" .string "\266" .string "" .string "\f!\210@" .string "$" .string "\002$" .string "" .string "\242\257" .string "" .string "\003<#" .string "\002$\f\005c$\004" .string "\242\257" .string "" .string "\002<! `" .string "!(\240\0030\005B$\b" .string "\243\257\244" .string "" .string "\f\f" .string "\242\257! \002\235" .string "" .string "\f!\200@" .string "4" .string "\277\217!\020" .string "\0020" .string "\261\217," .string "\260\217\b" .string "\340\0038" .string "\275'z" .string "" .string "\b" .string "" .string "" .string "" .string "!\020`\003\b" .string "\340\003!\330\200" .string "\b" .string "\340\003!\020`\003\b" .string "\340\003" .string "" .string "" .string "" .string "\b" .string "\340\003" .string "" .string "" .string "" .string "\b" .string "\340\003" .string "" .string "" .string "" .string "\b" .string "\340\003" .string "" .string "" .string "" .string "\b" .string "\340\003" .string "" .string "" .string "" .string "\b" .string "\340\003" .string "" .string "" .string "" .string "\b" .string "\340\003" .string "" .string "" .string "" .string "\b" .string "\340\003" .string "" .string "" .string "" .string "\b" .string "\340\003" .string "" .string "" .string "" .string "\b" .string "\340\003" .string "" .string "" .string "" .string "\b" .string "\340\003" .string "" .string "" .string "" .string "\b" .string "\340\003" .string "" .string "" .string "" .string "\b" .string "\340\003" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\200\004\001\001" .string "\340\003" .string "" .string "8\005" .string "" .string "" .string "" .string "\001@\004" .string "\002" .string "\360\003" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\004\004" .string "" .string "" .string "" .string "\t" .string "\005" .string "\005" .string "\210\004" .string "" .string "\210\002" .string "" .string "\034\004" .string "" .string "" .string "" .string "\001" .string "\005" .string "\001" .string "\234\004" .string "" .string "\260\002" .string "" .string "4\004" .string "" .string "" .string "" .string "\001" .string "\005" .string "\003" .string "\240\004" .string "" .string "\270\002" .string "" .string "L\004" .string "" .string "" .string "" .string "\t" .string "\005" .string "\001" .string "\254\004" .string "" .string "\320\002" .string "" .string "`\004" .string "" .string "" .string "" .string "\001" .string "\005" .string "\001" .string "\260\004" .string "" .string "\330\002" .string "" .string "x\004" .string "" .string "\021" .string "\001" .string "\005" .string "\002" .string "\264\004" .string "" .string "\340\002" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\007\020" .string "\001boot" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "0\206" .string "" .string "\364\002" .string "" .string "\024\003" .string "" .string "\034\003" .string "" .string "\224\003" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\333\2542\326\247s\035\360" .string "" .string "" .string "" .string "\240\003" .string "" .string ">$\005\270z0=\177D\001" .string "" .string "\250\001" .string "" .string "" .string "" .string "" .string "" .string "SystemCtrlForKernel" .string "" .string "" .string "" .string "" .string "LoadCoreForKernel" .string "" .string "" .string "" .string "" .string "" .string "" .string "IoFileMgrForKernel" .string "" .string "" .string "" .string "" .string "" .string "UtilsForKernel" .string "" .string "" .string "" .string "" .string "" .string "SysclibForKernel" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "SysMemForKernel" .string "\314\365\232\025\260\361\247\253\360%\260\\\351hf\202Ne\n\316\306\232w\330\274P\237\020\203\215cj\270'\353'\372\303\321ya\273\363\020O\275}#\241[\232\235ms0:/seplugins/zypher.prx" .string "" .string "" .string "/kd/usersystemlib.prx" .string "" .string "" .string "sceLoadExec" .string "LoadExecForUser" .string "ms0:/PSP/GAME/ZypherV071/EBOOT.PBP" .string "" .string "game" .string "" .string "" .string "" .string "RDLib" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\001" .string "" .string "" .string "\001" .string "" .string "" .string "\006" .string "" .string "" .string "" .string "" .string "" .string "" .string "`" .string "" .string "" .string "\210\002" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\004" .string "" .string "" .string "" .string "" .string "" .string "" .string "\007" .string "" .string "" .string "\240" .string "" .string "p" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\300\b" .string "" .string "\310\001" .string "" .string "" .string "" .string "" .string "" .string "\001" .string "" .string "" .string "\004" .string "" .string "" .string "\b" .string "" .string "" .string "\021" .string "" .string "" .string "\001" .string "" .string "" .string "\006" .string "" .string "" .string "\210\002" .string "" .string "\350\002" .string "" .string "h" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\004" .string "" .string "" .string "" .string "" .string "" .string "" .string "\037" .string "" .string "" .string "\001" .string "" .string "" .string "\002" .string "" .string "" .string "\360\002" .string "" .string "P\003" .string "" .string "\004" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\004" .string "" .string "" .string "" .string "" .string "" .string "" .string "," .string "" .string "" .string "\001" .string "" .string "" .string "\002" .string "" .string "" .string "\364\002" .string "" .string "T\003" .string "" .string " " .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\004" .string "" .string "" .string "" .string "" .string "" .string "" .string "5" .string "" .string "" .string "\240" .string "" .string "p" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\210\n" .string "" .string "\030" .string "" .string "" .string "" .string "" .string "" .string "" .string "\005" .string "" .string "" .string "\004" .string "" .string "" .string "\b" .string "" .string "" .string "B" .string "" .string "" .string "\001" .string "" .string "" .string "\002" .string "" .string "" .string "\024\003" .string "" .string "t\003" .string "" .string "\004" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\004" .string "" .string "" .string "" .string "" .string "" .string "" .string "O" .string "" .string "" .string "\001" .string "" .string "" .string "\002" .string "" .string "" .string "\030\003" .string "" .string "x\003" .string "" .string "\004" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\004" .string "" .string "" .string "" .string "" .string "" .string "" .string "]" .string "" .string "" .string "\001" .string "" .string "" .string "\002" .string "" .string "" .string "\034\003" .string "" .string "|\003" .string "" .string "x" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\004" .string "" .string "" .string "" .string "" .string "" .string "" .string "g" .string "" .string "" .string "\240" .string "" .string "p" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\240\n" .string "" .string "\220" .string "" .string "" .string "" .string "" .string "" .string "" .string "\t" .string "" .string "" .string "\004" .string "" .string "" .string "\b" .string "" .string "" .string "u" .string "" .string "" .string "\001" .string "" .string "" .string "\002" .string "" .string "" .string "\224\003" .string "" .string "\364\003" .string "" .string "\004" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\004" .string "" .string "" .string "" .string "" .string "" .string "" .string "\203" .string "" .string "" .string "\001" .string "" .string "" .string "\002" .string "" .string "" .string "\240\003" .string "" .string "" .string "\004" .string "" .string "@" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\020" .string "" .string "" .string "" .string "" .string "" .string "" .string "\231" .string "" .string "" .string "\240" .string "" .string "p" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "0\013" .string "" .string "(" .string "" .string "" .string "" .string "" .string "" .string "" .string "\f" .string "" .string "" .string "\004" .string "" .string "" .string "\b" .string "" .string "" .string "\263" .string "" .string "" .string "\001" .string "" .string "" .string "\002" .string "" .string "" .string "\340\003" .string "" .string "@\004" .string "" .string "\250" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\004" .string "" .string "" .string "" .string "" .string "" .string "" .string "\307" .string "" .string "" .string "\240" .string "" .string "p" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "X\013" .string "" .string " " .string "" .string "" .string "" .string "" .string "" .string "" .string "\016" .string "" .string "" .string "\004" .string "" .string "" .string "\b" .string "" .string "" .string "\337" .string "" .string "" .string "\001" .string "" .string "" .string "\002" .string "" .string "" .string "\210\004" .string "" .string "\350\004" .string "" .string "4" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\004" .string "" .string "" .string "" .string "" .string "" .string "" .string "\356" .string "" .string "" .string "\001" .string "" .string "" .string "2" .string "" .string "" .string "\274\004" .string "" .string "\034\005" .string "" .string "\204" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\004" .string "" .string "" .string "\001" .string "" .string "" .string "\366" .string "" .string "" .string "\b" .string "" .string "" .string "\003" .string "" .string "" .string "@\006" .string "" .string "\240\005" .string "" .string "\b" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\004" .string "" .string "" .string "" .string "" .string "" .string "" .string "\373" .string "" .string "" .string "\003" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "x\013" .string "" .string "\006\001" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\001" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\005" .string "" .string "" .string "\b" .string "" .string "" .string "\006" .string "" .string "" .string " " .string "" .string "" .string "\004" .string "" .string "" .string "<" .string "" .string "" .string "\004" .string "" .string "" .string "T" .string "" .string "" .string "\004" .string "" .string "" .string "\\" .string "" .string "" .string "\005" .string "" .string "" .string "`" .string "" .string "" .string "\006" .string "" .string "" .string "p" .string "" .string "" .string "\004" .string "" .string "" .string "\200" .string "" .string "" .string "\004" .string "" .string "" .string "\220" .string "" .string "" .string "\004" .string "" .string "" .string "\230" .string "" .string "" .string "\004" .string "" .string "" .string "\240" .string "" .string "" .string "\005" .string "" .string "" .string "\254" .string "" .string "" .string "\006" .string "" .string "" .string "\260" .string "" .string "" .string "\004" .string "" .string "" .string "\270" .string "" .string "" .string "\005" .string "" .string "" .string "\304" .string "" .string "" .string "\006" .string "" .string "" .string "\314" .string "" .string "" .string "\004" .string "" .string "" .string "\320" .string "" .string "" .string "\006" .string "" .string "" .string "\334" .string "" .string "" .string "\006" .string "" .string "" .string "\274" .string "" .string "" .string "\005" .string "" .string "" .string "\340" .string "" .string "" .string "\006" .string "" .string "" .string "\350" .string "" .string "" .string "\004" .string "" .string "" .string "\354" .string "" .string "" .string "\006" .string "" .string "" .string "\360" .string "" .string "" .string "\006" .string "" .string "" .string "\370" .string "" .string "" .string "\006" .string "" .string "" .string "" .string "\001" .string "" .string "\004" .string "" .string "" .string "\364" .string "" .string "" .string "\005" .string "" .string "" .string "\004\001" .string "" .string "\006" .string "" .string "" .string "\020\001" .string "" .string "\004" .string "" .string "" .string "\f\001" .string "" .string "\005" .string "" .string "" .string "\024\001" .string "" .string "\006" .string "" .string "" .string "\030\001" .string "" .string "\004" .string "" .string "" .string " \001" .string "" .string "\004" .string "" .string "" .string "X\001" .string "" .string "\004" .string "" .string "" .string "\344" .string "" .string "" .string "\005" .string "" .string "" .string "`\001" .string "" .string "\006" .string "" .string "" .string "d\001" .string "" .string "\005" .string "" .string "" .string "h\001" .string "" .string "\006" .string "" .string "" .string "P\001" .string "" .string "\005" .string "" .string "" .string "l\001" .string "" .string "\006" .string "" .string "" .string "p\001" .string "" .string "\004" .string "" .string "" .string "\200\001" .string "" .string "\004" .string "" .string "" .string "|\001" .string "" .string "\005" .string "" .string "" .string "\204\001" .string "" .string "\006" .string "" .string "" .string "\210\001" .string "" .string "\004" .string "" .string "" .string "\274\001" .string "" .string "\004" .string "" .string "" .string "\310\001" .string "" .string "\004" .string "" .string "" .string "\340\001" .string "" .string "\004" .string "" .string "" .string "\370\001" .string "" .string "\004" .string "" .string "" .string "\f\002" .string "" .string "\004" .string "" .string "" .string "\034\002" .string "" .string "\005" .string "" .string "" .string "$\002" .string "" .string "\006" .string "" .string "" .string ",\002" .string "" .string "\005" .string "" .string "" .string "8\002" .string "" .string "\006" .string "" .string "" .string "@\002" .string "" .string "\004" .string "" .string "" .string "L\002" .string "" .string "\004" .string "" .string "" .string "l\002" .string "" .string "\004" .string "" .string "" .string "" .string "\003" .string "" .string "\002" .string "" .string "" .string "\004\003" .string "" .string "\002" .string "" .string "" .string "\020\003" .string "" .string "\002" .string "" .string "" .string "\034\003" .string "" .string "\002" .string "" .string "" .string "(\003" .string "" .string "\002" .string "" .string "" .string ",\003" .string "" .string "\002" .string "" .string "" .string "0\003" .string "" .string "\002" .string "" .string "" .string "<\003" .string "" .string "\002" .string "" .string "" .string "@\003" .string "" .string "\002" .string "" .string "" .string "D\003" .string "" .string "\002" .string "" .string "" .string "P\003" .string "" .string "\002" .string "" .string "" .string "T\003" .string "" .string "\002" .string "" .string "" .string "X\003" .string "" .string "\002" .string "" .string "" .string "d\003" .string "" .string "\002" .string "" .string "" .string "h\003" .string "" .string "\002" .string "" .string "" .string "l\003" .string "" .string "\002" .string "" .string "" .string "x\003" .string "" .string "\002" .string "" .string "" .string "|\003" .string "" .string "\002" .string "" .string "" .string "\200\003" .string "" .string "\002" .string "" .string "" .string "\214\003" .string "" .string "\002" .string "" .string "" .string "\220\003" .string "" .string "\002" .string "" .string "" .string "\300\003" .string "" .string "\002" .string "" .string "" .string "\304\003" .string "" .string "\002" .string "" .string "" .string "\310\003" .string "" .string "\002" .string "" .string "" .string "\314\003" .string "" .string "\002" .string "" .string "" .string "\320\003" .string "" .string "\002" .string "" .string "" .string "\350\003" .string "" .string "\002" .string "" .string "" .string "\354\003" .string "" .string "\002" .string "" .string "" .string "\370\003" .string "" .string "\002" .string "" .string "" .string "\374\003" .string "" .string "\002" .string "" .string "" .string "" .string ".text" .string ".rel.text" .string ".sceStub.text" .string ".lib.ent.top" .string ".lib.ent" .string ".rel.lib.ent" .string ".lib.ent.btm" .string ".lib.stub.top" .string ".lib.stub" .string ".rel.lib.stub" .string ".lib.stub.btm" .string ".rodata.sceModuleInfo" .string ".rel.rodata.sceModuleInfo" .string ".rodata.sceResident" .string ".rel.rodata.sceResident" .string ".rodata.sceNid" .string ".rodata" .string ".bss" .string ".shstrtab" .string "" ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .data .align 3 .type ext_terms, %object .size ext_terms, 6384 ext_terms: .string "\203h\003b" .string "" .string "\022gb\377\377\355\231l" .string "" .string "" .string "\002d" .string "\007an_atomk" .string "\006a listj" .zero 123 .zero 2 .word 38 .string "\203h\003b" .string "" .string "\022gb\377\377\355\231l" .string "" .string "" .string "\002d" .string "\007an_atomk" .string "\006a listj" .zero 123 .zero 2 .word 38 .string "\203l" .string "" .string "" .string "\004n\t" .string "" .string "" .string "\240\336\305\255\31156n\007\001\307q\025\267\214\362\003k" .string "\006blupp!d" .string "\005blippj" .zero 115 .zero 2 .word 46 .string "\203l" .string "" .string "" .string "\004n\t" .string "" .string "" .string "\240\336\305\255\31156n\007\001\307q\025\267\214\362\003k" .string "\006blupp!d" .string "\005blippj" .zero 115 .zero 2 .word 46 .string "\203h\005gd" .string "\ra_node@gorbag" .string "" .string "" .string "&" .string "" .string "" .string "" .string "\003h\002r" .string "\003d" .string "\ra_node@gorbag\003" .string "" .string "" .string "(" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "fd" .string "\ra_node@gorbag" .string "" .string "" .string "\001\003gd" .string "\fanode@gorbag" .string "" .string "" .string "%" .string "" .string "" .string "" .string "\003fd" .string "\fanode@gorbag" .string "" .string "" .string "\001\003r" .string "\003d" .string "\fanode@gorbag\003" .string "" .string "" .string ";" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .zero 2 .word 162 .string "\203P" .string "" .string "" .string "\241x\234\313`MOa\340M\214\317\313OIuH\317/JJLg``P\003b\006\346\f\246\"\006ftYf\240\214\006\003\024\244a\321\313\310\f4\221'\021UP\025l`\032\246\004#3\330\016\024a\220\025\3260+" .string "\001\321$4" .zero 79 .zero 2 .word 82 .string "\203h\005h" .string "jjp" .string "" .string "" .string "O" .string "\025W\276\266\001&j\326A\344\0014\033\343\002\324" .string "" .string "" .string "\001" .string "" .string "" .string "" .string "d" .string "\017send_term_SUITEa\001b" .string "\270\013\264gd" .string "\fanode@gorbag" .string "" .string "" .string "%" .string "" .string "" .string "" .string "\003m" .string "" .string "" .string "\037hej hopp trallalaaaaaaaaaaaaaaa" .zero 38 .zero 2 .word 123 .string "\203P" .string "" .string "" .string "zx\234\313`\315`\310\312*```\360g\020\r\337\267\215Q-\353\232\343\023F\023\351\307LW\200\202\214@\314\220\302\300_\234\232\227\022_\222Z\224\033\037\034\352\031\342\232\310\230\304\260\203{Kz\n\003Ob^~J\252Cz~QRb:P\255*H\003s.\220\220\317H\315R\310\310/(P()J\314\311I\314ID\005" .string "\022\355#D" .zero 44 .zero 2 .word 117 .string "\203l" .string "" .string "" .string "\004n\n" .string "\034\307q\246v\271\221Vi\tn\005\001\034g\030Y\nk" .string "\002b!d" .string "\nblipppppppj" .zero 115 .zero 2 .word 46 .string "\203l" .string "" .string "" .string "\004n\n" .string "\034\307q\246v\271\221Vi\tn\005\001\034g\030Y\nk" .string "\002b!d" .string "\nblipppppppj" .zero 115 .zero 2 .word 46 .string "\203h\005b" .string "" .string "\022ggd" .string "\ra_node@gorbag" .string "" .string "" .string "&" .string "" .string "" .string "" .string "\003h\002r" .string "\003d" .string "\ra_node@gorbag\003" .string "" .string "" .string "(" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "fd" .string "\ra_node@gorbag" .string "" .string "" .string "\001\003b\377\377\355\231l" .string "" .string "" .string "\002d" .string "\007an_atomk" .string "\006a listj" .zero 41 .zero 2 .word 120 .string "\203P" .string "" .string "" .string "wx\234\313`Mb`\020JOOa\340M\214\317\313OIuH\317/JJLg``P\003b\006\346\f\246\"\006ftYf\240\214\006\003\024\244a\321\313\310\234\364\377\377\333\2319@&S\n\003{b^|bI~n6\003[\242BNfqI\026" .string "\247\300\036\236" .zero 68 .zero 2 .word 93 .string "\203h\004gd" .string "\ra_node@gorbag" .string "" .string "" .string "&" .string "" .string "" .string "" .string "\003h\002r" .string "\003d" .string "\ra_node@gorbag\003" .string "" .string "" .string "(" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "fd" .string "\ra_node@gorbag" .string "" .string "" .string "\001\003gd" .string "\fanode@gorbag" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\003fd" .string "\fanode@gorbag" .string "" .string "" .string "\001\003" .zero 30 .zero 2 .word 131 .string "\203P" .string "" .string "" .string "\202x\234\313`IOa\340M\214\317\313OIuH\317/JJLg``P\003b\006\346\f\246\"\006ftYf\240\214\006\003\024\244a\321\313\310\f4\221'\021U\020\f\230\3230%\030\231\001\327\326\0362" .zero 89 .zero 2 .word 72 .string "\203h\003b" .string "" .string "\022gb\377\377\355\231l" .string "" .string "" .string "\002d" .string "\007an_atomk" .string "\006a listj" .zero 123 .zero 2 .word 38 .string "\203h\003b" .string "" .string "\022gb\377\377\355\231l" .string "" .string "" .string "\002d" .string "\007an_atomk" .string "\006a listj" .zero 123 .zero 2 .word 38 .string "\203h\003b" .string "" .string "\022gb\377\377\355\231l" .string "" .string "" .string "\002d" .string "\004atomk" .string "\004listj" .zero 128 .zero 2 .word 33 .string "\203h\003b" .string "" .string "\022gb\377\377\355\231l" .string "" .string "" .string "\002d" .string "\004atomk" .string "\004listj" .zero 128 .zero 2 .word 33 .string "\203h\004gd" .string "\ra_node@gorbag" .string "" .string "" .string "&" .string "" .string "" .string "" .string "\003h\002r" .string "\003d" .string "\ra_node@gorbag\003" .string "" .string "" .string "(" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "fd" .string "\ra_node@gorbag" .string "" .string "" .string "\001\003gd" .string "\fanode@gorbag" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\003fd" .string "\fanode@gorbag" .string "" .string "" .string "\001\003" .zero 30 .zero 2 .word 131 .string "\203P" .string "" .string "" .string "\202x\234\313`IOa\340M\214\317\313OIuH\317/JJLg``P\003b\006\346\f\246\"\006ftYf\240\214\006\003\024\244a\321\313\310\f4\221'\021U\020\f\230\3230%\030\231\001\327\326\0362" .zero 89 .zero 2 .word 72 .string "\203h\004n\b" .string "\034\307\021\257\254\326\255=b\377\377Rdh\001h\001h\001h\001h\001h\001h\001h\001h\001h\001h\001h" .string "r" .string "\003d" .string "\fanode@gorbag\003" .string "" .string "" .string "<" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .zero 87 .zero 2 .word 74 .string "\203P" .string "" .string "" .string "Ix\234\313`\311\343`\2209.\270~\315\265\265\266I\377\377\007\245d0b\205\fE\f\314)\f<\211y\371)\251\016\351\371EI\211\351\314\f\f\f6\fP" .string "" .string "I\021\022\320" .zero 98 .zero 2 .word 63 .string "\203h\004n\t" .string "\034\307\361bt\333\347\027\030b\377\377Rdl" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001k" .string "\001\001jjjjjjjjjjr" .string "\003d" .string "\fanode@gorbag\003" .string "" .string "" .string "=" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .zero 46 .zero 2 .word 115 .string "\203P" .string "" .string "" .string "rx\234\313`\311\343d\2209\3761\251\344\366sq\211\244\377\377\203Rr\030\030\030\030I\"\262\031\030\031\263\340\240\210\2019\205\201'1/?%\325!=\277()1\235\031\250\310\226\001\n" .string "\320\274\027F" .zero 90 .zero 2 .word 71 .string "\203h\004n\b" .string "\034\307\201\021\336\373*\006b\377\377Rdh\001h\001h\001h\001h\001h\001h\001h\001h\001h\001h\001h\001a\002r" .string "\003d" .string "\fanode@gorbag\003" .string "" .string "" .string ">" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .zero 85 .zero 2 .word 76 .string "\203P" .string "" .string "" .string "Kx\234\313`\311\343`\2209\336(x\357\267\026[\322\377\377A)\031\214\330a\"S\021\003s\n\003Ob^~J\252Cz~QRb:3\003\003\203\035\003\024" .string "" .string "LR\022\245" .zero 97 .zero 2 .word 64 .string "\203h\004n\t" .string "\034\307q\335\213\222\016\357\360b\377\377Rdh\001h\001h\001h\001h\001h\001h\001h\001h\001h\001h\001h\001a\003r" .string "\003d" .string "\fanode@gorbag\003" .string "" .string "" .string "?" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .zero 84 .zero 2 .word 77 .string "\203P" .string "" .string "" .string "Lx\234\313`\311\343d\2209^x\267{\022\337\373\017I\377\377\007\245d0b\207\211\314E\f\314)\f<\211y\371)\251\016\351\371EI\211\351\314\f\f\f\366\fP" .string "" .string "\300n\024e" .zero 96 .zero 2 .word 65 .string "\203h\004n\t" .string "\034\307\261\326\276b\312h\002b\377\377Rdh\001h\001h\001h\001h\001h\001h\001h\001h\001h\001h\001h\001a\004r" .string "\003d" .string "\fanode@gorbag\003" .string "" .string "" .string "@" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .zero 84 .zero 2 .word 77 .string "\203P" .string "" .string "" .string "Lx\234\313`\311\343d\2209\276\361\332\276\244S\031LI\377\377\007\245d0b\207\211,E\f\314)\f<\211y\371)\251\016\351\371EI\211\351\314\f\f\f\016\fP" .string "" .string "\244^\023\352" .zero 96 .zero 2 .word 65 .string "\203h\004n\007" .string "\034\307U\3342\312\017b\377\377Rdl" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001l" .string "" .string "" .string "\001k" .string "\001\005jjjjjjjjjjr" .string "\003d" .string "\fanode@gorbag\003" .string "" .string "" .string "A" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .zero 48 .zero 2 .word 113 .string "\203P" .string "" .string "" .string "px\234\313`\311cg\2209\036z\307\350\024\177\322\377\377A)9\f\f\f\214$\021\331\f\214\254YpP\304\300\234\302\300\223\230\227\237\222\352\220\236_\224\224\230\316\fT\344\310" .string "\005" .string ".t\025\320" .zero 92 .zero 2 .word 69 .string "\203h\004n\t" .string "\034\307\361bt\333\347\027\030b\377\377Rdh\001h\001h\001h\001h\001h\001h\001h\001h\001h\001h\001h\001a\006r" .string "\003d" .string "\fanode@gorbag\003" .string "" .string "" .string "B" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .zero 84 .zero 2 .word 77 .string "\203P" .string "" .string "" .string "Lx\234\313`\311\343d\2209\3761\251\344\366sq\211\244\377\377\203R2\030\261\303D\266\"\006\346\024\006\236\304\274\374\224T\207\364\374\242\244\304tf\006\006\006'\006(" .string "" .string "\233{\023\313" .zero 96 .zero 2 .word 65 .string "\203h\004n\007" .string "\034\307;I8\224\001b\377\377Rdh\001h\001h\001h\001h\001h\001h\001h\001h\001h\001h\001h\001a\007r" .string "\003d" .string "\fanode@gorbag\003" .string "" .string "" .string "C" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .zero 86 .zero 2 .word 75 .string "\203P" .string "" .string "" .string "Jx\234\313`\311cg\2209n\355i1\2051\351\377\377\240\224\fF\3540\221\275\210\2019\205\201'1/?%\325!=\277()1\235\231\201\201\301\231\001\n" .string "\365\025\021d" .zero 99 .zero 2 .word 62 .string "\203h\004n\b" .string "\034\307\021\257\254\326\255=b\377\377Rdh\001h\001h\001h\001h\001h\001h\001h\001h\001h\001h\001h\001a\br" .string "\003d" .string "\fanode@gorbag\003" .string "" .string "" .string "D" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .zero 85 .zero 2 .word 76 .string "\203P" .string "" .string "" .string "Kx\234\313`\311\343`\2209.\270~\315\265\265\266I\377\377\007\245d0b\207\211\034E\f\314)\f<\211y\371)\251\016\351\371EI\211\351\314\f\f\f.\fP" .string "" .string "p\342\023B" .zero 97 .zero 2 .word 64 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "r" .align 3 .LC1: .string "ls -l" .align 3 .LC2: .string "Unable to popen: %s\n" .text .align 2 .global main .type main, %function main: .LFB6: .cfi_startproc mov x12, 8256 sub sp, sp, x12 .cfi_def_cfa_offset 8256 stp x29, x30, [sp] .cfi_offset 29, -8256 .cfi_offset 30, -8248 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -8240 str w0, [sp, 44] str x1, [sp, 32] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 8248] mov x1, 0 adrp x0, .LC0 add x1, x0, :lo12:.LC0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl popen str x0, [sp, 48] ldr x0, [sp, 48] cmp x0, 0 bne .L4 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x19, [x0] bl __errno_location ldr w0, [x0] bl strerror mov x2, x0 adrp x0, .LC2 add x1, x0, :lo12:.LC2 mov x0, x19 bl fprintf mov w0, 1 b .L6 .L5: adrp x0, :got:stdout ldr x0, [x0, #:got_lo12:stdout] ldr x1, [x0] add x0, sp, 56 bl fputs .L4: add x0, sp, 56 ldr x2, [sp, 48] mov w1, 8192 bl fgets cmp x0, 0 bne .L5 ldr x0, [sp, 48] bl pclose mov w0, 0 .L6: mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 8248] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L7 bl __stack_chk_fail .L7: mov w0, w1 ldr x19, [sp, 16] ldp x29, x30, [sp] mov x12, 8256 add sp, sp, x12 .cfi_restore 29 .cfi_restore 30 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "postcondition" .text .align 2 .global sineorder3 .type sineorder3, %function sineorder3: .LFB0: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str d0, [sp, 24] ldr d1, [sp, 24] fmov d0, -2.0e+0 fcmpe d1, d0 bgt .L10 b .L2 .L10: ldr d1, [sp, 24] fmov d0, 2.0e+0 fcmpe d1, d0 bmi .L11 b .L2 .L11: mov w0, 1 b .L5 .L2: mov w0, 0 .L5: bl __CPROVER_assume ldr d0, [sp, 24] adrp x0, .LC1 ldr d1, [x0, #:lo12:.LC1] fmul d1, d0, d1 ldr d0, [sp, 24] fmul d2, d0, d0 ldr d0, [sp, 24] fmul d0, d2, d0 adrp x0, .LC2 ldr d2, [x0, #:lo12:.LC2] fmul d0, d0, d2 fsub d0, d1, d0 str d0, [sp, 40] ldr d1, [sp, 40] fmov d0, -1.0e+0 fcmpe d1, d0 bgt .L12 b .L6 .L12: ldr d1, [sp, 40] fmov d0, 1.0e+0 fcmpe d1, d0 bmi .L13 b .L6 .L13: mov w0, 1 b .L9 .L6: mov w0, 0 .L9: adrp x1, .LC0 add x1, x1, :lo12:.LC0 bl __CPROVER_assert nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size sineorder3, .-sineorder3 .section .rodata .align 3 .LC1: .word -1532056380 .word 1072598728 .align 3 .LC2: .word -347744385 .word 1069581125 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global CountA .type CountA, %function CountA: .LFB0: .cfi_startproc sub sp, sp, #32 .cfi_def_cfa_offset 32 str x0, [sp, 8] str wzr, [sp, 28] ldr x0, [sp, 8] cmp x0, 0 bne .L4 mov w0, 0 b .L3 .L7: ldr x0, [sp, 8] ldrb w0, [x0] cmp w0, 97 beq .L5 ldr x0, [sp, 8] ldrb w0, [x0] cmp w0, 65 bne .L6 .L5: ldr w0, [sp, 28] add w0, w0, 1 str w0, [sp, 28] .L6: ldr x0, [sp, 8] add x0, x0, 1 str x0, [sp, 8] .L4: ldr x0, [sp, 8] ldrb w0, [x0] cmp w0, 0 bne .L7 ldr w0, [sp, 28] .L3: add sp, sp, 32 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size CountA, .-CountA .section .rodata .align 3 .LC0: .string "Enter your name : " .align 3 .LC1: .string "%[^'\n']s" .align 3 .LC2: .string "Count Of A/a is : %d\n" .text .align 2 .global main .type main, %function main: .LFB1: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 40] mov x1, 0 str wzr, [sp, 20] adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf add x0, sp, 24 mov x1, x0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl __isoc99_scanf add x0, sp, 24 bl CountA str w0, [sp, 20] ldr w1, [sp, 20] adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 40] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L10 bl __stack_chk_fail .L10: mov w0, w1 ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "nop" .align 3 .LC1: .string "N" .align 3 .LC2: .string "add" .align 3 .LC3: .string "c,a,b" .align 3 .LC4: .string "addu" .align 3 .LC5: .string "sub" .align 3 .LC6: .string "subu" .align 3 .LC7: .string "mult" .align 3 .LC8: .string "multu" .align 3 .LC9: .string "div" .align 3 .LC10: .string "divu" .align 3 .LC11: .string "and" .align 3 .LC12: .string "or" .align 3 .LC13: .string "xor" .align 3 .LC14: .string "sll" .align 3 .LC15: .string "sra" .align 3 .LC16: .string "srl" .align 3 .LC17: .string "seq" .align 3 .LC18: .string "sne" .align 3 .LC19: .string "slt" .align 3 .LC20: .string "sgt" .align 3 .LC21: .string "sle" .align 3 .LC22: .string "sge" .align 3 .LC23: .string "sequ" .align 3 .LC24: .string "sneu" .align 3 .LC25: .string "sltu" .align 3 .LC26: .string "sgtu" .align 3 .LC27: .string "sleu" .align 3 .LC28: .string "sgeu" .align 3 .LC29: .string "mvts" .align 3 .LC30: .string "c,a" .align 3 .LC31: .string "mvfs" .align 3 .LC32: .string "bswap" .align 3 .LC33: .string "lut" .align 3 .LC34: .string "addi" .align 3 .LC35: .string "b,a,I" .align 3 .LC36: .string "addui" .align 3 .LC37: .string "b,a,i" .align 3 .LC38: .string "subi" .align 3 .LC39: .string "subui" .align 3 .LC40: .string "andi" .align 3 .LC41: .string "ori" .align 3 .LC42: .string "xori" .align 3 .LC43: .string "slli" .align 3 .LC44: .string "srai" .align 3 .LC45: .string "srli" .align 3 .LC46: .string "seqi" .align 3 .LC47: .string "snei" .align 3 .LC48: .string "slti" .align 3 .LC49: .string "sgti" .align 3 .LC50: .string "slei" .align 3 .LC51: .string "sgei" .align 3 .LC52: .string "sequi" .align 3 .LC53: .string "sneui" .align 3 .LC54: .string "sltui" .align 3 .LC55: .string "sgtui" .align 3 .LC56: .string "sleui" .align 3 .LC57: .string "sgeui" .align 3 .LC58: .string "mov" .align 3 .LC59: .string "b,P" .align 3 .LC60: .string "movu" .align 3 .LC61: .string "lhi" .align 3 .LC62: .string "b,i" .align 3 .LC63: .string "lui" .align 3 .LC64: .string "sethi" .align 3 .LC65: .string "lb" .align 3 .LC66: .string "lbu" .align 3 .LC67: .string "ldstbu" .align 3 .LC68: .string "sb" .align 3 .LC69: .string "lh" .align 3 .LC70: .string "lhu" .align 3 .LC71: .string "ldsthu" .align 3 .LC72: .string "sh" .align 3 .LC73: .string "lw" .align 3 .LC74: .string "sw" .align 3 .LC75: .string "ldstw" .align 3 .LC76: .string "beqz" .align 3 .LC77: .string "a,d" .align 3 .LC78: .string "bnez" .align 3 .LC79: .string "beq" .align 3 .LC80: .string "bne" .align 3 .LC81: .string "j" .align 3 .LC82: .string "D" .align 3 .LC83: .string "jal" .align 3 .LC84: .string "break" .align 3 .LC85: .string "trap" .align 3 .LC86: .string "rfe" .align 3 .LC87: .string "call" .align 3 .LC88: .string "jr" .align 3 .LC89: .string "a" .align 3 .LC90: .string "jalr" .align 3 .LC91: .string "retr" .align 3 .LC92: .string "" .section .data.rel.ro.local,"aw" .align 3 .type dlx_opcodes, %object .size dlx_opcodes, 1992 dlx_opcodes: .xword .LC0 .xword 0 .xword .LC1 .xword .LC2 .xword 32 .xword .LC3 .xword .LC4 .xword 33 .xword .LC3 .xword .LC5 .xword 34 .xword .LC3 .xword .LC6 .xword 35 .xword .LC3 .xword .LC7 .xword 5 .xword .LC3 .xword .LC8 .xword 6 .xword .LC3 .xword .LC9 .xword 7 .xword .LC3 .xword .LC10 .xword 8 .xword .LC3 .xword .LC11 .xword 36 .xword .LC3 .xword .LC12 .xword 37 .xword .LC3 .xword .LC13 .xword 38 .xword .LC3 .xword .LC14 .xword 4 .xword .LC3 .xword .LC15 .xword 7 .xword .LC3 .xword .LC16 .xword 6 .xword .LC3 .xword .LC17 .xword 40 .xword .LC3 .xword .LC18 .xword 41 .xword .LC3 .xword .LC19 .xword 42 .xword .LC3 .xword .LC20 .xword 43 .xword .LC3 .xword .LC21 .xword 44 .xword .LC3 .xword .LC22 .xword 45 .xword .LC3 .xword .LC23 .xword 16 .xword .LC3 .xword .LC24 .xword 17 .xword .LC3 .xword .LC25 .xword 18 .xword .LC3 .xword .LC26 .xword 19 .xword .LC3 .xword .LC27 .xword 20 .xword .LC3 .xword .LC28 .xword 21 .xword .LC3 .xword .LC29 .xword 48 .xword .LC30 .xword .LC31 .xword 49 .xword .LC30 .xword .LC32 .xword 50 .xword .LC3 .xword .LC33 .xword 51 .xword .LC3 .xword .LC34 .xword 536870912 .xword .LC35 .xword .LC36 .xword 603979776 .xword .LC37 .xword .LC38 .xword 671088640 .xword .LC35 .xword .LC39 .xword 738197504 .xword .LC37 .xword .LC40 .xword 805306368 .xword .LC37 .xword .LC41 .xword 872415232 .xword .LC37 .xword .LC42 .xword 939524096 .xword .LC37 .xword .LC43 .xword 3623878656 .xword .LC37 .xword .LC44 .xword 3758096384 .xword .LC37 .xword .LC45 .xword 3690987520 .xword .LC37 .xword .LC46 .xword 1610612736 .xword .LC37 .xword .LC47 .xword 1677721600 .xword .LC37 .xword .LC48 .xword 1744830464 .xword .LC37 .xword .LC49 .xword 1811939328 .xword .LC37 .xword .LC50 .xword 1879048192 .xword .LC37 .xword .LC51 .xword 1946157056 .xword .LC37 .xword .LC52 .xword 3221225472 .xword .LC37 .xword .LC53 .xword 3288334336 .xword .LC37 .xword .LC54 .xword 3355443200 .xword .LC37 .xword .LC55 .xword 3422552064 .xword .LC37 .xword .LC56 .xword 3489660928 .xword .LC37 .xword .LC57 .xword 3556769792 .xword .LC37 .xword .LC58 .xword 536870912 .xword .LC59 .xword .LC60 .xword 603979776 .xword .LC59 .xword .LC61 .xword 1006632960 .xword .LC62 .xword .LC63 .xword 1006632960 .xword .LC62 .xword .LC64 .xword 1006632960 .xword .LC62 .xword .LC65 .xword 2147483648 .xword .LC35 .xword .LC66 .xword 2415919104 .xword .LC35 .xword .LC67 .xword 2550136832 .xword .LC35 .xword .LC68 .xword 2684354560 .xword .LC35 .xword .LC69 .xword 2214592512 .xword .LC35 .xword .LC70 .xword 2483027968 .xword .LC35 .xword .LC71 .xword 2617245696 .xword .LC35 .xword .LC72 .xword 2751463424 .xword .LC35 .xword .LC73 .xword 2348810240 .xword .LC35 .xword .LC74 .xword 2885681152 .xword .LC35 .xword .LC75 .xword 2952790016 .xword .LC35 .xword .LC76 .xword 268435456 .xword .LC77 .xword .LC78 .xword 335544320 .xword .LC77 .xword .LC79 .xword 268435456 .xword .LC77 .xword .LC80 .xword 335544320 .xword .LC77 .xword .LC81 .xword 134217728 .xword .LC82 .xword .LC83 .xword 201326592 .xword .LC82 .xword .LC84 .xword 1342177280 .xword .LC82 .xword .LC85 .xword 1140850688 .xword .LC82 .xword .LC86 .xword 1073741824 .xword .LC1 .xword .LC87 .xword 134217728 .xword .LC82 .xword .LC88 .xword 1207959552 .xword .LC89 .xword .LC90 .xword 1275068416 .xword .LC89 .xword .LC91 .xword 1207959552 .xword .LC89 .xword .LC92 .xword 0 .xword .LC92 .global num_dlx_opcodes .section .rodata .align 2 .type num_dlx_opcodes, %object .size num_dlx_opcodes, 4 num_dlx_opcodes: .word 82 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global RandomFunc .type RandomFunc, %function RandomFunc: .LFB0: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 56] mov x1, 0 ldr x0, [sp, 24] ldrb w1, [x0] mov w0, -37 eor w0, w1, w0 and w0, w0, 255 strb w0, [sp, 48] strb wzr, [sp, 47] b .L2 .L3: ldrb w0, [sp, 48] mov w1, w0 ldrb w0, [sp, 48] lsr w0, w0, 1 and w0, w0, 255 and w0, w0, 6 orr w0, w0, 1 lsl w1, w1, w0 ldrb w0, [sp, 47] and w2, w1, 255 sxtw x0, w0 add x1, sp, 48 strb w2, [x1, x0] ldrb w0, [sp, 48] mov w1, w0 ldrb w0, [sp, 48] lsr w0, w0, 4 and w0, w0, 255 and w0, w0, 6 orr w0, w0, 1 lsl w0, w1, w0 and w0, w0, 255 strb w0, [sp, 48] ldrb w0, [sp, 47] add w0, w0, 2 strb w0, [sp, 47] .L2: ldrb w0, [sp, 47] cmp w0, 0 beq .L3 strb wzr, [sp, 47] b .L4 .L5: ldrb w0, [sp, 48] mov w1, w0 ldrb w0, [sp, 48] lsr w0, w0, 1 and w0, w0, 255 and w0, w0, 6 orr w0, w0, 1 lsl w1, w1, w0 ldrb w0, [sp, 47] and w2, w1, 255 sxtw x0, w0 add x1, sp, 48 strb w2, [x1, x0] ldrb w0, [sp, 47] sxtw x0, w0 add x1, sp, 48 ldrb w1, [x1, x0] ldrb w0, [sp, 48] ldrb w3, [sp, 47] orr w0, w1, w0 and w2, w0, 255 sxtw x0, w3 add x1, sp, 48 strb w2, [x1, x0] ldrb w0, [sp, 47] add w0, w0, 2 strb w0, [sp, 47] .L4: ldrb w0, [sp, 47] cmp w0, 0 beq .L5 ldrb w0, [sp, 48] eor w0, w0, 4 and w0, w0, 255 orr w0, w0, -32 and w1, w0, 255 ldr x0, [sp, 16] strb w1, [x0] nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 56] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L6 bl __stack_chk_fail .L6: ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size RandomFunc, .-RandomFunc .align 2 .global megaInit .type megaInit, %function megaInit: .LFB1: .cfi_startproc nop ret .cfi_endproc .LFE1: .size megaInit, .-megaInit .section .rodata .align 3 .LC0: .string "Call this program with %i arguments\n" .align 3 .LC1: .string "You win!" .align 3 .LC2: .string "%u\n" .text .align 2 .global main .type main, %function main: .LFB2: .cfi_startproc stp x29, x30, [sp, -80]! .cfi_def_cfa_offset 80 .cfi_offset 29, -80 .cfi_offset 30, -72 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 72] mov x1, 0 bl megaInit ldr w0, [sp, 28] cmp w0, 2 beq .L9 mov w1, 1 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf mov w0, -1 bl exit .L9: str wzr, [sp, 48] b .L10 .L11: ldrsw x0, [sp, 48] add x0, x0, 1 lsl x0, x0, 3 ldr x1, [sp, 16] add x0, x1, x0 ldr x0, [x0] mov w2, 10 mov x1, 0 bl strtoul strb w0, [sp, 47] ldrsw x0, [sp, 48] add x1, sp, 56 ldrb w2, [sp, 47] strb w2, [x1, x0] ldr w0, [sp, 48] add w0, w0, 1 str w0, [sp, 48] .L10: ldr w0, [sp, 48] cmp w0, 0 ble .L11 add x1, sp, 64 add x0, sp, 56 bl RandomFunc ldrb w0, [sp, 64] cmp w0, 228 bne .L12 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts .L12: str wzr, [sp, 52] b .L13 .L14: ldrsw x0, [sp, 52] add x1, sp, 64 ldrb w0, [x1, x0] mov w1, w0 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf ldr w0, [sp, 52] add w0, w0, 1 str w0, [sp, 52] .L13: ldr w0, [sp, 52] cmp w0, 0 ble .L14 mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 72] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L16 bl __stack_chk_fail .L16: mov w0, w1 ldp x29, x30, [sp], 80 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE2: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .type pack_3d, %function pack_3d: .LFB0: .cfi_startproc sub sp, sp, #80 .cfi_def_cfa_offset 80 str x0, [sp, 24] str x1, [sp, 16] str x2, [sp, 8] ldr x0, [sp, 8] ldr w0, [x0] str w0, [sp, 56] ldr x0, [sp, 8] ldr w0, [x0, 4] str w0, [sp, 60] ldr x0, [sp, 8] ldr w0, [x0, 8] str w0, [sp, 64] ldr x0, [sp, 8] ldr w0, [x0, 12] str w0, [sp, 68] ldr x0, [sp, 8] ldr w0, [x0, 16] str w0, [sp, 72] str wzr, [sp, 36] str wzr, [sp, 52] b .L2 .L7: ldr w1, [sp, 52] ldr w0, [sp, 72] mul w0, w1, w0 str w0, [sp, 76] str wzr, [sp, 48] b .L3 .L6: ldr w1, [sp, 48] ldr w0, [sp, 68] mul w0, w1, w0 ldr w1, [sp, 76] add w0, w1, w0 str w0, [sp, 40] str wzr, [sp, 44] b .L4 .L5: ldr w0, [sp, 40] add w1, w0, 1 str w1, [sp, 40] sxtw x0, w0 lsl x0, x0, 3 ldr x1, [sp, 24] add x1, x1, x0 ldr w0, [sp, 36] add w2, w0, 1 str w2, [sp, 36] sxtw x0, w0 lsl x0, x0, 3 ldr x2, [sp, 16] add x0, x2, x0 ldr d0, [x1] str d0, [x0] ldr w0, [sp, 44] add w0, w0, 1 str w0, [sp, 44] .L4: ldr w1, [sp, 44] ldr w0, [sp, 56] cmp w1, w0 blt .L5 ldr w0, [sp, 48] add w0, w0, 1 str w0, [sp, 48] .L3: ldr w1, [sp, 48] ldr w0, [sp, 60] cmp w1, w0 blt .L6 ldr w0, [sp, 52] add w0, w0, 1 str w0, [sp, 52] .L2: ldr w1, [sp, 52] ldr w0, [sp, 64] cmp w1, w0 blt .L7 nop nop add sp, sp, 80 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size pack_3d, .-pack_3d .align 2 .type unpack_3d, %function unpack_3d: .LFB1: .cfi_startproc sub sp, sp, #80 .cfi_def_cfa_offset 80 str x0, [sp, 24] str x1, [sp, 16] str x2, [sp, 8] ldr x0, [sp, 8] ldr w0, [x0] str w0, [sp, 56] ldr x0, [sp, 8] ldr w0, [x0, 4] str w0, [sp, 60] ldr x0, [sp, 8] ldr w0, [x0, 8] str w0, [sp, 64] ldr x0, [sp, 8] ldr w0, [x0, 12] str w0, [sp, 68] ldr x0, [sp, 8] ldr w0, [x0, 16] str w0, [sp, 72] str wzr, [sp, 40] str wzr, [sp, 52] b .L9 .L14: ldr w1, [sp, 52] ldr w0, [sp, 72] mul w0, w1, w0 str w0, [sp, 76] str wzr, [sp, 48] b .L10 .L13: ldr w1, [sp, 48] ldr w0, [sp, 68] mul w0, w1, w0 ldr w1, [sp, 76] add w0, w1, w0 str w0, [sp, 36] str wzr, [sp, 44] b .L11 .L12: ldr w0, [sp, 40] add w1, w0, 1 str w1, [sp, 40] sxtw x0, w0 lsl x0, x0, 3 ldr x1, [sp, 24] add x1, x1, x0 ldr w0, [sp, 36] add w2, w0, 1 str w2, [sp, 36] sxtw x0, w0 lsl x0, x0, 3 ldr x2, [sp, 16] add x0, x2, x0 ldr d0, [x1] str d0, [x0] ldr w0, [sp, 44] add w0, w0, 1 str w0, [sp, 44] .L11: ldr w1, [sp, 44] ldr w0, [sp, 56] cmp w1, w0 blt .L12 ldr w0, [sp, 48] add w0, w0, 1 str w0, [sp, 48] .L10: ldr w1, [sp, 48] ldr w0, [sp, 60] cmp w1, w0 blt .L13 ldr w0, [sp, 52] add w0, w0, 1 str w0, [sp, 52] .L9: ldr w1, [sp, 52] ldr w0, [sp, 64] cmp w1, w0 blt .L14 nop nop add sp, sp, 80 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size unpack_3d, .-unpack_3d .align 2 .type unpack_3d_permute1_1, %function unpack_3d_permute1_1: .LFB2: .cfi_startproc sub sp, sp, #80 .cfi_def_cfa_offset 80 str x0, [sp, 24] str x1, [sp, 16] str x2, [sp, 8] ldr x0, [sp, 8] ldr w0, [x0] str w0, [sp, 56] ldr x0, [sp, 8] ldr w0, [x0, 4] str w0, [sp, 60] ldr x0, [sp, 8] ldr w0, [x0, 8] str w0, [sp, 64] ldr x0, [sp, 8] ldr w0, [x0, 12] str w0, [sp, 68] ldr x0, [sp, 8] ldr w0, [x0, 16] str w0, [sp, 72] str wzr, [sp, 40] str wzr, [sp, 52] b .L16 .L21: ldr w1, [sp, 52] ldr w0, [sp, 68] mul w0, w1, w0 str w0, [sp, 76] str wzr, [sp, 48] b .L17 .L20: ldr w1, [sp, 76] ldr w0, [sp, 48] add w0, w1, w0 str w0, [sp, 36] str wzr, [sp, 44] b .L18 .L19: ldr w0, [sp, 40] add w1, w0, 1 str w1, [sp, 40] sxtw x0, w0 lsl x0, x0, 3 ldr x1, [sp, 24] add x1, x1, x0 ldrsw x0, [sp, 36] lsl x0, x0, 3 ldr x2, [sp, 16] add x0, x2, x0 ldr d0, [x1] str d0, [x0] ldr w0, [sp, 44] add w0, w0, 1 str w0, [sp, 44] ldr w1, [sp, 36] ldr w0, [sp, 72] add w0, w1, w0 str w0, [sp, 36] .L18: ldr w1, [sp, 44] ldr w0, [sp, 56] cmp w1, w0 blt .L19 ldr w0, [sp, 48] add w0, w0, 1 str w0, [sp, 48] .L17: ldr w1, [sp, 48] ldr w0, [sp, 60] cmp w1, w0 blt .L20 ldr w0, [sp, 52] add w0, w0, 1 str w0, [sp, 52] .L16: ldr w1, [sp, 52] ldr w0, [sp, 64] cmp w1, w0 blt .L21 nop nop add sp, sp, 80 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE2: .size unpack_3d_permute1_1, .-unpack_3d_permute1_1 .align 2 .type unpack_3d_permute1_2, %function unpack_3d_permute1_2: .LFB3: .cfi_startproc sub sp, sp, #80 .cfi_def_cfa_offset 80 str x0, [sp, 24] str x1, [sp, 16] str x2, [sp, 8] ldr x0, [sp, 8] ldr w0, [x0] str w0, [sp, 56] ldr x0, [sp, 8] ldr w0, [x0, 4] str w0, [sp, 60] ldr x0, [sp, 8] ldr w0, [x0, 8] str w0, [sp, 64] ldr x0, [sp, 8] ldr w0, [x0, 12] str w0, [sp, 68] ldr x0, [sp, 8] ldr w0, [x0, 16] str w0, [sp, 72] str wzr, [sp, 40] str wzr, [sp, 52] b .L23 .L28: ldr w1, [sp, 52] ldr w0, [sp, 68] mul w0, w1, w0 str w0, [sp, 76] str wzr, [sp, 48] b .L24 .L27: ldr w0, [sp, 48] lsl w0, w0, 1 ldr w1, [sp, 76] add w0, w1, w0 str w0, [sp, 36] str wzr, [sp, 44] b .L25 .L26: ldr w0, [sp, 40] add w1, w0, 1 str w1, [sp, 40] sxtw x0, w0 lsl x0, x0, 3 ldr x1, [sp, 24] add x1, x1, x0 ldrsw x0, [sp, 36] lsl x0, x0, 3 ldr x2, [sp, 16] add x0, x2, x0 ldr d0, [x1] str d0, [x0] ldr w0, [sp, 40] add w1, w0, 1 str w1, [sp, 40] sxtw x0, w0 lsl x0, x0, 3 ldr x1, [sp, 24] add x1, x1, x0 ldrsw x0, [sp, 36] add x0, x0, 1 lsl x0, x0, 3 ldr x2, [sp, 16] add x0, x2, x0 ldr d0, [x1] str d0, [x0] ldr w0, [sp, 44] add w0, w0, 1 str w0, [sp, 44] ldr w1, [sp, 36] ldr w0, [sp, 72] add w0, w1, w0 str w0, [sp, 36] .L25: ldr w1, [sp, 44] ldr w0, [sp, 56] cmp w1, w0 blt .L26 ldr w0, [sp, 48] add w0, w0, 1 str w0, [sp, 48] .L24: ldr w1, [sp, 48] ldr w0, [sp, 60] cmp w1, w0 blt .L27 ldr w0, [sp, 52] add w0, w0, 1 str w0, [sp, 52] .L23: ldr w1, [sp, 52] ldr w0, [sp, 64] cmp w1, w0 blt .L28 nop nop add sp, sp, 80 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE3: .size unpack_3d_permute1_2, .-unpack_3d_permute1_2 .align 2 .type unpack_3d_permute1_n, %function unpack_3d_permute1_n: .LFB4: .cfi_startproc sub sp, sp, #96 .cfi_def_cfa_offset 96 str x0, [sp, 24] str x1, [sp, 16] str x2, [sp, 8] ldr x0, [sp, 8] ldr w0, [x0] str w0, [sp, 68] ldr x0, [sp, 8] ldr w0, [x0, 4] str w0, [sp, 72] ldr x0, [sp, 8] ldr w0, [x0, 8] str w0, [sp, 76] ldr x0, [sp, 8] ldr w0, [x0, 12] str w0, [sp, 80] ldr x0, [sp, 8] ldr w0, [x0, 16] str w0, [sp, 84] ldr x0, [sp, 8] ldr w0, [x0, 20] str w0, [sp, 88] str wzr, [sp, 44] str wzr, [sp, 64] b .L30 .L37: ldr w1, [sp, 64] ldr w0, [sp, 80] mul w0, w1, w0 str w0, [sp, 92] str wzr, [sp, 60] b .L31 .L36: ldr w1, [sp, 88] ldr w0, [sp, 60] mul w0, w1, w0 ldr w1, [sp, 92] add w0, w1, w0 str w0, [sp, 52] str wzr, [sp, 56] b .L32 .L35: ldr w0, [sp, 52] str w0, [sp, 40] str wzr, [sp, 48] b .L33 .L34: ldr w0, [sp, 44] add w1, w0, 1 str w1, [sp, 44] sxtw x0, w0 lsl x0, x0, 3 ldr x1, [sp, 24] add x1, x1, x0 ldr w0, [sp, 40] add w2, w0, 1 str w2, [sp, 40] sxtw x0, w0 lsl x0, x0, 3 ldr x2, [sp, 16] add x0, x2, x0 ldr d0, [x1] str d0, [x0] ldr w0, [sp, 48] add w0, w0, 1 str w0, [sp, 48] .L33: ldr w1, [sp, 48] ldr w0, [sp, 88] cmp w1, w0 blt .L34 ldr w0, [sp, 56] add w0, w0, 1 str w0, [sp, 56] ldr w1, [sp, 52] ldr w0, [sp, 84] add w0, w1, w0 str w0, [sp, 52] .L32: ldr w1, [sp, 56] ldr w0, [sp, 68] cmp w1, w0 blt .L35 ldr w0, [sp, 60] add w0, w0, 1 str w0, [sp, 60] .L31: ldr w1, [sp, 60] ldr w0, [sp, 72] cmp w1, w0 blt .L36 ldr w0, [sp, 64] add w0, w0, 1 str w0, [sp, 64] .L30: ldr w1, [sp, 64] ldr w0, [sp, 76] cmp w1, w0 blt .L37 nop nop add sp, sp, 96 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE4: .size unpack_3d_permute1_n, .-unpack_3d_permute1_n .align 2 .type unpack_3d_permute2_1, %function unpack_3d_permute2_1: .LFB5: .cfi_startproc sub sp, sp, #80 .cfi_def_cfa_offset 80 str x0, [sp, 24] str x1, [sp, 16] str x2, [sp, 8] ldr x0, [sp, 8] ldr w0, [x0] str w0, [sp, 60] ldr x0, [sp, 8] ldr w0, [x0, 4] str w0, [sp, 64] ldr x0, [sp, 8] ldr w0, [x0, 8] str w0, [sp, 68] ldr x0, [sp, 8] ldr w0, [x0, 12] str w0, [sp, 72] ldr x0, [sp, 8] ldr w0, [x0, 16] str w0, [sp, 76] str wzr, [sp, 44] str wzr, [sp, 56] b .L39 .L44: str wzr, [sp, 52] b .L40 .L43: ldr w1, [sp, 52] ldr w0, [sp, 76] mul w0, w1, w0 ldr w1, [sp, 56] add w0, w1, w0 str w0, [sp, 40] str wzr, [sp, 48] b .L41 .L42: ldr w0, [sp, 44] add w1, w0, 1 str w1, [sp, 44] sxtw x0, w0 lsl x0, x0, 3 ldr x1, [sp, 24] add x1, x1, x0 ldrsw x0, [sp, 40] lsl x0, x0, 3 ldr x2, [sp, 16] add x0, x2, x0 ldr d0, [x1] str d0, [x0] ldr w0, [sp, 48] add w0, w0, 1 str w0, [sp, 48] ldr w1, [sp, 40] ldr w0, [sp, 72] add w0, w1, w0 str w0, [sp, 40] .L41: ldr w1, [sp, 48] ldr w0, [sp, 60] cmp w1, w0 blt .L42 ldr w0, [sp, 52] add w0, w0, 1 str w0, [sp, 52] .L40: ldr w1, [sp, 52] ldr w0, [sp, 64] cmp w1, w0 blt .L43 ldr w0, [sp, 56] add w0, w0, 1 str w0, [sp, 56] .L39: ldr w1, [sp, 56] ldr w0, [sp, 68] cmp w1, w0 blt .L44 nop nop add sp, sp, 80 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE5: .size unpack_3d_permute2_1, .-unpack_3d_permute2_1 .align 2 .type unpack_3d_permute2_2, %function unpack_3d_permute2_2: .LFB6: .cfi_startproc sub sp, sp, #80 .cfi_def_cfa_offset 80 str x0, [sp, 24] str x1, [sp, 16] str x2, [sp, 8] ldr x0, [sp, 8] ldr w0, [x0] str w0, [sp, 60] ldr x0, [sp, 8] ldr w0, [x0, 4] str w0, [sp, 64] ldr x0, [sp, 8] ldr w0, [x0, 8] str w0, [sp, 68] ldr x0, [sp, 8] ldr w0, [x0, 12] str w0, [sp, 72] ldr x0, [sp, 8] ldr w0, [x0, 16] str w0, [sp, 76] str wzr, [sp, 44] str wzr, [sp, 56] b .L46 .L51: str wzr, [sp, 52] b .L47 .L50: ldr w0, [sp, 56] lsl w1, w0, 1 ldr w2, [sp, 52] ldr w0, [sp, 76] mul w0, w2, w0 add w0, w1, w0 str w0, [sp, 40] str wzr, [sp, 48] b .L48 .L49: ldr w0, [sp, 44] add w1, w0, 1 str w1, [sp, 44] sxtw x0, w0 lsl x0, x0, 3 ldr x1, [sp, 24] add x1, x1, x0 ldrsw x0, [sp, 40] lsl x0, x0, 3 ldr x2, [sp, 16] add x0, x2, x0 ldr d0, [x1] str d0, [x0] ldr w0, [sp, 44] add w1, w0, 1 str w1, [sp, 44] sxtw x0, w0 lsl x0, x0, 3 ldr x1, [sp, 24] add x1, x1, x0 ldrsw x0, [sp, 40] add x0, x0, 1 lsl x0, x0, 3 ldr x2, [sp, 16] add x0, x2, x0 ldr d0, [x1] str d0, [x0] ldr w0, [sp, 48] add w0, w0, 1 str w0, [sp, 48] ldr w1, [sp, 40] ldr w0, [sp, 72] add w0, w1, w0 str w0, [sp, 40] .L48: ldr w1, [sp, 48] ldr w0, [sp, 60] cmp w1, w0 blt .L49 ldr w0, [sp, 52] add w0, w0, 1 str w0, [sp, 52] .L47: ldr w1, [sp, 52] ldr w0, [sp, 64] cmp w1, w0 blt .L50 ldr w0, [sp, 56] add w0, w0, 1 str w0, [sp, 56] .L46: ldr w1, [sp, 56] ldr w0, [sp, 68] cmp w1, w0 blt .L51 nop nop add sp, sp, 80 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size unpack_3d_permute2_2, .-unpack_3d_permute2_2 .align 2 .type unpack_3d_permute2_n, %function unpack_3d_permute2_n: .LFB7: .cfi_startproc sub sp, sp, #96 .cfi_def_cfa_offset 96 str x0, [sp, 24] str x1, [sp, 16] str x2, [sp, 8] ldr x0, [sp, 8] ldr w0, [x0] str w0, [sp, 72] ldr x0, [sp, 8] ldr w0, [x0, 4] str w0, [sp, 76] ldr x0, [sp, 8] ldr w0, [x0, 8] str w0, [sp, 80] ldr x0, [sp, 8] ldr w0, [x0, 12] str w0, [sp, 84] ldr x0, [sp, 8] ldr w0, [x0, 16] str w0, [sp, 88] ldr x0, [sp, 8] ldr w0, [x0, 20] str w0, [sp, 92] str wzr, [sp, 48] str wzr, [sp, 68] b .L53 .L60: str wzr, [sp, 64] b .L54 .L59: ldr w1, [sp, 92] ldr w0, [sp, 68] mul w1, w1, w0 ldr w2, [sp, 64] ldr w0, [sp, 88] mul w0, w2, w0 add w0, w1, w0 str w0, [sp, 56] str wzr, [sp, 60] b .L55 .L58: ldr w0, [sp, 56] str w0, [sp, 44] str wzr, [sp, 52] b .L56 .L57: ldr w0, [sp, 48] add w1, w0, 1 str w1, [sp, 48] sxtw x0, w0 lsl x0, x0, 3 ldr x1, [sp, 24] add x1, x1, x0 ldr w0, [sp, 44] add w2, w0, 1 str w2, [sp, 44] sxtw x0, w0 lsl x0, x0, 3 ldr x2, [sp, 16] add x0, x2, x0 ldr d0, [x1] str d0, [x0] ldr w0, [sp, 52] add w0, w0, 1 str w0, [sp, 52] .L56: ldr w1, [sp, 52] ldr w0, [sp, 92] cmp w1, w0 blt .L57 ldr w0, [sp, 60] add w0, w0, 1 str w0, [sp, 60] ldr w1, [sp, 56] ldr w0, [sp, 84] add w0, w1, w0 str w0, [sp, 56] .L55: ldr w1, [sp, 60] ldr w0, [sp, 72] cmp w1, w0 blt .L58 ldr w0, [sp, 64] add w0, w0, 1 str w0, [sp, 64] .L54: ldr w1, [sp, 64] ldr w0, [sp, 76] cmp w1, w0 blt .L59 ldr w0, [sp, 68] add w0, w0, 1 str w0, [sp, 68] .L53: ldr w1, [sp, 68] ldr w0, [sp, 80] cmp w1, w0 blt .L60 nop nop add sp, sp, 96 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size unpack_3d_permute2_n, .-unpack_3d_permute2_n ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global newQNode .type newQNode, %function newQNode: .LFB6: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str w0, [sp, 28] mov x0, 24 bl malloc str x0, [sp, 40] ldr x0, [sp, 40] ldr w1, [sp, 28] str w1, [x0, 16] ldr x0, [sp, 40] str xzr, [x0, 8] ldr x0, [sp, 40] ldr x1, [x0, 8] ldr x0, [sp, 40] str x1, [x0] ldr x0, [sp, 40] ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size newQNode, .-newQNode .align 2 .global createQueue .type createQueue, %function createQueue: .LFB7: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str w0, [sp, 28] mov x0, 24 bl malloc str x0, [sp, 40] ldr x0, [sp, 40] str wzr, [x0] ldr x0, [sp, 40] str xzr, [x0, 16] ldr x0, [sp, 40] ldr x1, [x0, 16] ldr x0, [sp, 40] str x1, [x0, 8] ldr w1, [sp, 28] ldr x0, [sp, 40] str w1, [x0, 4] ldr x0, [sp, 40] ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size createQueue, .-createQueue .align 2 .global createHash .type createHash, %function createHash: .LFB8: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str w0, [sp, 28] mov x0, 16 bl malloc str x0, [sp, 40] ldr x0, [sp, 40] ldr w1, [sp, 28] str w1, [x0] ldr x0, [sp, 40] ldr w0, [x0] sxtw x0, w0 lsl x0, x0, 3 bl malloc mov x1, x0 ldr x0, [sp, 40] str x1, [x0, 8] str wzr, [sp, 36] b .L6 .L7: ldr x0, [sp, 40] ldr x1, [x0, 8] ldrsw x0, [sp, 36] lsl x0, x0, 3 add x0, x1, x0 str xzr, [x0] ldr w0, [sp, 36] add w0, w0, 1 str w0, [sp, 36] .L6: ldr x0, [sp, 40] ldr w0, [x0] ldr w1, [sp, 36] cmp w1, w0 blt .L7 ldr x0, [sp, 40] ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size createHash, .-createHash .align 2 .global AreAllFramesFull .type AreAllFramesFull, %function AreAllFramesFull: .LFB9: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str x0, [sp, 8] ldr x0, [sp, 8] ldr w1, [x0] ldr x0, [sp, 8] ldr w0, [x0, 4] cmp w1, w0 cset w0, eq and w0, w0, 255 add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE9: .size AreAllFramesFull, .-AreAllFramesFull .align 2 .global isQueueEmpty .type isQueueEmpty, %function isQueueEmpty: .LFB10: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str x0, [sp, 8] ldr x0, [sp, 8] ldr x0, [x0, 16] cmp x0, 0 cset w0, eq and w0, w0, 255 add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE10: .size isQueueEmpty, .-isQueueEmpty .align 2 .global deQueue .type deQueue, %function deQueue: .LFB11: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] bl isQueueEmpty cmp w0, 0 bne .L18 ldr x0, [sp, 24] ldr x1, [x0, 8] ldr x0, [sp, 24] ldr x0, [x0, 16] cmp x1, x0 bne .L16 ldr x0, [sp, 24] str xzr, [x0, 8] .L16: ldr x0, [sp, 24] ldr x0, [x0, 16] str x0, [sp, 40] ldr x0, [sp, 24] ldr x0, [x0, 16] ldr x1, [x0] ldr x0, [sp, 24] str x1, [x0, 16] ldr x0, [sp, 24] ldr x0, [x0, 16] cmp x0, 0 beq .L17 ldr x0, [sp, 24] ldr x0, [x0, 16] str xzr, [x0, 8] .L17: ldr x0, [sp, 40] bl free ldr x0, [sp, 24] ldr w0, [x0] sub w1, w0, #1 ldr x0, [sp, 24] str w1, [x0] b .L13 .L18: nop .L13: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE11: .size deQueue, .-deQueue .align 2 .global Enqueue .type Enqueue, %function Enqueue: .LFB12: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x0, [sp, 40] str x1, [sp, 32] str w2, [sp, 28] ldr x0, [sp, 40] bl AreAllFramesFull cmp w0, 0 beq .L20 ldr x0, [sp, 32] ldr x1, [x0, 8] ldr x0, [sp, 40] ldr x0, [x0, 16] ldr w0, [x0, 16] uxtw x0, w0 lsl x0, x0, 3 add x0, x1, x0 str xzr, [x0] ldr x0, [sp, 40] bl deQueue .L20: ldr w0, [sp, 28] bl newQNode str x0, [sp, 56] ldr x0, [sp, 40] ldr x1, [x0, 8] ldr x0, [sp, 56] str x1, [x0, 8] ldr x0, [sp, 40] bl isQueueEmpty cmp w0, 0 beq .L21 ldr x0, [sp, 40] ldr x1, [sp, 56] str x1, [x0, 8] ldr x0, [sp, 40] ldr x1, [x0, 8] ldr x0, [sp, 40] str x1, [x0, 16] b .L22 .L21: ldr x0, [sp, 40] ldr x0, [x0, 8] ldr x1, [sp, 56] str x1, [x0] ldr x0, [sp, 40] ldr x1, [sp, 56] str x1, [x0, 8] .L22: ldr x0, [sp, 32] ldr x1, [x0, 8] ldr w0, [sp, 28] lsl x0, x0, 3 add x0, x1, x0 ldr x1, [sp, 56] str x1, [x0] ldr x0, [sp, 40] ldr w0, [x0] add w1, w0, 1 ldr x0, [sp, 40] str w1, [x0] nop ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE12: .size Enqueue, .-Enqueue .align 2 .global ReferencePage .type ReferencePage, %function ReferencePage: .LFB13: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x0, [sp, 40] str x1, [sp, 32] str w2, [sp, 28] ldr x0, [sp, 32] ldr x1, [x0, 8] ldr w0, [sp, 28] lsl x0, x0, 3 add x0, x1, x0 ldr x0, [x0] str x0, [sp, 56] ldr x0, [sp, 56] cmp x0, 0 bne .L24 ldr w2, [sp, 28] ldr x1, [sp, 32] ldr x0, [sp, 40] bl Enqueue b .L28 .L24: ldr x0, [sp, 40] ldr x0, [x0, 8] ldr x1, [sp, 56] cmp x1, x0 beq .L28 ldr x0, [sp, 56] ldr x0, [x0] ldr x1, [sp, 56] ldr x1, [x1, 8] str x1, [x0, 8] ldr x0, [sp, 56] ldr x0, [x0, 8] cmp x0, 0 beq .L26 ldr x0, [sp, 56] ldr x0, [x0, 8] ldr x1, [sp, 56] ldr x1, [x1] str x1, [x0] .L26: ldr x0, [sp, 40] ldr x0, [x0, 16] ldr x1, [sp, 56] cmp x1, x0 bne .L27 ldr x0, [sp, 56] ldr x1, [x0] ldr x0, [sp, 40] str x1, [x0, 16] ldr x0, [sp, 40] ldr x0, [x0, 16] str xzr, [x0, 8] .L27: ldr x0, [sp, 40] ldr x1, [x0, 8] ldr x0, [sp, 56] str x1, [x0, 8] ldr x0, [sp, 56] str xzr, [x0] ldr x0, [sp, 56] ldr x0, [x0, 8] ldr x1, [sp, 56] str x1, [x0] ldr x0, [sp, 40] ldr x1, [sp, 56] str x1, [x0, 8] .L28: nop ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE13: .size ReferencePage, .-ReferencePage .section .rodata .align 3 .LC0: .string "%d " .text .align 2 .global main .type main, %function main: .LFB14: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp mov w0, 4 bl createQueue str x0, [sp, 16] mov w0, 10 bl createHash str x0, [sp, 24] mov w2, 1 ldr x1, [sp, 24] ldr x0, [sp, 16] bl ReferencePage mov w2, 2 ldr x1, [sp, 24] ldr x0, [sp, 16] bl ReferencePage mov w2, 3 ldr x1, [sp, 24] ldr x0, [sp, 16] bl ReferencePage mov w2, 1 ldr x1, [sp, 24] ldr x0, [sp, 16] bl ReferencePage mov w2, 4 ldr x1, [sp, 24] ldr x0, [sp, 16] bl ReferencePage mov w2, 5 ldr x1, [sp, 24] ldr x0, [sp, 16] bl ReferencePage ldr x0, [sp, 16] ldr x0, [x0, 8] ldr w0, [x0, 16] mov w1, w0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf ldr x0, [sp, 16] ldr x0, [x0, 8] ldr x0, [x0, 8] ldr w0, [x0, 16] mov w1, w0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf ldr x0, [sp, 16] ldr x0, [x0, 8] ldr x0, [x0, 8] ldr x0, [x0, 8] ldr w0, [x0, 16] mov w1, w0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf ldr x0, [sp, 16] ldr x0, [x0, 8] ldr x0, [x0, 8] ldr x0, [x0, 8] ldr x0, [x0, 8] ldr w0, [x0, 16] mov w1, w0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf mov w0, 0 ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE14: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global myglob .bss .align 2 .type myglob, %object .size myglob, 4 myglob: .zero 4 .text .align 2 .global callee .type callee, %function callee: .LFB6: .cfi_startproc adrp x0, myglob add x0, x0, :lo12:myglob ldr w0, [x0] add w1, w0, 1 adrp x0, myglob add x0, x0, :lo12:myglob str w1, [x0] mov w0, 0 ret .cfi_endproc .LFE6: .size callee, .-callee .align 2 .global large_struct_by_value .type large_struct_by_value, %function large_struct_by_value: .LFB7: .cfi_startproc str x19, [sp, -16]! .cfi_def_cfa_offset 16 .cfi_offset 19, -16 mov x19, x0 ldr w1, [x19, 168] adrp x0, myglob add x0, x0, :lo12:myglob ldr w0, [x0] add w1, w1, w0 adrp x0, myglob add x0, x0, :lo12:myglob str w1, [x0] nop ldr x19, [sp], 16 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size large_struct_by_value, .-large_struct_by_value .align 2 .global main .type main, %function main: .LFB8: .cfi_startproc sub sp, sp, #880 .cfi_def_cfa_offset 880 stp x29, x30, [sp] .cfi_offset 29, -880 .cfi_offset 30, -872 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 872] mov x1, 0 str wzr, [sp, 416] mov w0, 1 str w0, [sp, 420] mov w0, 2 str w0, [sp, 424] mov w0, 3 str w0, [sp, 428] ldr w0, [sp, 416] add w0, w0, 2 str w0, [sp, 416] ldr w0, [sp, 420] add w0, w0, 3 str w0, [sp, 420] ldr w0, [sp, 424] add w0, w0, 4 str w0, [sp, 424] ldr w0, [sp, 428] add w0, w0, 5 str w0, [sp, 428] bl callee bl callee ldr w1, [sp, 444] ldr w0, [sp, 448] sub w0, w1, w0 str w0, [sp, 452] bl callee bl callee ldr w1, [sp, 416] ldr w0, [sp, 428] add w0, w1, w0 str w0, [sp, 424] add x0, sp, 472 mov x2, 400 mov w1, 0 bl memset mov w0, 10 str w0, [sp, 640] add x0, sp, 16 add x1, sp, 472 mov x2, 400 bl memcpy add x0, sp, 16 bl large_struct_by_value mov w0, 0 bl exit .cfi_endproc .LFE8: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global bs .type bs, %function bs: .LFB0: .cfi_startproc sub sp, sp, #32 .cfi_def_cfa_offset 32 str x0, [sp, 8] str w1, [sp, 4] b .L2 .L6: ldr w0, [sp, 4] str w0, [sp, 28] str wzr, [sp, 4] mov w0, 1 str w0, [sp, 24] b .L3 .L5: ldrsw x0, [sp, 24] lsl x0, x0, 2 ldr x1, [sp, 8] add x0, x1, x0 ldr w1, [x0] ldrsw x0, [sp, 24] lsl x0, x0, 2 sub x0, x0, #4 ldr x2, [sp, 8] add x0, x2, x0 ldr w0, [x0] cmp w1, w0 bge .L4 ldrsw x0, [sp, 24] lsl x0, x0, 2 ldr x1, [sp, 8] add x0, x1, x0 ldr w2, [x0] ldrsw x0, [sp, 24] lsl x0, x0, 2 sub x0, x0, #4 ldr x1, [sp, 8] add x0, x1, x0 ldr w1, [x0] ldrsw x0, [sp, 24] lsl x0, x0, 2 ldr x3, [sp, 8] add x0, x3, x0 eor w1, w2, w1 str w1, [x0] ldrsw x0, [sp, 24] lsl x0, x0, 2 sub x0, x0, #4 ldr x1, [sp, 8] add x0, x1, x0 ldr w2, [x0] ldrsw x0, [sp, 24] lsl x0, x0, 2 ldr x1, [sp, 8] add x0, x1, x0 ldr w1, [x0] ldrsw x0, [sp, 24] lsl x0, x0, 2 sub x0, x0, #4 ldr x3, [sp, 8] add x0, x3, x0 eor w1, w2, w1 str w1, [x0] ldrsw x0, [sp, 24] lsl x0, x0, 2 ldr x1, [sp, 8] add x0, x1, x0 ldr w2, [x0] ldrsw x0, [sp, 24] lsl x0, x0, 2 sub x0, x0, #4 ldr x1, [sp, 8] add x0, x1, x0 ldr w1, [x0] ldrsw x0, [sp, 24] lsl x0, x0, 2 ldr x3, [sp, 8] add x0, x3, x0 eor w1, w2, w1 str w1, [x0] ldr w0, [sp, 24] str w0, [sp, 4] .L4: ldr w0, [sp, 24] add w0, w0, 1 str w0, [sp, 24] .L3: ldr w1, [sp, 24] ldr w0, [sp, 28] cmp w1, w0 blt .L5 .L2: ldr w0, [sp, 4] cmp w0, 0 bne .L6 nop nop add sp, sp, 32 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size bs, .-bs .section .rodata .align 3 .LC0: .string "%d\n" .text .align 2 .global main .type main, %function main: .LFB7: .cfi_startproc stp x29, x30, [sp, -80]! .cfi_def_cfa_offset 80 .cfi_offset 29, -80 .cfi_offset 30, -72 mov x29, sp .cfi_def_cfa_register 29 str x19, [sp, 16] sub sp, sp, #16 .cfi_offset 19, -64 str w0, [x29, 44] str x1, [x29, 32] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [x29, 72] mov x1, 0 mov x0, sp mov x19, x0 ldr w0, [x29, 44] sub w0, w0, #1 str w0, [x29, 52] ldr w0, [x29, 52] sxtw x1, w0 sub x1, x1, #1 str x1, [x29, 56] sxtw x1, w0 mov x8, x1 mov x9, 0 lsr x1, x8, 59 lsl x5, x9, 5 orr x5, x1, x5 lsl x4, x8, 5 sxtw x1, w0 mov x6, x1 mov x7, 0 lsr x1, x6, 59 lsl x3, x7, 5 orr x3, x1, x3 lsl x2, x6, 5 sxtw x0, w0 lsl x0, x0, 2 add x0, x0, 15 lsr x0, x0, 4 lsl x0, x0, 4 and x1, x0, -65536 sub x1, sp, x1 .L8: cmp sp, x1 beq .L9 sub sp, sp, #65536 str xzr, [sp, 1024] b .L8 .L9: and x1, x0, 65535 sub sp, sp, x1 str xzr, [sp] and x0, x0, 65535 cmp x0, 1024 bcc .L10 str xzr, [sp, 1024] .L10: add x0, sp, 16 add x0, x0, 3 lsr x0, x0, 2 lsl x0, x0, 2 str x0, [x29, 64] str wzr, [x29, 48] b .L11 .L12: ldrsw x0, [x29, 48] add x0, x0, 1 lsl x0, x0, 3 ldr x1, [x29, 32] add x0, x1, x0 ldr x0, [x0] bl atoi mov w2, w0 ldr x0, [x29, 64] ldrsw x1, [x29, 48] str w2, [x0, x1, lsl 2] ldr w0, [x29, 48] add w0, w0, 1 str w0, [x29, 48] .L11: ldr w1, [x29, 48] ldr w0, [x29, 52] cmp w1, w0 blt .L12 ldr w1, [x29, 52] ldr x0, [x29, 64] bl bs str wzr, [x29, 48] b .L13 .L14: ldr x0, [x29, 64] ldrsw x1, [x29, 48] ldr w0, [x0, x1, lsl 2] mov w1, w0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf ldr w0, [x29, 48] add w0, w0, 1 str w0, [x29, 48] .L13: ldr w1, [x29, 48] ldr w0, [x29, 52] cmp w1, w0 blt .L14 mov w0, 0 mov sp, x19 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [x29, 72] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L16 bl __stack_chk_fail .L16: mov w0, w1 mov sp, x29 ldr x19, [sp, 16] ldp x29, x30, [sp], 80 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa 31, 0 ret .cfi_endproc .LFE7: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global func_exit .type func_exit, %function func_exit: .LFB6: .cfi_startproc stp x29, x30, [sp, -16]! .cfi_def_cfa_offset 16 .cfi_offset 29, -16 .cfi_offset 30, -8 mov x29, sp adrp x0, __func__.1 add x0, x0, :lo12:__func__.1 bl puts mov w0, 0 bl exit .cfi_endproc .LFE6: .size func_exit, .-func_exit .align 2 .global func_call .type func_call, %function func_call: .LFB7: .cfi_startproc stp x29, x30, [sp, -16]! .cfi_def_cfa_offset 16 .cfi_offset 29, -16 .cfi_offset 30, -8 mov x29, sp adrp x0, __func__.0 add x0, x0, :lo12:__func__.0 bl puts mov w0, 0 bl exit .cfi_endproc .LFE7: .size func_call, .-func_call .global mem .data .align 3 .type mem, %object .size mem, 16 mem: .xword 1963552808564833249 .xword 2451796488097070293 .section .rodata .align 3 .LC0: .string "%016lx\n" .text .align 2 .global main .type main, %function main: .LFB8: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 56] mov x1, 0 add x0, sp, 72 sub x0, x0, #48 adrp x1, .LC1 add x1, x1, :lo12:.LC1 ld1 {v0.16b - v1.16b}, [x1] st1 {v0.16b - v1.16b}, [x0] #APP // 20 "program.c" 1 moveli r38, 4964 shl16insli r38, r38, -27298 shl16insli r38, r38, 27287 shl16insli r38, r38, 25242 moveli r45, 12630 shl16insli r45, r45, 24867 shl16insli r45, r45, -32060 shl16insli r45, r45, 29383 moveli r38, -6355 shl16insli r38, r38, -29829 shl16insli r38, r38, 8624 shl16insli r38, r38, -6732 { fnop ; v1mz r38, r45, r38 } move x3, r38 move x2, r45 move x1, r38 // 0 "" 2 #NO_APP add x0, sp, 72 sub x0, x0, #48 str x3, [x0] add x0, sp, 72 sub x0, x0, #48 str x2, [x0, 8] add x0, sp, 72 sub x0, x0, #48 str x1, [x0, 16] add x0, sp, 72 sub x0, x0, #48 ldr x0, [x0] mov x1, x0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf add x0, sp, 72 sub x0, x0, #48 ldr x0, [x0, 8] mov x1, x0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf add x0, sp, 72 sub x0, x0, #48 ldr x0, [x0, 16] mov x1, x0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 56] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L5 bl __stack_chk_fail .L5: mov w0, w1 ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size main, .-main .section .rodata .align 3 .type __func__.1, %object .size __func__.1, 10 __func__.1: .string "func_exit" .align 3 .type __func__.0, %object .size __func__.0, 10 __func__.0: .string "func_call" .align 4 .LC1: .xword 0 .xword 0 .xword 0 .xword 0 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global stack .bss .align 3 .type stack, %object .size stack, 400 stack: .zero 400 .global top .data .align 2 .type top, %object .size top, 4 top: .word -1 .section .rodata .align 3 .LC0: .string "%3d " .align 3 .LC1: .string "pause" .text .align 2 .global main .type main, %function main: .LFB6: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str wzr, [sp, 28] b .L2 .L3: ldr w0, [sp, 28] bl push ldr w0, [sp, 28] add w0, w0, 1 str w0, [sp, 28] .L2: ldr w0, [sp, 28] cmp w0, 99 ble .L3 bl display mov w0, 10 bl putchar str wzr, [sp, 28] b .L4 .L6: bl pop mov w1, w0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf ldr w2, [sp, 28] mov w0, 26215 movk w0, 0x6666, lsl 16 smull x0, w2, w0 lsr x0, x0, 32 asr w1, w0, 2 asr w0, w2, 31 sub w1, w1, w0 mov w0, w1 lsl w0, w0, 2 add w0, w0, w1 lsl w0, w0, 1 sub w1, w2, w0 cmp w1, 9 bne .L5 mov w0, 10 bl putchar .L5: ldr w0, [sp, 28] add w0, w0, 1 str w0, [sp, 28] .L4: ldr w0, [sp, 28] cmp w0, 49 ble .L6 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl system mov w0, 0 ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size main, .-main .align 2 .global display .type display, %function display: .LFB7: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp adrp x0, top add x0, x0, :lo12:top ldr w0, [x0] cmn w0, #1 beq .L13 str wzr, [sp, 28] b .L10 .L12: adrp x0, stack add x0, x0, :lo12:stack ldrsw x1, [sp, 28] ldr w1, [x0, x1, lsl 2] adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf ldr w2, [sp, 28] mov w0, 26215 movk w0, 0x6666, lsl 16 smull x0, w2, w0 lsr x0, x0, 32 asr w1, w0, 2 asr w0, w2, 31 sub w1, w1, w0 mov w0, w1 lsl w0, w0, 2 add w0, w0, w1 lsl w0, w0, 1 sub w1, w2, w0 cmp w1, 9 bne .L11 mov w0, 10 bl putchar .L11: ldr w0, [sp, 28] add w0, w0, 1 str w0, [sp, 28] .L10: adrp x0, top add x0, x0, :lo12:top ldr w0, [x0] ldr w1, [sp, 28] cmp w1, w0 ble .L12 .L13: nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size display, .-display .section .rodata .align 3 .LC2: .string "stack overflow\n" .text .align 2 .global push .type push, %function push: .LFB8: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str w0, [sp, 28] adrp x0, top add x0, x0, :lo12:top ldr w0, [x0] cmp w0, 99 bgt .L15 adrp x0, top add x0, x0, :lo12:top ldr w0, [x0] add w1, w0, 1 adrp x0, top add x0, x0, :lo12:top str w1, [x0] adrp x0, top add x0, x0, :lo12:top ldr w1, [x0] adrp x0, stack add x0, x0, :lo12:stack sxtw x1, w1 ldr w2, [sp, 28] str w2, [x0, x1, lsl 2] b .L17 .L15: adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 15 mov x1, 1 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl fwrite adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl system mov w0, 0 bl exit .L17: ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size push, .-push .section .rodata .align 3 .LC3: .string "stack is empty\n" .text .align 2 .global pop .type pop, %function pop: .LFB9: .cfi_startproc stp x29, x30, [sp, -16]! .cfi_def_cfa_offset 16 .cfi_offset 29, -16 .cfi_offset 30, -8 mov x29, sp adrp x0, top add x0, x0, :lo12:top ldr w0, [x0] cmn w0, #1 bne .L19 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 15 mov x1, 1 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl fwrite adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl system mov w0, 0 bl exit .L19: adrp x0, top add x0, x0, :lo12:top ldr w0, [x0] sub w2, w0, #1 adrp x1, top add x1, x1, :lo12:top str w2, [x1] adrp x1, stack add x1, x1, :lo12:stack sxtw x0, w0 ldr w0, [x1, x0, lsl 2] ldp x29, x30, [sp], 16 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE9: .size pop, .-pop ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "%d" .align 3 .LC1: .string "%d\n" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 40] mov x1, 0 str wzr, [sp, 36] add x0, sp, 28 mov x1, x0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl __isoc99_scanf mov w0, 1 str w0, [sp, 32] b .L2 .L3: ldr w1, [sp, 36] ldr w0, [sp, 32] add w0, w1, w0 str w0, [sp, 36] ldr w0, [sp, 32] add w0, w0, 1 str w0, [sp, 32] .L2: ldr w0, [sp, 28] ldr w1, [sp, 32] cmp w1, w0 ble .L3 ldr w1, [sp, 36] adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl printf nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 40] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L4 bl __stack_chk_fail .L4: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "fcntl lock" .text .align 2 .type kvp_acquire_lock, %function kvp_acquire_lock: .LFB6: .cfi_startproc stp x29, x30, [sp, -80]! .cfi_def_cfa_offset 80 .cfi_offset 29, -80 .cfi_offset 30, -72 mov x29, sp str w0, [sp, 28] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 72] mov x1, 0 stp xzr, xzr, [sp, 40] stp xzr, xzr, [sp, 56] bl getpid str w0, [sp, 64] add x0, sp, 40 mov x2, x0 mov w1, 7 ldr w0, [sp, 28] bl fcntl cmn w0, #1 bne .L4 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl perror mov w0, -1 bl exit .L4: nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 72] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L3 bl __stack_chk_fail .L3: ldp x29, x30, [sp], 80 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size kvp_acquire_lock, .-kvp_acquire_lock .section .rodata .align 3 .LC1: .string "fcntl unlock" .text .align 2 .type kvp_release_lock, %function kvp_release_lock: .LFB7: .cfi_startproc stp x29, x30, [sp, -80]! .cfi_def_cfa_offset 80 .cfi_offset 29, -80 .cfi_offset 30, -72 mov x29, sp str w0, [sp, 28] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 72] mov x1, 0 mov w0, 2 strh w0, [sp, 40] strh wzr, [sp, 42] str xzr, [sp, 48] str xzr, [sp, 56] str wzr, [sp, 64] bl getpid str w0, [sp, 64] add x0, sp, 40 mov x2, x0 mov w1, 6 ldr w0, [sp, 28] bl fcntl cmn w0, #1 bne .L8 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl perror mov w0, -1 bl exit .L8: nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 72] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L7 bl __stack_chk_fail .L7: ldp x29, x30, [sp], 80 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size kvp_release_lock, .-kvp_release_lock .section .rodata .align 3 .LC2: .string "/var/lib/hyperv/.kvp_pool_%d" .align 3 .LC3: .string "Open failed" .align 3 .LC4: .string "r" .align 3 .LC5: .string "fopen failed" .text .align 2 .global kvp_read_records .type kvp_read_records, %function kvp_read_records: .LFB8: .cfi_startproc stp x29, x30, [sp, -144]! .cfi_def_cfa_offset 144 .cfi_offset 29, -144 .cfi_offset 30, -136 mov x29, sp str w0, [sp, 44] str x1, [sp, 32] str x2, [sp, 24] str x3, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 136] mov x1, 0 str wzr, [sp, 56] add x3, sp, 80 ldr w2, [sp, 44] adrp x0, .LC2 add x1, x0, :lo12:.LC2 mov x0, x3 bl sprintf add x0, sp, 80 mov w1, 256 bl open str w0, [sp, 60] ldr w0, [sp, 60] cmn w0, #1 bne .L10 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl perror mov w0, 1 b .L16 .L10: add x2, sp, 80 adrp x0, .LC4 add x1, x0, :lo12:.LC4 mov x0, x2 bl fopen str x0, [sp, 64] ldr x0, [sp, 64] cmp x0, 0 bne .L12 ldr w0, [sp, 60] bl close adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl perror mov w0, 1 b .L16 .L12: ldr w0, [sp, 60] bl kvp_acquire_lock ldr x0, [sp, 24] ldr w0, [x0] sxtw x0, w0 ldr x3, [sp, 64] mov x2, x0 mov x1, 2560 ldr x0, [sp, 32] bl fread str x0, [sp, 72] ldr w0, [sp, 60] bl kvp_release_lock ldr x0, [sp, 64] bl ferror cmp w0, 0 beq .L13 mov w0, 1 str w0, [sp, 56] b .L14 .L13: ldr x0, [sp, 64] bl feof cmp w0, 0 bne .L15 ldr x0, [sp, 16] mov w1, 1 str w1, [x0] .L15: ldr x0, [sp, 72] mov w1, w0 ldr x0, [sp, 24] str w1, [x0] .L14: ldr w0, [sp, 60] bl close ldr x0, [sp, 64] bl fclose ldr w0, [sp, 56] .L16: mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 136] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L17 bl __stack_chk_fail .L17: mov w0, w1 ldp x29, x30, [sp], 144 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size kvp_read_records, .-kvp_read_records .section .rodata .align 3 .LC6: .string "a" .text .align 2 .global kvp_append_record .type kvp_append_record, %function kvp_append_record: .LFB9: .cfi_startproc sub sp, sp, #2688 .cfi_def_cfa_offset 2688 stp x29, x30, [sp] .cfi_offset 29, -2688 .cfi_offset 30, -2680 mov x29, sp str w0, [sp, 44] str x1, [sp, 32] str w2, [sp, 40] str x3, [sp, 24] str w4, [sp, 20] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 2680] mov x1, 0 ldrsw x1, [sp, 40] add x0, sp, 64 mov x2, x1 ldr x1, [sp, 32] bl memcpy ldrsw x1, [sp, 20] add x0, sp, 64 add x0, x0, 512 mov x2, x1 ldr x1, [sp, 24] bl memcpy add x3, sp, 2624 ldr w2, [sp, 44] adrp x0, .LC2 add x1, x0, :lo12:.LC2 mov x0, x3 bl sprintf add x0, sp, 2624 mov w1, 256 bl open str w0, [sp, 52] ldr w0, [sp, 52] cmn w0, #1 bne .L19 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl perror mov w0, 1 b .L22 .L19: add x2, sp, 2624 adrp x0, .LC6 add x1, x0, :lo12:.LC6 mov x0, x2 bl fopen str x0, [sp, 56] ldr x0, [sp, 56] cmp x0, 0 bne .L21 ldr w0, [sp, 52] bl close adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl perror mov w0, 1 b .L22 .L21: ldr w0, [sp, 52] bl kvp_acquire_lock add x0, sp, 64 ldr x3, [sp, 56] mov x2, 1 mov x1, 2560 bl fwrite ldr w0, [sp, 52] bl kvp_release_lock ldr w0, [sp, 52] bl close ldr x0, [sp, 56] bl fclose mov w0, 0 .L22: mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 2680] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L23 bl __stack_chk_fail .L23: mov w0, w1 ldp x29, x30, [sp] add sp, sp, 2688 .cfi_restore 29 .cfi_restore 30 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE9: .size kvp_append_record, .-kvp_append_record .section .rodata .align 3 .LC7: .string "kvp_read_records failed" .align 3 .LC8: .string "w" .text .align 2 .global kvp_delete_record .type kvp_delete_record, %function kvp_delete_record: .LFB10: .cfi_startproc sub x12, sp, #458752 .cfi_def_cfa 12, 458752 .LPSRL0: sub sp, sp, 65536 str xzr, [sp, 1024] cmp sp, x12 b.ne .LPSRL0 .cfi_def_cfa_register 31 mov x12, 53408 sub sp, sp, x12 .cfi_def_cfa_offset 512160 stp x29, x30, [sp] .cfi_offset 29, -512160 .cfi_offset 30, -512152 mov x29, sp stp x19, x20, [sp, 16] str x21, [sp, 32] .cfi_offset 19, -512144 .cfi_offset 20, -512136 .cfi_offset 21, -512128 str w0, [sp, 60] str x1, [sp, 48] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] add x1, sp, 507904 ldr x2, [x0] str x2, [x1, 4248] mov x2, 0 mov w0, 200 str w0, [sp, 76] ldr x1, [sp, 48] ldr w0, [sp, 60] bl kvp_key_exists cmp w0, 0 beq .L25 mov w0, 0 b .L33 .L25: add x2, sp, 72 add x1, sp, 76 add x0, sp, 96 mov x3, x2 mov x2, x1 mov x1, x0 ldr w0, [sp, 60] bl kvp_read_records cmp w0, 0 beq .L27 adrp x0, .LC7 add x0, x0, :lo12:.LC7 bl puts mov w0, -1 bl exit .L27: add x3, sp, 512000 add x3, x3, 96 ldr w2, [sp, 60] adrp x0, .LC2 add x1, x0, :lo12:.LC2 mov x0, x3 bl sprintf add x0, sp, 512000 add x0, x0, 96 mov w1, 256 bl open str w0, [sp, 84] ldr w0, [sp, 84] cmn w0, #1 bne .L28 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl perror mov w0, 1 b .L33 .L28: ldr w0, [sp, 84] bl kvp_acquire_lock add x2, sp, 512000 add x2, x2, 96 adrp x0, .LC8 add x1, x0, :lo12:.LC8 mov x0, x2 bl fopen str x0, [sp, 88] ldr x0, [sp, 88] cmp x0, 0 bne .L29 ldr w0, [sp, 84] bl close adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl perror mov w0, 1 b .L33 .L29: ldr w0, [sp, 84] bl kvp_release_lock ldr w0, [sp, 84] bl close ldr x0, [sp, 88] bl fclose str wzr, [sp, 80] b .L30 .L32: add x2, sp, 96 ldrsw x1, [sp, 80] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 9 add x0, x2, x0 ldr x1, [sp, 48] bl strcmp cmp w0, 0 beq .L31 add x2, sp, 96 ldrsw x1, [sp, 80] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 9 add x19, x2, x0 add x2, sp, 96 ldrsw x1, [sp, 80] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 9 add x0, x2, x0 bl strlen mov w21, w0 add x2, sp, 96 ldrsw x1, [sp, 80] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 9 add x0, x0, 512 add x20, x2, x0 add x2, sp, 96 ldrsw x1, [sp, 80] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 9 add x0, x0, 512 add x0, x2, x0 bl strlen mov w4, w0 mov x3, x20 mov w2, w21 mov x1, x19 ldr w0, [sp, 60] bl kvp_append_record .L31: ldr w0, [sp, 80] add w0, w0, 1 str w0, [sp, 80] .L30: ldr w0, [sp, 76] ldr w1, [sp, 80] cmp w1, w0 blt .L32 mov w0, 0 .L33: mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] add x3, sp, 507904 ldr x4, [x3, 4248] ldr x2, [x0] subs x4, x4, x2 mov x2, 0 beq .L34 bl __stack_chk_fail .L34: mov w0, w1 ldp x19, x20, [sp, 16] ldr x21, [sp, 32] ldp x29, x30, [sp] .cfi_restore 29 .cfi_restore 30 .cfi_restore 21 .cfi_restore 19 .cfi_restore 20 add sp, sp, 160 .cfi_def_cfa_offset 512000 add sp, sp, 512000 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE10: .size kvp_delete_record, .-kvp_delete_record .align 2 .global kvp_key_exists .type kvp_key_exists, %function kvp_key_exists: .LFB11: .cfi_startproc sub x12, sp, #458752 .cfi_def_cfa 12, 458752 .LPSRL1: sub sp, sp, 65536 str xzr, [sp, 1024] cmp sp, x12 b.ne .LPSRL1 .cfi_def_cfa_register 31 mov x12, 53312 sub sp, sp, x12 .cfi_def_cfa_offset 512064 stp x29, x30, [sp] .cfi_offset 29, -512064 .cfi_offset 30, -512056 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] add x1, sp, 507904 ldr x2, [x0] str x2, [x1, 4152] mov x2, 0 mov w0, 200 str w0, [sp, 48] add x2, sp, 44 add x1, sp, 48 add x0, sp, 56 mov x3, x2 mov x2, x1 mov x1, x0 ldr w0, [sp, 28] bl kvp_read_records cmp w0, 0 beq .L36 adrp x0, .LC7 add x0, x0, :lo12:.LC7 bl puts mov w0, -1 bl exit .L36: str wzr, [sp, 52] b .L37 .L40: add x2, sp, 56 ldrsw x1, [sp, 52] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 9 add x0, x2, x0 ldr x1, [sp, 16] bl strcmp cmp w0, 0 bne .L38 mov w0, 0 b .L41 .L38: ldr w0, [sp, 52] add w0, w0, 1 str w0, [sp, 52] .L37: ldr w0, [sp, 48] ldr w1, [sp, 52] cmp w1, w0 blt .L40 mov w0, 1 .L41: mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] add x3, sp, 507904 ldr x4, [x3, 4152] ldr x2, [x0] subs x4, x4, x2 mov x2, 0 beq .L42 bl __stack_chk_fail .L42: mov w0, w1 ldp x29, x30, [sp] .cfi_restore 29 .cfi_restore 30 add sp, sp, 64 .cfi_def_cfa_offset 512000 add sp, sp, 512000 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE11: .size kvp_key_exists, .-kvp_key_exists .global my_records .bss .align 3 .type my_records, %object .size my_records, 512000 my_records: .zero 512000 .section .rodata .align 3 .LC9: .string "append" .align 3 .LC10: .string "Usage: %s append <pool> <key> <value>\n" .align 3 .LC11: .string "Error: kvp_append_record() returned non-zero" .align 3 .LC12: .string "Pool is %d\n" .align 3 .LC13: .string "Num records is %d\n" .align 3 .LC14: .string "More records available" .align 3 .LC15: .string "Key: %s; Value: %s\n" .text .align 2 .global main .type main, %function main: .LFB12: .cfi_startproc stp x29, x30, [sp, -96]! .cfi_def_cfa_offset 96 .cfi_offset 29, -96 .cfi_offset 30, -88 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -80 str w0, [sp, 44] str x1, [sp, 32] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 88] mov x1, 0 mov w0, 200 str w0, [sp, 56] str wzr, [sp, 68] ldr w0, [sp, 44] cmp w0, 1 ble .L44 ldr x0, [sp, 32] add x0, x0, 8 ldr x2, [x0] adrp x0, .LC9 add x1, x0, :lo12:.LC9 mov x0, x2 bl strcmp cmp w0, 0 bne .L44 ldr w0, [sp, 44] cmp w0, 4 bgt .L45 ldr x0, [sp, 32] ldr x0, [x0] mov x1, x0 adrp x0, .LC10 add x0, x0, :lo12:.LC10 bl printf mov w0, 0 bl exit .L45: ldr x0, [sp, 32] add x0, x0, 16 ldr x0, [x0] bl atoi str w0, [sp, 68] ldr x0, [sp, 32] ldr x0, [x0, 24] str x0, [sp, 72] ldr x0, [sp, 32] ldr x0, [x0, 32] str x0, [sp, 80] ldr x1, [sp, 72] ldr w0, [sp, 68] bl kvp_key_exists cmp w0, 0 bne .L46 ldr x1, [sp, 72] ldr w0, [sp, 68] bl kvp_delete_record .L46: ldr x0, [sp, 72] bl strlen add w0, w0, 1 mov w19, w0 ldr x0, [sp, 80] bl strlen add w0, w0, 1 mov w4, w0 ldr x3, [sp, 80] mov w2, w19 ldr x1, [sp, 72] ldr w0, [sp, 68] bl kvp_append_record cmp w0, 0 beq .L48 adrp x0, .LC11 add x0, x0, :lo12:.LC11 bl puts b .L48 .L44: str wzr, [sp, 60] b .L49 .L56: ldr w0, [sp, 44] cmp w0, 1 ble .L50 ldr x0, [sp, 32] add x0, x0, 8 ldr x0, [x0] bl atoi str w0, [sp, 68] ldr w1, [sp, 60] ldr w0, [sp, 68] cmp w1, w0 bne .L59 .L50: mov w0, 200 str w0, [sp, 56] add x1, sp, 52 add x0, sp, 56 mov x3, x1 mov x2, x0 adrp x0, my_records add x1, x0, :lo12:my_records ldr w0, [sp, 60] bl kvp_read_records cmp w0, 0 beq .L52 adrp x0, .LC7 add x0, x0, :lo12:.LC7 bl puts mov w0, -1 bl exit .L52: ldr w1, [sp, 60] adrp x0, .LC12 add x0, x0, :lo12:.LC12 bl printf ldr w0, [sp, 56] mov w1, w0 adrp x0, .LC13 add x0, x0, :lo12:.LC13 bl printf ldr w0, [sp, 52] cmp w0, 0 beq .L53 adrp x0, .LC14 add x0, x0, :lo12:.LC14 bl puts .L53: str wzr, [sp, 64] b .L54 .L55: ldrsw x1, [sp, 64] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 9 adrp x1, my_records add x1, x1, :lo12:my_records add x3, x0, x1 ldrsw x1, [sp, 64] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 9 add x1, x0, 512 adrp x0, my_records add x0, x0, :lo12:my_records add x0, x1, x0 mov x2, x0 mov x1, x3 adrp x0, .LC15 add x0, x0, :lo12:.LC15 bl printf ldr w0, [sp, 64] add w0, w0, 1 str w0, [sp, 64] .L54: ldr w0, [sp, 56] ldr w1, [sp, 64] cmp w1, w0 blt .L55 b .L51 .L59: nop .L51: ldr w0, [sp, 60] add w0, w0, 1 str w0, [sp, 60] .L49: ldr w0, [sp, 60] cmp w0, 4 ble .L56 .L48: mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 88] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L58 bl __stack_chk_fail .L58: mov w0, w1 ldr x19, [sp, 16] ldp x29, x30, [sp], 96 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE12: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global KSDATAFORMAT_TYPE_STREAM .section .rodata .align 3 .type KSDATAFORMAT_TYPE_STREAM, %object .size KSDATAFORMAT_TYPE_STREAM, 24 KSDATAFORMAT_TYPE_STREAM: .xword 3828804483 .hword 21071 .hword 4558 .string "\237S" .ascii " \257\013\247p" .zero 4 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global test_vpaddlu8 .type test_vpaddlu8, %function test_vpaddlu8: .LFB4340: .cfi_startproc sub sp, sp, #32 .cfi_def_cfa_offset 32 ldr d0, [sp] str d0, [sp, 16] ldr d0, [sp, 16] #APP // 8569 "/usr/lib/gcc-cross/aarch64-linux-gnu/11/include/arm_neon.h" 1 uaddlp v0.4h,v0.8b // 0 "" 2 #NO_APP str d0, [sp, 24] ldr d0, [sp, 24] str d0, [sp, 8] nop add sp, sp, 32 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE4340: .size test_vpaddlu8, .-test_vpaddlu8 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global newnode .type newnode, %function newnode: .LFB6: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str w0, [sp, 28] mov x0, 24 bl malloc str x0, [sp, 40] ldr x0, [sp, 40] ldr w1, [sp, 28] str w1, [x0, 8] ldr x0, [sp, 40] str xzr, [x0] ldr x0, [sp, 40] str xzr, [x0, 16] ldr x0, [sp, 40] ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size newnode, .-newnode .align 2 .global mirroroftree .type mirroroftree, %function mirroroftree: .LFB7: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] cmp x0, 0 beq .L6 ldr x0, [sp, 24] ldr x0, [x0] bl mirroroftree ldr x0, [sp, 24] ldr x0, [x0, 16] bl mirroroftree ldr x0, [sp, 24] ldr x0, [x0] str x0, [sp, 40] ldr x0, [sp, 24] ldr x1, [x0, 16] ldr x0, [sp, 24] str x1, [x0] ldr x0, [sp, 24] ldr x1, [sp, 40] str x1, [x0, 16] b .L3 .L6: nop .L3: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size mirroroftree, .-mirroroftree .section .rodata .align 3 .LC0: .string "%d" .text .align 2 .global inorder .type inorder, %function inorder: .LFB8: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] cmp x0, 0 beq .L10 ldr x0, [sp, 24] ldr x0, [x0] bl inorder ldr x0, [sp, 24] ldr w0, [x0, 8] mov w1, w0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf ldr x0, [sp, 24] ldr x0, [x0, 16] bl inorder b .L7 .L10: nop .L7: ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size inorder, .-inorder .align 2 .global main .type main, %function main: .LFB9: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -32 mov w0, 1 bl newnode str x0, [sp, 40] mov w0, 4 bl newnode mov x1, x0 ldr x0, [sp, 40] str x1, [x0] mov w0, 7 bl newnode mov x1, x0 ldr x0, [sp, 40] str x1, [x0, 16] ldr x0, [sp, 40] ldr x19, [x0] mov w0, 5 bl newnode str x0, [x19] ldr x0, [sp, 40] ldr x19, [x0] mov w0, 3 bl newnode str x0, [x19, 16] ldr x0, [sp, 40] ldr x19, [x0, 16] mov w0, 9 bl newnode str x0, [x19] ldr x0, [sp, 40] ldr x19, [x0, 16] mov w0, 10 bl newnode str x0, [x19, 16] ldr x0, [sp, 40] ldr x0, [x0, 16] ldr x19, [x0] mov w0, 14 bl newnode str x0, [x19] ldr x0, [sp, 40] bl inorder mov w0, 10 bl putchar ldr x0, [sp, 40] bl mirroroftree mov w0, 10 bl putchar ldr x0, [sp, 40] bl inorder mov w0, 0 ldr x19, [sp, 16] ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE9: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .data .align 3 .type FirmwareImage, %object .size FirmwareImage, 16381 FirmwareImage: .string "\377" .string "" .string "" .string "\006" .string "\002" .string "\200\002I9\377" .string "\013" .string "\003" .string "\002D\032\377" .string "\023" .string "\003" .string "\002" .string "\023\377" .string "\033" .string "\003" .string "\002" .string "\033\377" .string "#" .string "\003" .string "\002" .string "#\377" .string "+" .string "\003" .string "\002" .string "+\377" .string "3" .string "\003" .string "\002" .string "3\377" .string ";" .string "\003" .string "\002" .string ";\377" .string "C" .string "\003" .string "\002" .string "C\377" .string "K" .string "\003" .string "\002p\324\377" .string "S" .string "\003" .string "\002w\235\377" .string "{" .string "\003" .string "\002" .string "{\377" .string "\200" .string "\007" .string "~\024" .string "" .string "\002@Q\377" .string "" .string "@0>~\004" .string "\001~\024\177\370~$" .string "\376}1\013\032P\033\nP~\024@\033\002@j~\370" .string "Y\322\004\302\224\322\225~\364@,\002@|\022\177?\365.z\241-z\021X\022w\332\022@\334~\263?\361`\003\022Chu\361" .string "\022x\177\322\257\002D\006~\004" .string "\377~\030@_z\034" .string "\001\211\030\251%\207\003\251\325\207\322\223\211\b~\004" .string "\377~\030@xz\034" .string "\001\211\030\302\223\211\b~\b" .string " ~D\004" .string "~@" .string "~\344@\216\002~K~\b\001Y~D(|~@" .string "~\344@\240\002~K~\b" .string "Y~D\001" .string "~@S~\344@\262\002~KuW uV0~\004" .string "\buTXuU\buQ\buS\001u\211\001u\212\001u\214" .string "\322\214~\004" .string "\002z\005B\211\364u\267\177u\270\177u\263\007u\262\007\322\251\"\322\222\344\325\340\375\302\222~$\200" .string "~\021.~\240\b\031\242" .string "\020.$\001" .string "\245\331\362~ " .string "\022Ar\013 \276!.x\366\"~\004\200" .string "L\002t\277\031\260" .string "\ft\020\031\260" .string "\bt\200\031\260" .string "\f~T" .string "\002\031\240" .string "\004\031\260" .string "" .string "t\003\031\260" .string "\ft\007 h\002t\017\031\260" .string "\0040k\027t\277\031\260" .string "\ft( h\002t \031\260" .string "\004t\003\031\260" .string "\ft\247\031\260" .string "\bt\f\031\260" .string "\020\"~\004\200" .string "L\002\344\031\260" .string "\004\t\260" .string "\020T\b\031\260" .string "\020t\247\031\260" .string "\b\"|\262#\n+I\"A\231\211$A\251A\306A\343B" .string "B\035B:BWBt\302\020\302\030\302\b~\004\t\315z\007\001Yz\007\001im" .string "z\007\001yz\007\001\211\"\302\021\302\031\302\t~\004\r\315z\007\001[z\007\001km" .string "z\007\001{z\007\001\213\"\302\022\302\032\302\n~\004\021\315z\007\001]z\007\001mm" .string "z\007\001}z\007\001\215\"\302\023\302\033\302\013~\004\025\315z\007\001_z\007\001om" .string "z\007\001\177z\007\001\217\"\302\024\302\034\302\f~\004\031\315z\007\001az\007\001qm" .string "z\007\001\201z\007\001\221\"\302\025\302\035\302\r~\004\035\315z\007\001cz\007\001sm" .string "z\007\001\203z\007\001\223\"\302\026\302\036\302\016~\004!\315z\007\001ez\007\001um" .string "z\007\001\205z\007\001\225\"\302\027\302\037\302\017~\004%\315z\007\001gz\007\001wm" .ascii "z\007\001\207z\007\001\227\"|\262#\n+I\"B\234\211$B\254B\303" .ascii "B\332B\361C\bC\037C6CM0@\007 X\004\302(\200\f0H\007 P\004\302" .ascii "(" .string "\200\002\322(\"0A\007 Y\004\302)\200\f0I\007 Q\004\302)\200\002\322)\"0B\007 Z\004\302*\200\f0J\007 R\004\302*\200\002\322*\"0C\007 [\004\302+\200\f0K\007 S\004\302+\200\002\322+\"0D\007 \\\004\302,\200\f0L\007 T\004\302,\200\002\322,\"0E\007 ]\004\302-\200\f0M\007 U\004\302-\200\002\322-\"0F\007 ^\004\302.\200\f0N\007 V\004\302.\200\002\322.\"0G\007 _\004\302/\200\f0O\007 W\004\302/\200\002\322/\"C\314Cy\276\260\002@\001\"#\n[IUCd\231T\323\"\251\305\207\022C\327~\004\005\315z\007\001\301z\007\001\303~\004\001\315z\007\001\307z\007\001\311~\004v\275z\005Ku\361\001u\341\037u\344\004u\364\004u\361\002u\341\003u\344\004u\364\004C\242\034\022@\353~ " .string "\022A\216\013 \276!.x\366\322\250\"\251\325\207\022C\327\322\222\302\250\"u\243" .string "S\242\003u\301" .string "S\300\003~" .string "\005z\001\361C\364\200C\344\200\345\362T\177D\b\365\362\345\342T\177D\b\365\342u\341\020\245\330\341\"\022Dv\022D\214\022E'\022EW\022I\017\022D\330\200\354\312\t\022DX\020\001\022\325Q\036cS\001~" .string "T.\001S\245\346\365Q\200\022 \002\036uS" .string "\205TQ\322\002t" .string "\200\r0\002\017\302\002~" .string "V.\001S\245\346S\220\317B\220\332\t2\345#`\031~\024" .string "" .string "\t\261\001\271\264" .string "\002\200\005\024\031\261\001\271\245\n\276!.x\353\"\302\257~\263?\361\264\001\n\300\361u\361\002\022r\377\320\361\322\257\"\302\257\345\"`C~\007\001\313\276\004\003\20089~\004\200" .string "~ " .string "\023P!\t\240" .string "\004N\240\005\031\240" .string "\004\n2\tSj\223^Q'h\013\t\240" .string "\020N\240\001\031\240" .string "\020.\004\001" .string "\245\n\276!.x\321u\"" .string "\322\257\"\302\257\345&`6~ " .string "~0\001\345&\245[h!|\262#\n+I2\001y\2764" .string "" .string "h\022~\261!\245Kz\261!\312\031I\"E\027\231$\332\031>0\245\n\276!.x\320\322\257\"J\230M\315Q\002T7WlZ\241]\326a\013\302\257\345$`\024~ " .string "\023P\007\312\270\022ED\332\270\245\n\276!.x\357\322\257\"\312(\022j\254\332(@\t\n\"\t\262j\223\364R$\"\302\257\345#`\024~ " .string "\023P\007\312\270\022Et\332\270\245\n\276!.x\357\322\257\"|\262#\n+I\"E\177\211$E\217E\377FoF\337GOG\277H/H\237~'\001y\276$" .string "" .string "x$~$\200" .string "\t\262" .string "\024\312\270^\260\036\332\270h\013\312\031}\022\022M\226}!\332\0310\346\030~`" .string "\200\036\276'\001\211h\rz'\001\211~`\234zc\001\271\200.~c\001\271\245\276" .string "&~`\001~\260" .string "~\240\310\022e\277@\030u/\263\022~0\302\030l" .string "z\003\001\271\300\361u\361\001\022q\351\320\361\"~'\001{\276$" .string "" .string "x$~$\201" .string "\t\262" .string "\024\312\270^\260\036\332\270h\013\312\031}\022\022P\313}!\332\0310\346\030~`" .string "\200\036\276'\001\213h\rz'\001\213~`\234zc\001\272\200.~c\001\272\245\276" .string "&~`\001~\260" .string "~\240\310\022e\277@\030u/\263\022~0\302\031l" .string "z\003\001\272\300\361u\361\001\022q\351\320\361\"~'\001}\276$" .string "" .string "x$~$\202" .string "\t\262" .string "\024\312\270^\260\036\332\270h\013\312\031}\022\022T" .string "}!\332\0310\346\030~`" .string "\200\036\276'\001\215h\rz'\001\215~`\234zc\001\273\200.~c\001\273\245\276" .string "&~`\001~\260" .string "~\240\310\022e\277@\030u/\263\022~0\302\032l" .string "z\003\001\273\300\361u\361\001\022q\351\320\361\"~'\001\177\276$" .string "" .string "x$~$\203" .string "\t\262" .string "\024\312\270^\260\036\332\270h\013\312\031}\022\022W5}!\332\0310\346\030~`" .string "\200\036\276'\001\217h\rz'\001\217~`\234zc\001\274\200.~c\001\274\245\276" .string "&~`\001~\260" .string "~\240\310\022e\277@\030u/\263\022~0\302\033l" .ascii "z\003\001\274\300\361u\361\001\022q\351\320\361" .string "\"~'\001\201\276$" .string "" .string "x$~$\204" .string "\t\262" .string "\024\312\270^\260\036\332\270h\013\312\031}\022\022Zj}!\332\0310\346\030~`" .string "\200\036\276'\001\221h\rz'\001\221~`\234zc\001\275\200.~c\001\275\245\276" .string "&~`\001~\260" .string "~\240\310\022e\277@\030u/\263\022~0\302\034l" .string "z\003\001\275\300\361u\361\001\022q\351\320\361\"~'\001\203\276$" .string "" .string "x$~$\205" .string "\t\262" .string "\024\312\270^\260\036\332\270h\013\312\031}\022\022]\237}!\332\0310\346\030~`" .string "\200\036\276'\001\223h\rz'\001\223~`\234zc\001\276\200.~c\001\276\245\276" .string "&~`\001~\260" .string "~\240\310\022e\277@\030u/\263\022~0\302\035l" .string "z\003\001\276\300\361u\361\001\022q\351\320\361\"~'\001\205\276$" .string "" .string "x$~$\206" .string "\t\262" .string "\024\312\270^\260\036\332\270h\013\312\031}\022\022`\324}!\332\0310\346\030~`" .string "\200\036\276'\001\225h\rz'\001\225~`\234zc\001\277\200.~c\001\277\245\276" .string "&~`\001~\260" .string "~\240\310\022e\277@\030u/\263\022~0\302\036l" .string "z\003\001\277\300\361u\361\001\022q\351\320\361\"~'\001\207\276$" .string "" .string "x$~$\207" .string "\t\262" .string "\024\312\270^\260\036\332\270h\013\312\031}\022\022d\t}!\332\0310\346\030~`" .string "\200\036\276'\001\227h\rz'\001\227~`\234zc\001\300\200.~c\001\300\245\276" .string "&~`\001~\260" .string "~\240\310\022e\277@\030u/\263\022~0\302\037l" .string "z\003\001\300\300\361u\361\001\022q\351\320\361\"\302\257\300\361u\361\001\2512\362\032~\007\001\313\276\004" .string "" .string "x\020\345\3653\202\347@\t\2051/\022~0u\366" .string "\320\361\322\257\"\300\320\300\321\300\340\300\360\312\013\312\033\312+\322\001u/\211\022~0~\024\200" .string "\t\261" .string "\b \340\003\002I\330 pZ\245\n\t\261" .string "\b \340\003\002I\360 qK\245\n\t\261" .string "\b \340\003\002J\b\245\n\t\261" .string "\b \340\003\002J r0\245\n\t\261" .string "\b \340\003\002J8\245\n\t\261" .string "\b \340\003\002JP\245\n\t\261" .string "\b \340\003\002Jh\245\n\t\261" .string "\b \340\003\002J\2000\004\f\302\004\300\361u\361\001\022q\351\320\361\332+\332\033\332\013\320\360\320\340\320\321\320\3202u/\200\022~0T>\n[~D" .string "\377iRf4\312\006OI\211Tu/\201\022~0T>\n[~D" .string "\377iRft\312\006OI\211Tu/\202\022~0T>\n[~D" .string "\377iRf\264\312\006OI\211Tu/\203\022~0T>\n[~D" .string "\377iRf\364\312\006OI\211Tu/\204\022~0T>\n[~D" .string "\377iRg4\312\006OI\211Tu/\205\022~0T>\n[~D" .string "\377iRgt\312\006OI\211Tu/\206\022~0T>\n[~D" .string "\377iRg\264\312\006OI\211Tu/\207\022~0T>\n[~D" .string "\377iRg\364\312\006OI\211T\020\b\001\" (\003\322\b\"u/\240\022~0~\024\200" .string "\200\006 (\003\322\b\"\t\261" .string "\024\312\270^\260\036\332\270h\003\022M\22600\006 \346O\322\b\"0\346\002\322`~7\001y~'\001\231\2352@1}\002.\0052z\0052z7\001y~7\001Y}C-B\276D\r\3148hzG\001Yu/\224\022~0zQ/\022~0\022h4\020`\304\"\302`-#hxm3\200\032~'\001y\276$" .string "" .string "hj\276'\001\231(\004~'\001\231~7\001y\2352}\002.\0052z\0052z7\001y~7\001Y}C-B\276D\r\3148\023zG\001Yu/\224\022~0zQ/\022~0\002h4u/\224\022~0zQ/\022~0\236D\r\315\235$\022h4~4\t\315}$-CzG\001Y\022h4\276% x\003\002K\013\"\322\b~\004\t\315z\007\001Yz\007\001iu/\224\022~0u/" .string "\022~0\"u/\222\022~0\322\004\t\261" .string "\024\312\270T\202\332\270xp~7\001\313~'\001\251.$" .string "\002-2\2764\004" .string "8<}\002.\0050z\0050z7\001\313~7\001\311}C-B\276D\005\3148DzG\001\311~$" .string "" .string ".'\001\251\0338 \0135zQ/\022~0\276P8x\003\002i\037\002i\004u/\231\022~0\t\261" .string "\004T\372\031\261" .string "\00408\n\t\261" .string "\020T\376\031\261" .string "\020\322\020\"\200\177zQ/\022~0\236D\005\315\235$~d" .string "" .string ".g\001\251\236$" .string "\002@\027\0338`\0135\022i\004~4\001\315}$-CzG\001\311\002i\004z9\300~4\001\315z9\320\0134\033D\200\345\2352|\266T\017###D" .string "zi\260zyp\0135u/\223\022~0zq/\022~0\275\004h+z\007\001\311~G\001\313-CzG\001\313.50z50\"\322\004\t\261" .string "\024 \340\023\"~\004\001\315\200(~\004\001\315\200*~\004\001\315\200\317~\007\001\313~$\003\376\235 (@~\007\001\311~D\005\315}`\013\004\275\004h\322}p\013\004\275\004h\320}T\235P\275%@\002}%}2\t\261" .string "\024\312\270T\037\264\0011\332\270~\031\260z\t\260\013\004\033$x\347\002Lou/\231\022~0\t\261" .string "\004T\372\031\261" .string "\00408\n\t\261" .string "\020T\376\031\261" .string "\020\322\020\"\332\2700\340\330\2752h\007\312\270\022Lo\332\270\002M\226\t\261" .string "\030~\240\210u/\220\022~0\365/\022~0\245\375^P\nh\035\245\375^P h\004\322X\200\002\302X\245\375^P\200h\004\322P\200\002\302P\022B\254\002e\234u/\221\022~0\t\261" .string "\024z\261/\022~0 \340\b\322\004~\240\200\002e\234\322\0040\341\006~\240\200\022e\234\312\270^\260\034\332\270h\022~\240\300\ta" .string "" .string "\022e\277\t\261" .string "\024 \340\333\"\002L\303u/\225\022~0\"u/\226\022~0\"\020\t\001\" )\003\322\t\"u/\241\022~0~\024\201" .string "\200\006 )\003\322\t\"\t\261" .string "\024\312\270^\260\036\332\270h\003\022P\31301\006 \346O\322\t\"0\346\002\322a~7\001{~'\001\233\2352@1}\002.\0054z\0054z7\001{~7\001[}C-B\276D\021\3148hzG\001[u/\224\022~0zQ/\022~0\022h4\020a\304\"\302a-#hxm3\200\032~'\001{\276$" .string "" .string "hj\276'\001\233(\004~'\001\233~7\001{\2352}\002.\0054z\0054z7\001{~7\001[}C-B\276D\021\3148\023zG\001[u/\224\022~0zQ/\022~0\002h4u/\224\022~0zQ/\022~0\236D\021\315\235$\022h4~4\r\315}$-CzG\001[\022h4\276% x\003\002N@\"\322\t~\004\r\315z\007\001[z\007\001ku/\224\022~0u/" .string "\022~0\"u/\222\022~0\322\004\t\261" .string "\024\312\270T\202\332\270xp~7\001\313~'\001\253.$" .string "\002-2\2764\004" .ascii "8<}\002.\0050z\0050z7\001\313~7\001\311}C-B\276D\005\3148" .string "DzG\001\311~$\001" .string ".'\001\253\0338 \0135zQ/\022~0\276P8x\003\002i\037\002i\004u/\231\022~0\t\261" .string "\004T\372\031\261" .string "\00409\n\t\261" .string "\020T\376\031\261" .string "\020\322\021\"\200\177zQ/\022~0\236D\005\315\235$~d\001" .string ".g\001\253\236$" .string "\002@\027\0338`\0135\022i\004~4\001\315}$-CzG\001\311\002i\004z9\300~4\001\315z9\320\0134\033D\200\345\2352|\266T\017###D\001zi\260zyp\0135u/\223\022~0zq/\022~0\275\004h+z\007\001\311~G\001\313-CzG\001\313.50z50\"\322\004\t\261" .string "\024 \340\023\"~\004\001\315\200(~\004\001\315\200*~\004\001\315\200\317~\007\001\313~$\003\376\235 (@~\007\001\311~D\005\315}`\013\004\275\004h\322}p\013\004\275\004h\320}T\235P\275%@\002}%}2\t\261" .string "\024\312\270T\037\264\0011\332\270~\031\260z\t\260\013\004\033$x\347\002O\244u/\231\022~0\t\261" .string "\004T\372\031\261" .string "\00409\n\t\261" .string "\020T\376\031\261" .string "\020\322\021\"\332\2700\340\330\2752h\007\312\270\022O\244\332\270\002P\313\t\261" .string "\030~\240\210u/\220\022~0\365/\022~0\245\375^P\nh\035\245\375^P h\004\322Y\200\002\302Y\245\375^P\200h\004\322Q\200\002\302Q\022B\303\002e\234u/\221\022~0\t\261" .string "\024z\261/\022~0 \340\b\322\004~\240\200\002e\234\322\0040\341\006~\240\200\022e\234\312\270^\260\034\332\270h\022~\240\300\ta" .string "" .string "\022e\277\t\261" .string "\024 \340\333\"\002O\370u/\225\022~0\"u/\226\022~0\"\020\n\001\" *\003\322\n\"u/\242\022~0~\024\202" .string "\200\006 *\003\322\n\"\t\261" .string "\024\312\270^\260\036\332\270h\003\022T" .string "02\006 \346O\322\n\"0\346\002\322b~7\001}~'\001\235\2352@1}\002.\0056z\0056z7\001}~7\001]}C-B\276D\025\3148hzG\001]u/\224\022~0zQ/\022~0\022h4\020b\304\"\302b-#hxm3\200\032~'\001}\276$" .string "" .string "hj\276'\001\235(\004~'\001\235~7\001}\2352}\002.\0056z\0056z7\001}~7\001]}C-B\276D\025\3148\023zG\001]u/\224\022~0zQ/\022~0\002h4u/\224\022~0zQ/\022~0\236D\025\315\235$\022h4~4\021\315}$-CzG\001]\022h4\276% x\003\002Qu\"\322\n~\004\021\315z\007\001]z\007\001mu/\224\022~0u/" .string "\022~0\"u/\222\022~0\322\004\t\261" .string "\024\312\270T\202\332\270xp~7\001\313~'\001\255.$" .string "\002-2\2764\004" .string "8<}\002.\0050z\0050z7\001\313~7\001\311}C-B\276D\005\3148DzG\001\311~$\002" .string ".'\001\255\0338 \0135zQ/\022~0\276P8x\003\002i\037\002i\004u/\231\022~0\t\261" .string "\004T\372\031\261" .string "\0040:\n\t\261" .string "\020T\376\031\261" .string "\020\322\022\"\200\177zQ/\022~0\236D\005\315\235$~d\002" .string ".g\001\255\236$" .string "\002@\027\0338`\0135\022i\004~4\001\315}$-CzG\001\311\002i\004z9\300~4\001\315z9\320\0134\033D\200\345\2352|\266T\017###D\002zi\260zyp\0135u/\223\022~0zq/\022~0\275\004h+z\007\001\311~G\001\313-CzG\001\313.50z50\"\322\004\t\261" .string "\024 \340\023\"~\004\001\315\200(~\004\001\315\200*~\004\001\315\200\317~\007\001\313~$\003\376\235 (@~\007\001\311~D\005\315}`\013\004\275\004h\322}p\013\004\275\004h\320}T\235P\275%@\002}%}2\t\261" .string "\024\312\270T\037\264\0011\332\270~\031\260z\t\260\013\004\033$x\347\002R\331u/\231\022~0\t\261" .string "\004T\372\031\261" .string "\0040:\n\t\261" .string "\020T\376\031\261" .string "\020\322\022\"\332\2700\340\330\2752h\007\312\270\022R\331\332\270\002T" .string "\t\261" .string "\030~\240\210u/\220\022~0\365/\022~0\245\375^P\nh\035\245\375^P h\004\322Z\200\002\302Z\245\375^P\200h\004\322R\200\002\302R\022B\332\002e\234u/\221\022~0\t\261" .string "\024z\261/\022~0 \340\b\322\004~\240\200\002e\234\322\0040\341\006~\240\200\022e\234\312\270^\260\034\332\270h\022~\240\300\ta" .string "" .string "\022e\277\t\261" .string "\024 \340\333\"\002S-u/\225\022~0\"u/\226\022~0\"\020\013\001\" +\003\322\013\"u/\243\022~0~\024\203" .string "\200\006 +\003\322\013\"\t\261" .string "\024\312\270^\260\036\332\270h\003\022W503\006 \346O\322\013\"0\346\002\322c~7\001\177~'\001\237\2352@1}\002.\0058z\0058z7\001\177~7\001_}C-B\276D\031\3148hzG\001_u/\224\022~0zQ/\022~0\022h4\020c\304\"\302c-#hxm3\200\032~'\001\177\276$" .string "" .string "hj\276'\001\237(\004~'\001\237~7\001\177\2352}\002.\0058z\0058z7\001\177~7\001_}C-B\276D\031\3148\023zG\001_u/\224\022~0zQ/\022~0\002h4u/\224\022~0zQ/\022~0\236D\031\315\235$\022h4~4\025\315}$-CzG\001_\022h4\276% x\003\002T\252\"\322\013~\004\025\315z\007\001_z\007\001ou/\224\022~0u/" .string "\022~0\"u/\222\022~0\322\004\t\261" .string "\024\312\270T\202\332\270xp~7\001\313~'\001\257.$" .string "\002-2\2764\004" .string "8<}\002.\0050z\0050z7\001\313~7\001\311}C-B\276D\005\3148DzG\001\311~$\003" .string ".'\001\257\0338 \0135zQ/\022~0\276P8x\003\002i\037\002i\004u/\231\022~0\t\261" .string "\004T\372\031\261" .string "\0040;\n\t\261" .string "\020T\376\031\261" .string "\020\322\023\"\200\177zQ/\022~0\236D\005\315\235$~d\003" .string ".g\001\257\236$" .string "\002@\027\0338`\0135\022i\004~4\001\315}$-CzG\001\311\002i\004z9\300~4\001\315z9\320\0134\033D\200\345\2352|\266T\017###D\003zi\260zyp\0135u/\223\022~0zq/\022~0\275\004h+z\007\001\311~G\001\313-CzG\001\313.50z50\"\322\004\t\261" .string "\024 \340\023\"~\004\001\315\200(~\004\001\315\200*~\004\001\315\200\317~\007\001\313~$\003\376\235 (@~\007\001\311~D\005\315}`\013\004\275\004h\322}p\013\004\275\004h\320}T\235P\275%@\002}%}2\t\261" .string "\024\312\270T\037\264\0011\332\270~\031\260z\t\260\013\004\033$x\347\002V\016u/\231\022~0\t\261" .string "\004T\372\031\261" .string "\0040;\n\t\261" .string "\020T\376\031\261" .string "\020\322\023\"\332\2700\340\330\2752h\007\312\270\022V\016\332\270\002W5\t\261" .ascii "\030~\240\210u/\220\022~0" .string "\365/\022~0\245\375^P\nh\035\245\375^P h\004\322[\200\002\302[\245\375^P\200h\004\322S\200\002\302S\022B\361\002e\234u/\221\022~0\t\261" .string "\024z\261/\022~0 \340\b\322\004~\240\200\002e\234\322\0040\341\006~\240\200\022e\234\312\270^\260\034\332\270h\022~\240\300\ta" .string "" .string "\022e\277\t\261" .string "\024 \340\333\"\002Vbu/\225\022~0\"u/\226\022~0\"\020\f\001\" ,\003\322\f\"u/\244\022~0~\024\204" .string "\200\006 ,\003\322\f\"\t\261" .string "\024\312\270^\260\036\332\270h\003\022Zj04\006 \346O\322\f\"0\346\002\322d~7\001\201~'\001\241\2352@1}\002.\005:z\005:z7\001\201~7\001a}C-B\276D\035\3148hzG\001au/\224\022~0zQ/\022~0\022h4\020d\304\"\302d-#hxm3\200\032~'\001\201\276$" .string "" .string "hj\276'\001\241(\004~'\001\241~7\001\201\2352}\002.\005:z\005:z7\001\201~7\001a}C-B\276D\035\3148\023zG\001au/\224\022~0zQ/\022~0\002h4u/\224\022~0zQ/\022~0\236D\035\315\235$\022h4~4\031\315}$-CzG\001a\022h4\276% x\003\002W\337\"\322\f~\004\031\315z\007\001az\007\001qu/\224\022~0u/" .string "\022~0\"u/\222\022~0\322\004\t\261" .string "\024\312\270T\202\332\270xp~7\001\313~'\001\261.$" .string "\002-2\2764\004" .string "8<}\002.\0050z\0050z7\001\313~7\001\311}C-B\276D\005\3148DzG\001\311~$\004" .string ".'\001\261\0338 \0135zQ/\022~0\276P8x\003\002i\037\002i\004u/\231\022~0\t\261" .string "\004T\372\031\261" .string "\0040<\n\t\261" .string "\020T\376\031\261" .string "\020\322\024\"\200\177zQ/\022~0\236D\005\315\235$~d\004" .string ".g\001\261\236$" .string "\002@\027\0338`\0135\022i\004~4\001\315}$-CzG\001\311\002i\004z9\300~4\001\315z9\320\0134\033D\200\345\2352|\266T\017###D\004zi\260zyp\0135u/\223\022~0zq/\022~0\275\004h+z\007\001\311~G\001\313-CzG\001\313.50z50\"\322\004\t\261" .string "\024 \340\023\"~\004\001\315\200(~\004\001\315\200*~\004\001\315\200\317~\007\001\313~$\003\376\235 (@~\007\001\311~D\005\315}`\013\004\275\004h\322}p\013\004\275\004h\320}T\235P\275%@\002}%}2\t\261" .string "\024\312\270T\037\264\0011\332\270~\031\260z\t\260\013\004\033$x\347\002YCu/\231\022~0\t\261" .string "\004T\372\031\261" .string "\0040<\n\t\261" .string "\020T\376\031\261" .string "\020\322\024\"\332\2700\340\330\2752h\007\312\270\022YC\332\270\002Zj\t\261" .string "\030~\240\210u/\220\022~0\365/\022~0\245\375^P\nh\035\245\375^P h\004\322\\\200\002\302\\\245\375^P\200h\004\322T\200\002\302T\022C\b\002e\234u/\221\022~0\t\261" .string "\024z\261/\022~0 \340\b\322\004~\240\200\002e\234\322\0040\341\006~\240\200\022e\234\312\270^\260\034\332\270h\022~\240\300\ta" .string "" .string "\022e\277\t\261" .string "\024 \340\333\"\002Y\227u/\225\022~0\"u/\226\022~0\"\020\r\001\" -\003\322\r\"u/\245\022~0~\024\205" .string "\200\006 -\003\322\r\"\t\261" .string "\024\312\270^\260\036\332\270h\003\022]\23705\006 \346O\322\r\"0\346\002\322e~7\001\203~'\001\243\2352@1}\002.\005<z\005<z7\001\203~7\001c}C-B\276D!\3148hzG\001cu/\224\022~0zQ/\022~0\022h4\020e\304\"\302e-#hxm3\200\032~'\001\203\276$" .string "" .string "hj\276'\001\243(\004~'\001\243~7\001\203\2352}\002.\005<z\005<z7\001\203~7\001c}C-B\276D!\3148\023zG\001cu/\224\022~0zQ/\022~0\002h4u/\224\022~0zQ/\022~0\236D!\315\235$\022h4~4\035\315}$-CzG\001c\022h4\276% x\003\002[\024\"\322\r~\004\035\315z\007\001cz\007\001su/\224\022~0u/" .string "\022~0\"u/\222\022~0\322\004\t\261" .string "\024\312\270T\202\332\270xp~7\001\313~'\001\263.$" .string "\002-2\2764\004" .string "8<}\002.\0050z\0050z7\001\313~7\001\311}C-B\276D\005\3148DzG\001\311~$\005" .string ".'\001\263\0338 \0135zQ/\022~0\276P8x\003\002i\037\002i\004u/\231\022~0\t\261" .string "\004T\372\031\261" .string "\0040=\n\t\261" .string "\020T\376\031\261" .string "\020\322\025\"\200\177zQ/\022~0\236D\005\315\235$~d\005" .string ".g\001\263\236$" .string "\002@\027\0338`\0135\022i\004~4\001\315}$-CzG\001\311\002i\004z9\300~4\001\315z9\320\0134\033D\200\345\2352|\266T\017###D\005zi\260zyp\0135u/\223\022~0zq/\022~0\275\004h+z\007\001\311~G\001\313-CzG\001\313.50z50\"\322\004\t\261" .string "\024 \340\023\"~\004\001\315\200(~\004\001\315\200*~\004\001\315\200\317~\007\001\313~$\003\376\235 (@~\007\001\311~D\005\315}`\013\004\275\004h\322}p\013\004\275\004h\320}T\235P\275%@\002}%}2\t\261" .string "\024\312\270T\037\264\0011\332\270~\031\260z\t\260\013\004\033$x\347\002\\xu/\231\022~0\t\261" .string "\004T\372\031\261" .string "\0040=\n\t\261" .string "\020T\376\031\261" .string "\020\322\025\"\332\2700\340\330\2752h\007\312\270\022\\x\332\270\002]\237\t\261" .string "\030~\240\210u/\220\022~0\365/\022~0\245\375^P\nh\035\245\375^P h\004\322]\200\002\302]\245\375^P\200h\004\322U\200\002\302U\022C\037\002e\234u/\221\022~0\t\261" .string "\024z\261/\022~0 \340\b\322\004~\240\200\002e\234\322\0040\341\006~\240\200\022e\234\312\270^\260\034\332\270h\022~\240\300\ta" .string "" .string "\022e\277\t\261" .string "\024 \340\333\"\002\\\314u/\225\022~0\"u/\226\022~0\"\020\016\001\" .\003\322\016\"u/\246\022~0~\024\206" .string "\200\006 .\003\322\016\"\t\261" .string "\024\312\270^\260\036\332\270h\003\022`\32406\006 \346O\322\016\"0\346\002\322f~7\001\205~'\001\245\2352@1}\002.\005>z\005>z7\001\205~7\001e}C-B\276D%\3148hzG\001eu/\224\022~0zQ/\022~0\022h4\020f\304\"\302f-#hxm3\200\032~'\001\205\276$" .string "" .ascii "hj\276'\001\245(\004~'\001\245~7\001\205\2352}\002.\005>z\005" .ascii ">z7\001\205~7\001e}C-B\276D%\3148\023zG\001eu/\224\022~0zQ/\022" .ascii "~0\002h4u/\224\022~0zQ/\022~0\236D%\315\235$\022h4~4!\315}$-" .ascii "CzG\001" .string "e\022h4\276% x\003\002^I\"\322\016~\004!\315z\007\001ez\007\001uu/\224\022~0u/" .string "\022~0\"u/\222\022~0\322\004\t\261" .string "\024\312\270T\202\332\270xp~7\001\313~'\001\265.$" .string "\002-2\2764\004" .string "8<}\002.\0050z\0050z7\001\313~7\001\311}C-B\276D\005\3148DzG\001\311~$\006" .string ".'\001\265\0338 \0135zQ/\022~0\276P8x\003\002i\037\002i\004u/\231\022~0\t\261" .string "\004T\372\031\261" .string "\0040>\n\t\261" .string "\020T\376\031\261" .string "\020\322\026\"\200\177zQ/\022~0\236D\005\315\235$~d\006" .string ".g\001\265\236$" .string "\002@\027\0338`\0135\022i\004~4\001\315}$-CzG\001\311\002i\004z9\300~4\001\315z9\320\0134\033D\200\345\2352|\266T\017###D\006zi\260zyp\0135u/\223\022~0zq/\022~0\275\004h+z\007\001\311~G\001\313-CzG\001\313.50z50\"\322\004\t\261" .string "\024 \340\023\"~\004\001\315\200(~\004\001\315\200*~\004\001\315\200\317~\007\001\313~$\003\376\235 (@~\007\001\311~D\005\315}`\013\004\275\004h\322}p\013\004\275\004h\320}T\235P\275%@\002}%}2\t\261" .string "\024\312\270T\037\264\0011\332\270~\031\260z\t\260\013\004\033$x\347\002_\255u/\231\022~0\t\261" .string "\004T\372\031\261" .string "\0040>\n\t\261" .string "\020T\376\031\261" .string "\020\322\026\"\332\2700\340\330\2752h\007\312\270\022_\255\332\270\002`\324\t\261" .string "\030~\240\210u/\220\022~0\365/\022~0\245\375^P\nh\035\245\375^P h\004\322^\200\002\302^\245\375^P\200h\004\322V\200\002\302V\022C6\002e\234u/\221\022~0\t\261" .string "\024z\261/\022~0 \340\b\322\004~\240\200\002e\234\322\0040\341\006~\240\200\022e\234\312\270^\260\034\332\270h\022~\240\300\ta" .string "" .string "\022e\277\t\261" .string "\024 \340\333\"\002`\001u/\225\022~0\"u/\226\022~0\"\020\017\001\" /\003\322\017\"u/\247\022~0~\024\207" .string "\200\006 /\003\322\017\"\t\261" .string "\024\312\270^\260\036\332\270h\003\022d\t07\006 \346O\322\017\"0\346\002\322g~7\001\207~'\001\247\2352@1}\002.\005@z\005@z7\001\207~7\001g}C-B\276D)\3148hzG\001gu/\224\022~0zQ/\022~0\022h4\020g\304\"\302g-#hxm3\200\032~'\001\207\276$" .string "" .string "hj\276'\001\247(\004~'\001\247~7\001\207\2352}\002.\005@z\005@z7\001\207~7\001g}C-B\276D)\3148\023zG\001gu/\224\022~0zQ/\022~0\002h4u/\224\022~0zQ/\022~0\236D)\315\235$\022h4~4%\315}$-CzG\001g\022h4\276% x\003\002a~\"\322\017~\004%\315z\007\001gz\007\001wu/\224\022~0u/" .string "\022~0\"u/\222\022~0\322\004\t\261" .string "\024\312\270T\202\332\270xp~7\001\313~'\001\267.$" .string "\002-2\2764\004" .string "8<}\002.\0050z\0050z7\001\313~7\001\311}C-B\276D\005\3148DzG\001\311~$\007" .string ".'\001\267\0338 \0135zQ/\022~0\276P8x\003\002i\037\002i\004u/\231\022~0\t\261" .string "\004T\372\031\261" .string "\0040?\n\t\261" .string "\020T\376\031\261" .string "\020\322\027\"\200\177zQ/\022~0\236D\005\315\235$~d\007" .string ".g\001\267\236$" .string "\002@\027\0338`\0135\022i\004~4\001\315}$-CzG\001\311\002i\004z9\300~4\001\315z9\320\0134\033D\200\345\2352|\266T\017###D\007zi\260zyp\0135u/\223\022~0zq/\022~0\275\004h+z\007\001\311~G\001\313-CzG\001\313.50z50\"\322\004\t\261" .string "\024 \340\023\"~\004\001\315\200(~\004\001\315\200*~\004\001\315\200\317~\007\001\313~$\003\376\235 (@~\007\001\311~D\005\315}`\013\004\275\004h\322}p\013\004\275\004h\320}T\235P\275%@\002}%}2\t\261" .string "\024\312\270T\037\264\0011\332\270~\031\260z\t\260\013\004\033$x\347\002b\342u/\231\022~0\t\261" .string "\004T\372\031\261" .string "\0040?\n\t\261" .string "\020T\376\031\261" .string "\020\322\027\"\332\2700\340\330\2752h\007\312\270\022b\342\332\270\002d\t\t\261" .string "\030~\240\210u/\220\022~0\365/\022~0\245\375^P\nh\035\245\375^P h\004\322_\200\002\302_\245\375^P\200h\004\322W\200\002\302W\022CM\002e\234u/\221\022~0\t\261" .string "\024z\261/\022~0 \340\b\322\004~\240\200\002e\234\322\0040\341\006~\240\200\022e\234\312\270^\260\034\332\270h\022~\240\300\ta" .string "" .string "\022e\277\t\261" .string "\024 \340\333\"\002c6u/\225\022~0\"u/\226\022~0\"|\002~\024\200" .string "L \t\261" .string "\030\245\375^P h\004\322X\200\002\302X\245\375^P\200h\004\322P\200\002\302P\002e\210|\002~\024\200" .string "L \t\261" .string "\030\245\375^P h\004\322Y\200\002\302Y\245\375^P\200h\004\322Q\200\002\302Q\002e\210|\002~\024\200" .string "L \t\261" .string "\030\245\375^P h\004\322Z\200\002\302Z\245\375^P\200h\004\322R\200\002\302R\002e\210|\002~\024\200" .string "L \t\261" .string "\030\245\375^P h\004\322[\200\002\302[\245\375^P\200h\004\322S\200\002\302S\002e\210|\002~\024\200" .string "L \t\261" .string "\030\245\375^P h\004\322\\\200\002\302\\\245\375^P\200h\004\322T\200\002\302T\002e\210|\002~\024\200" .string "L \t\261" .string "\030\245\375^P h\004\322]\200\002\302]\245\375^P\200h\004\322U\200\002\302U\002e\210|\002~\024\200" .string "L \t\261" .string "\030\245\375^P h\004\322^\200\002\302^\245\375^P\200h\004\322V\200\002\302V\002e\210|\002~\024\200" .string "L \t\261" .string "\030\245\375^P h\004\322_\200\002\302_\245\375^P\200h\004\322W\200\002\302W\002e\210T\360\304\245\377\304\245Ou/\220\022~0\365/\022~0\"\312\031^ \007L\242~t)\315\312yzy\240\013tzy\260\013t\332y~0\002~d" .string "\002\002e\347\312\031^ \007L\242~t)\315\312yzy\240\013tzy\260\013tzy`\013t\332y~0\003~d" .string "\003\002e\347\322\004~'\001\313-&\276$\004" .ascii "8.~\007\001\311~D\005\315~y\240z\t\240\013\004\013t\275\004h" .ascii "#\245\333\357z'\001\313~%0-&z%0z\007\001\311\332\031\302\327" .ascii "\"u/\232\022~0\332\031\322\327\"~\004\001\315\200\327MBJ\256" .ascii "K\250M{IOIOL\247IOM\277IOIOIOIOIOIOIOM\306IOIOIOIOIOIOIOIOIO" .ascii "IOIOIOIOIOIOPwM\343N\335P\260IOIOO\334IOP\364IOIOIOIO" .ascii "IOIOIOP\373IOIOIOIOIOIOIOIOIOIOIOIOIOIOIOS\254Q\030R\022S\345" .ascii "IOIOS\021IOT)IOIOIOIOIOIOIOT0IOIOIOIOIOIOIOIOIOIOIOIOIOIOIOV" .ascii "\341TMUGW\032IOIOVFIOW^IOIOIOIOIOIOIOWeIOIOIOIOIOIOIOIOIOIOI" .ascii "OIOIOIOIOZ\026W\202X|ZOIOIOY{IOZ\223IOI" .string "OIOIOIOIOIOZ\232IOIOIOIOIOIOIOIOIOIOIOIOIOIOIO]KZ\267[\261]\204IOIO\\\260IO]\310IOIOIOIOIOIOIO]\317IOIOIOIOIOIOIOIOIOIOIOIOIOIOIO`\200]\354^\346`\271IOIO_\345IO`\375IOIOIOIOIOIOIOa\004IOIOIOIOIOIOIOIOIOIOIOIOIOIOIOc\265a!b\033c\356IOIOc\032IOd2IOIOIOIOIOIOIOd9IOIOIOIOIOIOIOIOIOIOIOIOIOIOIO\312)\036P@\r~T\013\020\234\265\244.ThQ\211T~9" .string "z\031" .string "\0134\200\351\0138" .string "z\031" .string "z\031\020\0135\0138" .string "z\031" .string "z\031\020\0135\0138" .string "z\031" .string "z\031\020\0135\0138" .string "z\031" .string "z\031\020\0135\0138" .string "z\031" .string "z\031\020\0135\0138" .string "z\031" .string "z\031\020\0135\0138" .string "z\031" .string "z\031\020\0135\0138" .string "z\031" .string "z\031\020\0135\0138" .string "z\031" .string "z\031\020\0135\0138" .string "z\031" .string "z\031\020\0135\0138" .string "z\031" .string "z\031\020\0135\0138" .string "z\031" .string "z\031\020\0135\0138" .string "z\031" .string "z\031\020\0135\0138" .string "z\031" .string "z\031\020\0135\0138" .string "z\031" .string "z\031\020\0135\0138" .string "z\031" .string "z\031\020\0135\332)\"\036P@\r~T\013\034\234\265\244.Ti\037\211T~\031" .string "z9" .string "\0134\200\351~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135~\031" .string "~\031\020\0338" .string "\0135\"j\233lOlgl\202m\035m\265m\320nbm\353n,|\263\276\260\t(\024u/\t\022~0uW\020\300\361u\361\001C\341\300\320\361\"\300\250\302\257#l\252.TjT\013XP\211T\001\002\004\b\020 @\200u/\260\022~0\n\"\t\262j\223B$\320\250\"|\262#\n;I3j\267\2114j\307j\365k#kQk\177k\255k\333l\t\022A\251\322(\322\b\302@\302H\3028\3020m" .string "z\003\001\271~\004" .string " z\007\001\231~\004" .string "8z\007\001\251\022A\026\022d@\002l7\022A\306\322)\322\t\302A\302I\3029\3021m" .string "z\003\001\272~\004" .string " z\007\001\233~\004" .string "8z\007\001\253\022A\026\022di\002l7\022A\343\322*\322\n\302B\302J\302:\3022m" .string "z\003\001\273~\004" .string " z\007\001\235~\004" .string "8z\007\001\255\022A\026\022d\222\002l7\022B" .string "\322+\322\013\302C\302K\302;\3023m" .string "z\003\001\274~\004" .string " z\007\001\237~\004" .string "8z\007\001\257\022A\026\022d\273\002l7\022B\035\322,\322\f\302D\302L\302<\3024m" .string "z\003\001\275~\004" .string " z\007\001\241~\004" .string "8z\007\001\261\022A\026\022d\344\002l7\022B:\322-\322\r\302E\302M\302=\3025m" .string "z\003\001\276~\004" .string " z\007\001\243~\004" .string "8z\007\001\263\022A\026\022e\r\002l7\022BW\322.\322\016\302F\302N\302>\3026m" .string "z\003\001\277~\004" .string " z\007\001\245~\004" .string "8z\007\001\265\022A\026\022e6\002l7\022Bt\322/\322\017\302G\302O\302?\3027m" .string "z\003\001\300~\004" .string " z\007\001\247~\004" .string "8z\007\001\267\022A\026\022e_\002l7~\240\320~`\017\022e\277@\f\300\361u\361\001\022q\351\320\361\302\327\"u/\261\022~0\nR#m" .string "Y\005" .string "2\022Ar\022A\216\320\250\"u/\262\022~0\n\"\t\262j\223B#~\260\234\031\262\001\271\022Et\320\250\"~\004\200" .string "L\002\t0" .string "\ft\277\031\260" .string "\f\t\260" .string "\b\0310" .string "\f|t^p\001h\022D@\312\270\t\260" .string "\020D\002\031\260" .string "\020\332\270\200\002T\277|t^p\bh\004D\b\200\002T\367\t0" .string "\f\312\270t\277\031\260" .string "\f\332\270\031\260" .string "\b\0310" .string "\f\nb\t\266j\223> \nb|t^p\002h B'\312\270ta\031\260" .string "\b~D" .string "\020YF\001\251\t\260" .string "\020D\001\031\260" .string "\020\332\270\200\021\364R't\241\031\260" .string "\b~D" .string "8YF\001\251\320\250\"|t~\004\200" .string "L\002\t0" .string "\ft\277\031\260" .string "\f\t\260" .string "\b|t^p\001h\004D\200\200\002T\177|t^p\bh\004D\002\200\002T\375\031\260" .string "\b\0310" .string "\f\nb\t\266j\223\245\375\364\245\376\312(> \nb\332(|t^p\002h\020\245\355B(B&~D" .string "\bYF\001\231\200\004\245\356R(|t^p\004h\020\245\355B)B&~D" .string "\bYF\001\231\200\025\245\356R)|t^p\002x\nR&~D" .string " YF\001\231\022B\221\320\250\"~\004\200" .string "L\002\t0" .string "\ft\277\031\260" .string "\f\031@" .string "\020\0310" .string "\f\320\250\"~\004\200" .string "L\002\t0" .string "\ft\277\031\260" .string "\f\031@" .string "\030\0310" .string "\f\320\250\"u/\265\022~0~\004\200" .string "L\002\t\260" .string "\fD@\031\260" .string "\f\345X\264\007#\t\260" .string "\020N\260\002\031\260" .string "\020\t0" .string "\ft\277\031\260" .string "\f\t\260" .string "\004T\367\031\260" .string "\004\0310" .string "\f\320\250\"u/\266\022~0~\004\200" .string "L\002\345X\264\007\030\t0" .string "\ft\277\031\260" .string "\f\t\260" .string "\004D\b\031\260" .string "\004\0310" .string "\f\t\260" .string "\fT\277\031\260" .string "\f\320\250\"u/\264\022~0z!/\022~0zA/\022~0~\260\001~\240\310|d\022e\277\300\361u\361\001\022q\351\320\361\320\250\"n\234n\343o*oqo\270o\377pFp\215u/U\022~0u/" .ascii "\022~0za/\022~0zq/\022~0~\027\001i~'\001y-#~\t\260\013\004z\031" .ascii "\260\013\024\276\024\r\3148\017\0334x\354z\027\001iz'\001y\002" .ascii "J\230~\024\t\315\200\353u/U\022~0u/\001\022~0za/\022~0zq/\022" .ascii "~0~\027\001k~'\001{-#~\t\260\013\004z\031\260\013\024\276\024" .ascii "\021\3148\017\0334x\354z\027\001kz'\001{\002M\315~\024\r\315" .ascii "\200\353u/U\022~0u/\002\022~0za/\022~0zq/\022~0~\027\001m~'\001" .ascii "}-#~\t\260\013\004z\031\260\013\024\276\024\025\3148\017\033" .ascii "4x\354z\027\001mz'\001}\002Q\002~\024\021\315\200\353u/U\022" .ascii "~0u/\003\022~0za/\022~0zq/\022~0~\027\001o~'\001\177-#~\t\260" .ascii "\013\004z\031\260\013\024\276\024\031\3148\017\0334x\354z\027" .ascii "\001oz'\001\177\002T7~\024\025\315\200\353u/U\022~0u/\004\022" .ascii "~0za/\022~0zq/\022~0~\027\001q~'\001\201-#~\t\260\013\004z\031" .ascii "\260\013\024\276\024\035\3148\017\0334x\354z\027\001qz'\001\201" .ascii "\002Wl~\024\031\315\200\353u/U\022~0u/\005\022~0za/\022~0zq/" .ascii "\022~0~\027\001s~'\001\203-#~\t\260\013\004z\031\260\013\024" .ascii "\276\024!\3148\017\033" .string "4x\354z\027\001sz'\001\203\002Z\241~\024\035\315\200\353u/U\022~0u/\006\022~0za/\022~0zq/\022~0~\027\001u~'\001\205-#~\t\260\013\004z\031\260\013\024\276\024%\3148\017\0334x\354z\027\001uz'\001\205\002]\326~\024!\315\200\353u/U\022~0u/\007\022~0za/\022~0zq/\022~0~\027\001w~'\001\207-#~\t\260\013\004z\031\260\013\024\276\024)\3148\017\0334x\354z\027\001wz'\001\207\002a\013~\024%\315\200\353\312\270\300\361u/\002\022~0\345\300T\003h\005\022w\335\200\3650\302\bu\361\001\022q\351\200\0240\303\bu\361\001\022q\r\200\t0\304\006u\361\002\022r\371\320\361\332\2702u/\020\022~0\312\013\3129\312Y\302\303\251!\342\\\345\345T\300hO\345\346l\252~7\001\305-5\2764\004" .string "8Jz7\001\305~7\001\303}C-E\276D\t\3148@zG\001\303u/\021\022~0z\261/\022~0\022s\310\251!\345\037\251\324\344\251$\344\374\302\303\251!\342;\345\345T\300x\264\022vj\332Y\3329\332\013\"\200)\200Xu/\026\022~0\200\355u/\022\022~0z\261/\022~0\236D\t\315\235T\022s\310~4\005\315}T-C\200\241\345\345T\003x\022u/\023\022~0~\017)\351\013\fz\017)\351\200\247u/\024\022~0~\017)\355\013\fz\017)\355\251\327\344\251'\344\374\200\235u/\025\022~0~\017)\361\013\fz\017)\361\200\345u/\030\022~0\312\t\3129\312+\302\302\251!\362R\345\3653\202\347@D~7\001\313~T" .string "@\2355@Cz7\001\313~7\001\307}C-E\276D\005\3148RzG\001\307}E\022u&\251 \365\"u/\031\022~0z\221/\022~0z\201\367z\221\366\345\3653\202\347P\274\332+\3329\332\t\"\200A\200d-Sm3p\267~\004\001\315z\007\001\311z\007\001\307\2512\362\337\2050/\022~0u\366" .ascii "\200\324\312Y\236D\005\315\235T\022u&~4\001\315}T-CzG\001\307" .ascii "\022u&\332I\200\231\345\365T\003x" .string "\037~\017)\331\013\fz\017)\331\200\235~\017)\341\013\fz\017)\341\251\327\364\251'\364\374\200\212~\017)\335\013\fz\017)\335\200\353\345\365T\003x\037~/)\371\013,z/)\371\2004~/*\001\013,z/*\001\251\327\364\251'\364\374\200!~/)\375\013,z/)\375\200\353\332+\332\033\332\013\"u/(\022~0\312\013\312\033\312+\302\304\251!\362\266\345\3653r\347@\340~\r0~\0354~-8~=<~\205@}\220M\221M\222M\223M\224M\225M\226M\227M\230hrz\021\363z\001\363z1\363z!\363zQ\363zA\363zq\363za\363z\221\363z\201\3630s\032z\261\363z\241\363z\321\363z\301\363z\361\363z\341\363}xz\361\363z\341\363\2510\365\003\002r\346u/)\022~0 s\013u/\n\022~0u\366\n\200\tu/\022\022~0u\366\022m" .ascii "}\020z\r0z\r4z\r8z\r<z\005@\332+\332\033\332\013\"\036\260@\f" .ascii "~\240\n\244~\004u\013\235\005\211\004~\241\343z9\240\0134\200" .ascii "\352\264@\343~\241\343\345\343\0338P\0135~\241\343\345\343\033" .ascii "8P\0135~\241\343\345\343\0338P\0135~\241\343\345\343\0338P\013" .ascii "5~\241\343\345\343\0338P\0135~\241\343\345\343\0338P\0135~\241" .ascii "\343\345\343\0338P\0135~\241\343\345\343\0338P\0135~\241\343" .ascii "\345\343\0338P\0135~\241\343\345\343\0338P\0135~\241\343\345" .ascii "\343\0338P\0135~\241\343\345\343\0338P\0135~\241\343\345\343" .ascii "\0338P\0135~\241\343\345\343\0338P\0135~\241\343\345\343\033" .ascii "8P\0135~\241\343\345\343\0338P\0135~\241\343\345\343\0338P\013" .ascii "5~\241\343\345\343\0338P\0135~\241\343\345\343\0338P\0135~\241" .ascii "\343\345\343\0338P\0135~\241\343\345\343\0338P\0135~\241\343" .ascii "\345\343\0338P\0135~\241\343\345\343\0338P\0135~\241\343\345" .ascii "\343\0338P\0135~\241\343\345\343\0338P\0135~\241\343\345\343" .ascii "\0338P\0135~\241\343\345\343\0338P\0135~\241\343\345\343\033" .ascii "8P\0135~\241\343\345\343\0338P\0135~\241\343\345\343\0338P\013" .ascii "5~\241\343\345\343\0338P\0135~\241\343\345\343\0338P\0135\"\036" .ascii "\260@\f~\240\n\244~\004vi\235\005\211\004~9\240z\241\363\013" .ascii "4\200\352\264@\343\0138Pz\241\363\365\363\0135\0138Pz\241\363" .ascii "\365\363\0135\0138Pz\241\363\365\363\0135\0138Pz\241\363\365" .ascii "\363\0135\0138Pz\241\363\365\363\0135\0138Pz\241\363\365\363" .ascii "\0135\0138Pz\241\363\365\363\0135\0138Pz\241\363\365\363\013" .ascii "5\0138Pz\241\363\365\363\0135\0138Pz\241\363\365\363\0135\013" .ascii "8Pz\241\363\365\363\0135\0138Pz\241\363\365\363\0135\0138Pz\241" .ascii "\363\365\363\0135\0138Pz\241\363\365\363\0135\0138Pz\241\363" .ascii "\365\363\0135\0138Pz\241\363\365\363\0135\0138Pz\241\363\365" .ascii "\363\0135\0138Pz\241\363\365\363\0135\0138Pz\241\363\365\363" .ascii "\0135\0138Pz\241\363\365\363\0135\0138Pz\241\363\365\363\013" .ascii "5\0138Pz\241\363\365\363\0135\0138Pz\241\363\365\363\0135\013" .ascii "8Pz\241\363\365\363\0135\0138Pz\241\363\365\363\0135\0138Pz\241" .ascii "\363\365\363\0135\013" .string "8Pz\241\363\365\363\0135\0138Pz\241\363\365\363\0135\0138Pz\241\363\365\363\0135\0138Pz\241\363\365\363\0135\0138Pz\241\363\365\363\0135\0138Pz\241\363\365\363\0135\"\302\257~7\001\305M3h;~\007\001\301~T\t\315\235P\2755@\002}5\3129~eK\231d\3329~\007\001\305\235\003z\007\001\305.7\001\301z7\001\301\2764\t\314(\307~4\005\315z7\001\301\200\275\322\257\"u/S\022~0~\025M\200\021u/Q\022~0\013\b\020\013\005\2364" .string "\002(M|\262 \347'T\007#\n+I\"n\214|\262Tx\003\003\003|+\235\023@\032h\022z\025Mz%O~dwGzeK\211$\002wU~dv\275\200\362-\023\2351\3129}1-\020\312\031\312)\231$\332)\332\t\3329\200\242z\025M~dw3M3x\t|\262 \347*~dv\262zeK\"u/R\022~0~!M~\t0\013\004\0334x\211\200\324u/T\022~0~\025M~%O\200\220^ \007Tx~Dw\3210\346\026M3h&\0334~\t@\013\004~Djh \343\004~Dw\331\312\t\3129\231D\3329\332\t~dv\275M3h\246\211dz\025M\365O~dw\226\200\231~\025M\345O\200\304\300\320\300\321\300\340\312\031\251 \337\022\251!\337\033u/\001\022~0S\337\367\022@\334\200\ru/\376\022~0~\024" .string "S\002@Q\332\031\320\340\320\321\320\3202\003\245\313\031\261\200" .string "\"\"\002xR\312\013\312\033\312+\312;\312K\312[\312k\312{\312\353\300\361~\263*\035\264" .string "\002\200\031\264\001\0260\300\bu\361" .string "\022x<\200\0370\301\034u\361" .string "\022x\315\200\0240\301\bu\361" .string "\022x\315\200\t0\300\006u\361" .string "\022x<\320\361\332\353\332{\332k\332[\332K\332;\332+\332\033\332\013\"\302\300~\263*\035\264\002\007\022x^\002xR\"\264\001\374\002x\230~" .string "" .string "z\003*\035z\003*\036\"~\263*\025T``\005\264@\025\200\023~\263*\026\264\005\fu/q\022~0~\263*\030\365\217\"u\366" .string "\"\276W*\033(\004~W*\033z\017* zW*$\002x\230~\357* ~\367*$~\007*$M" .string "h!~" .string "" .string "~\353\260\365\363\243\245\b\033\364h\004\245\270\b\360z\357* z\367*$u/\006\022~0z\001\366\"\302\301u/\003\022~0\2516\342\026\345\365T\300h\007\251\327\364\251'\364\374S\341?C\362\210\002yD~\263*\036\264\002\017\251\324\344~\260" .string "z\263*\036z\263*\035\"\264\0019~!\346|2~\023*\037,!z#*\037~" .string "" .string ".\004*&\345\343z\t\260\013\004\245\333\366\251\324\344u/p\022~0~\263*\037~\243*\034\274\253x\003\022y\333\"\002}D\345\346\264\be\251\304\342~\001\343~\021\343~1\343~!\343~Q\343~A\343~q\343~a\343z\017*\025z\037*\031u/\004\022~0z\001/\022~0z\021/\022~0z!/\022~0z1/\022~0zA/\022~0zQ/\022~0za/\022~0zq/\022~0\251\324\344\251\327\364\251\306\342\022y\257\"m" .string "~\024\001\002z\007*$z\003*\037~\263*\025 \347\017z#*\036z3*\035\276\007*\033h\t\"z3*\036z#*\035~\263*\025T\343##0\340\002\322\3450\347\002\322\3440\345\0060\344\003\002}DT>\365\360\003T\037\303%\360\220z\007u\204\377s\002{[\002zO\002{\370\002|\023\002z\364\002z\265\002|,\002|,\002|/\002|/\002|/\002|/\002|/\002|/\002|/\002|/\002|5\002|\351\002|2\002|2\002|2\002|2\002|2\002|2~\263*\026\264\006*~\263*\027`V|\013~\023*\030~\027*\031u/r\022~0z\001/\022~0z\021/\022~0\022}N@5\002x\203\264\b\020u/t\022~0~\263?\361\365\363u\366\001\"\264" .string "\034u/u\022~0~\263?\3620\340\005u\363\002\200\003u\363" .string "u\363" .string "u\366\002\"\002}D~\263*\026\264" .string "5u/v\022~0~\263*\032T\017\365\361~\263*\032 \347\t\345\3410\347\rt\001\200\013\345\3410\346\004t\001\200\002t" .string "S\361\200\365\363u\363" .string "u\366\002\"\002}D\300\361~\263*\032T\017B\361~\263*\030\264" .ascii "E~\263*\026\264\001$u/w\022~0~\263*\032T\017x\005S\341?\2007" .ascii "~\263*\032 \347\005S\341\177\200+S\341\277\200&\264\003\027u" .ascii "/x\022~0~\263*\032 \347\005C\341\200\200" .string "\021C\341@\200\fC\341\300\320\361u/\007\022~0\"\320\361\002x\177~\263*\026\264\t#u/y\022~0~\263*\030\276\263?\361h\021\312\270\300\361\022Ch\320\361\332\270Pvz\263?\361\200m\264\005\bu/z\022~0\200b\264\003\031u/{\022~0~\263*\030\264\001U~\263?\362D\001z\263?\362\200F\264\001\031u/|\022~0~\263*\030\264\0019~\263?\362T\376z\263?\362\200*\264\007*~\263*\027`$|\013~\023*\030~\027*\031u/s\022~0z\001/\022~0z\021/\022~0\022}z@\003\002x\177\002}D~\263*\026\264\013\366u/}\022~0~\263*\030~\243*\032L\253x\344\200\337~\263*\026\264\n\333u/~\022~0~\263*\030p\317\365\363u\366\001\"\002}D\002}D\002}D~\263*\026\264\004 u/\303\022~0~\004" .string "\001~\027*\027~\030*&z\034" .string "" .string "~G*\033\022~<\002|\343\264\006:u/\301\022~0~X" .string "" .string "z\\" .string "\376}\312~\327*\027~x*&z|" .string "" .string "~w*\033u/\301\022~0\300\250\300\207\302\257\251\325\207\022~u\320\207\320\250@O\200J\264" .string "\034\302\257\251\325\207\022x\177\344\215\357\215\357\215\357\325\340\367\300\321\312\002\377\312\006" .string "" .string "2\264\t\022~W*\027MUh\005\251\322\261\200\003\251\302\261\200\026\264\007\026\302\257~\007*\031~\027*\027\300\321\312\030\3128\312(2\002x\177\002}D~\263*\026\264\003\025u/\302\022~0~\004" .string "\001~\027*\027~W*\033\002x\203\264\0059u/\300\022~0\300\250\300\207\302\257\251\325\207~\b*&z\f" .string "" .string "~$" .string "\376~7*\027~G*\033\022~<\320\207\320\250~\b*&z\f" .string "" .string "~W*\033\002x\203\002}Du/\007\022~0C\341\300\"\300\250\300\207\302\257\251\325\207\022}\271@\031~\b*&z\f" .string "" .string "\312\013\312I\022~<\332Y\332\013\320\207\320\250\303\"\320\207\320\250\"\300\250\300\207\302\257\251\325\207\022}\271@+~X" .string "" .string "z\\" .string "\376\177a~x*&z|" .string "" .string "~w*\033\275tx\021u/\301\022~0\022~u@\006\320\207\320\250\303\"\320\207\320\250\323\"~$" .string "\376~4\177\312\013\032P\305\360}b}u}\207~4\177\302~\033\260~4\177\003\264\001\004~4\177\314~\033\260\274\013PI>" .string ">" .string "\nP-u\013:0iS" .ascii "\002\2758P\002-8\274\033P0" .string ">\020>\020\nQ-5iA" .string "\002\013\0320\2758P\002-8\276D\377\377x\005~\033\220\nIMDh\f\276D" .string "\377(\004~D" .string "\377\303\"\323\"\377" .string "\306\177\004" .string "\001\f\003" .string "\377" .string "0~;\001\312\b~\001/z\003?\360\332\b\"~\033\300z\013\300\013\024\0134\033Dx\362\"\177o\177\360\033\374|T}2\200\b\312\033\312\033\312\033\312\033\236D" .string "\020P\362.D" .string "\020h\006\312H\033Dx\372\177\366\211\344\312k^\324" .string "?h ~\204" .string "@\235\215\332k\275\2078\026\312y}x\022~\237\332y@\b\235xh\002\200\005\302\327\"\332kC\2200t\2529\265UUtU9\265*\252t\2409\265UU~\004" .string "@\235pP\006-p}\007mw|1~{" .string "zk" .string "\013|\013l\245\331\363\177\026\033\034~T'\020~\033\020\274\020h\006\033Tx\365\200,m" .string "| \177\026\237\020\177'\237 ~+" .string "~\033\020\274\001x\026\013,\013\034\245\333\357|\266 \340\003c\2200Mwx\223\302\327\"\322\327\"" .string "\004" .string "\004" .string "" .string "\006\004\002\004" .string "\002\001\004\001\002" .string "" .string "" .string "" .string "" .string "" .string "" .string "" .string "\002\002\002\002\002\004" .string "\b\020\002\020\004\002\b" .string "\001\001\b~\030\177\275z\034" .string "\376\013\032" .string "\276\020\0248\032\nQ#~\030\177\025z\034" .ascii "\377-5\013\032P`\b\245\270\002\003N\240\b\"\200\376" .align 3 .type FirmwareImageVersion, %object .size FirmwareImageVersion, 4 FirmwareImageVersion: .byte 1 .byte 12 .hword 3 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global nil .bss .align 3 .type nil, %object .size nil, 24 nil: .zero 24 .global C_TRUE .data .align 3 .type C_TRUE, %object .size C_TRUE, 24 C_TRUE: .word 2 .zero 4 .byte 1 .zero 15 .global C_FALSE .align 3 .type C_FALSE, %object .size C_FALSE, 24 C_FALSE: .word 2 .zero 4 .byte 0 .zero 15 .global UNBOUND .section .rodata .align 3 .LC0: .string "Unbound variable!" .section .data.rel.local,"aw" .align 3 .type UNBOUND, %object .size UNBOUND, 24 UNBOUND: .word 1 .zero 4 .xword .LC0 .zero 8 .text .align 2 .global atom .type atom, %function atom: .LFB6: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str x0, [sp, 8] ldr x0, [sp, 8] cmp x0, 0 beq .L2 ldr x1, [sp, 8] adrp x0, nil add x0, x0, :lo12:nil cmp x1, x0 beq .L2 ldr x0, [sp, 8] ldr w0, [x0] cmp w0, 3 beq .L3 .L2: mov w0, 1 b .L5 .L3: mov w0, 0 .L5: add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size atom, .-atom .align 2 .global car .type car, %function car: .LFB7: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str x0, [sp, 8] ldr x0, [sp, 8] cmp x0, 0 beq .L7 ldr x1, [sp, 8] adrp x0, nil add x0, x0, :lo12:nil cmp x1, x0 bne .L8 .L7: adrp x0, nil add x0, x0, :lo12:nil b .L9 .L8: ldr x0, [sp, 8] ldr w0, [x0] cmp w0, 3 bne .L10 ldr x0, [sp, 8] ldr x0, [x0, 8] b .L9 .L10: adrp x0, nil add x0, x0, :lo12:nil .L9: add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size car, .-car .align 2 .global cdr .type cdr, %function cdr: .LFB8: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str x0, [sp, 8] ldr x0, [sp, 8] cmp x0, 0 beq .L12 ldr x1, [sp, 8] adrp x0, nil add x0, x0, :lo12:nil cmp x1, x0 bne .L13 .L12: adrp x0, nil add x0, x0, :lo12:nil b .L14 .L13: ldr x0, [sp, 8] ldr w0, [x0] cmp w0, 3 bne .L15 ldr x0, [sp, 8] ldr x0, [x0, 16] b .L14 .L15: adrp x0, nil add x0, x0, :lo12:nil .L14: add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size cdr, .-cdr .align 2 .global new_cons .type new_cons, %function new_cons: .LFB9: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp mov x0, 24 bl malloc str x0, [sp, 24] ldr x0, [sp, 24] mov w1, 3 str w1, [x0] ldr x0, [sp, 24] str xzr, [x0, 8] ldr x0, [sp, 24] str xzr, [x0, 16] ldr x0, [sp, 24] ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE9: .size new_cons, .-new_cons .align 2 .global list .type list, %function list: .LFB10: .cfi_startproc stp x29, x30, [sp, -288]! .cfi_def_cfa_offset 288 .cfi_offset 29, -288 .cfi_offset 30, -280 mov x29, sp str w0, [sp, 28] str x1, [sp, 232] str x2, [sp, 240] str x3, [sp, 248] str x4, [sp, 256] str x5, [sp, 264] str x6, [sp, 272] str x7, [sp, 280] str q0, [sp, 96] str q1, [sp, 112] str q2, [sp, 128] str q3, [sp, 144] str q4, [sp, 160] str q5, [sp, 176] str q6, [sp, 192] str q7, [sp, 208] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 88] mov x1, 0 add x0, sp, 288 str x0, [sp, 56] add x0, sp, 288 str x0, [sp, 64] add x0, sp, 224 str x0, [sp, 72] mov w0, -56 str w0, [sp, 80] mov w0, -128 str w0, [sp, 84] str wzr, [sp, 36] bl new_cons str x0, [sp, 40] ldr x0, [sp, 40] str x0, [sp, 48] str wzr, [sp, 36] b .L19 .L26: ldr w1, [sp, 80] ldr x0, [sp, 56] cmp w1, 0 blt .L20 add x1, x0, 15 and x1, x1, -8 str x1, [sp, 56] b .L21 .L20: add w2, w1, 8 str w2, [sp, 80] ldr w2, [sp, 80] cmp w2, 0 ble .L22 add x1, x0, 15 and x1, x1, -8 str x1, [sp, 56] b .L21 .L22: ldr x2, [sp, 64] sxtw x0, w1 add x0, x2, x0 .L21: ldr x1, [x0] ldr x0, [sp, 40] str x1, [x0, 8] ldr w0, [sp, 28] sub w0, w0, #1 ldr w1, [sp, 36] cmp w1, w0 beq .L24 bl new_cons mov x1, x0 ldr x0, [sp, 40] str x1, [x0, 16] ldr x0, [sp, 40] ldr x0, [x0, 16] adrp x1, nil add x1, x1, :lo12:nil str x1, [x0, 16] ldr x0, [sp, 40] ldr x0, [x0, 16] str x0, [sp, 40] b .L25 .L24: ldr x0, [sp, 40] adrp x1, nil add x1, x1, :lo12:nil str x1, [x0, 16] .L25: ldr w0, [sp, 36] add w0, w0, 1 str w0, [sp, 36] .L19: ldr w1, [sp, 36] ldr w0, [sp, 28] cmp w1, w0 blt .L26 ldr x0, [sp, 48] mov x1, x0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 88] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L28 bl __stack_chk_fail .L28: mov x0, x1 ldp x29, x30, [sp], 288 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE10: .size list, .-list .align 2 .global cons .type cons, %function cons: .LFB11: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] bl new_cons str x0, [sp, 40] ldr x0, [sp, 40] mov w1, 3 str w1, [x0] ldr x0, [sp, 40] ldr x1, [sp, 24] str x1, [x0, 8] ldr x0, [sp, 40] ldr x1, [sp, 16] str x1, [x0, 16] ldr x0, [sp, 40] ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE11: .size cons, .-cons .align 2 .global new_int .type new_int, %function new_int: .LFB12: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str w0, [sp, 28] mov x0, 24 bl malloc str x0, [sp, 40] ldr x0, [sp, 40] str wzr, [x0] ldr x0, [sp, 40] ldr w1, [sp, 28] str w1, [x0, 8] ldr x0, [sp, 40] ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE12: .size new_int, .-new_int .align 2 .global new_sym .type new_sym, %function new_sym: .LFB13: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] mov x0, 24 bl malloc str x0, [sp, 40] ldr x0, [sp, 40] mov w1, 1 str w1, [x0] ldr x0, [sp, 24] bl strdup mov x1, x0 ldr x0, [sp, 40] str x1, [x0, 8] ldr x0, [sp, 40] ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE13: .size new_sym, .-new_sym .align 2 .global eq .type eq, %function eq: .LFB14: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] ldr x1, [sp, 24] ldr x0, [sp, 16] cmp x1, x0 bne .L36 mov w0, 1 b .L37 .L36: ldr x0, [sp, 24] ldr w1, [x0] ldr x0, [sp, 16] ldr w0, [x0] cmp w1, w0 beq .L38 mov w0, 0 b .L37 .L38: ldr x0, [sp, 24] ldr w0, [x0] cmp w0, 2 beq .L39 cmp w0, 2 bhi .L40 cmp w0, 0 beq .L41 cmp w0, 1 beq .L42 b .L40 .L41: ldr x0, [sp, 24] ldr w1, [x0, 8] ldr x0, [sp, 16] ldr w0, [x0, 8] cmp w1, w0 cset w0, eq and w0, w0, 255 b .L37 .L42: ldr x0, [sp, 24] ldr x2, [x0, 8] ldr x0, [sp, 16] ldr x0, [x0, 8] mov x1, x0 mov x0, x2 bl strcmp cmp w0, 0 cset w0, eq and w0, w0, 255 b .L37 .L39: ldr x0, [sp, 24] ldrb w1, [x0, 8] ldr x0, [sp, 16] ldrb w0, [x0, 8] cmp w1, w0 cset w0, eq and w0, w0, 255 b .L37 .L40: mov w0, 0 .L37: ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE14: .size eq, .-eq .section .rodata .align 3 .LC1: .string "NIL" .align 3 .LC2: .string "%d" .align 3 .LC3: .string "%s" .align 3 .LC4: .string "#t" .align 3 .LC5: .string "#f" .text .align 2 .global print_object .type print_object, %function print_object: .LFB15: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] cmp x0, 0 beq .L44 ldr x1, [sp, 24] adrp x0, nil add x0, x0, :lo12:nil cmp x1, x0 bne .L45 .L44: adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl printf b .L43 .L45: ldr x0, [sp, 24] ldr w0, [x0] cmp w0, 3 beq .L47 cmp w0, 3 bhi .L43 cmp w0, 2 beq .L48 cmp w0, 2 bhi .L43 cmp w0, 0 beq .L49 cmp w0, 1 beq .L50 b .L43 .L49: ldr x0, [sp, 24] ldr w0, [x0, 8] mov w1, w0 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf b .L43 .L50: ldr x0, [sp, 24] ldr x0, [x0, 8] mov x1, x0 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl printf b .L43 .L48: ldr x0, [sp, 24] ldrb w0, [x0, 8] cmp w0, 0 beq .L51 adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl printf b .L43 .L51: adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl printf b .L43 .L47: mov w0, 40 bl putchar add x0, sp, 24 str x0, [sp, 40] b .L53 .L57: ldr x0, [sp, 40] ldr x0, [x0] ldr x0, [x0, 8] bl print_object ldr x0, [sp, 40] ldr x0, [x0] ldr x0, [x0, 16] cmp x0, 0 beq .L58 mov w0, 32 bl putchar ldr x0, [sp, 40] ldr x0, [x0] ldr x0, [x0, 16] ldr w0, [x0] cmp w0, 3 bne .L55 ldr x0, [sp, 40] ldr x0, [x0] add x0, x0, 16 str x0, [sp, 40] b .L53 .L55: ldr x0, [sp, 40] ldr x0, [x0] ldr x0, [x0, 16] bl print_object b .L56 .L53: ldr x0, [sp, 40] ldr x0, [x0] cmp x0, 0 bne .L57 b .L56 .L58: nop .L56: mov w0, 41 bl putchar .L43: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE15: .size print_object, .-print_object .align 2 .global tok_to_obj .type tok_to_obj, %function tok_to_obj: .LFB16: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] cmp x0, 0 beq .L79 str wzr, [sp, 40] str wzr, [sp, 44] .L62: ldr x0, [sp, 24] ldrb w0, [x0] cmp w0, 57 bgt .L63 cmp w0, 48 bge .L64 cmp w0, 41 bgt .L63 cmp w0, 40 bge .L80 cmp w0, 34 beq .L66 cmp w0, 35 bne .L63 ldr x0, [sp, 24] add x0, x0, 1 str x0, [sp, 24] ldr x0, [sp, 24] ldrb w0, [x0] cmp w0, 116 bne .L67 adrp x0, C_TRUE add x0, x0, :lo12:C_TRUE b .L59 .L67: ldr x0, [sp, 24] ldrb w0, [x0] cmp w0, 102 bne .L62 adrp x0, C_FALSE add x0, x0, :lo12:C_FALSE b .L59 .L66: ldr w0, [sp, 40] cmp w0, 0 cset w0, eq and w0, w0, 255 str w0, [sp, 40] ldr x0, [sp, 24] add x0, x0, 1 str x0, [sp, 24] b .L62 .L64: ldr w0, [sp, 44] cmp w0, 0 cset w0, eq and w0, w0, 255 mov w1, w0 ldr w0, [sp, 40] and w0, w1, w0 cmp w0, 0 beq .L71 ldr x0, [sp, 24] bl strlen sub x0, x0, #1 bl malloc str x0, [sp, 48] ldr x0, [sp, 24] bl strlen sub x0, x0, #1 mov x2, x0 ldr x1, [sp, 24] ldr x0, [sp, 48] bl strncpy ldr x0, [sp, 48] bl new_sym b .L59 .L71: ldr x0, [sp, 24] bl atoi bl new_int b .L59 .L63: ldr w0, [sp, 40] cmp w0, 0 bne .L72 ldr w0, [sp, 44] cmp w0, 0 beq .L73 .L72: ldr w0, [sp, 44] cmp w0, 0 beq .L74 ldr x0, [sp, 24] bl strlen b .L75 .L74: ldr x0, [sp, 24] bl strlen sub x0, x0, #1 .L75: bl malloc str x0, [sp, 56] ldr w0, [sp, 44] cmp w0, 0 beq .L76 ldr x0, [sp, 24] bl strlen b .L77 .L76: ldr x0, [sp, 24] bl strlen sub x0, x0, #1 .L77: mov x2, x0 ldr x1, [sp, 24] ldr x0, [sp, 56] bl strncpy ldr x0, [sp, 56] bl new_sym b .L59 .L73: ldr x0, [sp, 24] bl new_sym b .L59 .L80: nop mov x0, 0 b .L59 .L79: nop nop .L59: ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE16: .size tok_to_obj, .-tok_to_obj .align 2 .global new_ol .type new_ol, %function new_ol: .LFB17: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp mov x0, 24 bl malloc str x0, [sp, 24] bl new_cons mov x1, x0 ldr x0, [sp, 24] str x1, [x0] ldr x0, [sp, 24] ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE17: .size new_ol, .-new_ol .align 2 .global ol_push .type ol_push, %function ol_push: .LFB18: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -32 str x0, [sp, 40] ldr x0, [sp, 40] cmp x0, 0 bne .L84 mov x0, 0 b .L85 .L84: ldr x0, [sp, 40] ldr x19, [x0] bl new_ol str x0, [x19, 8] ldr x0, [sp, 40] ldr x0, [x0] ldr x0, [x0, 8] ldr x1, [sp, 40] ldr x1, [x1] str x1, [x0, 16] ldr x0, [sp, 40] ldr x0, [x0] ldr x1, [x0, 8] ldr x0, [sp, 40] str x1, [x0] ldr x0, [sp, 40] ldr x0, [x0] .L85: ldr x19, [sp, 16] ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE18: .size ol_push, .-ol_push .align 2 .global ol_pop .type ol_pop, %function ol_pop: .LFB19: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str x0, [sp, 8] ldr x0, [sp, 8] ldr x0, [x0] ldr x1, [sp, 8] ldr x1, [x1] str x1, [x0, 8] ldr x0, [sp, 8] ldr x0, [x0] ldr x1, [x0, 16] ldr x0, [sp, 8] str x1, [x0] ldr x0, [sp, 8] ldr x0, [x0] add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE19: .size ol_pop, .-ol_pop .align 2 .global push .type push, %function push: .LFB20: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] ldr x0, [sp, 24] cmp x0, 0 beq .L96 ldr x1, [sp, 24] adrp x0, nil add x0, x0, :lo12:nil cmp x1, x0 beq .L96 ldr x0, [sp, 24] ldr w0, [x0] cmp w0, 3 bne .L96 ldr x0, [sp, 24] ldr x0, [x0, 8] cmp x0, 0 beq .L92 ldr x0, [sp, 24] ldr x1, [x0, 8] adrp x0, nil add x0, x0, :lo12:nil cmp x1, x0 bne .L93 .L92: ldr x0, [sp, 24] ldr x1, [sp, 16] str x1, [x0, 8] b .L88 .L93: ldr x0, [sp, 24] add x0, x0, 16 str x0, [sp, 40] b .L94 .L95: ldr x0, [sp, 40] ldr x0, [x0] add x0, x0, 16 str x0, [sp, 40] .L94: ldr x0, [sp, 40] ldr x0, [x0] cmp x0, 0 bne .L95 bl new_cons mov x1, x0 ldr x0, [sp, 40] str x1, [x0] ldr x0, [sp, 40] ldr x0, [x0] ldr x1, [sp, 16] str x1, [x0, 8] b .L88 .L96: nop .L88: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE20: .size push, .-push .section .rodata .align 3 .LC6: .string "quote" .text .align 2 .global scan .type scan, %function scan: .LFB21: .cfi_startproc stp x29, x30, [sp, -224]! .cfi_def_cfa_offset 224 .cfi_offset 29, -224 .cfi_offset 30, -216 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -208 str x0, [sp, 40] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 216] mov x1, 0 ldr x0, [sp, 40] cmp x0, 0 bne .L98 mov x0, 0 b .L120 .L98: str wzr, [sp, 64] str wzr, [sp, 68] str wzr, [sp, 72] str wzr, [sp, 76] add x0, sp, 88 mov x2, 128 mov w1, 0 bl memset bl new_ol str x0, [sp, 80] str wzr, [sp, 60] b .L100 .L117: ldrsw x0, [sp, 60] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 41 beq .L101 cmp w0, 41 bgt .L102 cmp w0, 40 beq .L103 cmp w0, 40 bgt .L102 cmp w0, 39 beq .L104 cmp w0, 39 bgt .L102 cmp w0, 32 beq .L105 cmp w0, 32 bgt .L102 cmp w0, 0 beq .L106 cmp w0, 10 beq .L106 b .L102 .L105: ldrsw x0, [sp, 60] add x0, x0, 1 ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 32 beq .L122 ldrsw x0, [sp, 64] add x1, sp, 88 strb wzr, [x1, x0] ldr w0, [sp, 64] cmp w0, 0 beq .L109 ldr x0, [sp, 80] ldr x19, [x0] add x0, sp, 88 bl tok_to_obj mov x1, x0 mov x0, x19 bl push .L109: str wzr, [sp, 64] b .L108 .L104: mov w0, 1 str w0, [sp, 76] ldrsw x0, [sp, 60] add x0, x0, 1 ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 40 bne .L110 add x0, sp, 80 bl ol_push ldr x0, [sp, 80] ldr x19, [x0] adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl new_sym mov x1, x0 mov x0, x19 bl push ldr x0, [sp, 80] ldr x0, [x0, 16] ldr x2, [x0] ldr x0, [sp, 80] ldr x0, [x0] mov x1, x0 mov x0, x2 bl push b .L111 .L110: ldr x0, [sp, 80] ldr x19, [x0] adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl new_sym mov x1, x0 mov x0, x19 bl push ldr w0, [sp, 64] cmp w0, 0 beq .L111 ldr x0, [sp, 80] ldr x19, [x0] add x0, sp, 88 bl tok_to_obj mov x1, x0 mov x0, x19 bl push .L111: str wzr, [sp, 64] b .L108 .L106: ldrsw x0, [sp, 64] add x1, sp, 88 strb wzr, [x1, x0] ldr w0, [sp, 64] cmp w0, 0 beq .L112 ldr x0, [sp, 80] ldr x19, [x0] add x0, sp, 88 bl tok_to_obj mov x1, x0 mov x0, x19 bl push .L112: str wzr, [sp, 64] b .L108 .L103: mov w0, 1 str w0, [sp, 72] ldr w0, [sp, 68] add w0, w0, 1 str w0, [sp, 68] ldrsw x0, [sp, 64] add x1, sp, 88 strb wzr, [x1, x0] ldr w0, [sp, 64] cmp w0, 0 beq .L113 ldr x0, [sp, 80] ldr x19, [x0] add x0, sp, 88 bl tok_to_obj mov x1, x0 mov x0, x19 bl push .L113: ldr w0, [sp, 68] cmp w0, 1 ble .L114 add x0, sp, 80 bl ol_push ldr x0, [sp, 80] ldr x0, [x0, 16] ldr x2, [x0] ldr x0, [sp, 80] ldr x0, [x0] mov x1, x0 mov x0, x2 bl push .L114: str wzr, [sp, 64] b .L108 .L101: ldr w0, [sp, 68] sub w0, w0, #1 str w0, [sp, 68] ldrsw x0, [sp, 64] add x1, sp, 88 strb wzr, [x1, x0] ldr w0, [sp, 64] cmp w0, 0 beq .L115 ldr x0, [sp, 80] ldr x19, [x0] add x0, sp, 88 bl tok_to_obj mov x1, x0 mov x0, x19 bl push .L115: ldr w0, [sp, 68] cmp w0, 0 ble .L116 add x0, sp, 80 bl ol_pop .L116: str wzr, [sp, 64] b .L108 .L102: ldrsw x0, [sp, 60] ldr x1, [sp, 40] add x1, x1, x0 ldr w0, [sp, 64] add w2, w0, 1 str w2, [sp, 64] ldrb w2, [x1] sxtw x0, w0 add x1, sp, 88 strb w2, [x1, x0] b .L108 .L122: nop .L108: ldr w0, [sp, 60] add w0, w0, 1 str w0, [sp, 60] .L100: ldrsw x19, [sp, 60] ldr x0, [sp, 40] bl strlen cmp x19, x0 bcc .L117 ldrsw x0, [sp, 64] add x1, sp, 88 strb wzr, [x1, x0] ldr w0, [sp, 72] cmp w0, 0 bne .L118 ldr x0, [sp, 80] ldr x0, [x0] ldr x0, [x0, 8] b .L120 .L118: ldr w0, [sp, 64] cmp w0, 0 beq .L119 ldr x0, [sp, 80] ldr x19, [x0] add x0, sp, 88 bl tok_to_obj mov x1, x0 mov x0, x19 bl push .L119: ldr x0, [sp, 80] ldr x0, [x0] .L120: mov x1, x0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 216] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L121 bl __stack_chk_fail .L121: mov x0, x1 ldr x19, [sp, 16] ldp x29, x30, [sp], 224 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE21: .size scan, .-scan .align 2 .global assoc .type assoc, %function assoc: .LFB22: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] add x0, sp, 16 str x0, [sp, 40] b .L124 .L127: ldr x0, [sp, 40] ldr x0, [x0] bl car bl car ldr x1, [sp, 24] bl eq cmp w0, 0 beq .L125 ldr x0, [sp, 40] ldr x0, [x0] bl car bl cdr b .L126 .L125: ldr x0, [sp, 40] ldr x0, [x0] add x0, x0, 16 str x0, [sp, 40] .L124: ldr x0, [sp, 40] ldr x0, [x0] cmp x0, 0 bne .L127 adrp x0, nil add x0, x0, :lo12:nil .L126: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE22: .size assoc, .-assoc .align 2 .global evlis .type evlis, %function evlis: .LFB23: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] ldr x0, [sp, 24] cmp x0, 0 beq .L129 ldr x1, [sp, 24] adrp x0, nil add x0, x0, :lo12:nil cmp x1, x0 bne .L130 .L129: adrp x0, nil add x0, x0, :lo12:nil b .L131 .L130: ldr x0, [sp, 24] bl car ldr x1, [sp, 16] bl eval str x0, [sp, 40] ldr x0, [sp, 24] bl cdr ldr x1, [sp, 16] bl evlis mov x1, x0 ldr x0, [sp, 40] bl cons .L131: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE23: .size evlis, .-evlis .align 2 .global evcon .type evcon, %function evcon: .LFB24: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] ldr x0, [sp, 24] bl car bl car ldr x1, [sp, 16] bl eval mov x1, x0 adrp x0, C_TRUE add x0, x0, :lo12:C_TRUE cmp x1, x0 bne .L133 ldr x0, [sp, 24] bl car bl cdr bl car ldr x1, [sp, 16] bl eval b .L134 .L133: ldr x0, [sp, 24] bl car bl cdr bl cdr bl car ldr x1, [sp, 16] bl eval .L134: ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE24: .size evcon, .-evcon .section .rodata .align 3 .LC7: .string "nil" .align 3 .LC8: .string "cons" .align 3 .LC9: .string "car" .align 3 .LC10: .string "cdr" .align 3 .LC11: .string "eq" .align 3 .LC12: .string "atom" .align 3 .LC13: .string "cond" .align 3 .LC14: .string "label" .align 3 .LC15: .string "lambda" .align 3 .LC16: .string "Unknown eval expression:" .align 3 .LC17: .string "" .text .align 2 .global eval .type eval, %function eval: .LFB25: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp stp x19, x20, [sp, 16] .cfi_offset 19, -48 .cfi_offset 20, -40 str x0, [sp, 40] str x1, [sp, 32] ldr x0, [sp, 40] cmp x0, 0 beq .L136 ldr x1, [sp, 40] adrp x0, nil add x0, x0, :lo12:nil cmp x1, x0 bne .L137 .L136: adrp x0, nil add x0, x0, :lo12:nil b .L138 .L137: ldr x0, [sp, 40] ldr w0, [x0] cmp w0, 3 beq .L139 cmp w0, 3 bhi .L140 cmp w0, 0 beq .L141 cmp w0, 1 beq .L142 b .L140 .L141: ldr x0, [sp, 40] b .L138 .L142: ldr x1, [sp, 32] ldr x0, [sp, 40] bl assoc str x0, [sp, 56] ldr x0, [sp, 56] b .L138 .L139: ldr x0, [sp, 40] ldr x0, [x0, 8] bl atom cmp w0, 0 beq .L143 ldr x0, [sp, 40] bl car ldr w0, [x0] cmp w0, 1 bne .L144 ldr x0, [sp, 40] bl car ldr x2, [x0, 8] adrp x0, .LC7 add x1, x0, :lo12:.LC7 mov x0, x2 bl strcmp cmp w0, 0 bne .L145 adrp x0, nil add x0, x0, :lo12:nil b .L138 .L145: ldr x0, [sp, 40] ldr x0, [x0, 8] ldr x2, [x0, 8] adrp x0, .LC8 add x1, x0, :lo12:.LC8 mov x0, x2 bl strcmp cmp w0, 0 bne .L146 ldr x0, [sp, 40] bl cdr bl car ldr x1, [sp, 32] bl eval mov x19, x0 ldr x0, [sp, 40] bl cdr bl cdr bl car ldr x1, [sp, 32] bl eval mov x1, x0 mov x0, x19 bl cons b .L138 .L146: ldr x0, [sp, 40] ldr x0, [x0, 8] ldr x2, [x0, 8] adrp x0, .LC9 add x1, x0, :lo12:.LC9 mov x0, x2 bl strcmp cmp w0, 0 bne .L147 ldr x0, [sp, 40] bl cdr bl car ldr x1, [sp, 32] bl eval bl car b .L138 .L147: ldr x0, [sp, 40] ldr x0, [x0, 8] ldr x2, [x0, 8] adrp x0, .LC10 add x1, x0, :lo12:.LC10 mov x0, x2 bl strcmp cmp w0, 0 bne .L148 ldr x0, [sp, 40] bl cdr bl car ldr x1, [sp, 32] bl eval bl cdr b .L138 .L148: ldr x0, [sp, 40] ldr x0, [x0, 8] ldr x2, [x0, 8] adrp x0, .LC6 add x1, x0, :lo12:.LC6 mov x0, x2 bl strcmp cmp w0, 0 bne .L149 ldr x0, [sp, 40] bl cdr bl car b .L138 .L149: ldr x0, [sp, 40] ldr x0, [x0, 8] ldr x2, [x0, 8] adrp x0, .LC11 add x1, x0, :lo12:.LC11 mov x0, x2 bl strcmp cmp w0, 0 bne .L150 ldr x0, [sp, 40] bl cdr bl car ldr x1, [sp, 32] bl eval mov x19, x0 ldr x0, [sp, 40] bl cdr bl cdr bl car ldr x1, [sp, 32] bl eval mov x1, x0 mov x0, x19 bl eq cmp w0, 0 beq .L151 adrp x0, C_TRUE add x0, x0, :lo12:C_TRUE b .L138 .L151: adrp x0, C_FALSE add x0, x0, :lo12:C_FALSE b .L138 .L150: ldr x0, [sp, 40] ldr x0, [x0, 8] ldr x2, [x0, 8] adrp x0, .LC12 add x1, x0, :lo12:.LC12 mov x0, x2 bl strcmp cmp w0, 0 bne .L153 ldr x0, [sp, 40] bl cdr bl car ldr x1, [sp, 32] bl eval bl atom cmp w0, 0 beq .L154 adrp x0, C_TRUE add x0, x0, :lo12:C_TRUE b .L138 .L154: adrp x0, C_FALSE add x0, x0, :lo12:C_FALSE b .L138 .L153: ldr x0, [sp, 40] ldr x0, [x0, 8] ldr x2, [x0, 8] adrp x0, .LC13 add x1, x0, :lo12:.LC13 mov x0, x2 bl strcmp cmp w0, 0 bne .L144 ldr x0, [sp, 40] bl cdr ldr x1, [sp, 32] bl evcon b .L138 .L144: ldr x0, [sp, 40] bl car ldr x1, [sp, 32] bl assoc mov x19, x0 ldr x0, [sp, 40] bl cdr ldr x1, [sp, 32] bl evlis mov x1, x0 mov x0, x19 bl cons ldr x1, [sp, 32] bl eval b .L138 .L143: ldr x0, [sp, 40] bl car bl car ldr w0, [x0] cmp w0, 1 bne .L156 ldr x0, [sp, 40] bl car bl car ldr x2, [x0, 8] adrp x0, .LC14 add x1, x0, :lo12:.LC14 mov x0, x2 bl strcmp cmp w0, 0 bne .L157 ldr x0, [sp, 40] bl car bl cdr bl cdr bl car mov x19, x0 ldr x0, [sp, 40] bl cdr mov x1, x0 mov x0, x19 bl cons mov x19, x0 ldr x0, [sp, 40] bl car bl cdr bl car mov x20, x0 ldr x0, [sp, 40] bl car mov x2, x0 mov x1, x20 mov w0, 2 bl list ldr x1, [sp, 32] bl cons mov x1, x0 mov x0, x19 bl eval b .L138 .L157: ldr x0, [sp, 40] bl car bl car ldr x2, [x0, 8] adrp x0, .LC15 add x1, x0, :lo12:.LC15 mov x0, x2 bl strcmp cmp w0, 0 bne .L156 ldr x0, [sp, 40] bl car bl cdr bl car mov x19, x0 ldr x0, [sp, 40] bl cdr ldr x1, [sp, 32] bl evlis mov x1, x0 mov x0, x19 bl pair str x0, [sp, 48] ldr x0, [sp, 40] bl car bl cdr bl cdr bl car mov x19, x0 ldr x1, [sp, 32] ldr x0, [sp, 48] bl append mov x1, x0 mov x0, x19 bl eval b .L138 .L156: adrp x0, nil add x0, x0, :lo12:nil b .L138 .L140: adrp x0, .LC16 add x0, x0, :lo12:.LC16 bl puts ldr x0, [sp, 40] bl print_object adrp x0, .LC17 add x0, x0, :lo12:.LC17 bl puts adrp x0, nil add x0, x0, :lo12:nil .L138: ldp x19, x20, [sp, 16] ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_restore 20 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE25: .size eval, .-eval .align 2 .global append .type append, %function append: .LFB26: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -32 str x0, [sp, 40] str x1, [sp, 32] ldr x0, [sp, 40] cmp x0, 0 beq .L159 ldr x1, [sp, 40] adrp x0, nil add x0, x0, :lo12:nil cmp x1, x0 bne .L160 .L159: ldr x0, [sp, 32] b .L161 .L160: ldr x0, [sp, 40] bl car mov x19, x0 ldr x0, [sp, 40] bl cdr ldr x1, [sp, 32] bl append mov x1, x0 mov x0, x19 bl cons .L161: ldr x19, [sp, 16] ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE26: .size append, .-append .align 2 .global pair .type pair, %function pair: .LFB27: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp stp x19, x20, [sp, 16] .cfi_offset 19, -32 .cfi_offset 20, -24 str x0, [sp, 40] str x1, [sp, 32] ldr x0, [sp, 40] cmp x0, 0 beq .L163 ldr x1, [sp, 40] adrp x0, nil add x0, x0, :lo12:nil cmp x1, x0 bne .L164 .L163: ldr x0, [sp, 32] cmp x0, 0 beq .L165 ldr x1, [sp, 32] adrp x0, nil add x0, x0, :lo12:nil cmp x1, x0 bne .L164 .L165: adrp x0, nil add x0, x0, :lo12:nil b .L166 .L164: ldr x0, [sp, 40] bl car mov x19, x0 ldr x0, [sp, 32] bl car mov x1, x0 mov x0, x19 bl cons mov x19, x0 ldr x0, [sp, 40] bl cdr mov x20, x0 ldr x0, [sp, 32] bl cdr mov x1, x0 mov x0, x20 bl pair mov x1, x0 mov x0, x19 bl cons .L166: ldp x19, x20, [sp, 16] ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_restore 20 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE27: .size pair, .-pair .align 2 .global appq .type appq, %function appq: .LFB28: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -32 str x0, [sp, 40] ldr x0, [sp, 40] cmp x0, 0 beq .L168 ldr x1, [sp, 40] adrp x0, nil add x0, x0, :lo12:nil cmp x1, x0 bne .L169 .L168: adrp x0, nil add x0, x0, :lo12:nil b .L170 .L169: adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl new_sym mov x19, x0 ldr x0, [sp, 40] bl car mov x1, x0 mov x0, x19 bl cons mov x19, x0 ldr x0, [sp, 40] bl cdr bl appq mov x1, x0 mov x0, x19 bl cons .L170: ldr x19, [sp, 16] ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE28: .size appq, .-appq .section .rodata .align 3 .LC18: .string "t" .align 3 .LC19: .string "f" .align 3 .LC20: .string "Welcome to microLISP. Press ! to exit" .align 3 .LC21: .string "user> " .align 3 .LC22: .string "=> " .text .align 2 .global main .type main, %function main: .LFB29: .cfi_startproc stp x29, x30, [sp, -80]! .cfi_def_cfa_offset 80 .cfi_offset 29, -80 .cfi_offset 30, -72 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -64 str w0, [sp, 44] str x1, [sp, 32] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 72] mov x1, 0 mov x0, 256 bl malloc str x0, [sp, 48] bl new_cons str x0, [sp, 64] adrp x0, .LC18 add x0, x0, :lo12:.LC18 bl new_sym mov x2, x0 adrp x0, nil add x1, x0, :lo12:nil mov x0, x2 bl cons mov x19, x0 adrp x0, nil add x1, x0, :lo12:nil adrp x0, C_TRUE add x0, x0, :lo12:C_TRUE bl cons mov x1, x0 mov x0, x19 bl pair ldr x1, [sp, 64] bl append str x0, [sp, 64] adrp x0, .LC19 add x0, x0, :lo12:.LC19 bl new_sym mov x2, x0 adrp x0, nil add x1, x0, :lo12:nil mov x0, x2 bl cons mov x19, x0 adrp x0, nil add x1, x0, :lo12:nil adrp x0, C_FALSE add x0, x0, :lo12:C_FALSE bl cons mov x1, x0 mov x0, x19 bl pair ldr x1, [sp, 64] bl append str x0, [sp, 64] adrp x0, .LC7 add x0, x0, :lo12:.LC7 bl new_sym mov x2, x0 adrp x0, nil add x1, x0, :lo12:nil mov x0, x2 bl cons mov x19, x0 adrp x0, nil add x1, x0, :lo12:nil adrp x0, nil add x0, x0, :lo12:nil bl cons mov x1, x0 mov x0, x19 bl pair ldr x1, [sp, 64] bl append str x0, [sp, 64] ldr x0, [sp, 64] bl print_object adrp x0, .LC17 add x0, x0, :lo12:.LC17 bl puts adrp x0, .LC20 add x0, x0, :lo12:.LC20 bl puts .L174: adrp x0, .LC21 add x0, x0, :lo12:.LC21 bl printf adrp x0, :got:stdin ldr x0, [x0, #:got_lo12:stdin] ldr x2, [x0] add x1, sp, 56 add x0, sp, 48 bl getline ldr x0, [sp, 48] ldrb w0, [x0] cmp w0, 33 beq .L177 adrp x0, .LC22 add x0, x0, :lo12:.LC22 bl printf ldr x0, [sp, 48] bl scan ldr x1, [sp, 64] bl eval bl print_object adrp x0, .LC17 add x0, x0, :lo12:.LC17 bl puts ldr x0, [sp, 48] ldrb w0, [x0] cmp w0, 0 bne .L174 b .L173 .L177: nop .L173: mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 72] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L176 bl __stack_chk_fail .L176: mov w0, w1 ldr x19, [sp, 16] ldp x29, x30, [sp], 80 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE29: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global global .bss .align 2 .type global, %object .size global, 4 global: .zero 4 .text .align 2 .global t_fun .type t_fun, %function t_fun: .LFB0: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] adrp x0, global add x0, x0, :lo12:global mov w1, 5 str w1, [x0] mov w0, 1 bl assert nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size t_fun, .-t_fun .align 2 .global main .type main, %function main: .LFB1: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 40] mov x1, 0 bl __VERIFIER_nondet_int str w0, [sp, 28] str wzr, [sp, 24] ldr w0, [sp, 28] cmp w0, 0 bgt .L3 add x4, sp, 32 mov x3, 0 adrp x0, t_fun add x2, x0, :lo12:t_fun mov x1, 0 mov x0, x4 bl pthread_create adrp x0, global add x0, x0, :lo12:global ldr w0, [x0] cmp w0, 0 cset w0, eq and w0, w0, 255 bl assert ldr w0, [sp, 28] add w0, w0, 1 str w0, [sp, 28] mov w0, 1 str w0, [sp, 24] b .L4 .L3: adrp x0, global add x0, x0, :lo12:global mov w1, 17 str w1, [x0] .L4: ldr w0, [sp, 24] cmp w0, 0 bne .L5 adrp x0, global add x0, x0, :lo12:global ldr w0, [x0] cmp w0, 5 ble .L5 mov w0, 1 bl assert .L5: mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 40] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L7 bl __stack_chk_fail .L7: mov w0, w1 ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "Digite a sua idade: " .align 3 .LC1: .string "%i" .align 3 .LC2: .string "Sua idade em dias eh %i" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 24] mov x1, 0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf add x0, sp, 16 mov x1, x0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl __isoc99_scanf ldr w1, [sp, 16] mov w0, 365 mul w0, w1, w0 str w0, [sp, 20] ldr w1, [sp, 20] adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 24] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L3 bl __stack_chk_fail .L3: mov w0, w1 ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global buf .bss .align 3 .type buf, %object .size buf, 819200 buf: .zero 819200 .global json_obj .align 3 .type json_obj, %object .size json_obj, 819200 json_obj: .zero 819200 .global json_array .align 3 .type json_array, %object .size json_array, 819200 json_array: .zero 819200 .global array_data .align 3 .type array_data, %object .size array_data, 10000 array_data: .zero 10000 .global id .align 3 .type id, %object .size id, 50 id: .zero 50 .global netType .section .rodata .align 3 .LC0: .string "PF-SERVER-UNIX-CPUPFM" .section .data.rel.local,"aw" .align 3 .type netType, %object .size netType, 8 netType: .xword .LC0 .global neTopType .section .rodata .align 3 .LC1: .string "PF-SERVER-UNIX" .section .data.rel.local .align 3 .type neTopType, %object .size neTopType, 8 neTopType: .xword .LC1 .global neName .section .rodata .align 3 .LC2: .string "CPU" .section .data.rel.local .align 3 .type neName, %object .size neName, 8 neName: .xword .LC2 .text .align 2 .global str_trim_crlf .type str_trim_crlf, %function str_trim_crlf: .LFB6: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] bl strlen sub x0, x0, #1 ldr x1, [sp, 24] add x0, x1, x0 str x0, [sp, 40] b .L2 .L3: ldr x0, [sp, 40] sub x1, x0, #1 str x1, [sp, 40] strb wzr, [x0] .L2: ldr x0, [sp, 40] ldrb w0, [x0] cmp w0, 13 beq .L3 ldr x0, [sp, 40] ldrb w0, [x0] cmp w0, 10 beq .L3 nop nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size str_trim_crlf, .-str_trim_crlf .align 2 .global split .type split, %function split: .LFB7: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x0, [sp, 40] str x1, [sp, 32] str x2, [sp, 24] str wzr, [sp, 52] ldr x1, [sp, 32] ldr x0, [sp, 40] bl strtok str x0, [sp, 56] b .L5 .L6: ldr x0, [sp, 56] bl str_trim_crlf ldrsw x1, [sp, 52] mov x0, x1 lsl x0, x0, 1 add x0, x0, x1 lsl x0, x0, 3 add x0, x0, x1 lsl x0, x0, 2 mov x1, x0 ldr x0, [sp, 24] add x0, x0, x1 ldr x1, [sp, 56] bl strcpy ldr x1, [sp, 32] mov x0, 0 bl strtok str x0, [sp, 56] ldr w0, [sp, 52] add w0, w0, 1 str w0, [sp, 52] .L5: ldr x0, [sp, 56] cmp x0, 0 bne .L6 ldr w0, [sp, 52] ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size split, .-split .section .rodata .align 3 .LC3: .string "please input $:./exe id\n" .text .align 2 .global process_arguments .type process_arguments, %function process_arguments: .LFB8: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] ldr w0, [sp, 28] cmp w0, 2 beq .L9 adrp x0, :got:stdout ldr x0, [x0, #:got_lo12:stdout] ldr x0, [x0] mov x3, x0 mov x2, 24 mov x1, 1 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl fwrite mov w0, -1 b .L10 .L9: ldr x0, [sp, 16] add x0, x0, 8 ldr x0, [x0] mov x1, x0 adrp x0, id add x0, x0, :lo12:id bl strcpy mov w0, 0 .L10: ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size process_arguments, .-process_arguments .section .rodata .align 3 .LC5: .string "r" .align 3 .LC6: .string "vmstat | tail -n 1" .align 3 .LC7: .string "error:%s\n" .align 3 .LC8: .string "%s\n" .align 3 .LC9: .string "%d" .align 3 .LC10: .string "{\"values\":{\"PF_SERVER_CPUPFM_FREECPU\":\"%s\",\"PF_SERVER_CPUPFM_SYSCPURATE\":\"%s\",\"PF_SERVER_CPUPFM_USERCPURATE\":\"%s\",\"PF_SERVER_CPUPFM_WAITIOCPU\":\"%s\",\"PF_SERVER_CPUPFM_USEDRATE\":\"%s\"},\"neType\":\"%s\",\"neTopType\":\"%s\",\"neId\":\"%s\",\"neName\":\"%s\"}" .align 3 .LC11: .string "%s,{\"values\":{\"PF_SERVER_DISK_AVGNUM\":\"%s\",\"PF_SERVER_DISK_BUSYRATE\":\"%s\",\"PF_SERVER_DISK_IOBYTES\":\"%s\",\"PF_SERVER_DISK_WAITTIME\":\"%s\",\"PF_SERVER_DISK_NAME\":\"%s\"},\"neType\":\"%s\",\"neTopType\":\"%s\",\"neId\":\"%s\",\"neName\":\"%s\"}" .text .align 2 .global main .type main, %function main: .LFB9: .cfi_startproc sub sp, sp, #128 .cfi_def_cfa_offset 128 stp x29, x30, [sp, 32] .cfi_offset 29, -96 .cfi_offset 30, -88 add x29, sp, 32 str w0, [sp, 60] str x1, [sp, 48] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 120] mov x1, 0 str xzr, [sp, 80] adrp x0, .LC4 add x0, x0, :lo12:.LC4 ldrh w0, [x0] strh w0, [sp, 88] str xzr, [sp, 90] str wzr, [sp, 72] str wzr, [sp, 76] ldr x1, [sp, 48] ldr w0, [sp, 60] bl process_arguments str w0, [sp, 76] ldr w0, [sp, 76] cmp w0, 0 beq .L12 mov w0, -1 b .L19 .L12: adrp x0, .LC5 add x1, x0, :lo12:.LC5 adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl popen str x0, [sp, 80] ldr x0, [sp, 80] cmp x0, 0 bne .L15 bl __errno_location ldr w0, [x0] bl strerror mov x2, x0 adrp x0, .LC7 add x1, x0, :lo12:.LC7 adrp x0, buf add x0, x0, :lo12:buf bl sprintf adrp x0, :got:stdout ldr x0, [x0, #:got_lo12:stdout] ldr x3, [x0] adrp x0, buf add x2, x0, :lo12:buf adrp x0, .LC8 add x1, x0, :lo12:.LC8 mov x0, x3 bl fprintf mov w0, -1 b .L19 .L18: mov x2, 10000 mov w1, 0 adrp x0, array_data add x0, x0, :lo12:array_data bl memset add x1, sp, 88 adrp x0, array_data add x2, x0, :lo12:array_data adrp x0, buf add x0, x0, :lo12:buf bl split str w0, [sp, 76] add x0, sp, 104 mov x2, 10 mov w1, 0 bl memset adrp x0, array_data+1400 add x0, x0, :lo12:array_data+1400 bl atoi mov w1, w0 mov w0, 100 sub w0, w0, w1 add x3, sp, 104 mov w2, w0 adrp x0, .LC9 add x1, x0, :lo12:.LC9 mov x0, x3 bl sprintf ldr w0, [sp, 72] cmp w0, 0 bne .L16 adrp x0, netType add x0, x0, :lo12:netType ldr x3, [x0] adrp x0, neTopType add x0, x0, :lo12:neTopType ldr x0, [x0] adrp x1, neName add x1, x1, :lo12:neName ldr x1, [x1] add x2, sp, 104 str x1, [sp, 16] adrp x1, id add x1, x1, :lo12:id str x1, [sp, 8] str x0, [sp] mov x7, x3 mov x6, x2 adrp x0, array_data+1500 add x5, x0, :lo12:array_data+1500 adrp x0, array_data+1200 add x4, x0, :lo12:array_data+1200 adrp x0, array_data+1300 add x3, x0, :lo12:array_data+1300 adrp x0, array_data+1400 add x2, x0, :lo12:array_data+1400 adrp x0, .LC10 add x1, x0, :lo12:.LC10 adrp x0, json_obj add x0, x0, :lo12:json_obj bl sprintf b .L17 .L16: adrp x0, netType add x0, x0, :lo12:netType ldr x0, [x0] adrp x1, neTopType add x1, x1, :lo12:neTopType ldr x1, [x1] adrp x2, neName add x2, x2, :lo12:neName ldr x2, [x2] add x3, sp, 104 str x2, [sp, 24] adrp x2, id add x2, x2, :lo12:id str x2, [sp, 16] str x1, [sp, 8] str x0, [sp] mov x7, x3 adrp x0, array_data+1500 add x6, x0, :lo12:array_data+1500 adrp x0, array_data+1200 add x5, x0, :lo12:array_data+1200 adrp x0, array_data+1300 add x4, x0, :lo12:array_data+1300 adrp x0, array_data+1400 add x3, x0, :lo12:array_data+1400 adrp x0, json_obj add x2, x0, :lo12:json_obj adrp x0, .LC11 add x1, x0, :lo12:.LC11 adrp x0, json_obj add x0, x0, :lo12:json_obj bl sprintf .L17: ldr w0, [sp, 72] add w0, w0, 1 str w0, [sp, 72] .L15: ldr x2, [sp, 80] mov w1, 20480 adrp x0, buf add x0, x0, :lo12:buf bl fgets cmp x0, 0 bne .L18 adrp x0, json_obj add x0, x0, :lo12:json_obj bl puts ldr x0, [sp, 80] bl pclose str xzr, [sp, 80] mov w0, 0 .L19: mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 120] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L20 bl __stack_chk_fail .L20: mov w0, w1 ldp x29, x30, [sp, 32] add sp, sp, 128 .cfi_restore 29 .cfi_restore 30 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE9: .size main, .-main .section .rodata .align 3 .LC4: .string " " .zero 8 .text ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global FreeList .type FreeList, %function FreeList: .LFB6: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] ldr x0, [sp, 24] cmp x0, 0 beq .L5 b .L3 .L4: ldr x1, [sp, 40] ldr x0, [sp, 24] bl __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove ldr x1, [sp, 16] ldr x0, [sp, 40] blr x1 .L3: ldr x0, [sp, 24] ldr x0, [x0] str x0, [sp, 40] ldr x0, [sp, 40] cmp x0, 0 bne .L4 ldr x0, [sp, 24] bl __ecereNameSpace__ecere__com__eSystem_Delete str xzr, [sp, 24] .L5: nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size FreeList, .-FreeList .align 2 .global FreeExpContents .type FreeExpContents, %function FreeExpContents: .LFB7: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] mov w1, 0 ldr x0, [sp, 24] bl _FreeExpression nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size FreeExpContents, .-FreeExpContents .align 2 .global FreeExpression .type FreeExpression, %function FreeExpression: .LFB8: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] mov w1, 1 ldr x0, [sp, 24] bl _FreeExpression nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size FreeExpression, .-FreeExpression .global __ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove .bss .align 2 .type __ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove, %object .size __ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove, 4 __ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove: .zero 4 .global __ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst .align 2 .type __ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst, %object .size __ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst, 4 __ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst: .zero 4 .text .align 2 .global FreeMethodImport .type FreeMethodImport, %function FreeMethodImport: .LFB9: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 16] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 16] nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE9: .size FreeMethodImport, .-FreeMethodImport .align 2 .global FreePropertyImport .type FreePropertyImport, %function FreePropertyImport: .LFB10: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 16] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 16] nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE10: .size FreePropertyImport, .-FreePropertyImport .align 2 .global FreeModuleDefine .type FreeModuleDefine, %function FreeModuleDefine: .LFB11: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 16] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 16] nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE11: .size FreeModuleDefine, .-FreeModuleDefine .align 2 .global FreeClassImport .type FreeClassImport, %function FreeClassImport: .LFB12: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 16] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 16] ldr x0, [sp, 24] add x2, x0, 24 adrp x0, FreeMethodImport add x1, x0, :lo12:FreeMethodImport mov x0, x2 bl __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free ldr x0, [sp, 24] add x2, x0, 56 adrp x0, FreePropertyImport add x1, x0, :lo12:FreePropertyImport mov x0, x2 bl __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE12: .size FreeClassImport, .-FreeClassImport .align 2 .global FreeFunctionImport .type FreeFunctionImport, %function FreeFunctionImport: .LFB13: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 16] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 16] nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE13: .size FreeFunctionImport, .-FreeFunctionImport .align 2 .global FreeModuleImport .type FreeModuleImport, %function FreeModuleImport: .LFB14: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 16] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 16] ldr x0, [sp, 24] add x2, x0, 24 adrp x0, FreeClassImport add x1, x0, :lo12:FreeClassImport mov x0, x2 bl __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free ldr x0, [sp, 24] add x2, x0, 56 adrp x0, FreeFunctionImport add x1, x0, :lo12:FreeFunctionImport mov x0, x2 bl __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE14: .size FreeModuleImport, .-FreeModuleImport .align 2 .global FreeExcludedSymbols .type FreeExcludedSymbols, %function FreeExcludedSymbols: .LFB15: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] b .L15 .L16: ldr x1, [sp, 40] ldr x0, [sp, 24] bl __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove ldr x0, [sp, 40] bl FreeSymbol .L15: ldr x0, [sp, 24] ldr x0, [x0] str x0, [sp, 40] ldr x0, [sp, 40] cmp x0, 0 bne .L16 nop nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE15: .size FreeExcludedSymbols, .-FreeExcludedSymbols .align 2 .global FreeASTTree .type FreeASTTree, %function FreeASTTree: .LFB16: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] cmp x0, 0 beq .L21 b .L19 .L20: ldr x1, [sp, 40] ldr x0, [sp, 24] bl __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove ldr x0, [sp, 40] bl FreeExternal .L19: ldr x0, [sp, 24] ldr x0, [x0] str x0, [sp, 40] ldr x0, [sp, 40] cmp x0, 0 bne .L20 ldr x0, [sp, 24] bl __ecereNameSpace__ecere__com__eSystem_Delete str xzr, [sp, 24] .L21: nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE16: .size FreeASTTree, .-FreeASTTree .align 2 .global FreeTemplateType .type FreeTemplateType, %function FreeTemplateType: .LFB17: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] cmp x0, 0 beq .L23 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_TemplatedType ldr x0, [x0, #:got_lo12:__ecereClass_TemplatedType] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L24 adrp x0, :got:__ecereClass_TemplatedType ldr x0, [x0, #:got_lo12:__ecereClass_TemplatedType] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L24: adrp x0, :got:__ecereClass___ecereNameSpace__ecere__sys__BTNode ldr x0, [x0, #:got_lo12:__ecereClass___ecereNameSpace__ecere__sys__BTNode] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L25 adrp x0, :got:__ecereClass___ecereNameSpace__ecere__sys__BTNode ldr x0, [x0, #:got_lo12:__ecereClass___ecereNameSpace__ecere__sys__BTNode] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L25: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L23: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE17: .size FreeTemplateType, .-FreeTemplateType .align 2 .global FreeAttribute .type FreeAttribute, %function FreeAttribute: .LFB18: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 48] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 48] ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L27 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExpression .L27: ldr x0, [sp, 24] cmp x0, 0 beq .L28 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_Attribute ldr x0, [x0, #:got_lo12:__ecereClass_Attribute] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L29 adrp x0, :got:__ecereClass_Attribute ldr x0, [x0, #:got_lo12:__ecereClass_Attribute] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L29: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L28: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE18: .size FreeAttribute, .-FreeAttribute .align 2 .global __ecereUnregisterModule_freeAst .type __ecereUnregisterModule_freeAst, %function __ecereUnregisterModule_freeAst: .LFB19: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str x0, [sp, 8] nop add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE19: .size __ecereUnregisterModule_freeAst, .-__ecereUnregisterModule_freeAst .align 2 .global FreeAttrib .type FreeAttrib, %function FreeAttrib: .LFB20: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 40] cmp x0, 0 beq .L32 ldr x0, [sp, 24] ldr x2, [x0, 40] adrp x0, FreeAttribute add x1, x0, :lo12:FreeAttribute mov x0, x2 bl FreeList .L32: ldr x0, [sp, 24] cmp x0, 0 beq .L33 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_Attrib ldr x0, [x0, #:got_lo12:__ecereClass_Attrib] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L34 adrp x0, :got:__ecereClass_Attrib ldr x0, [x0, #:got_lo12:__ecereClass_Attrib] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L34: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L33: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE20: .size FreeAttrib, .-FreeAttrib .align 2 .global FreeExtDecl .type FreeExtDecl, %function FreeExtDecl: .LFB21: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr w0, [x0, 32] cmp w0, 1 bne .L36 ldr x0, [sp, 24] ldr x0, [x0, 40] cmp x0, 0 beq .L36 ldr x0, [sp, 24] ldr x0, [x0, 40] bl FreeAttrib b .L37 .L36: ldr x0, [sp, 24] ldr w0, [x0, 32] cmp w0, 0 bne .L37 ldr x0, [sp, 24] ldr x0, [x0, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 40] .L37: ldr x0, [sp, 24] cmp x0, 0 beq .L38 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_ExtDecl ldr x0, [x0, #:got_lo12:__ecereClass_ExtDecl] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L39 adrp x0, :got:__ecereClass_ExtDecl ldr x0, [x0, #:got_lo12:__ecereClass_ExtDecl] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L39: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L38: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE21: .size FreeExtDecl, .-FreeExtDecl .align 2 .global FreeContext .type FreeContext, %function FreeContext: .LFB22: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] adrp x0, :got:curContext ldr x0, [x0, #:got_lo12:curContext] ldr x0, [x0] ldr x1, [sp, 24] cmp x1, x0 bne .L42 adrp x0, :got:globalContext ldr x0, [x0, #:got_lo12:globalContext] ldr x1, [x0] adrp x0, :got:curContext ldr x0, [x0, #:got_lo12:curContext] str x1, [x0] b .L42 .L43: ldr x0, [sp, 24] add x0, x0, 8 ldr x1, [sp, 40] bl __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Remove ldr x0, [sp, 40] bl FreeSymbol .L42: ldr x0, [sp, 24] ldr x0, [x0, 8] str x0, [sp, 40] ldr x0, [sp, 40] cmp x0, 0 bne .L43 b .L44 .L45: ldr x0, [sp, 24] add x0, x0, 40 ldr x1, [sp, 40] bl __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Remove ldr x0, [sp, 40] bl FreeSymbol .L44: ldr x0, [sp, 24] ldr x0, [x0, 40] str x0, [sp, 40] ldr x0, [sp, 40] cmp x0, 0 bne .L45 b .L46 .L47: ldr x0, [sp, 24] add x0, x0, 72 ldr x1, [sp, 40] bl __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Remove ldr x0, [sp, 40] bl FreeSymbol .L46: ldr x0, [sp, 24] ldr x0, [x0, 72] str x0, [sp, 40] ldr x0, [sp, 40] cmp x0, 0 bne .L47 b .L48 .L49: ldr x0, [sp, 24] add x0, x0, 104 ldr x1, [sp, 40] bl __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Remove ldr x0, [sp, 40] bl FreeSymbol .L48: ldr x0, [sp, 24] ldr x0, [x0, 104] str x0, [sp, 40] ldr x0, [sp, 40] cmp x0, 0 bne .L49 b .L50 .L51: ldr x0, [sp, 24] add x0, x0, 144 ldr x1, [sp, 40] bl __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Remove ldr x0, [sp, 40] bl FreeTemplateType .L50: ldr x0, [sp, 24] ldr x0, [x0, 144] str x0, [sp, 40] ldr x0, [sp, 40] cmp x0, 0 bne .L51 ldr x0, [sp, 24] str wzr, [x0, 136] ldr x0, [sp, 24] str wzr, [x0, 140] ldr x0, [sp, 24] str xzr, [x0] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE22: .size FreeContext, .-FreeContext .align 2 .global FreeType .type FreeType, %function FreeType: .LFB23: .cfi_startproc stp x29, x30, [sp, -96]! .cfi_def_cfa_offset 96 .cfi_offset 29, -96 .cfi_offset 30, -88 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] cmp x0, 0 beq .L74 ldr x0, [sp, 24] ldr w0, [x0, 16] sub w1, w0, #1 ldr x0, [sp, 24] str w1, [x0, 16] ldr x0, [sp, 24] ldr w0, [x0, 16] cmp w0, 0 bgt .L74 ldr x0, [sp, 24] ldr w0, [x0, 88] cmp w0, 15 beq .L54 cmp w0, 15 bgt .L55 cmp w0, 13 beq .L56 cmp w0, 13 bgt .L55 cmp w0, 12 beq .L57 cmp w0, 12 bgt .L55 cmp w0, 10 bgt .L58 cmp w0, 9 bge .L59 b .L55 .L58: cmp w0, 11 beq .L60 b .L55 .L54: ldr x0, [sp, 24] ldr x0, [x0, 56] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 56] ldr x0, [sp, 24] ldr x0, [x0, 24] str x0, [sp, 32] b .L61 .L64: ldr x0, [sp, 32] ldr x0, [x0, 8] str x0, [sp, 56] ldr x0, [sp, 24] add x0, x0, 24 ldr x1, [sp, 32] bl __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove ldr x0, [sp, 32] ldr x0, [x0, 16] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 32] str xzr, [x0, 16] ldr x0, [sp, 32] cmp x0, 0 beq .L62 ldr x0, [sp, 32] str x0, [sp, 64] adrp x0, :got:__ecereClass___ecereNameSpace__ecere__sys__NamedLink64 ldr x0, [x0, #:got_lo12:__ecereClass___ecereNameSpace__ecere__sys__NamedLink64] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L63 adrp x0, :got:__ecereClass___ecereNameSpace__ecere__sys__NamedLink64 ldr x0, [x0, #:got_lo12:__ecereClass___ecereNameSpace__ecere__sys__NamedLink64] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 64] blr x1 .L63: ldr x0, [sp, 64] bl __ecereNameSpace__ecere__com__eSystem_Delete .L62: str xzr, [sp, 32] ldr x0, [sp, 56] str x0, [sp, 32] .L61: ldr x0, [sp, 32] cmp x0, 0 bne .L64 b .L55 .L59: ldr x0, [sp, 24] ldr x0, [x0, 56] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 56] ldr x0, [sp, 24] ldr x0, [x0, 24] str x0, [sp, 40] b .L65 .L67: ldr x0, [sp, 40] ldr x0, [x0, 8] str x0, [sp, 80] ldr x0, [sp, 40] ldr w0, [x0, 16] cmp w0, 1 bne .L66 ldr x0, [sp, 24] add x0, x0, 24 ldr x1, [sp, 40] bl __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove .L66: ldr x0, [sp, 40] bl FreeType ldr x0, [sp, 80] str x0, [sp, 40] .L65: ldr x0, [sp, 40] cmp x0, 0 bne .L67 b .L55 .L60: ldr x0, [sp, 24] ldr x0, [x0, 24] cmp x0, 0 beq .L68 ldr x0, [sp, 24] ldr x0, [x0, 24] bl FreeType .L68: ldr x0, [sp, 24] ldr x0, [x0, 32] str x0, [sp, 48] b .L69 .L70: ldr x0, [sp, 48] ldr x0, [x0, 8] str x0, [sp, 72] ldr x0, [sp, 48] bl FreeType ldr x0, [sp, 72] str x0, [sp, 48] .L69: ldr x0, [sp, 48] cmp x0, 0 bne .L70 b .L55 .L57: ldr x0, [sp, 24] ldr w0, [x0, 48] cmp w0, 0 beq .L56 ldr x0, [sp, 24] ldr x0, [x0, 40] cmp x0, 0 beq .L56 ldr x0, [sp, 24] ldr x0, [x0, 40] bl FreeExpression .L56: ldr x0, [sp, 24] ldr x0, [x0, 24] cmp x0, 0 beq .L75 ldr x0, [sp, 24] ldr x0, [x0, 24] bl FreeType .L75: nop .L55: ldr x0, [sp, 24] ldr x0, [x0, 96] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 96] ldr x0, [sp, 24] ldr x0, [x0, 104] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 104] ldr x0, [sp, 24] cmp x0, 0 beq .L72 ldr x0, [sp, 24] str x0, [sp, 88] adrp x0, :got:__ecereClass_Type ldr x0, [x0, #:got_lo12:__ecereClass_Type] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L73 adrp x0, :got:__ecereClass_Type ldr x0, [x0, #:got_lo12:__ecereClass_Type] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 88] blr x1 .L73: ldr x0, [sp, 88] bl __ecereNameSpace__ecere__com__eSystem_Delete .L72: str xzr, [sp, 24] .L74: nop ldp x29, x30, [sp], 96 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE23: .size FreeType, .-FreeType .align 2 .type FreeDataMember, %function FreeDataMember: .LFB24: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 88] str x0, [sp, 40] b .L77 .L81: ldr x0, [sp, 40] ldr w0, [x0, 72] cmp w0, 2 beq .L78 ldr x0, [sp, 40] ldr w0, [x0, 72] cmp w0, 1 bne .L79 .L78: ldr x0, [sp, 40] bl FreeDataMember .L79: ldr x0, [sp, 40] ldr x0, [x0, 64] cmp x0, 0 beq .L80 ldr x0, [sp, 40] ldr x0, [x0, 64] bl FreeType ldr x0, [sp, 40] str xzr, [x0, 64] .L80: ldr x0, [sp, 40] ldr x0, [x0, 8] str x0, [sp, 40] .L77: ldr x0, [sp, 40] cmp x0, 0 bne .L81 nop nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE24: .size FreeDataMember, .-FreeDataMember .align 2 .type FreeClassProperties, %function FreeClassProperties: .LFB25: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 16] cmp x0, 0 beq .L83 ldr x0, [sp, 24] ldr x0, [x0, 16] bl FreeClassProperties .L83: ldr x0, [sp, 24] ldr x0, [x0, 24] cmp x0, 0 beq .L84 ldr x0, [sp, 24] ldr x0, [x0, 24] bl FreeClassProperties .L84: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L86 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeType ldr x0, [sp, 24] str xzr, [x0, 64] .L86: nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE25: .size FreeClassProperties, .-FreeClassProperties .align 2 .global FreeEnumerator .type FreeEnumerator, %function FreeEnumerator: .LFB26: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 48] cmp x0, 0 beq .L88 ldr x0, [sp, 24] ldr x0, [x0, 48] bl FreeIdentifier .L88: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L89 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExpression .L89: ldr x0, [sp, 24] cmp x0, 0 beq .L90 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_Enumerator ldr x0, [x0, #:got_lo12:__ecereClass_Enumerator] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L91 adrp x0, :got:__ecereClass_Enumerator ldr x0, [x0, #:got_lo12:__ecereClass_Enumerator] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L91: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L90: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE26: .size FreeEnumerator, .-FreeEnumerator .align 2 .global FreeAsmField .type FreeAsmField, %function FreeAsmField: .LFB27: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L93 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExpression .L93: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L94 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeIdentifier .L94: ldr x0, [sp, 24] ldr x0, [x0, 48] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 48] ldr x0, [sp, 24] cmp x0, 0 beq .L95 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_AsmField ldr x0, [x0, #:got_lo12:__ecereClass_AsmField] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L96 adrp x0, :got:__ecereClass_AsmField ldr x0, [x0, #:got_lo12:__ecereClass_AsmField] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L96: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L95: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE27: .size FreeAsmField, .-FreeAsmField .align 2 .global FreeInitializer .type FreeInitializer, %function FreeInitializer: .LFB28: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr w0, [x0, 48] cmp w0, 0 beq .L98 cmp w0, 1 bne .L99 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeInitializer add x1, x0, :lo12:FreeInitializer mov x0, x2 bl FreeList b .L99 .L98: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L104 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExpression .L104: nop .L99: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L101 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeIdentifier .L101: ldr x0, [sp, 24] cmp x0, 0 beq .L102 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_Initializer ldr x0, [x0, #:got_lo12:__ecereClass_Initializer] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L103 adrp x0, :got:__ecereClass_Initializer ldr x0, [x0, #:got_lo12:__ecereClass_Initializer] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L103: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L102: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE28: .size FreeInitializer, .-FreeInitializer .align 2 .global FreeDBIndexItem .type FreeDBIndexItem, %function FreeDBIndexItem: .LFB29: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 16] cmp x0, 0 beq .L106 ldr x0, [sp, 24] ldr x0, [x0, 16] bl FreeIdentifier .L106: ldr x0, [sp, 24] cmp x0, 0 beq .L107 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_DBIndexItem ldr x0, [x0, #:got_lo12:__ecereClass_DBIndexItem] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L108 adrp x0, :got:__ecereClass_DBIndexItem ldr x0, [x0, #:got_lo12:__ecereClass_DBIndexItem] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L108: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L107: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE29: .size FreeDBIndexItem, .-FreeDBIndexItem .align 2 .global FreeInitDeclarator .type FreeInitDeclarator, %function FreeInitDeclarator: .LFB30: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 48] cmp x0, 0 beq .L110 ldr x0, [sp, 24] ldr x0, [x0, 48] bl FreeDeclarator .L110: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L111 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeInitializer .L111: ldr x0, [sp, 24] cmp x0, 0 beq .L112 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_InitDeclarator ldr x0, [x0, #:got_lo12:__ecereClass_InitDeclarator] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L113 adrp x0, :got:__ecereClass_InitDeclarator ldr x0, [x0, #:got_lo12:__ecereClass_InitDeclarator] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L113: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L112: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE30: .size FreeInitDeclarator, .-FreeInitDeclarator .align 2 .global FreeMemberInit .type FreeMemberInit, %function FreeMemberInit: .LFB31: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 88] cmp x0, 0 beq .L115 ldr x0, [sp, 24] ldr x0, [x0, 88] bl FreeInitializer .L115: ldr x0, [sp, 24] ldr x0, [x0, 80] cmp x0, 0 beq .L116 ldr x0, [sp, 24] ldr x2, [x0, 80] adrp x0, FreeIdentifier add x1, x0, :lo12:FreeIdentifier mov x0, x2 bl FreeList .L116: ldr x0, [sp, 24] cmp x0, 0 beq .L117 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_MemberInit ldr x0, [x0, #:got_lo12:__ecereClass_MemberInit] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L118 adrp x0, :got:__ecereClass_MemberInit ldr x0, [x0, #:got_lo12:__ecereClass_MemberInit] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L118: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L117: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE31: .size FreeMemberInit, .-FreeMemberInit .align 2 .global FreeSpecifier .type FreeSpecifier, %function FreeSpecifier: .LFB32: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] cmp x0, 0 beq .L123 ldr x0, [sp, 24] bl FreeSpecifierContents ldr x0, [sp, 24] cmp x0, 0 beq .L121 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_Specifier ldr x0, [x0, #:got_lo12:__ecereClass_Specifier] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L122 adrp x0, :got:__ecereClass_Specifier ldr x0, [x0, #:got_lo12:__ecereClass_Specifier] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L122: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L121: str xzr, [sp, 24] .L123: nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE32: .size FreeSpecifier, .-FreeSpecifier .align 2 .global FreeTemplateDataType .type FreeTemplateDataType, %function FreeTemplateDataType: .LFB33: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 8] cmp x0, 0 beq .L125 ldr x0, [sp, 24] ldr x0, [x0, 8] bl FreeDeclarator .L125: ldr x0, [sp, 24] ldr x0, [x0] cmp x0, 0 beq .L126 ldr x0, [sp, 24] ldr x2, [x0] adrp x0, FreeSpecifier add x1, x0, :lo12:FreeSpecifier mov x0, x2 bl FreeList .L126: ldr x0, [sp, 24] cmp x0, 0 beq .L127 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_TemplateDatatype ldr x0, [x0, #:got_lo12:__ecereClass_TemplateDatatype] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L128 adrp x0, :got:__ecereClass_TemplateDatatype ldr x0, [x0, #:got_lo12:__ecereClass_TemplateDatatype] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L128: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L127: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE33: .size FreeTemplateDataType, .-FreeTemplateDataType .align 2 .global FreeIdentifier .type FreeIdentifier, %function FreeIdentifier: .LFB34: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L130 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeIdentifier .L130: ldr x0, [sp, 24] ldr x0, [x0, 64] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 64] ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L131 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeSpecifier .L131: ldr x0, [sp, 24] cmp x0, 0 beq .L132 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_Identifier ldr x0, [x0, #:got_lo12:__ecereClass_Identifier] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L133 adrp x0, :got:__ecereClass_Identifier ldr x0, [x0, #:got_lo12:__ecereClass_Identifier] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L133: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L132: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE34: .size FreeIdentifier, .-FreeIdentifier .align 2 .global FreeTypeName .type FreeTypeName, %function FreeTypeName: .LFB35: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 48] cmp x0, 0 beq .L135 ldr x0, [sp, 24] ldr x2, [x0, 48] adrp x0, FreeSpecifier add x1, x0, :lo12:FreeSpecifier mov x0, x2 bl FreeList .L135: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L136 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeDeclarator .L136: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L137 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeExpression .L137: ldr x0, [sp, 24] cmp x0, 0 beq .L138 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_TypeName ldr x0, [x0, #:got_lo12:__ecereClass_TypeName] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L139 adrp x0, :got:__ecereClass_TypeName ldr x0, [x0, #:got_lo12:__ecereClass_TypeName] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L139: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L138: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE35: .size FreeTypeName, .-FreeTypeName .align 2 .global FreePointer .type FreePointer, %function FreePointer: .LFB36: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L141 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreePointer .L141: ldr x0, [sp, 24] ldr x0, [x0, 48] cmp x0, 0 beq .L142 ldr x0, [sp, 24] ldr x2, [x0, 48] adrp x0, FreeSpecifier add x1, x0, :lo12:FreeSpecifier mov x0, x2 bl FreeList .L142: ldr x0, [sp, 24] cmp x0, 0 beq .L143 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_Pointer ldr x0, [x0, #:got_lo12:__ecereClass_Pointer] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L144 adrp x0, :got:__ecereClass_Pointer ldr x0, [x0, #:got_lo12:__ecereClass_Pointer] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L144: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L143: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE36: .size FreePointer, .-FreePointer .align 2 .global FreeTemplateArgument .type FreeTemplateArgument, %function FreeTemplateArgument: .LFB37: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr w0, [x0, 56] cmp w0, 2 beq .L146 cmp w0, 2 bgt .L147 cmp w0, 0 beq .L148 cmp w0, 1 beq .L149 b .L147 .L146: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L156 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeExpression b .L156 .L149: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L157 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeIdentifier b .L157 .L148: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L158 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeTemplateDataType b .L158 .L156: nop b .L147 .L157: nop b .L147 .L158: nop .L147: ldr x0, [sp, 24] ldr x0, [x0, 48] cmp x0, 0 beq .L153 ldr x0, [sp, 24] ldr x0, [x0, 48] bl FreeIdentifier .L153: ldr x0, [sp, 24] cmp x0, 0 beq .L154 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_TemplateArgument ldr x0, [x0, #:got_lo12:__ecereClass_TemplateArgument] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L155 adrp x0, :got:__ecereClass_TemplateArgument ldr x0, [x0, #:got_lo12:__ecereClass_TemplateArgument] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L155: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L154: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE37: .size FreeTemplateArgument, .-FreeTemplateArgument .align 2 .global FreeDBTableEntry .type FreeDBTableEntry, %function FreeDBTableEntry: .LFB38: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 24] cmp x0, 0 beq .L160 ldr x0, [sp, 24] ldr x0, [x0, 24] bl FreeIdentifier .L160: ldr x0, [sp, 24] ldr w0, [x0, 16] cmp w0, 0 beq .L161 cmp w0, 1 beq .L162 b .L163 .L161: ldr x0, [sp, 24] ldr x0, [x0, 32] cmp x0, 0 beq .L164 ldr x0, [sp, 24] ldr x0, [x0, 32] bl FreeTypeName .L164: ldr x0, [sp, 24] ldr x0, [x0, 40] cmp x0, 0 beq .L169 ldr x0, [sp, 24] ldr x0, [x0, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 40] b .L169 .L162: ldr x0, [sp, 24] ldr x0, [x0, 32] cmp x0, 0 beq .L170 ldr x0, [sp, 24] ldr x2, [x0, 32] adrp x0, FreeDBIndexItem add x1, x0, :lo12:FreeDBIndexItem mov x0, x2 bl FreeList b .L170 .L169: nop b .L163 .L170: nop .L163: ldr x0, [sp, 24] cmp x0, 0 beq .L167 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_DBTableEntry ldr x0, [x0, #:got_lo12:__ecereClass_DBTableEntry] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L168 adrp x0, :got:__ecereClass_DBTableEntry ldr x0, [x0, #:got_lo12:__ecereClass_DBTableEntry] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L168: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L167: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE38: .size FreeDBTableEntry, .-FreeDBTableEntry .align 2 .global FreeDeclarator .type FreeDeclarator, %function FreeDeclarator: .LFB39: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L172 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeDeclarator .L172: ldr x0, [sp, 24] ldr w0, [x0, 48] cmp w0, 7 bgt .L173 cmp w0, 6 bge .L174 cmp w0, 5 beq .L175 cmp w0, 5 bgt .L173 cmp w0, 4 beq .L176 cmp w0, 4 bgt .L173 cmp w0, 3 beq .L177 cmp w0, 3 bgt .L173 cmp w0, 2 beq .L190 cmp w0, 2 bgt .L173 cmp w0, 0 beq .L179 cmp w0, 1 beq .L180 b .L173 .L179: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L181 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeExpression .L181: ldr x0, [sp, 24] ldr x0, [x0, 80] cmp x0, 0 beq .L182 ldr x0, [sp, 24] ldr x0, [x0, 80] bl FreeExpression .L182: ldr x0, [sp, 24] ldr x0, [x0, 88] cmp x0, 0 beq .L191 ldr x0, [sp, 24] ldr x0, [x0, 88] bl FreeAttrib b .L191 .L180: ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeIdentifier b .L173 .L177: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L184 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeExpression .L184: ldr x0, [sp, 24] ldr x0, [x0, 80] cmp x0, 0 beq .L192 ldr x0, [sp, 24] ldr x0, [x0, 80] bl FreeSpecifier b .L192 .L176: ldr x0, [sp, 24] ldr x2, [x0, 72] adrp x0, FreeTypeName add x1, x0, :lo12:FreeTypeName mov x0, x2 bl FreeList b .L173 .L175: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L193 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreePointer b .L193 .L174: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L194 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeExtDecl b .L194 .L190: nop b .L173 .L191: nop b .L173 .L192: nop b .L173 .L193: nop b .L173 .L194: nop .L173: ldr x0, [sp, 24] cmp x0, 0 beq .L188 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_Declarator ldr x0, [x0, #:got_lo12:__ecereClass_Declarator] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L189 adrp x0, :got:__ecereClass_Declarator ldr x0, [x0, #:got_lo12:__ecereClass_Declarator] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L189: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L188: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE39: .size FreeDeclarator, .-FreeDeclarator .align 2 .global FreeTemplateParameter .type FreeTemplateParameter, %function FreeTemplateParameter: .LFB40: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L196 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeIdentifier .L196: ldr x0, [sp, 24] ldr w0, [x0, 48] cmp w0, 0 beq .L197 ldr x0, [sp, 24] ldr w0, [x0, 48] cmp w0, 2 bne .L198 .L197: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L198 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeTemplateDataType .L198: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L199 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeTemplateArgument .L199: ldr x0, [sp, 24] ldr x0, [x0, 88] cmp x0, 0 beq .L200 ldr x0, [sp, 24] ldr x0, [x0, 88] bl FreeType .L200: ldr x0, [sp, 24] cmp x0, 0 beq .L201 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_TemplateParameter ldr x0, [x0, #:got_lo12:__ecereClass_TemplateParameter] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L202 adrp x0, :got:__ecereClass_TemplateParameter ldr x0, [x0, #:got_lo12:__ecereClass_TemplateParameter] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L202: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L201: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE40: .size FreeTemplateParameter, .-FreeTemplateParameter .align 2 .global FreeDBTable .type FreeDBTable, %function FreeDBTable: .LFB41: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 16] cmp x0, 0 beq .L204 ldr x0, [sp, 24] ldr x2, [x0, 16] adrp x0, FreeDBTableEntry add x1, x0, :lo12:FreeDBTableEntry mov x0, x2 bl FreeList .L204: ldr x0, [sp, 24] ldr x0, [x0] cmp x0, 0 beq .L205 ldr x0, [sp, 24] ldr x0, [x0] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0] .L205: ldr x0, [sp, 24] cmp x0, 0 beq .L206 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_DBTableDef ldr x0, [x0, #:got_lo12:__ecereClass_DBTableDef] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L207 adrp x0, :got:__ecereClass_DBTableDef ldr x0, [x0, #:got_lo12:__ecereClass_DBTableDef] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L207: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L206: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE41: .size FreeDBTable, .-FreeDBTable .align 2 .global FreeSymbol .type FreeSymbol, %function FreeSymbol: .LFB42: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 304] cmp x0, 0 beq .L209 ldr x0, [sp, 24] ldr x0, [x0, 304] bl FreeExpression .L209: ldr x0, [sp, 24] ldr x0, [x0, 40] bl FreeType b .L210 .L211: ldr x0, [sp, 24] add x0, x0, 256 ldr x1, [sp, 40] bl __ecereMethod___ecereNameSpace__ecere__sys__OldList_Delete .L210: ldr x0, [sp, 24] ldr x0, [x0, 256] str x0, [sp, 40] ldr x0, [sp, 40] cmp x0, 0 bne .L211 ldr x0, [sp, 24] ldr x0, [x0] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0] ldr x0, [sp, 24] ldr x0, [x0, 248] cmp x0, 0 beq .L212 ldr x0, [sp, 24] ldr x2, [x0, 248] adrp x0, FreeTemplateParameter add x1, x0, :lo12:FreeTemplateParameter mov x0, x2 bl FreeList .L212: ldr x0, [sp, 24] ldr x0, [x0, 128] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 128] ldr x0, [sp, 24] ldr x0, [x0, 136] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 136] ldr x0, [sp, 24] ldr x0, [x0, 144] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 144] ldr x0, [sp, 24] ldr x0, [x0, 152] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 152] ldr x0, [sp, 24] ldr x0, [x0, 240] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 240] ldr x0, [sp, 24] ldr x0, [x0, 288] cmp x0, 0 beq .L213 ldr x0, [sp, 24] ldr x0, [x0, 288] bl FreeContext ldr x0, [sp, 24] ldr x0, [x0, 288] cmp x0, 0 beq .L214 ldr x0, [sp, 24] ldr x0, [x0, 288] str x0, [sp, 48] adrp x0, :got:__ecereClass_Context ldr x0, [x0, #:got_lo12:__ecereClass_Context] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L215 adrp x0, :got:__ecereClass_Context ldr x0, [x0, #:got_lo12:__ecereClass_Context] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 48] blr x1 .L215: ldr x0, [sp, 48] bl __ecereNameSpace__ecere__com__eSystem_Delete .L214: ldr x0, [sp, 24] str xzr, [x0, 288] .L213: ldr x0, [sp, 24] cmp x0, 0 beq .L216 ldr x0, [sp, 24] str x0, [sp, 56] adrp x0, :got:__ecereClass_Symbol ldr x0, [x0, #:got_lo12:__ecereClass_Symbol] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L217 adrp x0, :got:__ecereClass_Symbol ldr x0, [x0, #:got_lo12:__ecereClass_Symbol] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 56] blr x1 .L217: ldr x0, [sp, 56] bl __ecereNameSpace__ecere__com__eSystem_Delete .L216: str xzr, [sp, 24] nop ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE42: .size FreeSymbol, .-FreeSymbol .align 2 .global FreeModuleData .type FreeModuleData, %function FreeModuleData: .LFB43: .cfi_startproc stp x29, x30, [sp, -240]! .cfi_def_cfa_offset 240 .cfi_offset 29, -240 .cfi_offset 30, -232 mov x29, sp str x0, [sp, 24] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 232] mov x1, 0 ldr x0, [sp, 24] add x0, x0, 24 ldr x0, [x0, 8] str x0, [sp, 48] b .L219 .L241: ldr x0, [sp, 48] ldr x0, [x0, 568] cmp x0, 0 bne .L269 ldr x0, [sp, 48] ldr x0, [x0, 312] cmp x0, 0 beq .L222 ldr x0, [sp, 48] ldr x0, [x0, 312] bl FreeType ldr x0, [sp, 48] str xzr, [x0, 312] .L222: ldr x0, [sp, 48] ldr x0, [x0, 176] str x0, [sp, 64] b .L223 .L228: ldr x0, [sp, 64] ldr w0, [x0, 24] cmp w0, 0 beq .L224 ldr x0, [sp, 64] str x0, [sp, 176] ldr x0, [sp, 176] ldr x0, [x0, 104] cmp x0, 0 beq .L225 ldr x0, [sp, 176] ldr x0, [x0, 104] bl FreeSymbol b .L225 .L224: ldr x0, [sp, 64] ldr w0, [x0, 72] cmp w0, 2 beq .L226 ldr x0, [sp, 64] ldr w0, [x0, 72] cmp w0, 1 bne .L225 .L226: ldr x0, [sp, 64] bl FreeDataMember .L225: ldr x0, [sp, 64] ldr x0, [x0, 64] cmp x0, 0 beq .L227 ldr x0, [sp, 64] ldr x0, [x0, 64] bl FreeType ldr x0, [sp, 64] str xzr, [x0, 64] .L227: ldr x0, [sp, 64] ldr x0, [x0, 8] str x0, [sp, 64] .L223: ldr x0, [sp, 64] cmp x0, 0 bne .L228 ldr x0, [sp, 48] ldr x0, [x0, 496] str x0, [sp, 64] b .L229 .L232: ldr x0, [sp, 64] str x0, [sp, 168] ldr x0, [sp, 168] ldr x0, [x0, 104] cmp x0, 0 beq .L230 ldr x0, [sp, 168] ldr x0, [x0, 104] bl FreeSymbol .L230: ldr x0, [sp, 168] ldr x0, [x0, 64] cmp x0, 0 beq .L231 ldr x0, [sp, 168] ldr x0, [x0, 64] bl FreeType ldr x0, [sp, 168] str xzr, [x0, 64] .L231: ldr x0, [sp, 64] ldr x0, [x0, 8] str x0, [sp, 64] .L229: ldr x0, [sp, 64] cmp x0, 0 bne .L232 ldr x0, [sp, 48] add x0, x0, 208 bl __ecereProp___ecereNameSpace__ecere__sys__BinaryTree_Get_first cmp x0, 0 beq .L233 ldr x0, [sp, 48] add x0, x0, 208 bl __ecereProp___ecereNameSpace__ecere__sys__BinaryTree_Get_first bl FreeClassProperties .L233: ldr x0, [sp, 48] add x0, x0, 80 bl __ecereProp___ecereNameSpace__ecere__sys__BinaryTree_Get_first str x0, [sp, 72] b .L234 .L237: ldr x0, [sp, 72] ldr x0, [x0, 80] cmp x0, 0 beq .L235 ldr x0, [sp, 72] ldr x0, [x0, 80] bl FreeType ldr x0, [sp, 72] str xzr, [x0, 80] .L235: ldr x0, [sp, 72] ldr x0, [x0, 64] cmp x0, 0 beq .L236 ldr x0, [sp, 72] ldr x0, [x0, 64] bl FreeSymbol .L236: ldr x0, [sp, 72] bl __ecereProp___ecereNameSpace__ecere__sys__BTNode_Get_next str x0, [sp, 72] .L234: ldr x0, [sp, 72] cmp x0, 0 bne .L237 ldr x0, [sp, 48] ldr x0, [x0, 528] str x0, [sp, 80] b .L238 .L240: ldr x0, [sp, 80] ldr x0, [x0, 56] cmp x0, 0 beq .L239 ldr x0, [sp, 80] ldr x0, [x0, 56] bl FreeTemplateParameter ldr x0, [sp, 80] str xzr, [x0, 56] .L239: ldr x0, [sp, 80] ldr x0, [x0, 8] str x0, [sp, 80] .L238: ldr x0, [sp, 80] cmp x0, 0 bne .L240 b .L221 .L269: nop .L221: ldr x0, [sp, 48] ldr x0, [x0, 8] str x0, [sp, 48] .L219: ldr x0, [sp, 48] cmp x0, 0 bne .L241 ldr x0, [sp, 24] add x0, x0, 24 ldr x0, [x0, 72] str x0, [sp, 56] b .L242 .L245: ldr x0, [sp, 56] ldr x0, [x0, 56] cmp x0, 0 beq .L243 ldr x0, [sp, 56] ldr x0, [x0, 56] bl FreeType .L243: ldr x0, [sp, 56] ldr x0, [x0, 64] cmp x0, 0 beq .L244 ldr x0, [sp, 56] ldr x0, [x0, 64] bl FreeSymbol .L244: ldr x0, [sp, 56] ldr x0, [x0, 8] str x0, [sp, 56] .L242: ldr x0, [sp, 56] cmp x0, 0 bne .L245 adrp x0, :got:inCompiler ldr x0, [x0, #:got_lo12:inCompiler] ldr w0, [x0] cmp w0, 0 bne .L270 str xzr, [sp, 184] str xzr, [sp, 192] adrp x0, :got:loadedModules ldr x0, [x0, #:got_lo12:loadedModules] ldr x1, [x0] add x0, sp, 184 bl __ecereProp___ecereNameSpace__ecere__com__MapIterator_Set_map b .L247 .L267: add x0, sp, 184 bl __ecereProp___ecereNameSpace__ecere__com__Iterator_Get_data str x0, [sp, 88] ldr x0, [sp, 88] str x0, [sp, 200] str xzr, [sp, 208] str wzr, [sp, 44] b .L248 .L253: add x0, sp, 200 bl __ecereProp___ecereNameSpace__ecere__com__Iterator_Get_data mov x1, x0 ldr x0, [sp, 24] cmp x0, x1 bne .L248 ldr x0, [sp, 88] str x0, [sp, 96] ldr x0, [sp, 96] cmp x0, 0 beq .L249 ldr x0, [sp, 96] ldr x0, [x0] b .L250 .L249: adrp x0, :got:__ecereClass___ecereNameSpace__ecere__com__List ldr x0, [x0, #:got_lo12:__ecereClass___ecereNameSpace__ecere__com__List] ldr x0, [x0] ldr x0, [x0, 32] .L250: adrp x1, __ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove add x1, x1, :lo12:__ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove ldr w1, [x1] sxtw x1, w1 lsl x1, x1, 3 add x0, x0, x1 ldr x0, [x0] str x0, [sp, 104] ldr x0, [sp, 104] cmp x0, 0 beq .L251 ldr x0, [sp, 208] ldr x2, [sp, 104] mov x1, x0 ldr x0, [sp, 88] blr x2 .L251: mov w0, 1 str w0, [sp, 44] b .L252 .L248: add x0, sp, 200 bl __ecereMethod___ecereNameSpace__ecere__com__Iterator_Next cmp w0, 0 bne .L253 .L252: ldr w0, [sp, 44] cmp w0, 0 beq .L247 ldr x0, [sp, 88] add x0, x0, 24 ldr w0, [x0, 16] cmp w0, 1 bne .L271 ldr x0, [sp, 88] str x0, [sp, 216] str xzr, [sp, 224] add x0, sp, 216 mov w2, 0 mov x1, 0 bl __ecereMethod___ecereNameSpace__ecere__com__Iterator_Index add x0, sp, 216 bl __ecereProp___ecereNameSpace__ecere__com__Iterator_Get_data str x0, [sp, 112] ldr x0, [sp, 88] str x0, [sp, 120] ldr x0, [sp, 120] cmp x0, 0 beq .L256 ldr x0, [sp, 120] ldr x0, [x0] b .L257 .L256: adrp x0, :got:__ecereClass___ecereNameSpace__ecere__com__List ldr x0, [x0, #:got_lo12:__ecereClass___ecereNameSpace__ecere__com__List] ldr x0, [x0] ldr x0, [x0, 32] .L257: adrp x1, __ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove add x1, x1, :lo12:__ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove ldr w1, [x1] sxtw x1, w1 lsl x1, x1, 3 add x0, x0, x1 ldr x0, [x0] str x0, [sp, 128] ldr x0, [sp, 128] cmp x0, 0 beq .L258 ldr x0, [sp, 88] str x0, [sp, 136] ldr x0, [sp, 136] cmp x0, 0 beq .L259 ldr x0, [sp, 136] ldr x0, [x0] b .L260 .L259: adrp x0, :got:__ecereClass___ecereNameSpace__ecere__com__List ldr x0, [x0, #:got_lo12:__ecereClass___ecereNameSpace__ecere__com__List] ldr x0, [x0] ldr x0, [x0, 32] .L260: adrp x1, __ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst add x1, x1, :lo12:__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst ldr w1, [x1] sxtw x1, w1 lsl x1, x1, 3 add x0, x0, x1 ldr x0, [x0] str x0, [sp, 144] ldr x0, [sp, 144] cmp x0, 0 beq .L261 ldr x1, [sp, 144] ldr x0, [sp, 88] blr x1 b .L262 .L261: mov x0, 1 .L262: ldr x2, [sp, 128] mov x1, x0 ldr x0, [sp, 88] blr x2 .L258: adrp x0, :got:loadedModules ldr x0, [x0, #:got_lo12:loadedModules] ldr x0, [x0] str x0, [sp, 152] ldr x0, [sp, 152] cmp x0, 0 beq .L263 ldr x0, [sp, 152] ldr x0, [x0] b .L264 .L263: adrp x0, :got:__ecereClass___ecereNameSpace__ecere__com__Map ldr x0, [x0, #:got_lo12:__ecereClass___ecereNameSpace__ecere__com__Map] ldr x0, [x0] ldr x0, [x0, 32] .L264: adrp x1, __ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove add x1, x1, :lo12:__ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove ldr w1, [x1] sxtw x1, w1 lsl x1, x1, 3 add x0, x0, x1 ldr x0, [x0] str x0, [sp, 160] ldr x0, [sp, 160] cmp x0, 0 beq .L265 adrp x0, :got:loadedModules ldr x0, [x0, #:got_lo12:loadedModules] ldr x0, [x0] ldr x1, [sp, 192] ldr x2, [sp, 160] blr x2 .L265: ldr x0, [sp, 88] bl __ecereNameSpace__ecere__com__eInstance_DecRef str xzr, [sp, 88] adrp x0, :got:__thisModule ldr x0, [x0, #:got_lo12:__thisModule] ldr x0, [x0] add x0, x0, 24 ldr x0, [x0] ldr x1, [sp, 112] bl __ecereNameSpace__ecere__com__eModule_Unload b .L270 .L247: add x0, sp, 184 bl __ecereMethod___ecereNameSpace__ecere__com__Iterator_Next cmp w0, 0 bne .L267 b .L270 .L271: nop .L270: nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 232] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L268 bl __stack_chk_fail .L268: ldp x29, x30, [sp], 240 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE43: .size FreeModuleData, .-FreeModuleData .align 2 .global FreeTypeData .type FreeTypeData, %function FreeTypeData: .LFB44: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] add x0, x0, 24 ldr x0, [x0] add x0, x0, 560 ldr x0, [x0, 24] str x0, [sp, 40] b .L273 .L274: ldr x0, [sp, 40] bl FreeModuleData ldr x0, [sp, 40] add x0, x0, 24 ldr x0, [x0, 144] str x0, [sp, 40] .L273: ldr x0, [sp, 40] cmp x0, 0 bne .L274 ldr x0, [sp, 24] bl FreeModuleData nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE44: .size FreeTypeData, .-FreeTypeData .align 2 .global FreePropertyWatch .type FreePropertyWatch, %function FreePropertyWatch: .LFB45: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L276 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeIdentifier add x1, x0, :lo12:FreeIdentifier mov x0, x2 bl FreeList .L276: ldr x0, [sp, 24] ldr x0, [x0, 48] cmp x0, 0 beq .L277 ldr x0, [sp, 24] ldr x0, [x0, 48] bl FreeStatement .L277: ldr x0, [sp, 24] cmp x0, 0 beq .L278 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_PropertyWatch ldr x0, [x0, #:got_lo12:__ecereClass_PropertyWatch] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L279 adrp x0, :got:__ecereClass_PropertyWatch ldr x0, [x0, #:got_lo12:__ecereClass_PropertyWatch] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L279: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L278: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE45: .size FreePropertyWatch, .-FreePropertyWatch .align 2 .global FreeProperty .type FreeProperty, %function FreeProperty: .LFB46: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 48] cmp x0, 0 beq .L281 ldr x0, [sp, 24] ldr x2, [x0, 48] adrp x0, FreeSpecifier add x1, x0, :lo12:FreeSpecifier mov x0, x2 bl FreeList .L281: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L282 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeDeclarator .L282: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L283 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeIdentifier .L283: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L284 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeStatement .L284: ldr x0, [sp, 24] ldr x0, [x0, 80] cmp x0, 0 beq .L285 ldr x0, [sp, 24] ldr x0, [x0, 80] bl FreeStatement .L285: ldr x0, [sp, 24] ldr x0, [x0, 88] cmp x0, 0 beq .L286 ldr x0, [sp, 24] ldr x0, [x0, 88] bl FreeStatement .L286: ldr x0, [sp, 24] ldr x0, [x0, 104] cmp x0, 0 beq .L287 ldr x0, [sp, 24] ldr x0, [x0, 104] bl FreeExpression .L287: ldr x0, [sp, 24] cmp x0, 0 beq .L288 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_PropertyDef ldr x0, [x0, #:got_lo12:__ecereClass_PropertyDef] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L289 adrp x0, :got:__ecereClass_PropertyDef ldr x0, [x0, #:got_lo12:__ecereClass_PropertyDef] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L289: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L288: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE46: .size FreeProperty, .-FreeProperty .align 2 .global FreeMembersInit .type FreeMembersInit, %function FreeMembersInit: .LFB47: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr w0, [x0, 48] cmp w0, 0 bne .L291 ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L291 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeMemberInit add x1, x0, :lo12:FreeMemberInit mov x0, x2 bl FreeList .L291: ldr x0, [sp, 24] ldr w0, [x0, 48] cmp w0, 1 bne .L292 ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L292 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeClassFunction .L292: ldr x0, [sp, 24] cmp x0, 0 beq .L293 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_MembersInit ldr x0, [x0, #:got_lo12:__ecereClass_MembersInit] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L294 adrp x0, :got:__ecereClass_MembersInit ldr x0, [x0, #:got_lo12:__ecereClass_MembersInit] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L294: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L293: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE47: .size FreeMembersInit, .-FreeMembersInit .align 2 .global FreeInstance .type FreeInstance, %function FreeInstance: .LFB48: .cfi_startproc stp x29, x30, [sp, -80]! .cfi_def_cfa_offset 80 .cfi_offset 29, -80 .cfi_offset 30, -72 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L296 ldr x0, [sp, 24] ldr x2, [x0, 64] adrp x0, FreeMembersInit add x1, x0, :lo12:FreeMembersInit mov x0, x2 bl FreeList .L296: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L297 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExpression .L297: ldr x0, [sp, 24] ldr x0, [x0, 88] cmp x0, 0 beq .L298 ldr x0, [sp, 24] ldr x0, [x0, 48] ldr x0, [x0, 64] bl FindClass str x0, [sp, 40] ldr x0, [sp, 40] cmp x0, 0 beq .L299 ldr x0, [sp, 40] ldr x0, [x0, 48] b .L300 .L299: mov x0, 0 .L300: str x0, [sp, 48] ldr x0, [sp, 48] cmp x0, 0 beq .L301 ldr x0, [sp, 48] ldr w0, [x0, 280] cmp w0, 0 bne .L302 ldr x0, [sp, 24] ldr x0, [x0, 88] str x0, [sp, 64] ldr x0, [sp, 64] bl __ecereNameSpace__ecere__com__eInstance_DecRef str xzr, [sp, 64] b .L298 .L302: ldr x0, [sp, 48] ldr w0, [x0, 280] cmp w0, 5 bne .L303 ldr x0, [sp, 48] ldr x0, [x0, 56] cmp x0, 0 beq .L304 ldr x0, [sp, 48] ldr x1, [x0, 56] ldr x0, [sp, 24] ldr x0, [x0, 88] blr x1 .L304: ldr x0, [sp, 24] ldr x0, [x0, 88] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 88] b .L298 .L303: ldr x0, [sp, 48] ldr w0, [x0, 280] cmp w0, 1 bne .L298 ldr x0, [sp, 24] ldr x0, [x0, 88] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 88] b .L298 .L301: ldr x0, [sp, 24] ldr x0, [x0, 88] str x0, [sp, 56] ldr x0, [sp, 56] bl __ecereNameSpace__ecere__com__eInstance_DecRef str xzr, [sp, 56] .L298: ldr x0, [sp, 24] ldr x0, [x0, 48] cmp x0, 0 beq .L305 ldr x0, [sp, 24] ldr x0, [x0, 48] bl FreeSpecifier .L305: ldr x0, [sp, 24] cmp x0, 0 beq .L306 ldr x0, [sp, 24] str x0, [sp, 72] adrp x0, :got:__ecereClass_Instantiation ldr x0, [x0, #:got_lo12:__ecereClass_Instantiation] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L307 adrp x0, :got:__ecereClass_Instantiation ldr x0, [x0, #:got_lo12:__ecereClass_Instantiation] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 72] blr x1 .L307: ldr x0, [sp, 72] bl __ecereNameSpace__ecere__com__eSystem_Delete .L306: str xzr, [sp, 24] nop ldp x29, x30, [sp], 80 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE48: .size FreeInstance, .-FreeInstance .align 2 .type _FreeExpression, %function _FreeExpression: .LFB49: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] str w1, [sp, 20] ldr x0, [sp, 24] ldr w0, [x0, 48] cmp w0, 40 bhi .L309 adrp x1, .L311 add x1, x1, :lo12:.L311 ldr w0, [x1,w0,uxtw #2] adr x1, .Lrtx311 add x0, x1, w0, sxtw #2 br x0 .Lrtx311: .section .rodata .align 0 .align 2 .L311: .word (.L342 - .Lrtx311) / 4 .word (.L341 - .Lrtx311) / 4 .word (.L340 - .Lrtx311) / 4 .word (.L339 - .Lrtx311) / 4 .word (.L338 - .Lrtx311) / 4 .word (.L337 - .Lrtx311) / 4 .word (.L336 - .Lrtx311) / 4 .word (.L335 - .Lrtx311) / 4 .word (.L334 - .Lrtx311) / 4 .word (.L334 - .Lrtx311) / 4 .word (.L333 - .Lrtx311) / 4 .word (.L332 - .Lrtx311) / 4 .word (.L331 - .Lrtx311) / 4 .word (.L322 - .Lrtx311) / 4 .word (.L321 - .Lrtx311) / 4 .word (.L330 - .Lrtx311) / 4 .word (.L309 - .Lrtx311) / 4 .word (.L309 - .Lrtx311) / 4 .word (.L328 - .Lrtx311) / 4 .word (.L313 - .Lrtx311) / 4 .word (.L327 - .Lrtx311) / 4 .word (.L309 - .Lrtx311) / 4 .word (.L309 - .Lrtx311) / 4 .word (.L325 - .Lrtx311) / 4 .word (.L324 - .Lrtx311) / 4 .word (.L323 - .Lrtx311) / 4 .word (.L322 - .Lrtx311) / 4 .word (.L321 - .Lrtx311) / 4 .word (.L320 - .Lrtx311) / 4 .word (.L319 - .Lrtx311) / 4 .word (.L319 - .Lrtx311) / 4 .word (.L319 - .Lrtx311) / 4 .word (.L318 - .Lrtx311) / 4 .word (.L317 - .Lrtx311) / 4 .word (.L316 - .Lrtx311) / 4 .word (.L315 - .Lrtx311) / 4 .word (.L314 - .Lrtx311) / 4 .word (.L313 - .Lrtx311) / 4 .word (.L312 - .Lrtx311) / 4 .word (.L309 - .Lrtx311) / 4 .word (.L310 - .Lrtx311) / 4 .text .L322: ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeExpression ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeTypeName b .L309 .L321: ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeExpression ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeExpression ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeTypeName b .L309 .L340: ldr x0, [sp, 24] ldr x0, [x0, 56] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 56] b .L309 .L342: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L383 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeIdentifier b .L383 .L341: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L384 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeInstance ldr x0, [sp, 24] str xzr, [x0, 56] b .L384 .L339: ldr x0, [sp, 24] ldr x0, [x0, 56] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 56] b .L309 .L338: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L345 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeExpression .L345: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L385 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeExpression b .L385 .L337: ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList b .L309 .L336: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L347 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExpression .L347: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L386 ldr x0, [sp, 24] ldr x2, [x0, 64] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList b .L386 .L335: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L349 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExpression .L349: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L387 ldr x0, [sp, 24] ldr x2, [x0, 64] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList b .L387 .L334: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L351 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExpression .L351: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L388 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeIdentifier b .L388 .L333: ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeTypeName b .L309 .L314: ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeTypeName b .L309 .L310: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L353 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeTypeName .L353: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L389 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeIdentifier b .L389 .L332: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L355 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeExpression .L355: ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeTypeName b .L309 .L331: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L356 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExpression .L356: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L357 ldr x0, [sp, 24] ldr x2, [x0, 64] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList .L357: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L390 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeExpression b .L390 .L325: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L391 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeStatement b .L391 .L318: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L392 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList b .L392 .L317: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L361 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeTypeName .L361: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L393 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeInitializer b .L393 .L324: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L363 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeSpecifier add x1, x0, :lo12:FreeSpecifier mov x0, x2 bl FreeList .L363: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L394 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeDeclarator b .L394 .L319: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L365 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeIdentifier .L365: ldr x0, [sp, 24] ldr x0, [x0, 56] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 56] b .L309 .L320: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L366 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExpression .L366: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L395 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeExpression b .L395 .L316: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L368 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExpression .L368: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L396 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeTypeName b .L396 .L315: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L397 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList b .L397 .L330: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L398 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeSpecifier b .L398 .L323: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L399 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeIdentifier b .L399 .L328: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L400 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeIdentifier b .L400 .L327: ldr x0, [sp, 24] ldr x0, [x0, 56] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 56] b .L309 .L313: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L374 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExpression .L374: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L401 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeIdentifier b .L401 .L312: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L376 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExpression .L376: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L402 ldr x0, [sp, 24] ldr x2, [x0, 64] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList b .L402 .L383: nop b .L309 .L384: nop b .L309 .L385: nop b .L309 .L386: nop b .L309 .L387: nop b .L309 .L388: nop b .L309 .L389: nop b .L309 .L390: nop b .L309 .L391: nop b .L309 .L392: nop b .L309 .L393: nop b .L309 .L394: nop b .L309 .L395: nop b .L309 .L396: nop b .L309 .L397: nop b .L309 .L398: nop b .L309 .L399: nop b .L309 .L400: nop b .L309 .L401: nop b .L309 .L402: nop .L309: ldr w0, [sp, 20] cmp w0, 0 beq .L403 ldr x0, [sp, 24] ldr x0, [x0, 136] cmp x0, 0 beq .L379 ldr x0, [sp, 24] ldr x0, [x0, 136] bl FreeType .L379: ldr x0, [sp, 24] ldr x0, [x0, 144] cmp x0, 0 beq .L380 ldr x0, [sp, 24] ldr x0, [x0, 144] bl FreeType .L380: ldr x0, [sp, 24] cmp x0, 0 beq .L381 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_Expression ldr x0, [x0, #:got_lo12:__ecereClass_Expression] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L382 adrp x0, :got:__ecereClass_Expression ldr x0, [x0, #:got_lo12:__ecereClass_Expression] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L382: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L381: str xzr, [sp, 24] .L403: nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE49: .size _FreeExpression, .-_FreeExpression .align 2 .global FreeDeclaration .type FreeDeclaration, %function FreeDeclaration: .LFB50: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 80] cmp x0, 0 ldr x0, [sp, 24] ldr w0, [x0, 48] cmp w0, 3 beq .L407 cmp w0, 3 bgt .L408 cmp w0, 2 beq .L409 cmp w0, 2 bgt .L408 cmp w0, 0 beq .L410 cmp w0, 1 beq .L411 b .L408 .L410: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L412 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeSpecifier add x1, x0, :lo12:FreeSpecifier mov x0, x2 bl FreeList .L412: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L413 ldr x0, [sp, 24] ldr x2, [x0, 64] adrp x0, FreeDeclarator add x1, x0, :lo12:FreeDeclarator mov x0, x2 bl FreeList .L413: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L422 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeSpecifier b .L422 .L411: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L415 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeSpecifier add x1, x0, :lo12:FreeSpecifier mov x0, x2 bl FreeList .L415: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L423 ldr x0, [sp, 24] ldr x2, [x0, 64] adrp x0, FreeInitDeclarator add x1, x0, :lo12:FreeInitDeclarator mov x0, x2 bl FreeList b .L423 .L409: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L424 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeInstance b .L424 .L407: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L418 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeExpression .L418: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L425 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeIdentifier b .L425 .L422: nop b .L408 .L423: nop b .L408 .L424: nop b .L408 .L425: nop .L408: ldr x0, [sp, 24] cmp x0, 0 beq .L420 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_Declaration ldr x0, [x0, #:got_lo12:__ecereClass_Declaration] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L421 adrp x0, :got:__ecereClass_Declaration ldr x0, [x0, #:got_lo12:__ecereClass_Declaration] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L421: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L420: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE50: .size FreeDeclaration, .-FreeDeclaration .align 2 .global FreeStatement .type FreeStatement, %function FreeStatement: .LFB51: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr w0, [x0, 48] cmp w0, 18 bhi .L427 adrp x1, .L429 add x1, x1, :lo12:.L429 ldr w0, [x1,w0,uxtw #2] adr x1, .Lrtx429 add x0, x1, w0, sxtw #2 br x0 .Lrtx429: .section .rodata .align 0 .align 2 .L429: .word (.L445 - .Lrtx429) / 4 .word (.L444 - .Lrtx429) / 4 .word (.L443 - .Lrtx429) / 4 .word (.L442 - .Lrtx429) / 4 .word (.L441 - .Lrtx429) / 4 .word (.L440 - .Lrtx429) / 4 .word (.L439 - .Lrtx429) / 4 .word (.L438 - .Lrtx429) / 4 .word (.L437 - .Lrtx429) / 4 .word (.L485 - .Lrtx429) / 4 .word (.L485 - .Lrtx429) / 4 .word (.L485 - .Lrtx429) / 4 .word (.L433 - .Lrtx429) / 4 .word (.L432 - .Lrtx429) / 4 .word (.L431 - .Lrtx429) / 4 .word (.L430 - .Lrtx429) / 4 .word (.L430 - .Lrtx429) / 4 .word (.L430 - .Lrtx429) / 4 .word (.L428 - .Lrtx429) / 4 .text .L432: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L446 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeSpecifier .L446: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L447 ldr x0, [sp, 24] ldr x2, [x0, 72] adrp x0, FreeAsmField add x1, x0, :lo12:FreeAsmField mov x0, x2 bl FreeList .L447: ldr x0, [sp, 24] ldr x0, [x0, 80] cmp x0, 0 beq .L448 ldr x0, [sp, 24] ldr x2, [x0, 80] adrp x0, FreeAsmField add x1, x0, :lo12:FreeAsmField mov x0, x2 bl FreeList .L448: ldr x0, [sp, 24] ldr x0, [x0, 88] cmp x0, 0 beq .L449 ldr x0, [sp, 24] ldr x2, [x0, 88] adrp x0, FreeAsmField add x1, x0, :lo12:FreeAsmField mov x0, x2 bl FreeList .L449: ldr x0, [sp, 24] ldr x0, [x0, 64] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 64] b .L427 .L445: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L486 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeStatement b .L486 .L444: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L451 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExpression .L451: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L487 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeStatement b .L487 .L431: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L488 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeDeclaration b .L488 .L443: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L454 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeDeclaration add x1, x0, :lo12:FreeDeclaration mov x0, x2 bl FreeList .L454: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L455 ldr x0, [sp, 24] ldr x2, [x0, 64] adrp x0, FreeStatement add x1, x0, :lo12:FreeStatement mov x0, x2 bl FreeList .L455: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L489 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeContext ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L457 ldr x0, [sp, 24] ldr x0, [x0, 72] str x0, [sp, 32] adrp x0, :got:__ecereClass_Context ldr x0, [x0, #:got_lo12:__ecereClass_Context] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L458 adrp x0, :got:__ecereClass_Context ldr x0, [x0, #:got_lo12:__ecereClass_Context] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 32] blr x1 .L458: ldr x0, [sp, 32] bl __ecereNameSpace__ecere__com__eSystem_Delete .L457: ldr x0, [sp, 24] str xzr, [x0, 72] b .L489 .L442: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L490 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList b .L490 .L441: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L460 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList .L460: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L461 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeStatement .L461: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L491 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeStatement b .L491 .L440: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L463 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList .L463: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L492 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeStatement b .L492 .L439: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L465 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList .L465: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L493 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeStatement b .L493 .L438: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L467 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeStatement .L467: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L494 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList b .L494 .L437: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L469 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeStatement .L469: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L470 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeStatement .L470: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L471 ldr x0, [sp, 24] ldr x2, [x0, 72] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList .L471: ldr x0, [sp, 24] ldr x0, [x0, 80] cmp x0, 0 beq .L495 ldr x0, [sp, 24] ldr x0, [x0, 80] bl FreeStatement b .L495 .L428: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L473 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeIdentifier .L473: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L474 ldr x0, [sp, 24] ldr x2, [x0, 64] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList .L474: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L475 ldr x0, [sp, 24] ldr x2, [x0, 72] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList .L475: ldr x0, [sp, 24] ldr x0, [x0, 80] cmp x0, 0 beq .L496 ldr x0, [sp, 24] ldr x0, [x0, 80] bl FreeStatement b .L496 .L433: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L497 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeExpression add x1, x0, :lo12:FreeExpression mov x0, x2 bl FreeList b .L497 .L430: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L478 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExpression .L478: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L479 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeExpression .L479: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L498 ldr x0, [sp, 24] ldr x2, [x0, 72] ldr x0, [sp, 24] ldr w0, [x0, 48] cmp w0, 17 bne .L481 adrp x0, FreePropertyWatch add x0, x0, :lo12:FreePropertyWatch b .L482 .L481: adrp x0, FreeIdentifier add x0, x0, :lo12:FreeIdentifier .L482: mov x1, x0 mov x0, x2 bl FreeList b .L498 .L485: nop b .L427 .L486: nop b .L427 .L487: nop b .L427 .L488: nop b .L427 .L489: nop b .L427 .L490: nop b .L427 .L491: nop b .L427 .L492: nop b .L427 .L493: nop b .L427 .L494: nop b .L427 .L495: nop b .L427 .L496: nop b .L427 .L497: nop b .L427 .L498: nop .L427: ldr x0, [sp, 24] cmp x0, 0 beq .L483 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_Statement ldr x0, [x0, #:got_lo12:__ecereClass_Statement] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L484 adrp x0, :got:__ecereClass_Statement ldr x0, [x0, #:got_lo12:__ecereClass_Statement] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L484: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L483: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE51: .size FreeStatement, .-FreeStatement .align 2 .global FreeFunction .type FreeFunction, %function FreeFunction: .LFB52: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L500 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeStatement .L500: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L501 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeDeclarator .L501: ldr x0, [sp, 24] ldr x0, [x0, 48] cmp x0, 0 beq .L502 ldr x0, [sp, 24] ldr x2, [x0, 48] adrp x0, FreeSpecifier add x1, x0, :lo12:FreeSpecifier mov x0, x2 bl FreeList .L502: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L503 ldr x0, [sp, 24] ldr x2, [x0, 64] adrp x0, FreeDeclaration add x1, x0, :lo12:FreeDeclaration mov x0, x2 bl FreeList .L503: ldr x0, [sp, 24] ldr x0, [x0, 128] cmp x0, 0 beq .L504 ldr x0, [sp, 24] ldr x0, [x0, 128] bl FreeType .L504: ldr x0, [sp, 24] cmp x0, 0 beq .L505 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_FunctionDefinition ldr x0, [x0, #:got_lo12:__ecereClass_FunctionDefinition] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L506 adrp x0, :got:__ecereClass_FunctionDefinition ldr x0, [x0, #:got_lo12:__ecereClass_FunctionDefinition] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L506: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L505: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE52: .size FreeFunction, .-FreeFunction .align 2 .global FreeClassFunction .type FreeClassFunction, %function FreeClassFunction: .LFB53: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 ldr x0, [sp, 24] ldr x0, [x0, 128] cmp x0, 0 beq .L509 ldr x0, [sp, 24] ldr x0, [x0, 128] bl FreeType .L509: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L510 ldr x0, [sp, 24] ldr x0, [x0, 72] bl FreeStatement .L510: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L511 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeDeclarator .L511: ldr x0, [sp, 24] ldr x0, [x0, 48] cmp x0, 0 beq .L512 ldr x0, [sp, 24] ldr x2, [x0, 48] adrp x0, FreeSpecifier add x1, x0, :lo12:FreeSpecifier mov x0, x2 bl FreeList .L512: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L513 ldr x0, [sp, 24] ldr x2, [x0, 64] adrp x0, FreeDeclaration add x1, x0, :lo12:FreeDeclaration mov x0, x2 bl FreeList .L513: ldr x0, [sp, 24] add x0, x0, 88 mov x1, 0 bl __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free ldr x0, [sp, 24] cmp x0, 0 beq .L514 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_ClassFunction ldr x0, [x0, #:got_lo12:__ecereClass_ClassFunction] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L515 adrp x0, :got:__ecereClass_ClassFunction ldr x0, [x0, #:got_lo12:__ecereClass_ClassFunction] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L515: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L514: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE53: .size FreeClassFunction, .-FreeClassFunction .align 2 .global FreeClassDef .type FreeClassDef, %function FreeClassDef: .LFB54: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr w0, [x0, 48] cmp w0, 13 beq .L543 cmp w0, 13 bgt .L518 cmp w0, 12 beq .L544 cmp w0, 12 bgt .L518 cmp w0, 11 beq .L520 cmp w0, 11 bgt .L518 cmp w0, 10 beq .L521 cmp w0, 10 bgt .L518 cmp w0, 9 beq .L522 cmp w0, 9 bgt .L518 cmp w0, 8 beq .L523 cmp w0, 8 bgt .L518 cmp w0, 7 beq .L545 cmp w0, 7 bgt .L518 cmp w0, 6 beq .L546 cmp w0, 6 bgt .L518 cmp w0, 5 beq .L526 cmp w0, 5 bgt .L518 cmp w0, 4 beq .L527 cmp w0, 4 bgt .L518 cmp w0, 3 beq .L528 cmp w0, 3 bgt .L518 cmp w0, 2 beq .L529 cmp w0, 2 bgt .L518 cmp w0, 0 beq .L530 cmp w0, 1 beq .L531 b .L518 .L529: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L547 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeDeclaration b .L547 .L531: ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeMemberInit add x1, x0, :lo12:FreeMemberInit mov x0, x2 bl FreeList b .L518 .L530: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L548 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeClassFunction b .L548 .L528: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L549 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeProperty b .L549 .L521: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L550 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeProperty b .L550 .L522: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L551 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeDeclaration b .L551 .L526: ldr x0, [sp, 24] ldr x0, [x0, 56] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 56] b .L518 .L520: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L537 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeIdentifier .L537: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L552 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeInitializer b .L552 .L523: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L553 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeIdentifier b .L553 .L527: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L554 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreePropertyWatch b .L554 .L543: nop b .L518 .L544: nop b .L518 .L545: nop b .L518 .L546: nop b .L518 .L547: nop b .L518 .L548: nop b .L518 .L549: nop b .L518 .L550: nop b .L518 .L551: nop b .L518 .L552: nop b .L518 .L553: nop b .L518 .L554: nop .L518: ldr x0, [sp, 24] cmp x0, 0 beq .L541 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_ClassDef ldr x0, [x0, #:got_lo12:__ecereClass_ClassDef] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L542 adrp x0, :got:__ecereClass_ClassDef ldr x0, [x0, #:got_lo12:__ecereClass_ClassDef] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L542: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L541: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE54: .size FreeClassDef, .-FreeClassDef .align 2 .global FreeSpecifierContents .type FreeSpecifierContents, %function FreeSpecifierContents: .LFB55: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr w0, [x0, 48] cmp w0, 7 beq .L556 cmp w0, 7 bgt .L577 cmp w0, 5 beq .L558 cmp w0, 5 bgt .L577 cmp w0, 4 bgt .L577 cmp w0, 3 bge .L559 cmp w0, 1 beq .L560 cmp w0, 2 beq .L561 b .L577 .L560: ldr x0, [sp, 24] ldr x0, [x0, 64] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 64] ldr x0, [sp, 24] ldr x0, [x0, 80] cmp x0, 0 beq .L562 ldr x0, [sp, 24] ldr x2, [x0, 80] adrp x0, FreeTemplateArgument add x1, x0, :lo12:FreeTemplateArgument mov x0, x2 bl FreeList ldr x0, [sp, 24] str xzr, [x0, 80] .L562: ldr x0, [sp, 24] ldr x0, [x0, 88] cmp x0, 0 beq .L578 ldr x0, [sp, 24] ldr x0, [x0, 88] bl FreeSpecifier ldr x0, [sp, 24] str xzr, [x0, 88] b .L578 .L558: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L579 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeExtDecl ldr x0, [sp, 24] str xzr, [x0, 56] b .L579 .L561: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L565 ldr x0, [sp, 24] ldr x2, [x0, 72] adrp x0, FreeSpecifier add x1, x0, :lo12:FreeSpecifier mov x0, x2 bl FreeList ldr x0, [sp, 24] str xzr, [x0, 72] .L565: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L566 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeIdentifier ldr x0, [sp, 24] str xzr, [x0, 56] .L566: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L567 ldr x0, [sp, 24] ldr x2, [x0, 64] adrp x0, FreeEnumerator add x1, x0, :lo12:FreeEnumerator mov x0, x2 bl FreeList ldr x0, [sp, 24] str xzr, [x0, 64] .L567: ldr x0, [sp, 24] ldr x0, [x0, 80] cmp x0, 0 beq .L580 ldr x0, [sp, 24] ldr x2, [x0, 80] adrp x0, FreeClassDef add x1, x0, :lo12:FreeClassDef mov x0, x2 bl FreeList ldr x0, [sp, 24] str xzr, [x0, 80] b .L580 .L559: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L569 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeIdentifier ldr x0, [sp, 24] str xzr, [x0, 56] .L569: ldr x0, [sp, 24] ldr x0, [x0, 80] cmp x0, 0 beq .L570 ldr x0, [sp, 24] ldr x2, [x0, 80] adrp x0, FreeClassDef add x1, x0, :lo12:FreeClassDef mov x0, x2 bl FreeList ldr x0, [sp, 24] str xzr, [x0, 80] .L570: ldr x0, [sp, 24] ldr x0, [x0, 72] cmp x0, 0 beq .L571 ldr x0, [sp, 24] ldr x2, [x0, 72] adrp x0, FreeSpecifier add x1, x0, :lo12:FreeSpecifier mov x0, x2 bl FreeList ldr x0, [sp, 24] str xzr, [x0, 72] .L571: ldr x0, [sp, 24] ldr x0, [x0, 104] cmp x0, 0 beq .L572 ldr x0, [sp, 24] ldr x0, [x0, 104] bl FreeExtDecl ldr x0, [sp, 24] str xzr, [x0, 104] .L572: ldr x0, [sp, 24] ldr x0, [x0, 96] cmp x0, 0 beq .L581 ldr x0, [sp, 24] ldr x0, [x0, 96] bl FreeContext ldr x0, [sp, 24] ldr x0, [x0, 96] cmp x0, 0 beq .L574 ldr x0, [sp, 24] ldr x0, [x0, 96] str x0, [sp, 40] adrp x0, :got:__ecereClass_Context ldr x0, [x0, #:got_lo12:__ecereClass_Context] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L575 adrp x0, :got:__ecereClass_Context ldr x0, [x0, #:got_lo12:__ecereClass_Context] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L575: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L574: ldr x0, [sp, 24] str xzr, [x0, 96] b .L581 .L556: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L582 ldr x0, [sp, 24] ldr x0, [x0, 56] bl FreeSpecifier ldr x0, [sp, 24] str xzr, [x0, 56] b .L582 .L578: nop b .L577 .L579: nop b .L577 .L580: nop b .L577 .L581: nop b .L577 .L582: nop .L577: nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE55: .size FreeSpecifierContents, .-FreeSpecifierContents .align 2 .global FreeClass .type FreeClass, %function FreeClass: .LFB56: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L584 ldr x0, [sp, 24] ldr x2, [x0, 64] adrp x0, FreeClassDef add x1, x0, :lo12:FreeClassDef mov x0, x2 bl FreeList .L584: ldr x0, [sp, 24] ldr x0, [x0, 48] cmp x0, 0 beq .L585 ldr x0, [sp, 24] ldr x0, [x0, 48] bl FreeSpecifier .L585: ldr x0, [sp, 24] ldr x0, [x0, 56] cmp x0, 0 beq .L586 ldr x0, [sp, 24] ldr x2, [x0, 56] adrp x0, FreeSpecifier add x1, x0, :lo12:FreeSpecifier mov x0, x2 bl FreeList .L586: ldr x0, [sp, 24] cmp x0, 0 beq .L587 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_ClassDefinition ldr x0, [x0, #:got_lo12:__ecereClass_ClassDefinition] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L588 adrp x0, :got:__ecereClass_ClassDefinition ldr x0, [x0, #:got_lo12:__ecereClass_ClassDefinition] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L588: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L587: str xzr, [sp, 24] nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE56: .size FreeClass, .-FreeClass .align 2 .global FreeExternal .type FreeExternal, %function FreeExternal: .LFB57: .cfi_startproc stp x29, x30, [sp, -128]! .cfi_def_cfa_offset 128 .cfi_offset 29, -128 .cfi_offset 30, -120 mov x29, sp str x0, [sp, 24] b .L590 .L599: ldr x0, [sp, 32] ldr x0, [x0, 32] ldr x0, [x0, 88] str x0, [sp, 88] ldr x0, [sp, 88] cmp x0, 0 beq .L591 ldr x0, [sp, 88] ldr x0, [x0] b .L592 .L591: adrp x0, :got:__ecereClass___ecereNameSpace__ecere__com__LinkList ldr x0, [x0, #:got_lo12:__ecereClass___ecereNameSpace__ecere__com__LinkList] ldr x0, [x0] ldr x0, [x0, 32] .L592: adrp x1, __ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove add x1, x1, :lo12:__ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove ldr w1, [x1] sxtw x1, w1 lsl x1, x1, 3 add x0, x0, x1 ldr x0, [x0] str x0, [sp, 96] ldr x0, [sp, 96] cmp x0, 0 beq .L593 ldr x0, [sp, 32] ldr x0, [x0, 32] ldr x0, [x0, 88] ldr x2, [sp, 96] ldr x1, [sp, 32] blr x2 .L593: ldr x0, [sp, 24] ldr x0, [x0, 96] str x0, [sp, 104] ldr x0, [sp, 104] cmp x0, 0 beq .L594 ldr x0, [sp, 104] ldr x0, [x0] b .L595 .L594: adrp x0, :got:__ecereClass___ecereNameSpace__ecere__com__LinkList ldr x0, [x0, #:got_lo12:__ecereClass___ecereNameSpace__ecere__com__LinkList] ldr x0, [x0] ldr x0, [x0, 32] .L595: adrp x1, __ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove add x1, x1, :lo12:__ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove ldr w1, [x1] sxtw x1, w1 lsl x1, x1, 3 add x0, x0, x1 ldr x0, [x0] str x0, [sp, 112] ldr x0, [sp, 112] cmp x0, 0 beq .L596 ldr x0, [sp, 24] ldr x0, [x0, 96] ldr x2, [sp, 112] ldr x1, [sp, 32] blr x2 .L596: ldr x0, [sp, 32] cmp x0, 0 beq .L597 ldr x0, [sp, 32] str x0, [sp, 120] adrp x0, :got:__ecereClass_TopoEdge ldr x0, [x0, #:got_lo12:__ecereClass_TopoEdge] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L598 adrp x0, :got:__ecereClass_TopoEdge ldr x0, [x0, #:got_lo12:__ecereClass_TopoEdge] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 120] blr x1 .L598: ldr x0, [sp, 120] bl __ecereNameSpace__ecere__com__eSystem_Delete .L597: str xzr, [sp, 32] .L590: ldr x0, [sp, 24] ldr x0, [x0, 96] add x0, x0, 24 ldr x0, [x0] str x0, [sp, 32] ldr x0, [sp, 32] cmp x0, 0 bne .L599 b .L600 .L610: ldr x0, [sp, 32] ldr x0, [x0, 40] ldr x0, [x0, 96] str x0, [sp, 48] ldr x0, [sp, 48] cmp x0, 0 beq .L601 ldr x0, [sp, 48] ldr x0, [x0] b .L602 .L601: adrp x0, :got:__ecereClass___ecereNameSpace__ecere__com__LinkList ldr x0, [x0, #:got_lo12:__ecereClass___ecereNameSpace__ecere__com__LinkList] ldr x0, [x0] ldr x0, [x0, 32] .L602: adrp x1, __ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove add x1, x1, :lo12:__ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove ldr w1, [x1] sxtw x1, w1 lsl x1, x1, 3 add x0, x0, x1 ldr x0, [x0] str x0, [sp, 56] ldr x0, [sp, 56] cmp x0, 0 beq .L603 ldr x0, [sp, 32] ldr x0, [x0, 40] ldr x0, [x0, 96] ldr x2, [sp, 56] ldr x1, [sp, 32] blr x2 .L603: ldr x0, [sp, 24] ldr x0, [x0, 88] str x0, [sp, 64] ldr x0, [sp, 64] cmp x0, 0 beq .L604 ldr x0, [sp, 64] ldr x0, [x0] b .L605 .L604: adrp x0, :got:__ecereClass___ecereNameSpace__ecere__com__LinkList ldr x0, [x0, #:got_lo12:__ecereClass___ecereNameSpace__ecere__com__LinkList] ldr x0, [x0] ldr x0, [x0, 32] .L605: adrp x1, __ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove add x1, x1, :lo12:__ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove ldr w1, [x1] sxtw x1, w1 lsl x1, x1, 3 add x0, x0, x1 ldr x0, [x0] str x0, [sp, 72] ldr x0, [sp, 72] cmp x0, 0 beq .L606 ldr x0, [sp, 24] ldr x0, [x0, 88] ldr x2, [sp, 72] ldr x1, [sp, 32] blr x2 .L606: ldr x0, [sp, 32] ldr w0, [x0, 48] cmp w0, 0 bne .L607 ldr x0, [sp, 32] ldr x0, [x0, 40] ldr w1, [x0, 104] sub w1, w1, #1 str w1, [x0, 104] .L607: ldr x0, [sp, 32] cmp x0, 0 beq .L608 ldr x0, [sp, 32] str x0, [sp, 80] adrp x0, :got:__ecereClass_TopoEdge ldr x0, [x0, #:got_lo12:__ecereClass_TopoEdge] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L609 adrp x0, :got:__ecereClass_TopoEdge ldr x0, [x0, #:got_lo12:__ecereClass_TopoEdge] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 80] blr x1 .L609: ldr x0, [sp, 80] bl __ecereNameSpace__ecere__com__eSystem_Delete .L608: str xzr, [sp, 32] .L600: ldr x0, [sp, 24] ldr x0, [x0, 88] add x0, x0, 24 ldr x0, [x0] str x0, [sp, 32] ldr x0, [sp, 32] cmp x0, 0 bne .L610 ldr x0, [sp, 24] ldr w0, [x0, 48] cmp w0, 5 beq .L611 cmp w0, 5 bgt .L612 cmp w0, 4 beq .L613 cmp w0, 4 bgt .L612 cmp w0, 3 beq .L614 cmp w0, 3 bgt .L612 cmp w0, 2 beq .L615 cmp w0, 2 bgt .L612 cmp w0, 0 beq .L616 cmp w0, 1 beq .L617 b .L612 .L616: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L624 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeFunction b .L624 .L617: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L625 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeDeclaration b .L625 .L615: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L626 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeClass b .L626 .L614: ldr x0, [sp, 24] ldr x0, [x0, 64] bl __ecereNameSpace__ecere__com__eSystem_Delete ldr x0, [sp, 24] str xzr, [x0, 64] b .L612 .L613: ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeIdentifier b .L612 .L611: ldr x0, [sp, 24] ldr x0, [x0, 64] cmp x0, 0 beq .L627 ldr x0, [sp, 24] ldr x0, [x0, 64] bl FreeDBTable b .L627 .L624: nop b .L612 .L625: nop b .L612 .L626: nop b .L612 .L627: nop .L612: ldr x0, [sp, 24] cmp x0, 0 beq .L622 ldr x0, [sp, 24] str x0, [sp, 40] adrp x0, :got:__ecereClass_External ldr x0, [x0, #:got_lo12:__ecereClass_External] ldr x0, [x0] ldr x0, [x0, 56] cmp x0, 0 beq .L623 adrp x0, :got:__ecereClass_External ldr x0, [x0, #:got_lo12:__ecereClass_External] ldr x0, [x0] ldr x1, [x0, 56] ldr x0, [sp, 40] blr x1 .L623: ldr x0, [sp, 40] bl __ecereNameSpace__ecere__com__eSystem_Delete .L622: str xzr, [sp, 24] nop ldp x29, x30, [sp], 128 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE57: .size FreeExternal, .-FreeExternal .section .rodata .align 3 .LC0: .string "void FreeList(ecere::sys::OldList list, void (* FreeFunction)(void *))" .align 3 .LC1: .string "FreeList" .align 3 .LC2: .string "void FreeType(Type type)" .align 3 .LC3: .string "FreeType" .align 3 .LC4: .string "void FreeSymbol(Symbol symbol)" .align 3 .LC5: .string "FreeSymbol" .align 3 .LC6: .string "void FreeMethodImport(MethodImport imp)" .align 3 .LC7: .string "FreeMethodImport" .align 3 .LC8: .string "void FreePropertyImport(MethodImport imp)" .align 3 .LC9: .string "FreePropertyImport" .align 3 .LC10: .string "void FreeClassImport(ClassImport imp)" .align 3 .LC11: .string "FreeClassImport" .align 3 .LC12: .string "void FreeFunctionImport(ClassImport imp)" .align 3 .LC13: .string "FreeFunctionImport" .align 3 .LC14: .string "void FreeModuleImport(ModuleImport imp)" .align 3 .LC15: .string "FreeModuleImport" .align 3 .LC16: .string "void FreeModuleDefine(Definition def)" .align 3 .LC17: .string "FreeModuleDefine" .align 3 .LC18: .string "void FreeExcludedSymbols(ecere::sys::OldList excludedSymbols)" .align 3 .LC19: .string "FreeExcludedSymbols" .align 3 .LC20: .string "void FreeTemplateArgument(TemplateArgument arg)" .align 3 .LC21: .string "FreeTemplateArgument" .align 3 .LC22: .string "void FreeTemplateDataType(TemplateDatatype type)" .align 3 .LC23: .string "FreeTemplateDataType" .align 3 .LC24: .string "void FreeTemplateParameter(TemplateParameter param)" .align 3 .LC25: .string "FreeTemplateParameter" .align 3 .LC26: .string "void FreeTemplateType(TemplatedType type)" .align 3 .LC27: .string "FreeTemplateType" .align 3 .LC28: .string "void FreeContext(Context context)" .align 3 .LC29: .string "FreeContext" .align 3 .LC30: .string "void FreeEnumerator(Enumerator enumerator)" .align 3 .LC31: .string "FreeEnumerator" .align 3 .LC32: .string "void FreeSpecifier(Specifier spec)" .align 3 .LC33: .string "FreeSpecifier" .align 3 .LC34: .string "void FreeSpecifierContents(Specifier spec)" .align 3 .LC35: .string "FreeSpecifierContents" .align 3 .LC36: .string "void FreeIdentifier(Identifier id)" .align 3 .LC37: .string "FreeIdentifier" .align 3 .LC38: .string "void FreeTypeName(TypeName typeName)" .align 3 .LC39: .string "FreeTypeName" .align 3 .LC40: .string "void FreeExpContents(Expression exp)" .align 3 .LC41: .string "FreeExpContents" .align 3 .LC42: .string "void FreeExpression(Expression exp)" .align 3 .LC43: .string "FreeExpression" .align 3 .LC44: .string "void FreePointer(Pointer pointer)" .align 3 .LC45: .string "FreePointer" .align 3 .LC46: .string "void FreeAttrib(Attrib attr)" .align 3 .LC47: .string "FreeAttrib" .align 3 .LC48: .string "void FreeAttribute(Attribute attr)" .align 3 .LC49: .string "FreeAttribute" .align 3 .LC50: .string "void FreeExtDecl(ExtDecl extDecl)" .align 3 .LC51: .string "FreeExtDecl" .align 3 .LC52: .string "void FreeDeclarator(Declarator decl)" .align 3 .LC53: .string "FreeDeclarator" .align 3 .LC54: .string "void FreePropertyWatch(PropertyWatch watcher)" .align 3 .LC55: .string "FreePropertyWatch" .align 3 .LC56: .string "void FreeAsmField(AsmField field)" .align 3 .LC57: .string "FreeAsmField" .align 3 .LC58: .string "void FreeStatement(Statement stmt)" .align 3 .LC59: .string "FreeStatement" .align 3 .LC60: .string "void FreeInitializer(Initializer initializer)" .align 3 .LC61: .string "FreeInitializer" .align 3 .LC62: .string "void FreeInitDeclarator(InitDeclarator decl)" .align 3 .LC63: .string "FreeInitDeclarator" .align 3 .LC64: .string "void FreeDeclaration(Declaration decl)" .align 3 .LC65: .string "FreeDeclaration" .align 3 .LC66: .string "void FreeFunction(FunctionDefinition func)" .align 3 .LC67: .string "FreeFunction" .align 3 .LC68: .string "void FreeMemberInit(MemberInit init)" .align 3 .LC69: .string "FreeMemberInit" .align 3 .LC70: .string "void FreeMembersInit(MembersInit init)" .align 3 .LC71: .string "FreeMembersInit" .align 3 .LC72: .string "void FreeInstance(Instantiation inst)" .align 3 .LC73: .string "FreeInstance" .align 3 .LC74: .string "void FreeClassFunction(ClassFunction func)" .align 3 .LC75: .string "FreeClassFunction" .align 3 .LC76: .string "void FreeProperty(PropertyDef def)" .align 3 .LC77: .string "FreeProperty" .align 3 .LC78: .string "void FreeClassDef(ClassDef def)" .align 3 .LC79: .string "FreeClassDef" .align 3 .LC80: .string "void FreeClass(ClassDefinition _class)" .align 3 .LC81: .string "FreeClass" .align 3 .LC82: .string "void FreeDBIndexItem(DBIndexItem item)" .align 3 .LC83: .string "FreeDBIndexItem" .align 3 .LC84: .string "void FreeDBTableEntry(DBTableEntry entry)" .align 3 .LC85: .string "FreeDBTableEntry" .align 3 .LC86: .string "void FreeDBTable(DBTableDef table)" .align 3 .LC87: .string "FreeDBTable" .align 3 .LC88: .string "void FreeExternal(External external)" .align 3 .LC89: .string "FreeExternal" .align 3 .LC90: .string "void FreeASTTree(ecere::sys::OldList ast)" .align 3 .LC91: .string "FreeASTTree" .align 3 .LC92: .string "void FreeModuleData(ecere::com::Module module)" .align 3 .LC93: .string "FreeModuleData" .align 3 .LC94: .string "void FreeTypeData(ecere::com::Module privateModule)" .align 3 .LC95: .string "FreeTypeData" .text .align 2 .global __ecereRegisterModule_freeAst .type __ecereRegisterModule_freeAst, %function __ecereRegisterModule_freeAst: .LFB58: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeList add x2, x0, :lo12:FreeList adrp x0, .LC0 add x1, x0, :lo12:.LC0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeType add x2, x0, :lo12:FreeType adrp x0, .LC2 add x1, x0, :lo12:.LC2 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeSymbol add x2, x0, :lo12:FreeSymbol adrp x0, .LC4 add x1, x0, :lo12:.LC4 adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeMethodImport add x2, x0, :lo12:FreeMethodImport adrp x0, .LC6 add x1, x0, :lo12:.LC6 adrp x0, .LC7 add x0, x0, :lo12:.LC7 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreePropertyImport add x2, x0, :lo12:FreePropertyImport adrp x0, .LC8 add x1, x0, :lo12:.LC8 adrp x0, .LC9 add x0, x0, :lo12:.LC9 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeClassImport add x2, x0, :lo12:FreeClassImport adrp x0, .LC10 add x1, x0, :lo12:.LC10 adrp x0, .LC11 add x0, x0, :lo12:.LC11 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeFunctionImport add x2, x0, :lo12:FreeFunctionImport adrp x0, .LC12 add x1, x0, :lo12:.LC12 adrp x0, .LC13 add x0, x0, :lo12:.LC13 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeModuleImport add x2, x0, :lo12:FreeModuleImport adrp x0, .LC14 add x1, x0, :lo12:.LC14 adrp x0, .LC15 add x0, x0, :lo12:.LC15 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeModuleDefine add x2, x0, :lo12:FreeModuleDefine adrp x0, .LC16 add x1, x0, :lo12:.LC16 adrp x0, .LC17 add x0, x0, :lo12:.LC17 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeExcludedSymbols add x2, x0, :lo12:FreeExcludedSymbols adrp x0, .LC18 add x1, x0, :lo12:.LC18 adrp x0, .LC19 add x0, x0, :lo12:.LC19 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeTemplateArgument add x2, x0, :lo12:FreeTemplateArgument adrp x0, .LC20 add x1, x0, :lo12:.LC20 adrp x0, .LC21 add x0, x0, :lo12:.LC21 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeTemplateDataType add x2, x0, :lo12:FreeTemplateDataType adrp x0, .LC22 add x1, x0, :lo12:.LC22 adrp x0, .LC23 add x0, x0, :lo12:.LC23 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeTemplateParameter add x2, x0, :lo12:FreeTemplateParameter adrp x0, .LC24 add x1, x0, :lo12:.LC24 adrp x0, .LC25 add x0, x0, :lo12:.LC25 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeTemplateType add x2, x0, :lo12:FreeTemplateType adrp x0, .LC26 add x1, x0, :lo12:.LC26 adrp x0, .LC27 add x0, x0, :lo12:.LC27 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeContext add x2, x0, :lo12:FreeContext adrp x0, .LC28 add x1, x0, :lo12:.LC28 adrp x0, .LC29 add x0, x0, :lo12:.LC29 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeEnumerator add x2, x0, :lo12:FreeEnumerator adrp x0, .LC30 add x1, x0, :lo12:.LC30 adrp x0, .LC31 add x0, x0, :lo12:.LC31 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeSpecifier add x2, x0, :lo12:FreeSpecifier adrp x0, .LC32 add x1, x0, :lo12:.LC32 adrp x0, .LC33 add x0, x0, :lo12:.LC33 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeSpecifierContents add x2, x0, :lo12:FreeSpecifierContents adrp x0, .LC34 add x1, x0, :lo12:.LC34 adrp x0, .LC35 add x0, x0, :lo12:.LC35 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeIdentifier add x2, x0, :lo12:FreeIdentifier adrp x0, .LC36 add x1, x0, :lo12:.LC36 adrp x0, .LC37 add x0, x0, :lo12:.LC37 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeTypeName add x2, x0, :lo12:FreeTypeName adrp x0, .LC38 add x1, x0, :lo12:.LC38 adrp x0, .LC39 add x0, x0, :lo12:.LC39 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeExpContents add x2, x0, :lo12:FreeExpContents adrp x0, .LC40 add x1, x0, :lo12:.LC40 adrp x0, .LC41 add x0, x0, :lo12:.LC41 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeExpression add x2, x0, :lo12:FreeExpression adrp x0, .LC42 add x1, x0, :lo12:.LC42 adrp x0, .LC43 add x0, x0, :lo12:.LC43 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreePointer add x2, x0, :lo12:FreePointer adrp x0, .LC44 add x1, x0, :lo12:.LC44 adrp x0, .LC45 add x0, x0, :lo12:.LC45 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeAttrib add x2, x0, :lo12:FreeAttrib adrp x0, .LC46 add x1, x0, :lo12:.LC46 adrp x0, .LC47 add x0, x0, :lo12:.LC47 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeAttribute add x2, x0, :lo12:FreeAttribute adrp x0, .LC48 add x1, x0, :lo12:.LC48 adrp x0, .LC49 add x0, x0, :lo12:.LC49 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeExtDecl add x2, x0, :lo12:FreeExtDecl adrp x0, .LC50 add x1, x0, :lo12:.LC50 adrp x0, .LC51 add x0, x0, :lo12:.LC51 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeDeclarator add x2, x0, :lo12:FreeDeclarator adrp x0, .LC52 add x1, x0, :lo12:.LC52 adrp x0, .LC53 add x0, x0, :lo12:.LC53 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreePropertyWatch add x2, x0, :lo12:FreePropertyWatch adrp x0, .LC54 add x1, x0, :lo12:.LC54 adrp x0, .LC55 add x0, x0, :lo12:.LC55 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeAsmField add x2, x0, :lo12:FreeAsmField adrp x0, .LC56 add x1, x0, :lo12:.LC56 adrp x0, .LC57 add x0, x0, :lo12:.LC57 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeStatement add x2, x0, :lo12:FreeStatement adrp x0, .LC58 add x1, x0, :lo12:.LC58 adrp x0, .LC59 add x0, x0, :lo12:.LC59 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeInitializer add x2, x0, :lo12:FreeInitializer adrp x0, .LC60 add x1, x0, :lo12:.LC60 adrp x0, .LC61 add x0, x0, :lo12:.LC61 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeInitDeclarator add x2, x0, :lo12:FreeInitDeclarator adrp x0, .LC62 add x1, x0, :lo12:.LC62 adrp x0, .LC63 add x0, x0, :lo12:.LC63 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeDeclaration add x2, x0, :lo12:FreeDeclaration adrp x0, .LC64 add x1, x0, :lo12:.LC64 adrp x0, .LC65 add x0, x0, :lo12:.LC65 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeFunction add x2, x0, :lo12:FreeFunction adrp x0, .LC66 add x1, x0, :lo12:.LC66 adrp x0, .LC67 add x0, x0, :lo12:.LC67 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeMemberInit add x2, x0, :lo12:FreeMemberInit adrp x0, .LC68 add x1, x0, :lo12:.LC68 adrp x0, .LC69 add x0, x0, :lo12:.LC69 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeMembersInit add x2, x0, :lo12:FreeMembersInit adrp x0, .LC70 add x1, x0, :lo12:.LC70 adrp x0, .LC71 add x0, x0, :lo12:.LC71 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeInstance add x2, x0, :lo12:FreeInstance adrp x0, .LC72 add x1, x0, :lo12:.LC72 adrp x0, .LC73 add x0, x0, :lo12:.LC73 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeClassFunction add x2, x0, :lo12:FreeClassFunction adrp x0, .LC74 add x1, x0, :lo12:.LC74 adrp x0, .LC75 add x0, x0, :lo12:.LC75 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeProperty add x2, x0, :lo12:FreeProperty adrp x0, .LC76 add x1, x0, :lo12:.LC76 adrp x0, .LC77 add x0, x0, :lo12:.LC77 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeClassDef add x2, x0, :lo12:FreeClassDef adrp x0, .LC78 add x1, x0, :lo12:.LC78 adrp x0, .LC79 add x0, x0, :lo12:.LC79 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeClass add x2, x0, :lo12:FreeClass adrp x0, .LC80 add x1, x0, :lo12:.LC80 adrp x0, .LC81 add x0, x0, :lo12:.LC81 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeDBIndexItem add x2, x0, :lo12:FreeDBIndexItem adrp x0, .LC82 add x1, x0, :lo12:.LC82 adrp x0, .LC83 add x0, x0, :lo12:.LC83 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeDBTableEntry add x2, x0, :lo12:FreeDBTableEntry adrp x0, .LC84 add x1, x0, :lo12:.LC84 adrp x0, .LC85 add x0, x0, :lo12:.LC85 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeDBTable add x2, x0, :lo12:FreeDBTable adrp x0, .LC86 add x1, x0, :lo12:.LC86 adrp x0, .LC87 add x0, x0, :lo12:.LC87 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeExternal add x2, x0, :lo12:FreeExternal adrp x0, .LC88 add x1, x0, :lo12:.LC88 adrp x0, .LC89 add x0, x0, :lo12:.LC89 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeASTTree add x2, x0, :lo12:FreeASTTree adrp x0, .LC90 add x1, x0, :lo12:.LC90 adrp x0, .LC91 add x0, x0, :lo12:.LC91 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 2 ldr x3, [sp, 24] adrp x0, FreeModuleData add x2, x0, :lo12:FreeModuleData adrp x0, .LC92 add x1, x0, :lo12:.LC92 adrp x0, .LC93 add x0, x0, :lo12:.LC93 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction mov w4, 1 ldr x3, [sp, 24] adrp x0, FreeTypeData add x2, x0, :lo12:FreeTypeData adrp x0, .LC94 add x1, x0, :lo12:.LC94 adrp x0, .LC95 add x0, x0, :lo12:.LC95 bl __ecereNameSpace__ecere__com__eSystem_RegisterFunction nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE58: .size __ecereRegisterModule_freeAst, .-__ecereRegisterModule_freeAst ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "\n\t\t>>> Durchlauf %d <<<\n" .align 3 .LC1: .string "\t\t>>> Beenden mit E <<<" .align 3 .LC2: .string "\t\t>>> Ihre Wahl: <<<\n\t\t" .align 3 .LC3: .string ">>> " .align 3 .LC4: .string "\t\t>>> Sie haben das Programm mit E nach %d Durchlaeufen beendet! <<<\n" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp adrp x0, :got:stdout ldr x0, [x0, #:got_lo12:stdout] ldr x0, [x0] mov x1, 0 bl setbuf str wzr, [sp, 28] b .L2 .L3: ldr w0, [sp, 28] add w0, w0, 1 str w0, [sp, 28] ldr w1, [sp, 28] adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl printf bl getchar str w0, [sp, 24] adrp x0, :got:stdin ldr x0, [x0, #:got_lo12:stdin] ldr x0, [x0] bl fflush .L2: ldr w0, [sp, 24] cmp w0, 69 bne .L3 ldr w1, [sp, 28] adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl printf mov w0, 0 ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global mem .bss .align 3 .type mem, %object .size mem, 8080 mem: .zero 8080 .text .align 2 .global cmp .type cmp, %function cmp: .LFB6: .cfi_startproc sub sp, sp, #32 .cfi_def_cfa_offset 32 str x0, [sp, 8] str x1, [sp] ldr x0, [sp, 8] str x0, [sp, 16] ldr x0, [sp] str x0, [sp, 24] ldr x0, [sp, 16] ldr w1, [x0, 4] ldr x0, [sp, 24] ldr w0, [x0, 4] cmp w1, w0 beq .L2 ldr x0, [sp, 16] ldr w1, [x0, 4] ldr x0, [sp, 24] ldr w0, [x0, 4] cmp w1, w0 ble .L3 mov w0, -1 b .L5 .L3: mov w0, 1 b .L5 .L2: ldr x0, [sp, 16] ldr w1, [x0] ldr x0, [sp, 24] ldr w0, [x0] cmp w1, w0 ble .L6 mov w0, 1 b .L5 .L6: mov w0, -1 .L5: add sp, sp, 32 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size cmp, .-cmp .section .rodata .align 3 .LC0: .string "%d%d" .align 3 .LC1: .string "%d\n" .text .align 2 .global main .type main, %function main: .LFB7: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 40] mov x1, 0 b .L9 .L16: str wzr, [sp, 32] b .L10 .L11: ldrsw x0, [sp, 32] lsl x1, x0, 3 adrp x0, mem add x0, x0, :lo12:mem add x3, x1, x0 ldrsw x0, [sp, 32] lsl x1, x0, 3 adrp x0, mem add x0, x0, :lo12:mem add x0, x1, x0 add x0, x0, 4 mov x2, x0 mov x1, x3 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl __isoc99_scanf ldr w0, [sp, 32] add w0, w0, 1 str w0, [sp, 32] .L10: ldr w0, [sp, 28] ldr w1, [sp, 32] cmp w1, w0 blt .L11 ldr w0, [sp, 28] sxtw x1, w0 adrp x0, cmp add x3, x0, :lo12:cmp mov x2, 8 adrp x0, mem add x0, x0, :lo12:mem bl qsort ldr w1, [sp, 24] ldr w0, [sp, 28] cmp w1, w0 ble .L12 ldr w0, [sp, 28] str w0, [sp, 36] b .L13 .L12: ldr w0, [sp, 24] str w0, [sp, 36] .L13: str wzr, [sp, 32] b .L14 .L15: adrp x0, mem add x1, x0, :lo12:mem ldrsw x0, [sp, 32] lsl x0, x0, 3 add x0, x1, x0 ldr w0, [x0] mov w1, w0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl printf ldr w0, [sp, 32] add w0, w0, 1 str w0, [sp, 32] .L14: ldr w1, [sp, 32] ldr w0, [sp, 36] cmp w1, w0 blt .L15 .L9: add x1, sp, 24 add x0, sp, 28 mov x2, x1 mov x1, x0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl __isoc99_scanf cmn w0, #1 bne .L16 mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 40] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L18 bl __stack_chk_fail .L18: mov w0, w1 ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .local allocbuf .comm allocbuf,10000,8 .section .data.rel.local,"aw" .align 3 .type allocp, %object .size allocp, 8 allocp: .xword allocbuf .text .align 2 .global alloc .type alloc, %function alloc: .LFB0: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str w0, [sp, 12] adrp x0, allocbuf+10000 add x1, x0, :lo12:allocbuf+10000 adrp x0, allocp add x0, x0, :lo12:allocp ldr x0, [x0] sub x1, x1, x0 ldrsw x0, [sp, 12] cmp x1, x0 blt .L2 adrp x0, allocp add x0, x0, :lo12:allocp ldr x1, [x0] ldrsw x0, [sp, 12] add x1, x1, x0 adrp x0, allocp add x0, x0, :lo12:allocp str x1, [x0] adrp x0, allocp add x0, x0, :lo12:allocp ldr x1, [x0] ldrsw x0, [sp, 12] neg x0, x0 add x0, x1, x0 b .L3 .L2: mov x0, 0 .L3: add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size alloc, .-alloc .align 2 .global afree .type afree, %function afree: .LFB1: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str x0, [sp, 8] ldr x1, [sp, 8] adrp x0, allocbuf add x0, x0, :lo12:allocbuf cmp x1, x0 bcc .L7 adrp x0, allocbuf+10000 add x0, x0, :lo12:allocbuf+10000 ldr x1, [sp, 8] cmp x1, x0 bcs .L7 adrp x0, allocp add x0, x0, :lo12:allocp ldr x1, [sp, 8] str x1, [x0] nop .L7: nop add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size afree, .-afree ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "unix_test_socket" .section .data.rel.local,"aw" .align 3 .type filename, %object .size filename, 8 filename: .xword .LC0 .section .rodata .align 2 .type sendbytes, %object .size sendbytes, 4 sendbytes: .word 100 .align 3 .LC1: .string "%s <protocol>\n" .align 3 .LC2: .string "stream" .align 3 .LC3: .string "socket" .align 3 .LC4: .string "fcntl: " .align 3 .LC5: .string "poll: " .align 3 .LC6: .string "poll: no events are ready" .align 3 .LC7: .string "poll: connection closed" .align 3 .LC8: .string "connect" .align 3 .LC9: .string "%d" .align 3 .LC10: .string " %d" .align 3 .LC11: .string " %d\n" .text .align 2 .global main .type main, %function main: .LFB6: .cfi_startproc stp x29, x30, [sp, -208]! .cfi_def_cfa_offset 208 .cfi_offset 29, -208 .cfi_offset 30, -200 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 200] mov x1, 0 mov w0, 16 str w0, [sp, 32] str wzr, [sp, 52] mov w0, 4 str w0, [sp, 40] ldr w0, [sp, 28] cmp w0, 1 bgt .L2 ldr x0, [sp, 16] ldr x0, [x0] mov x1, x0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl printf mov w0, -1 b .L14 .L2: ldr x0, [sp, 16] add x0, x0, 8 ldr x2, [x0] adrp x0, .LC2 add x1, x0, :lo12:.LC2 mov x0, x2 bl strcmp cmp w0, 0 bne .L4 mov w0, 1 str w0, [sp, 48] b .L5 .L4: mov w0, 2 str w0, [sp, 48] .L5: mov w2, 0 ldr w1, [sp, 48] mov w0, 1 bl socket str w0, [sp, 56] ldr w0, [sp, 56] cmp w0, 0 bge .L6 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl perror mov w0, -1 b .L14 .L6: mov w2, 2048 mov w1, 4 ldr w0, [sp, 56] bl fcntl str w0, [sp, 60] ldr w0, [sp, 60] cmp w0, 0 beq .L7 adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl perror mov w0, -1 b .L14 .L7: add x0, sp, 88 movi v0.4s, 0 stp q0, q0, [x0] stp q0, q0, [x0, 32] stp q0, q0, [x0, 64] str q0, [x0, 94] mov w0, 1 strh w0, [sp, 88] ldr w0, [sp, 52] cmp w0, 0 beq .L8 strb wzr, [sp, 90] add x0, sp, 88 add x0, x0, 2 add x0, x0, 1 adrp x1, filename add x1, x1, :lo12:filename ldr x1, [x1] bl strcpy add x0, sp, 88 add x0, x0, 2 add x0, x0, 1 bl strlen add w0, w0, 3 str w0, [sp, 44] b .L9 .L8: adrp x0, filename add x0, x0, :lo12:filename ldr x1, [x0] add x0, sp, 88 add x0, x0, 2 bl strcpy add x0, sp, 88 add x0, x0, 2 bl strlen add w0, w0, 3 str w0, [sp, 44] .L9: ldr w1, [sp, 44] add x0, sp, 88 mov w2, w1 mov x1, x0 ldr w0, [sp, 56] bl connect str w0, [sp, 60] ldr w0, [sp, 60] cmp w0, 0 bge .L10 bl __errno_location ldr w0, [x0] cmp w0, 115 bne .L11 ldr w0, [sp, 56] str w0, [sp, 64] mov w0, 5 strh w0, [sp, 68] add x0, sp, 64 mov w2, 1000 mov x1, 1 bl poll str w0, [sp, 60] ldr w0, [sp, 60] cmp w0, 0 bge .L12 adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl perror mov w0, -1 b .L14 .L12: ldr w0, [sp, 60] cmp w0, 0 bne .L13 adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl puts mov w0, -1 b .L14 .L13: ldr w0, [sp, 60] cmp w0, 1 bne .L10 ldrsh w0, [sp, 70] and w0, w0, 65535 and w0, w0, 16 cmp w0, 0 beq .L10 adrp x0, .LC7 add x0, x0, :lo12:.LC7 bl puts mov w0, -1 b .L14 .L11: adrp x0, .LC8 add x0, x0, :lo12:.LC8 bl perror ldr w0, [sp, 56] bl close mov w0, -1 b .L14 .L10: add x1, sp, 32 add x0, sp, 72 mov x2, x1 mov x1, x0 ldr w0, [sp, 56] bl getsockname str w0, [sp, 60] ldr w1, [sp, 60] adrp x0, .LC9 add x0, x0, :lo12:.LC9 bl printf add x1, sp, 32 add x0, sp, 72 mov x2, x1 mov x1, x0 ldr w0, [sp, 56] bl getpeername str w0, [sp, 60] ldr w1, [sp, 60] adrp x0, .LC10 add x0, x0, :lo12:.LC10 bl printf add x1, sp, 40 add x0, sp, 36 mov x4, x1 mov x3, x0 mov w2, 2 mov w1, 1 ldr w0, [sp, 56] bl getsockopt str w0, [sp, 60] ldr w1, [sp, 60] adrp x0, .LC10 add x0, x0, :lo12:.LC10 bl printf add x0, sp, 36 mov w4, 4 mov x3, x0 mov w2, 2 mov w1, 1 ldr w0, [sp, 56] bl setsockopt str w0, [sp, 60] ldr w1, [sp, 60] adrp x0, .LC11 add x0, x0, :lo12:.LC11 bl printf mov w1, 2 ldr w0, [sp, 56] bl shutdown ldr w0, [sp, 56] bl close mov w0, 0 .L14: mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 200] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L15 bl __stack_chk_fail .L15: mov w0, w1 ldp x29, x30, [sp], 208 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .local dstackptr .comm dstackptr,8,8 .local dstack .comm dstack,800,8 .section .rodata .align 3 .LC0: .string "Stack is full" .text .align 2 .global dapush .type dapush, %function dapush: .LFB0: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str d0, [sp, 24] adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] cmp x0, 99 bhi .L2 adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] add x2, x0, 1 adrp x1, dstackptr add x1, x1, :lo12:dstackptr str x2, [x1] adrp x1, dstack add x1, x1, :lo12:dstack ldr d0, [sp, 24] str d0, [x1, x0, lsl 3] b .L4 .L2: adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl puts .L4: nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size dapush, .-dapush .section .rodata .align 3 .LC1: .string "Empty stack" .text .align 2 .global dapop .type dapop, %function dapop: .LFB1: .cfi_startproc stp x29, x30, [sp, -16]! .cfi_def_cfa_offset 16 .cfi_offset 29, -16 .cfi_offset 30, -8 mov x29, sp adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] cmp x0, 0 beq .L6 adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] sub x1, x0, #1 adrp x0, dstackptr add x0, x0, :lo12:dstackptr str x1, [x0] adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x1, [x0] adrp x0, dstack add x0, x0, :lo12:dstack ldr d0, [x0, x1, lsl 3] b .L7 .L6: adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts movi d0, #0 .L7: ldp x29, x30, [sp], 16 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size dapop, .-dapop .align 2 .global dapeek .type dapeek, %function dapeek: .LFB2: .cfi_startproc stp x29, x30, [sp, -16]! .cfi_def_cfa_offset 16 .cfi_offset 29, -16 .cfi_offset 30, -8 mov x29, sp adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] cmp x0, 0 beq .L9 adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] sub x1, x0, #1 adrp x0, dstack add x0, x0, :lo12:dstack ldr d0, [x0, x1, lsl 3] b .L10 .L9: adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts movi d0, #0 .L10: ldp x29, x30, [sp], 16 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE2: .size dapeek, .-dapeek .align 2 .global dadup .type dadup, %function dadup: .LFB3: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] cmp x0, 0 bne .L12 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts b .L15 .L12: adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] cmp x0, 100 bne .L14 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl puts b .L15 .L14: adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] sub x1, x0, #1 adrp x0, dstack add x0, x0, :lo12:dstack ldr d0, [x0, x1, lsl 3] str d0, [sp, 24] adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] add x2, x0, 1 adrp x1, dstackptr add x1, x1, :lo12:dstackptr str x2, [x1] adrp x1, dstack add x1, x1, :lo12:dstack ldr d0, [sp, 24] str d0, [x1, x0, lsl 3] .L15: nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE3: .size dadup, .-dadup .section .rodata .align 3 .LC2: .string "Less than two items are on the stack" .text .align 2 .global daswap .type daswap, %function daswap: .LFB4: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] cmp x0, 1 bhi .L17 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl puts b .L19 .L17: adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] sub x1, x0, #1 adrp x0, dstack add x0, x0, :lo12:dstack ldr d0, [x0, x1, lsl 3] str d0, [sp, 24] adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] sub x2, x0, #2 adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] sub x1, x0, #1 adrp x0, dstack add x0, x0, :lo12:dstack ldr d0, [x0, x2, lsl 3] adrp x0, dstack add x0, x0, :lo12:dstack str d0, [x0, x1, lsl 3] adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] sub x1, x0, #2 adrp x0, dstack add x0, x0, :lo12:dstack ldr d0, [sp, 24] str d0, [x0, x1, lsl 3] .L19: nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE4: .size daswap, .-daswap .section .rodata .align 3 .LC3: .string "%.8g\n" .text .align 2 .global dalist .type dalist, %function dalist: .LFB5: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str xzr, [sp, 24] b .L21 .L22: adrp x0, dstack add x0, x0, :lo12:dstack ldr x1, [sp, 24] ldr d0, [x0, x1, lsl 3] adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl printf ldr x0, [sp, 24] add x0, x0, 1 str x0, [sp, 24] .L21: adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] ldr x1, [sp, 24] cmp x1, x0 bcc .L22 nop nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE5: .size dalist, .-dalist .align 2 .global daclear .type daclear, %function daclear: .LFB6: .cfi_startproc adrp x0, dstackptr add x0, x0, :lo12:dstackptr str xzr, [x0] nop ret .cfi_endproc .LFE6: .size daclear, .-daclear .align 2 .global dasize .type dasize, %function dasize: .LFB7: .cfi_startproc adrp x0, dstackptr add x0, x0, :lo12:dstackptr ldr x0, [x0] ret .cfi_endproc .LFE7: .size dasize, .-dasize ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "%i\n" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp mov w0, 1 str w0, [sp, 28] b .L2 .L3: ldr w1, [sp, 28] adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf ldr w0, [sp, 28] add w0, w0, 1 str w0, [sp, 28] .L2: ldr w0, [sp, 28] cmp w0, 10 ble .L3 mov w0, 0 ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .type GetTickCount, %function GetTickCount: .LFB0: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 40] mov x1, 0 add x0, sp, 24 mov x1, 0 bl gettimeofday ldr x1, [sp, 24] mov x0, x1 lsl x0, x0, 5 sub x0, x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 3 mov x2, x0 ldr x0, [sp, 32] mov x1, 63439 movk x1, 0xe353, lsl 16 movk x1, 0x9ba5, lsl 32 movk x1, 0x20c4, lsl 48 smulh x1, x0, x1 asr x1, x1, 7 asr x0, x0, 63 sub x0, x1, x0 add x0, x2, x0 mov x1, x0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 40] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L3 bl __stack_chk_fail .L3: mov x0, x1 ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size GetTickCount, .-GetTickCount ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global arv .type arv, %function arv: .LFB6: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x0, [sp, 40] str w1, [sp, 36] str x2, [sp, 24] mov x0, 24 bl malloc str x0, [sp, 56] ldr x0, [sp, 56] ldr x1, [sp, 40] str x1, [x0] ldr x0, [sp, 56] ldr w1, [sp, 36] str w1, [x0, 8] ldr x0, [sp, 56] ldr x1, [sp, 24] str x1, [x0, 16] ldr x0, [sp, 56] ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size arv, .-arv .align 2 .global ins .type ins, %function ins: .LFB7: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] ldr x0, [sp, 16] ldr x0, [x0] cmp x0, 0 bne .L4 mov x2, 0 ldr w1, [sp, 28] mov x0, 0 bl arv mov x1, x0 ldr x0, [sp, 16] str x1, [x0] b .L7 .L4: ldr x0, [sp, 16] ldr x0, [x0] ldr w0, [x0, 8] ldr w1, [sp, 28] cmp w1, w0 bgt .L6 ldr x0, [sp, 16] ldr x0, [x0] mov x1, x0 ldr w0, [sp, 28] bl ins b .L7 .L6: ldr x0, [sp, 16] ldr x0, [x0] add x0, x0, 16 mov x1, x0 ldr w0, [sp, 28] bl ins .L7: nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size ins, .-ins .section .rodata .align 3 .LC1: .string "%d " .text .align 2 .global emordem .type emordem, %function emordem: .LFB8: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] cmp x0, 0 beq .L11 ldr x0, [sp, 24] ldr x0, [x0] bl emordem ldr x0, [sp, 24] ldr w0, [x0, 8] mov w1, w0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl printf ldr x0, [sp, 24] ldr x0, [x0, 16] bl emordem b .L8 .L11: nop .L8: ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size emordem, .-emordem .align 2 .global busca .type busca, %function busca: .LFB9: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] ldr x0, [sp, 16] cmp x0, 0 bne .L13 mov w0, 0 b .L14 .L13: ldr x0, [sp, 16] ldr w0, [x0, 8] ldr w1, [sp, 28] cmp w1, w0 bne .L15 mov w0, 1 b .L14 .L15: ldr x0, [sp, 16] ldr w0, [x0, 8] ldr w1, [sp, 28] cmp w1, w0 bge .L16 ldr x0, [sp, 16] ldr x0, [x0] mov x1, x0 ldr w0, [sp, 28] bl busca b .L14 .L16: ldr x0, [sp, 16] ldr x0, [x0, 16] mov x1, x0 ldr w0, [sp, 28] bl busca .L14: ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE9: .size busca, .-busca .section .rodata .align 3 .LC2: .string "\nPara sair, digite um inteiro negativo.\n" .align 3 .LC3: .string "Item a ser buscado: " .align 3 .LC4: .string "%d" .align 3 .LC5: .string "Encontrado." .align 3 .LC6: .string "Inexistente" .text .align 2 .global main .type main, %function main: .LFB10: .cfi_startproc stp x29, x30, [sp, -80]! .cfi_def_cfa_offset 80 .cfi_offset 29, -80 .cfi_offset 30, -72 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 72] mov x1, 0 adrp x0, .LC0 add x1, x0, :lo12:.LC0 add x0, sp, 32 ldp q0, q1, [x1] stp q0, q1, [x0] ldr w1, [x1, 32] str w1, [x0, 32] str xzr, [sp, 24] str wzr, [sp, 20] b .L18 .L19: ldrsw x0, [sp, 20] lsl x0, x0, 2 add x1, sp, 32 ldr w0, [x1, x0] add x1, sp, 24 bl ins ldr w0, [sp, 20] add w0, w0, 1 str w0, [sp, 20] .L18: ldr w0, [sp, 20] cmp w0, 9 bgt .L19 ldr x0, [sp, 24] bl emordem adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl puts .L24: adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl printf add x0, sp, 16 mov x1, x0 adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl __isoc99_scanf ldr w0, [sp, 16] cmp w0, 0 bge .L20 mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 72] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L25 b .L26 .L20: ldr w0, [sp, 16] ldr x1, [sp, 24] bl busca cmp w0, 0 beq .L22 adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl puts b .L24 .L22: adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl puts b .L24 .L26: bl __stack_chk_fail .L25: mov w0, w1 ldp x29, x30, [sp], 80 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE10: .size main, .-main .section .rodata .align 3 .LC0: .word 71 .word 43 .word 64 .word 92 .word 80 .word 27 .word 58 .word 3 .word 16 .text ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global isatty .type isatty, %function isatty: .LFB0: .cfi_startproc stp x29, x30, [sp, -176]! .cfi_def_cfa_offset 176 .cfi_offset 29, -176 .cfi_offset 30, -168 mov x29, sp str w0, [sp, 28] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 168] mov x1, 0 add x0, sp, 40 mov x1, x0 ldr w0, [sp, 28] bl fstat cmp w0, 0 bge .L2 mov w0, 0 b .L5 .L2: ldr w0, [sp, 56] and w0, w0, 61440 cmp w0, 8192 bne .L4 mov w0, 1 b .L5 .L4: mov w0, 0 .L5: mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 168] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L6 bl __stack_chk_fail .L6: mov w0, w1 ldp x29, x30, [sp], 176 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size isatty, .-isatty ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global assert .type assert, %function assert: .LFB0: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str w0, [sp, 12] ldr w0, [sp, 12] cmp w0, 0 bne .L1 nop .L3: nop .L1: add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size assert, .-assert .align 2 .global main .type main, %function main: .LFB1: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp b .L5 .L10: str wzr, [sp, 20] str wzr, [sp, 24] b .L6 .L7: ldr w0, [sp, 24] add w0, w0, 1 str w0, [sp, 24] .L6: ldr w0, [sp, 24] cmp w0, 9 ble .L7 str wzr, [sp, 28] b .L8 .L9: ldr w0, [sp, 20] add w0, w0, 1 str w0, [sp, 20] ldr w0, [sp, 28] add w0, w0, 1 str w0, [sp, 28] .L8: ldr w0, [sp, 28] cmp w0, 9 ble .L9 ldr w0, [sp, 20] cmp w0, 0 cset w0, eq and w0, w0, 255 bl assert .L5: bl __VERIFIER_nondet_int cmp w0, 0 bne .L10 mov w0, 0 ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "plz enter number :" .align 3 .LC1: .string "%d" .align 3 .LC2: .string "total : %d" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 40] mov x1, 0 str wzr, [sp, 36] str wzr, [sp, 32] adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf add x0, sp, 28 mov x1, x0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl __isoc99_scanf b .L2 .L3: ldr w1, [sp, 36] ldr w0, [sp, 32] add w0, w1, w0 str w0, [sp, 36] ldr w0, [sp, 32] add w0, w0, 1 str w0, [sp, 32] .L2: ldr w0, [sp, 28] ldr w1, [sp, 32] cmp w1, w0 ble .L3 ldr w1, [sp, 36] adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 40] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L5 bl __stack_chk_fail .L5: mov w0, w1 ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global vars .bss .align 3 .type vars, %object .size vars, 16 vars: .zero 16 .global atom_0_r1_1 .align 2 .type atom_0_r1_1, %object .size atom_0_r1_1, 4 atom_0_r1_1: .zero 4 .global atom_1_r1_1 .align 2 .type atom_1_r1_1, %object .size atom_1_r1_1, 4 atom_1_r1_1: .zero 4 .text .align 2 .global t0 .type t0, %function t0: .LFB0: .cfi_startproc stp x29, x30, [sp, -96]! .cfi_def_cfa_offset 96 .cfi_offset 29, -96 .cfi_offset 30, -88 mov x29, sp str x0, [sp, 24] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 88] mov x1, 0 .L2: adrp x0, vars add x0, x0, :lo12:vars str x0, [sp, 64] ldr x0, [sp, 64] ldar w0, [x0] str w0, [sp, 44] ldr w0, [sp, 44] str w0, [sp, 48] str wzr, [sp, 52] ldr w0, [sp, 52] add w0, w0, 1 str w0, [sp, 56] adrp x0, vars+4 add x0, x0, :lo12:vars+4 str x0, [sp, 72] ldr w0, [sp, 56] str w0, [sp, 44] ldr w0, [sp, 44] mov w1, w0 ldr x0, [sp, 72] stlr w1, [x0] ldr w0, [sp, 48] cmp w0, 1 cset w0, eq and w0, w0, 255 str w0, [sp, 60] adrp x0, atom_0_r1_1 add x0, x0, :lo12:atom_0_r1_1 str x0, [sp, 80] ldr w0, [sp, 60] str w0, [sp, 44] ldr w0, [sp, 44] mov w1, w0 ldr x0, [sp, 80] stlr w1, [x0] mov x0, 0 mov x1, x0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 88] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L4 bl __stack_chk_fail .L4: mov x0, x1 ldp x29, x30, [sp], 96 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size t0, .-t0 .align 2 .global t1 .type t1, %function t1: .LFB1: .cfi_startproc stp x29, x30, [sp, -144]! .cfi_def_cfa_offset 144 .cfi_offset 29, -144 .cfi_offset 30, -136 mov x29, sp str x0, [sp, 24] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 136] mov x1, 0 .L6: adrp x0, vars+4 add x0, x0, :lo12:vars+4 str x0, [sp, 72] ldr x0, [sp, 72] ldar w0, [x0] str w0, [sp, 44] ldr w0, [sp, 44] str w0, [sp, 48] str wzr, [sp, 52] ldr w0, [sp, 52] add w0, w0, 2 sxtw x0, w0 lsl x1, x0, 2 adrp x0, vars add x0, x0, :lo12:vars add x0, x1, x0 str x0, [sp, 80] ldr x0, [sp, 80] ldar w0, [x0] str w0, [sp, 44] ldr w0, [sp, 44] str w0, [sp, 56] adrp x0, vars+8 add x0, x0, :lo12:vars+8 str x0, [sp, 88] mov w0, 1 str w0, [sp, 44] ldr w0, [sp, 44] mov w1, w0 ldr x0, [sp, 88] stlr w1, [x0] adrp x0, vars+8 add x0, x0, :lo12:vars+8 str x0, [sp, 96] ldr x0, [sp, 96] ldar w0, [x0] str w0, [sp, 44] ldr w0, [sp, 44] str w0, [sp, 60] mov w0, 1 str w0, [sp, 64] ldr w0, [sp, 64] cmp w0, 0 nop .L8: adrp x0, vars+12 add x0, x0, :lo12:vars+12 str x0, [sp, 104] mov w0, 1 str w0, [sp, 44] ldr w0, [sp, 44] mov w1, w0 ldr x0, [sp, 104] stlr w1, [x0] adrp x0, vars+12 add x0, x0, :lo12:vars+12 str x0, [sp, 112] mov w0, 2 str w0, [sp, 44] ldr w0, [sp, 44] mov w1, w0 ldr x0, [sp, 112] stlr w1, [x0] adrp x0, vars add x0, x0, :lo12:vars str x0, [sp, 120] mov w0, 1 str w0, [sp, 44] ldr w0, [sp, 44] mov w1, w0 ldr x0, [sp, 120] stlr w1, [x0] ldr w0, [sp, 48] cmp w0, 1 cset w0, eq and w0, w0, 255 str w0, [sp, 68] adrp x0, atom_1_r1_1 add x0, x0, :lo12:atom_1_r1_1 str x0, [sp, 128] ldr w0, [sp, 68] str w0, [sp, 44] ldr w0, [sp, 44] mov w1, w0 ldr x0, [sp, 128] stlr w1, [x0] mov x0, 0 mov x1, x0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 136] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L10 bl __stack_chk_fail .L10: mov x0, x1 ldp x29, x30, [sp], 144 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size t1, .-t1 .section .rodata .align 3 .LC0: .string "program.c" .align 3 .LC1: .string "0" .text .align 2 .global main .type main, %function main: .LFB2: .cfi_startproc stp x29, x30, [sp, -160]! .cfi_def_cfa_offset 160 .cfi_offset 29, -160 .cfi_offset 30, -152 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 152] mov x1, 0 adrp x0, vars+12 add x0, x0, :lo12:vars+12 str x0, [sp, 80] str wzr, [sp, 72] ldr w0, [sp, 72] mov w1, w0 ldr x0, [sp, 80] str w1, [x0] adrp x0, vars+4 add x0, x0, :lo12:vars+4 str x0, [sp, 88] str wzr, [sp, 72] ldr w0, [sp, 72] mov w1, w0 ldr x0, [sp, 88] str w1, [x0] adrp x0, vars+8 add x0, x0, :lo12:vars+8 str x0, [sp, 96] str wzr, [sp, 72] ldr w0, [sp, 72] mov w1, w0 ldr x0, [sp, 96] str w1, [x0] adrp x0, vars add x0, x0, :lo12:vars str x0, [sp, 104] str wzr, [sp, 72] ldr w0, [sp, 72] mov w1, w0 ldr x0, [sp, 104] str w1, [x0] adrp x0, atom_0_r1_1 add x0, x0, :lo12:atom_0_r1_1 str x0, [sp, 112] str wzr, [sp, 72] ldr w0, [sp, 72] mov w1, w0 ldr x0, [sp, 112] str w1, [x0] adrp x0, atom_1_r1_1 add x0, x0, :lo12:atom_1_r1_1 str x0, [sp, 120] str wzr, [sp, 72] ldr w0, [sp, 72] mov w1, w0 ldr x0, [sp, 120] str w1, [x0] add x4, sp, 64 mov x3, 0 adrp x0, t0 add x2, x0, :lo12:t0 mov x1, 0 mov x0, x4 bl pthread_create add x4, sp, 72 mov x3, 0 adrp x0, t1 add x2, x0, :lo12:t1 mov x1, 0 mov x0, x4 bl pthread_create ldr x0, [sp, 64] mov x1, 0 bl pthread_join ldr x0, [sp, 72] mov x1, 0 bl pthread_join adrp x0, vars+12 add x0, x0, :lo12:vars+12 str x0, [sp, 128] ldr x0, [sp, 128] ldar w0, [x0] str w0, [sp, 36] ldr w0, [sp, 36] str w0, [sp, 40] ldr w0, [sp, 40] cmp w0, 2 cset w0, eq and w0, w0, 255 str w0, [sp, 44] adrp x0, atom_0_r1_1 add x0, x0, :lo12:atom_0_r1_1 str x0, [sp, 136] ldr x0, [sp, 136] ldar w0, [x0] str w0, [sp, 36] ldr w0, [sp, 36] str w0, [sp, 48] adrp x0, atom_1_r1_1 add x0, x0, :lo12:atom_1_r1_1 str x0, [sp, 144] ldr x0, [sp, 144] ldar w0, [x0] str w0, [sp, 36] ldr w0, [sp, 36] str w0, [sp, 52] ldr w1, [sp, 48] ldr w0, [sp, 52] and w0, w1, w0 str w0, [sp, 56] ldr w1, [sp, 44] ldr w0, [sp, 56] and w0, w1, w0 str w0, [sp, 60] ldr w0, [sp, 60] cmp w0, 1 bne .L12 adrp x0, __PRETTY_FUNCTION__.0 add x3, x0, :lo12:__PRETTY_FUNCTION__.0 mov w2, 65 adrp x0, .LC0 add x1, x0, :lo12:.LC0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl __assert_fail .L12: mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 152] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L14 bl __stack_chk_fail .L14: mov w0, w1 ldp x29, x30, [sp], 160 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE2: .size main, .-main .section .rodata .align 3 .type __PRETTY_FUNCTION__.0, %object .size __PRETTY_FUNCTION__.0, 5 __PRETTY_FUNCTION__.0: .string "main" ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global foo .type foo, %function foo: .LFB0: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str w0, [sp, 28] str w1, [sp, 24] ldr w1, [sp, 24] ldr w0, [sp, 28] bl bar nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size foo, .-foo .align 2 .global main .type main, %function main: .LFB1: .cfi_startproc stp x29, x30, [sp, -16]! .cfi_def_cfa_offset 16 .cfi_offset 29, -16 .cfi_offset 30, -8 mov x29, sp mov w1, 2 mov w0, 1 bl foo mov w1, 3 mov w0, 2 bl foo mov w0, 0 ldp x29, x30, [sp], 16 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global g_extInterfaceName .bss .align 3 .type g_extInterfaceName, %object .size g_extInterfaceName, 10 g_extInterfaceName: .zero 10 .global g_intInterfaceName .align 3 .type g_intInterfaceName, %object .size g_intInterfaceName, 10 g_intInterfaceName: .zero 10 .global g_debug .align 2 .type g_debug, %object .size g_debug, 4 g_debug: .zero 4 .global g_iptables .align 3 .type g_iptables, %object .size g_iptables, 50 g_iptables: .zero 50 .global g_upstreamBitrate .align 3 .type g_upstreamBitrate, %object .size g_upstreamBitrate, 10 g_upstreamBitrate: .zero 10 .global g_downstreamBitrate .align 3 .type g_downstreamBitrate, %object .size g_downstreamBitrate, 10 g_downstreamBitrate: .zero 10 .global g_forwardChainName .align 3 .type g_forwardChainName, %object .size g_forwardChainName, 20 g_forwardChainName: .zero 20 .global g_preroutingChainName .align 3 .type g_preroutingChainName, %object .size g_preroutingChainName, 20 g_preroutingChainName: .zero 20 .global g_forwardRules .align 2 .type g_forwardRules, %object .size g_forwardRules, 4 g_forwardRules: .zero 4 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "%d" .align 3 .LC1: .string "1" .align 3 .LC2: .string "%d\n" .align 3 .LC3: .string "%d " .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -256]! .cfi_def_cfa_offset 256 .cfi_offset 29, -256 .cfi_offset 30, -248 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 248] mov x1, 0 add x0, sp, 24 mov x1, x0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl __isoc99_scanf .L13: add x0, sp, 28 mov x1, x0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl __isoc99_scanf str wzr, [sp, 36] mov w0, 2 str w0, [sp, 32] ldr w0, [sp, 28] str w0, [sp, 44] b .L2 .L4: ldr w0, [sp, 28] ldr w1, [sp, 32] sdiv w2, w0, w1 ldr w1, [sp, 32] mul w1, w2, w1 sub w0, w0, w1 cmp w0, 0 bne .L3 ldrsw x0, [sp, 36] lsl x0, x0, 2 add x1, sp, 48 ldr w2, [sp, 32] str w2, [x1, x0] ldr w1, [sp, 28] ldr w0, [sp, 32] sdiv w0, w1, w0 str w0, [sp, 28] ldr w0, [sp, 36] add w0, w0, 1 str w0, [sp, 36] b .L2 .L3: ldr w0, [sp, 32] add w0, w0, 1 str w0, [sp, 32] nop .L2: ldr w0, [sp, 28] ldr w1, [sp, 32] cmp w1, w0 ble .L4 ldr w0, [sp, 36] cmp w0, 1 bne .L5 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts ldr w1, [sp, 44] adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf b .L6 .L5: str wzr, [sp, 32] mov w0, 1 str w0, [sp, 40] b .L7 .L9: ldrsw x0, [sp, 32] lsl x0, x0, 2 add x1, sp, 48 ldr w1, [x1, x0] ldr w0, [sp, 32] add w0, w0, 1 sxtw x0, w0 lsl x0, x0, 2 add x2, sp, 48 ldr w0, [x2, x0] cmp w1, w0 beq .L8 ldr w0, [sp, 40] add w0, w0, 1 str w0, [sp, 40] .L8: ldr w0, [sp, 32] add w0, w0, 1 str w0, [sp, 32] .L7: ldr w0, [sp, 36] sub w0, w0, #1 ldr w1, [sp, 32] cmp w1, w0 blt .L9 ldr w1, [sp, 40] adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf str wzr, [sp, 32] b .L10 .L12: ldrsw x0, [sp, 32] lsl x0, x0, 2 add x1, sp, 48 ldr w1, [x1, x0] ldr w0, [sp, 32] add w0, w0, 1 sxtw x0, w0 lsl x0, x0, 2 add x2, sp, 48 ldr w0, [x2, x0] cmp w1, w0 beq .L11 ldrsw x0, [sp, 32] lsl x0, x0, 2 add x1, sp, 48 ldr w0, [x1, x0] mov w1, w0 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl printf .L11: ldr w0, [sp, 32] add w0, w0, 1 str w0, [sp, 32] .L10: ldr w0, [sp, 36] sub w0, w0, #1 ldr w1, [sp, 32] cmp w1, w0 blt .L12 ldr w0, [sp, 36] sub w0, w0, #1 sxtw x0, w0 lsl x0, x0, 2 add x1, sp, 48 ldr w0, [x1, x0] mov w1, w0 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf .L6: ldr w0, [sp, 24] sub w0, w0, #1 str w0, [sp, 24] ldr w0, [sp, 24] cmp w0, 0 bgt .L13 mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 248] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L15 bl __stack_chk_fail .L15: mov w0, w1 ldp x29, x30, [sp], 256 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global hello .section .rodata .align 3 .type hello, %object .size hello, 14 hello: .string "hello, hello!" .global dictionary .align 3 .type dictionary, %object .size dictionary, 6 dictionary: .string "hello" .global dictId .bss .align 3 .type dictId, %object .size dictId, 8 dictId: .zero 8 .section .rodata .align 3 .LC0: .string "compress" .align 3 .LC1: .string "%s error: %d\n" .align 3 .LC2: .string "uncompress" .align 3 .LC3: .string "bad uncompress\n" .align 3 .LC4: .string "uncompress(): %s\n" .text .align 2 .global test_compress .type test_compress, %function test_compress: .LFB6: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x0, [sp, 40] str x1, [sp, 32] str x2, [sp, 24] str x3, [sp, 16] mov x0, 14 str x0, [sp, 56] add x1, sp, 32 ldr x3, [sp, 56] adrp x0, hello add x2, x0, :lo12:hello ldr x0, [sp, 40] bl compress str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L2 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC0 add x2, x0, :lo12:.LC0 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L2: ldr x0, [sp, 24] mov x1, 24935 movk x1, 0x6272, lsl 16 movk x1, 0x6761, lsl 32 movk x1, 0x65, lsl 48 str x1, [x0] ldr x1, [sp, 32] add x0, sp, 16 mov x3, x1 ldr x2, [sp, 40] mov x1, x0 ldr x0, [sp, 24] bl uncompress str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L3 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC2 add x2, x0, :lo12:.LC2 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L3: adrp x0, hello add x1, x0, :lo12:hello ldr x0, [sp, 24] bl strcmp cmp w0, 0 beq .L4 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 15 mov x1, 1 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl fwrite mov w0, 1 bl exit .L4: ldr x1, [sp, 24] adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl printf nop ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size test_compress, .-test_compress .section .rodata .align 3 .LC5: .string "wb" .align 3 .LC6: .string "gzopen error\n" .align 3 .LC7: .string "ello" .align 3 .LC8: .string "gzputs err: %s\n" .align 3 .LC9: .string "hello" .align 3 .LC10: .string ", %s!" .align 3 .LC11: .string "gzprintf err: %s\n" .align 3 .LC12: .string "rb" .align 3 .LC13: .string "gzread err: %s\n" .align 3 .LC14: .string "bad gzread: %s\n" .align 3 .LC15: .string "gzread(): %s\n" .align 3 .LC16: .string "gzseek error, pos=%ld, gztell=%ld\n" .align 3 .LC17: .string "gzgetc error\n" .align 3 .LC18: .string "gzgets err after gzseek: %s\n" .align 3 .LC19: .string "bad gzgets after gzseek\n" .align 3 .LC20: .string "gzgets() after gzseek: %s\n" .text .align 2 .global test_gzio .type test_gzio, %function test_gzio: .LFB7: .cfi_startproc stp x29, x30, [sp, -96]! .cfi_def_cfa_offset 96 .cfi_offset 29, -96 .cfi_offset 30, -88 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -80 str x0, [sp, 56] str x1, [sp, 48] str x2, [sp, 40] str w3, [sp, 36] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 88] mov x1, 0 mov w0, 14 str w0, [sp, 68] adrp x0, .LC5 add x1, x0, :lo12:.LC5 ldr x0, [sp, 56] bl gzopen str x0, [sp, 72] ldr x0, [sp, 72] cmp x0, 0 bne .L6 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 13 mov x1, 1 adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl fwrite mov w0, 1 bl exit .L6: mov w1, 104 ldr x0, [sp, 72] bl gzputc adrp x0, .LC7 add x1, x0, :lo12:.LC7 ldr x0, [sp, 72] bl gzputs cmp w0, 4 beq .L7 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x19, [x0] add x0, sp, 64 mov x1, x0 ldr x0, [sp, 72] bl gzerror mov x2, x0 adrp x0, .LC8 add x1, x0, :lo12:.LC8 mov x0, x19 bl fprintf mov w0, 1 bl exit .L7: adrp x0, .LC9 add x2, x0, :lo12:.LC9 adrp x0, .LC10 add x1, x0, :lo12:.LC10 ldr x0, [sp, 72] bl gzprintf cmp w0, 8 beq .L8 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x19, [x0] add x0, sp, 64 mov x1, x0 ldr x0, [sp, 72] bl gzerror mov x2, x0 adrp x0, .LC11 add x1, x0, :lo12:.LC11 mov x0, x19 bl fprintf mov w0, 1 bl exit .L8: mov w2, 1 mov x1, 1 ldr x0, [sp, 72] bl gzseek ldr x0, [sp, 72] bl gzclose adrp x0, .LC12 add x1, x0, :lo12:.LC12 ldr x0, [sp, 48] bl gzopen str x0, [sp, 72] ldr x0, [sp, 72] cmp x0, 0 bne .L9 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 13 mov x1, 1 adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl fwrite .L9: ldr x0, [sp, 40] mov x1, 24935 movk x1, 0x6272, lsl 16 movk x1, 0x6761, lsl 32 movk x1, 0x65, lsl 48 str x1, [x0] ldr w0, [sp, 36] mov w2, w0 ldr x1, [sp, 40] ldr x0, [sp, 72] bl gzread str w0, [sp, 36] ldr w1, [sp, 36] ldr w0, [sp, 68] cmp w1, w0 beq .L10 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x19, [x0] add x0, sp, 64 mov x1, x0 ldr x0, [sp, 72] bl gzerror mov x2, x0 adrp x0, .LC13 add x1, x0, :lo12:.LC13 mov x0, x19 bl fprintf mov w0, 1 bl exit .L10: adrp x0, hello add x1, x0, :lo12:hello ldr x0, [sp, 40] bl strcmp cmp w0, 0 beq .L11 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x3, [x0] ldr x2, [sp, 40] adrp x0, .LC14 add x1, x0, :lo12:.LC14 mov x0, x3 bl fprintf mov w0, 1 bl exit .L11: ldr x1, [sp, 40] adrp x0, .LC15 add x0, x0, :lo12:.LC15 bl printf mov w2, 1 mov x1, -8 ldr x0, [sp, 72] bl gzseek str x0, [sp, 80] ldr x0, [sp, 80] cmp x0, 6 bne .L12 ldr x0, [sp, 72] bl gztell mov x1, x0 ldr x0, [sp, 80] cmp x0, x1 beq .L13 .L12: adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x19, [x0] ldr x0, [sp, 72] bl gztell mov x3, x0 ldr x2, [sp, 80] adrp x0, .LC16 add x1, x0, :lo12:.LC16 mov x0, x19 bl fprintf mov w0, 1 bl exit .L13: ldr x0, [sp, 72] ldr w0, [x0] cmp w0, 0 beq .L14 ldr x0, [sp, 72] ldr w0, [x0] sub w1, w0, #1 ldr x0, [sp, 72] str w1, [x0] ldr x0, [sp, 72] ldr x0, [x0, 16] add x1, x0, 1 ldr x0, [sp, 72] str x1, [x0, 16] ldr x0, [sp, 72] ldr x0, [x0, 8] add x2, x0, 1 ldr x1, [sp, 72] str x2, [x1, 8] ldrb w0, [x0] cmp w0, 32 cset w0, ne and w0, w0, 255 b .L15 .L14: ldr x0, [sp, 72] bl gzgetc cmp w0, 32 cset w0, ne and w0, w0, 255 .L15: cmp w0, 0 beq .L16 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 13 mov x1, 1 adrp x0, .LC17 add x0, x0, :lo12:.LC17 bl fwrite mov w0, 1 bl exit .L16: ldr w2, [sp, 36] ldr x1, [sp, 40] ldr x0, [sp, 72] bl gzgets ldr x0, [sp, 40] bl strlen str w0, [sp, 36] ldr w0, [sp, 36] cmp w0, 6 beq .L17 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x19, [x0] add x0, sp, 64 mov x1, x0 ldr x0, [sp, 72] bl gzerror mov x2, x0 adrp x0, .LC18 add x1, x0, :lo12:.LC18 mov x0, x19 bl fprintf mov w0, 1 bl exit .L17: adrp x0, hello+7 add x0, x0, :lo12:hello+7 mov x1, x0 ldr x0, [sp, 40] bl strcmp cmp w0, 0 beq .L18 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 24 mov x1, 1 adrp x0, .LC19 add x0, x0, :lo12:.LC19 bl fwrite mov w0, 1 bl exit .L18: ldr x1, [sp, 40] adrp x0, .LC20 add x0, x0, :lo12:.LC20 bl printf ldr x0, [sp, 72] bl gzclose nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 88] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L19 bl __stack_chk_fail .L19: ldr x19, [sp, 16] ldp x29, x30, [sp], 96 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size test_gzio, .-test_gzio .section .rodata .align 3 .LC21: .string "1.2.11" .align 3 .LC22: .string "deflateInit" .align 3 .LC23: .string "deflate" .align 3 .LC24: .string "deflateEnd" .text .align 2 .global test_deflate .type test_deflate, %function test_deflate: .LFB8: .cfi_startproc stp x29, x30, [sp, -160]! .cfi_def_cfa_offset 160 .cfi_offset 29, -160 .cfi_offset 30, -152 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 152] mov x1, 0 mov w0, 14 str w0, [sp, 32] str xzr, [sp, 104] str xzr, [sp, 112] str xzr, [sp, 120] add x4, sp, 40 mov w3, 112 adrp x0, .LC21 add x2, x0, :lo12:.LC21 mov w1, -1 mov x0, x4 bl deflateInit_ str w0, [sp, 36] ldr w0, [sp, 36] cmp w0, 0 beq .L21 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 36] adrp x0, .LC22 add x2, x0, :lo12:.LC22 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L21: adrp x0, hello add x0, x0, :lo12:hello str x0, [sp, 40] ldr x0, [sp, 24] str x0, [sp, 64] b .L22 .L24: mov w0, 1 str w0, [sp, 72] ldr w0, [sp, 72] str w0, [sp, 48] add x0, sp, 40 mov w1, 0 bl deflate str w0, [sp, 36] ldr w0, [sp, 36] cmp w0, 0 beq .L22 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 36] adrp x0, .LC23 add x2, x0, :lo12:.LC23 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L22: ldr x1, [sp, 56] ldrsw x0, [sp, 32] cmp x1, x0 beq .L28 ldr x0, [sp, 80] ldr x1, [sp, 16] cmp x1, x0 bhi .L24 .L28: mov w0, 1 str w0, [sp, 72] add x0, sp, 40 mov w1, 4 bl deflate str w0, [sp, 36] ldr w0, [sp, 36] cmp w0, 1 beq .L32 ldr w0, [sp, 36] cmp w0, 0 beq .L28 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 36] adrp x0, .LC23 add x2, x0, :lo12:.LC23 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L32: nop add x0, sp, 40 bl deflateEnd str w0, [sp, 36] ldr w0, [sp, 36] cmp w0, 0 beq .L33 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 36] adrp x0, .LC24 add x2, x0, :lo12:.LC24 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L33: nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 152] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L30 bl __stack_chk_fail .L30: ldp x29, x30, [sp], 160 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size test_deflate, .-test_deflate .section .rodata .align 3 .LC25: .string "inflateInit" .align 3 .LC26: .string "inflate" .align 3 .LC27: .string "inflateEnd" .align 3 .LC28: .string "bad inflate\n" .align 3 .LC29: .string "inflate(): %s\n" .text .align 2 .global test_inflate .type test_inflate, %function test_inflate: .LFB9: .cfi_startproc stp x29, x30, [sp, -176]! .cfi_def_cfa_offset 176 .cfi_offset 29, -176 .cfi_offset 30, -168 mov x29, sp str x0, [sp, 40] str x1, [sp, 32] str x2, [sp, 24] str x3, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 168] mov x1, 0 ldr x0, [sp, 24] mov x1, 24935 movk x1, 0x6272, lsl 16 movk x1, 0x6761, lsl 32 movk x1, 0x65, lsl 48 str x1, [x0] str xzr, [sp, 120] str xzr, [sp, 128] str xzr, [sp, 136] ldr x0, [sp, 40] str x0, [sp, 56] str wzr, [sp, 64] ldr x0, [sp, 24] str x0, [sp, 80] add x3, sp, 56 mov w2, 112 adrp x0, .LC21 add x1, x0, :lo12:.LC21 mov x0, x3 bl inflateInit_ str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L36 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC25 add x2, x0, :lo12:.LC25 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L39: mov w0, 1 str w0, [sp, 88] ldr w0, [sp, 88] str w0, [sp, 64] add x0, sp, 56 mov w1, 0 bl inflate str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 1 beq .L43 ldr w0, [sp, 52] cmp w0, 0 beq .L36 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC26 add x2, x0, :lo12:.LC26 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L36: ldr x0, [sp, 96] ldr x1, [sp, 16] cmp x1, x0 bls .L38 ldr x0, [sp, 72] ldr x1, [sp, 32] cmp x1, x0 bhi .L39 b .L38 .L43: nop .L38: add x0, sp, 56 bl inflateEnd str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L40 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC27 add x2, x0, :lo12:.LC27 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L40: adrp x0, hello add x1, x0, :lo12:hello ldr x0, [sp, 24] bl strcmp cmp w0, 0 beq .L41 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 12 mov x1, 1 adrp x0, .LC28 add x0, x0, :lo12:.LC28 bl fwrite mov w0, 1 bl exit .L41: ldr x1, [sp, 24] adrp x0, .LC29 add x0, x0, :lo12:.LC29 bl printf nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 168] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L42 bl __stack_chk_fail .L42: ldp x29, x30, [sp], 176 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE9: .size test_inflate, .-test_inflate .section .rodata .align 3 .LC30: .string "deflate not greedy\n" .align 3 .LC31: .string "deflate should report Z_STREAM_END\n" .text .align 2 .global test_large_deflate .type test_large_deflate, %function test_large_deflate: .LFB10: .cfi_startproc stp x29, x30, [sp, -176]! .cfi_def_cfa_offset 176 .cfi_offset 29, -176 .cfi_offset 30, -168 mov x29, sp str x0, [sp, 40] str x1, [sp, 32] str x2, [sp, 24] str x3, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 168] mov x1, 0 str xzr, [sp, 120] str xzr, [sp, 128] str xzr, [sp, 136] add x4, sp, 56 mov w3, 112 adrp x0, .LC21 add x2, x0, :lo12:.LC21 mov w1, 1 mov x0, x4 bl deflateInit_ str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L45 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC22 add x2, x0, :lo12:.LC22 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L45: ldr x0, [sp, 40] str x0, [sp, 80] ldr x0, [sp, 32] str w0, [sp, 88] ldr x0, [sp, 24] str x0, [sp, 56] ldr x0, [sp, 16] str w0, [sp, 64] add x0, sp, 56 mov w1, 0 bl deflate str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L46 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC23 add x2, x0, :lo12:.LC23 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L46: ldr w0, [sp, 64] cmp w0, 0 beq .L47 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 19 mov x1, 1 adrp x0, .LC30 add x0, x0, :lo12:.LC30 bl fwrite mov w0, 1 bl exit .L47: add x0, sp, 56 mov w2, 0 mov w1, 0 bl deflateParams ldr x0, [sp, 40] str x0, [sp, 56] ldr x0, [sp, 32] lsr w0, w0, 1 str w0, [sp, 64] add x0, sp, 56 mov w1, 0 bl deflate str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L48 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC23 add x2, x0, :lo12:.LC23 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L48: add x0, sp, 56 mov w2, 1 mov w1, 9 bl deflateParams ldr x0, [sp, 24] str x0, [sp, 56] ldr x0, [sp, 16] str w0, [sp, 64] add x0, sp, 56 mov w1, 0 bl deflate str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L49 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC23 add x2, x0, :lo12:.LC23 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L49: add x0, sp, 56 mov w1, 4 bl deflate str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 1 beq .L50 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 35 mov x1, 1 adrp x0, .LC31 add x0, x0, :lo12:.LC31 bl fwrite mov w0, 1 bl exit .L50: add x0, sp, 56 bl deflateEnd str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L53 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC24 add x2, x0, :lo12:.LC24 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L53: nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 168] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L52 bl __stack_chk_fail .L52: ldp x29, x30, [sp], 176 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE10: .size test_large_deflate, .-test_large_deflate .section .rodata .align 3 .LC32: .string "large inflate" .align 3 .LC33: .string "bad large inflate: %ld\n" .align 3 .LC34: .string "large_inflate(): OK" .text .align 2 .global test_large_inflate .type test_large_inflate, %function test_large_inflate: .LFB11: .cfi_startproc stp x29, x30, [sp, -176]! .cfi_def_cfa_offset 176 .cfi_offset 29, -176 .cfi_offset 30, -168 mov x29, sp str x0, [sp, 40] str x1, [sp, 32] str x2, [sp, 24] str x3, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 168] mov x1, 0 ldr x0, [sp, 24] mov x1, 24935 movk x1, 0x6272, lsl 16 movk x1, 0x6761, lsl 32 movk x1, 0x65, lsl 48 str x1, [x0] str xzr, [sp, 120] str xzr, [sp, 128] str xzr, [sp, 136] ldr x0, [sp, 40] str x0, [sp, 56] ldr x0, [sp, 32] str w0, [sp, 64] add x3, sp, 56 mov w2, 112 adrp x0, .LC21 add x1, x0, :lo12:.LC21 mov x0, x3 bl inflateInit_ str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L55 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC25 add x2, x0, :lo12:.LC25 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L55: ldr x0, [sp, 24] str x0, [sp, 80] ldr x0, [sp, 16] str w0, [sp, 88] add x0, sp, 56 mov w1, 0 bl inflate str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 1 beq .L63 ldr w0, [sp, 52] cmp w0, 0 beq .L55 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC32 add x2, x0, :lo12:.LC32 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L63: nop add x0, sp, 56 bl inflateEnd str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L59 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC27 add x2, x0, :lo12:.LC27 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L59: ldr x1, [sp, 96] ldr x0, [sp, 16] lsl x2, x0, 1 ldr x0, [sp, 32] lsr x0, x0, 1 add x0, x2, x0 cmp x1, x0 beq .L60 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x3, [x0] ldr x0, [sp, 96] mov x2, x0 adrp x0, .LC33 add x1, x0, :lo12:.LC33 mov x0, x3 bl fprintf mov w0, 1 bl exit .L60: adrp x0, .LC34 add x0, x0, :lo12:.LC34 bl puts nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 168] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L61 bl __stack_chk_fail .L61: ldp x29, x30, [sp], 176 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE11: .size test_large_inflate, .-test_large_inflate .align 2 .global test_flush .type test_flush, %function test_flush: .LFB12: .cfi_startproc stp x29, x30, [sp, -160]! .cfi_def_cfa_offset 160 .cfi_offset 29, -160 .cfi_offset 30, -152 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 152] mov x1, 0 mov w0, 14 str w0, [sp, 32] str xzr, [sp, 104] str xzr, [sp, 112] str xzr, [sp, 120] add x4, sp, 40 mov w3, 112 adrp x0, .LC21 add x2, x0, :lo12:.LC21 mov w1, -1 mov x0, x4 bl deflateInit_ str w0, [sp, 36] ldr w0, [sp, 36] cmp w0, 0 beq .L65 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 36] adrp x0, .LC22 add x2, x0, :lo12:.LC22 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L65: adrp x0, hello add x0, x0, :lo12:hello str x0, [sp, 40] ldr x0, [sp, 24] str x0, [sp, 64] mov w0, 3 str w0, [sp, 48] ldr x0, [sp, 16] ldr x0, [x0] str w0, [sp, 72] add x0, sp, 40 mov w1, 3 bl deflate str w0, [sp, 36] ldr w0, [sp, 36] cmp w0, 0 beq .L66 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 36] adrp x0, .LC23 add x2, x0, :lo12:.LC23 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L66: ldr x0, [sp, 24] add x0, x0, 3 ldrb w1, [x0] add w1, w1, 1 and w1, w1, 255 strb w1, [x0] ldr w0, [sp, 32] sub w0, w0, #3 str w0, [sp, 48] add x0, sp, 40 mov w1, 4 bl deflate str w0, [sp, 36] ldr w0, [sp, 36] cmp w0, 1 beq .L67 ldr w0, [sp, 36] cmp w0, 0 beq .L67 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 36] adrp x0, .LC23 add x2, x0, :lo12:.LC23 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L67: add x0, sp, 40 bl deflateEnd str w0, [sp, 36] ldr w0, [sp, 36] cmp w0, 0 beq .L68 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 36] adrp x0, .LC24 add x2, x0, :lo12:.LC24 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L68: ldr x1, [sp, 80] ldr x0, [sp, 16] str x1, [x0] nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 152] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L69 bl __stack_chk_fail .L69: ldp x29, x30, [sp], 160 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE12: .size test_flush, .-test_flush .section .rodata .align 3 .LC35: .string "inflateSync" .align 3 .LC36: .string "inflate should report DATA_ERROR\n" .align 3 .LC37: .string "after inflateSync(): hel%s\n" .text .align 2 .global test_sync .type test_sync, %function test_sync: .LFB13: .cfi_startproc stp x29, x30, [sp, -176]! .cfi_def_cfa_offset 176 .cfi_offset 29, -176 .cfi_offset 30, -168 mov x29, sp str x0, [sp, 40] str x1, [sp, 32] str x2, [sp, 24] str x3, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 168] mov x1, 0 ldr x0, [sp, 24] mov x1, 24935 movk x1, 0x6272, lsl 16 movk x1, 0x6761, lsl 32 movk x1, 0x65, lsl 48 str x1, [x0] str xzr, [sp, 120] str xzr, [sp, 128] str xzr, [sp, 136] ldr x0, [sp, 40] str x0, [sp, 56] mov w0, 2 str w0, [sp, 64] add x3, sp, 56 mov w2, 112 adrp x0, .LC21 add x1, x0, :lo12:.LC21 mov x0, x3 bl inflateInit_ str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L71 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC25 add x2, x0, :lo12:.LC25 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L71: ldr x0, [sp, 24] str x0, [sp, 80] ldr x0, [sp, 16] str w0, [sp, 88] add x0, sp, 56 mov w1, 0 bl inflate ldr w0, [sp, 52] cmp w0, 0 beq .L72 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC26 add x2, x0, :lo12:.LC26 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L72: ldr x0, [sp, 32] sub w0, w0, #2 str w0, [sp, 64] add x0, sp, 56 bl inflateSync str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L73 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC35 add x2, x0, :lo12:.LC35 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L73: add x0, sp, 56 mov w1, 4 bl inflate str w0, [sp, 52] ldr w0, [sp, 52] cmn w0, #3 beq .L74 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 33 mov x1, 1 adrp x0, .LC36 add x0, x0, :lo12:.LC36 bl fwrite mov w0, 1 bl exit .L74: add x0, sp, 56 bl inflateEnd str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L75 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC27 add x2, x0, :lo12:.LC27 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L75: ldr x1, [sp, 24] adrp x0, .LC37 add x0, x0, :lo12:.LC37 bl printf nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 168] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L76 bl __stack_chk_fail .L76: ldp x29, x30, [sp], 176 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE13: .size test_sync, .-test_sync .section .rodata .align 3 .LC38: .string "deflateSetDictionary" .text .align 2 .global test_dict_deflate .type test_dict_deflate, %function test_dict_deflate: .LFB14: .cfi_startproc stp x29, x30, [sp, -160]! .cfi_def_cfa_offset 160 .cfi_offset 29, -160 .cfi_offset 30, -152 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 152] mov x1, 0 str xzr, [sp, 104] str xzr, [sp, 112] str xzr, [sp, 120] add x4, sp, 40 mov w3, 112 adrp x0, .LC21 add x2, x0, :lo12:.LC21 mov w1, 9 mov x0, x4 bl deflateInit_ str w0, [sp, 36] ldr w0, [sp, 36] cmp w0, 0 beq .L78 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 36] adrp x0, .LC22 add x2, x0, :lo12:.LC22 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L78: add x3, sp, 40 mov w2, 6 adrp x0, dictionary add x1, x0, :lo12:dictionary mov x0, x3 bl deflateSetDictionary str w0, [sp, 36] ldr w0, [sp, 36] cmp w0, 0 beq .L79 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 36] adrp x0, .LC38 add x2, x0, :lo12:.LC38 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L79: ldr x1, [sp, 136] adrp x0, dictId add x0, x0, :lo12:dictId str x1, [x0] ldr x0, [sp, 24] str x0, [sp, 64] ldr x0, [sp, 16] str w0, [sp, 72] adrp x0, hello add x0, x0, :lo12:hello str x0, [sp, 40] mov w0, 14 str w0, [sp, 48] add x0, sp, 40 mov w1, 4 bl deflate str w0, [sp, 36] ldr w0, [sp, 36] cmp w0, 1 beq .L80 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 35 mov x1, 1 adrp x0, .LC31 add x0, x0, :lo12:.LC31 bl fwrite mov w0, 1 bl exit .L80: add x0, sp, 40 bl deflateEnd str w0, [sp, 36] ldr w0, [sp, 36] cmp w0, 0 beq .L83 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 36] adrp x0, .LC24 add x2, x0, :lo12:.LC24 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L83: nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 152] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L82 bl __stack_chk_fail .L82: ldp x29, x30, [sp], 160 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE14: .size test_dict_deflate, .-test_dict_deflate .section .rodata .align 3 .LC39: .string "unexpected dictionary" .align 3 .LC40: .string "inflate with dict" .align 3 .LC41: .string "bad inflate with dict\n" .align 3 .LC42: .string "inflate with dictionary: %s\n" .text .align 2 .global test_dict_inflate .type test_dict_inflate, %function test_dict_inflate: .LFB15: .cfi_startproc stp x29, x30, [sp, -176]! .cfi_def_cfa_offset 176 .cfi_offset 29, -176 .cfi_offset 30, -168 mov x29, sp str x0, [sp, 40] str x1, [sp, 32] str x2, [sp, 24] str x3, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 168] mov x1, 0 ldr x0, [sp, 24] mov x1, 24935 movk x1, 0x6272, lsl 16 movk x1, 0x6761, lsl 32 movk x1, 0x65, lsl 48 str x1, [x0] str xzr, [sp, 120] str xzr, [sp, 128] str xzr, [sp, 136] ldr x0, [sp, 40] str x0, [sp, 56] ldr x0, [sp, 32] str w0, [sp, 64] add x3, sp, 56 mov w2, 112 adrp x0, .LC21 add x1, x0, :lo12:.LC21 mov x0, x3 bl inflateInit_ str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L85 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC25 add x2, x0, :lo12:.LC25 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L85: ldr x0, [sp, 24] str x0, [sp, 80] ldr x0, [sp, 16] str w0, [sp, 88] .L91: add x0, sp, 56 mov w1, 0 bl inflate str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 1 beq .L96 ldr w0, [sp, 52] cmp w0, 2 bne .L88 ldr x1, [sp, 152] adrp x0, dictId add x0, x0, :lo12:dictId ldr x0, [x0] cmp x1, x0 beq .L89 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 21 mov x1, 1 adrp x0, .LC39 add x0, x0, :lo12:.LC39 bl fwrite mov w0, 1 bl exit .L89: add x3, sp, 56 mov w2, 6 adrp x0, dictionary add x1, x0, :lo12:dictionary mov x0, x3 bl inflateSetDictionary str w0, [sp, 52] .L88: ldr w0, [sp, 52] cmp w0, 0 beq .L91 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC40 add x2, x0, :lo12:.LC40 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L96: nop add x0, sp, 56 bl inflateEnd str w0, [sp, 52] ldr w0, [sp, 52] cmp w0, 0 beq .L92 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x4, [x0] ldr w3, [sp, 52] adrp x0, .LC27 add x2, x0, :lo12:.LC27 adrp x0, .LC1 add x1, x0, :lo12:.LC1 mov x0, x4 bl fprintf mov w0, 1 bl exit .L92: adrp x0, hello add x1, x0, :lo12:hello ldr x0, [sp, 24] bl strcmp cmp w0, 0 beq .L93 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 22 mov x1, 1 adrp x0, .LC41 add x0, x0, :lo12:.LC41 bl fwrite mov w0, 1 bl exit .L93: ldr x1, [sp, 24] adrp x0, .LC42 add x0, x0, :lo12:.LC42 bl printf nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 168] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L94 bl __stack_chk_fail .L94: ldp x29, x30, [sp], 176 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE15: .size test_dict_inflate, .-test_dict_inflate .section .rodata .align 3 .LC43: .string "incompatible zlib version\n" .align 3 .LC44: .string "warning: different zlib version\n" .align 3 .LC45: .string "out of memory" .align 3 .LC46: .string "foo.gz" .text .align 2 .global main .type main, %function main: .LFB16: .cfi_startproc stp x29, x30, [sp, -80]! .cfi_def_cfa_offset 80 .cfi_offset 29, -80 .cfi_offset 30, -72 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 72] mov x1, 0 mov x0, 40000 str x0, [sp, 40] ldr x0, [sp, 40] str x0, [sp, 48] bl zlibVersion ldrb w1, [x0] adrp x0, myVersion.0 add x0, x0, :lo12:myVersion.0 ldr x0, [x0] ldrb w0, [x0] cmp w1, w0 beq .L98 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 26 mov x1, 1 adrp x0, .LC43 add x0, x0, :lo12:.LC43 bl fwrite mov w0, 1 bl exit .L98: bl zlibVersion mov x2, x0 adrp x0, .LC21 add x1, x0, :lo12:.LC21 mov x0, x2 bl strcmp cmp w0, 0 beq .L99 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x0, [x0] mov x3, x0 mov x2, 32 mov x1, 1 adrp x0, .LC44 add x0, x0, :lo12:.LC44 bl fwrite .L99: ldr x0, [sp, 40] uxtw x0, w0 mov x1, 1 bl calloc str x0, [sp, 56] ldr x0, [sp, 48] uxtw x0, w0 mov x1, 1 bl calloc str x0, [sp, 64] ldr x0, [sp, 56] cmp x0, 0 beq .L100 ldr x0, [sp, 64] cmp x0, 0 bne .L101 .L100: adrp x0, .LC45 add x0, x0, :lo12:.LC45 bl puts mov w0, 1 bl exit .L101: ldr x0, [sp, 40] ldr x3, [sp, 48] ldr x2, [sp, 64] mov x1, x0 ldr x0, [sp, 56] bl test_compress ldr w0, [sp, 28] cmp w0, 1 ble .L102 ldr x0, [sp, 16] ldr x0, [x0, 8] b .L103 .L102: adrp x0, .LC46 add x0, x0, :lo12:.LC46 .L103: ldr w1, [sp, 28] cmp w1, 2 ble .L104 ldr x1, [sp, 16] ldr x1, [x1, 16] b .L105 .L104: adrp x1, .LC46 add x1, x1, :lo12:.LC46 .L105: ldr x2, [sp, 48] mov w3, w2 ldr x2, [sp, 64] bl test_gzio ldr x0, [sp, 40] mov x1, x0 ldr x0, [sp, 56] bl test_deflate ldr x0, [sp, 40] ldr x3, [sp, 48] ldr x2, [sp, 64] mov x1, x0 ldr x0, [sp, 56] bl test_inflate ldr x0, [sp, 40] ldr x3, [sp, 48] ldr x2, [sp, 64] mov x1, x0 ldr x0, [sp, 56] bl test_large_deflate ldr x0, [sp, 40] ldr x3, [sp, 48] ldr x2, [sp, 64] mov x1, x0 ldr x0, [sp, 56] bl test_large_inflate add x0, sp, 40 mov x1, x0 ldr x0, [sp, 56] bl test_flush ldr x0, [sp, 40] ldr x3, [sp, 48] ldr x2, [sp, 64] mov x1, x0 ldr x0, [sp, 56] bl test_sync ldr x0, [sp, 48] str x0, [sp, 40] ldr x0, [sp, 40] mov x1, x0 ldr x0, [sp, 56] bl test_dict_deflate ldr x0, [sp, 40] ldr x3, [sp, 48] ldr x2, [sp, 64] mov x1, x0 ldr x0, [sp, 56] bl test_dict_inflate mov w0, 0 bl exit .cfi_endproc .LFE16: .size main, .-main .section .data.rel.local,"aw" .align 3 .type myVersion.0, %object .size myVersion.0, 8 myVersion.0: .xword .LC21 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "\nThe size is too small" .align 3 .LC1: .string "\nOut of space" .text .align 2 .global CreateStack_C .type CreateStack_C, %function CreateStack_C: .LFB6: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str w0, [sp, 28] ldr w0, [sp, 28] cmp w0, 19 bhi .L2 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf mov x0, 0 b .L3 .L2: mov x0, 16 bl malloc str x0, [sp, 40] ldr x0, [sp, 40] cmp x0, 0 bne .L4 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl printf mov x0, 0 b .L3 .L4: ldr w0, [sp, 28] bl malloc mov x1, x0 ldr x0, [sp, 40] str x1, [x0, 8] ldr x0, [sp, 40] ldr x0, [x0, 8] cmp x0, 0 bne .L5 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl printf mov x0, 0 b .L3 .L5: ldr x0, [sp, 40] ldr w1, [sp, 28] str w1, [x0] ldr x0, [sp, 40] mov w1, -1 str w1, [x0, 4] ldr x0, [sp, 40] .L3: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size CreateStack_C, .-CreateStack_C .section .rodata .align 3 .LC2: .string "NULL" .text .align 2 .global CreateStack_N .type CreateStack_N, %function CreateStack_N: .LFB7: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str w0, [sp, 28] ldr w0, [sp, 28] cmp w0, 19 bhi .L7 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf mov x0, 0 b .L8 .L7: mov x0, 16 bl malloc str x0, [sp, 40] ldr x0, [sp, 40] cmp x0, 0 bne .L9 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov x0, 0 b .L8 .L9: ldr w0, [sp, 28] lsl x0, x0, 3 bl malloc mov x1, x0 ldr x0, [sp, 40] str x1, [x0, 8] ldr x0, [sp, 40] ldr x0, [x0, 8] cmp x0, 0 bne .L10 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov x0, 0 b .L8 .L10: ldr x0, [sp, 40] ldr w1, [sp, 28] str w1, [x0] ldr x0, [sp, 40] mov w1, -1 str w1, [x0, 4] ldr x0, [sp, 40] .L8: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size CreateStack_N, .-CreateStack_N .section .rodata .align 3 .LC3: .string "\nNull Error" .align 3 .LC4: .string "\ninvalid" .text .align 2 .global is_valid .type is_valid, %function is_valid: .LFB8: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] str wzr, [sp, 44] ldr x0, [sp, 24] cmp x0, 0 bne .L12 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl printf mov w0, 0 b .L13 .L12: ldr x0, [sp, 24] ldrb w0, [x0] strb w0, [sp, 43] b .L14 .L18: ldrb w0, [sp, 43] cmp w0, 57 bhi .L15 ldrb w0, [sp, 43] cmp w0, 47 bhi .L16 .L15: ldrb w0, [sp, 43] cmp w0, 39 bls .L17 ldrb w0, [sp, 43] cmp w0, 43 bls .L16 .L17: ldrb w0, [sp, 43] cmp w0, 45 beq .L16 ldrb w0, [sp, 43] cmp w0, 47 beq .L16 adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl printf mov w0, 0 b .L13 .L16: ldr w0, [sp, 44] add w0, w0, 1 str w0, [sp, 44] ldrsw x0, [sp, 44] ldr x1, [sp, 24] add x0, x1, x0 ldrb w0, [x0] strb w0, [sp, 43] .L14: ldrb w0, [sp, 43] cmp w0, 0 bne .L18 mov w0, 1 .L13: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size is_valid, .-is_valid .align 2 .global char2long .type char2long, %function char2long: .LFB9: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 strb w0, [sp, 15] ldrb w0, [sp, 15] cmp w0, 57 bhi .L20 ldrb w0, [sp, 15] cmp w0, 47 bhi .L21 .L20: mov x0, -1 b .L22 .L21: ldrb w0, [sp, 15] sub w0, w0, #48 sxtw x0, w0 .L22: add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE9: .size char2long, .-char2long .align 2 .global is_empty_C .type is_empty_C, %function is_empty_C: .LFB10: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] cmp x0, 0 bne .L24 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 bl exit .L24: ldr x0, [sp, 24] ldr w0, [x0, 4] cmn w0, #1 bne .L25 mov w0, 1 b .L26 .L25: mov w0, 0 .L26: ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE10: .size is_empty_C, .-is_empty_C .align 2 .global is_empty_N .type is_empty_N, %function is_empty_N: .LFB11: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] cmp x0, 0 bne .L28 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 bl exit .L28: ldr x0, [sp, 24] ldr w0, [x0, 4] cmn w0, #1 bne .L29 mov w0, 1 b .L30 .L29: mov w0, 0 .L30: ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE11: .size is_empty_N, .-is_empty_N .align 2 .global is_full_C .type is_full_C, %function is_full_C: .LFB12: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str x0, [sp, 8] ldr x0, [sp, 8] cmp x0, 0 beq .L32 ldr x0, [sp, 8] ldr w0, [x0, 4] mov w1, w0 ldr x0, [sp, 8] ldr w0, [x0] sub w0, w0, #1 cmp w1, w0 bne .L33 mov w0, 1 b .L31 .L33: mov w0, 0 b .L31 .L32: .L31: add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE12: .size is_full_C, .-is_full_C .align 2 .global is_full_N .type is_full_N, %function is_full_N: .LFB13: .cfi_startproc sub sp, sp, #16 .cfi_def_cfa_offset 16 str x0, [sp, 8] ldr x0, [sp, 8] cmp x0, 0 beq .L36 ldr x0, [sp, 8] ldr w0, [x0, 4] mov w1, w0 ldr x0, [sp, 8] ldr w0, [x0] sub w0, w0, #1 cmp w1, w0 bne .L37 mov w0, 1 b .L35 .L37: mov w0, 0 b .L35 .L36: .L35: add sp, sp, 16 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE13: .size is_full_N, .-is_full_N .align 2 .global PushStack_C .type PushStack_C, %function PushStack_C: .LFB14: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp strb w0, [sp, 31] str x1, [sp, 16] ldr x0, [sp, 16] bl is_full_C cmp w0, 1 bne .L40 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 bl exit .L40: ldr x0, [sp, 16] ldr x1, [x0, 8] ldr x0, [sp, 16] ldr w0, [x0, 4] add w2, w0, 1 ldr x0, [sp, 16] str w2, [x0, 4] ldr x0, [sp, 16] ldr w0, [x0, 4] sxtw x0, w0 add x0, x1, x0 ldrb w1, [sp, 31] strb w1, [x0] nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE14: .size PushStack_C, .-PushStack_C .align 2 .global PushStack_N .type PushStack_N, %function PushStack_N: .LFB15: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] ldr x0, [sp, 16] bl is_full_N cmp w0, 1 bne .L42 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 bl exit .L42: ldr x0, [sp, 16] ldr x1, [x0, 8] ldr x0, [sp, 16] ldr w0, [x0, 4] add w2, w0, 1 ldr x0, [sp, 16] str w2, [x0, 4] ldr x0, [sp, 16] ldr w0, [x0, 4] sxtw x0, w0 lsl x0, x0, 3 add x0, x1, x0 ldr x1, [sp, 24] str x1, [x0] nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE15: .size PushStack_N, .-PushStack_N .align 2 .global PopStack_C .type PopStack_C, %function PopStack_C: .LFB16: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] bl is_empty_C cmp w0, 1 bne .L44 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 bl exit .L44: ldr x0, [sp, 24] ldr x1, [x0, 8] ldr x0, [sp, 24] ldr w0, [x0, 4] sub w3, w0, #1 ldr x2, [sp, 24] str w3, [x2, 4] sxtw x0, w0 add x0, x1, x0 ldrb w0, [x0] ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE16: .size PopStack_C, .-PopStack_C .align 2 .global PopStack_N .type PopStack_N, %function PopStack_N: .LFB17: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] bl is_empty_N cmp w0, 1 bne .L47 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 bl exit .L47: ldr x0, [sp, 24] ldr x1, [x0, 8] ldr x0, [sp, 24] ldr w0, [x0, 4] sub w3, w0, #1 ldr x2, [sp, 24] str w3, [x2, 4] sxtw x0, w0 lsl x0, x0, 3 add x0, x1, x0 ldr x0, [x0] ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE17: .size PopStack_N, .-PopStack_N .align 2 .global TopStack_C .type TopStack_C, %function TopStack_C: .LFB18: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] bl is_empty_C cmp w0, 1 bne .L50 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 bl exit .L50: ldr x0, [sp, 24] ldr x1, [x0, 8] ldr x0, [sp, 24] ldr w0, [x0, 4] sxtw x0, w0 add x0, x1, x0 ldrb w0, [x0] ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE18: .size TopStack_C, .-TopStack_C .align 2 .global TopStack_N .type TopStack_N, %function TopStack_N: .LFB19: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str x0, [sp, 24] ldr x0, [sp, 24] bl is_empty_N cmp w0, 1 bne .L53 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 bl exit .L53: ldr x0, [sp, 24] ldr x1, [x0, 8] ldr x0, [sp, 24] ldr w0, [x0, 4] sxtw x0, w0 lsl x0, x0, 3 add x0, x1, x0 ldr x0, [x0] ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE19: .size TopStack_N, .-TopStack_N .align 2 .global D_Cal .type D_Cal, %function D_Cal: .LFB20: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] strb w1, [sp, 23] ldrb w0, [sp, 23] cmp w0, 43 bne .L56 ldr x0, [sp, 24] bl PopStack_N str x0, [sp, 32] ldr x0, [sp, 24] bl PopStack_N str x0, [sp, 40] ldr x1, [sp, 32] ldr x0, [sp, 40] add x0, x1, x0 ldr x1, [sp, 24] bl PushStack_N b .L55 .L56: ldrb w0, [sp, 23] cmp w0, 42 bne .L58 ldr x0, [sp, 24] bl PopStack_N str x0, [sp, 32] ldr x0, [sp, 24] bl PopStack_N str x0, [sp, 40] ldr x1, [sp, 32] ldr x0, [sp, 40] mul x0, x1, x0 ldr x1, [sp, 24] bl PushStack_N b .L55 .L58: ldrb w0, [sp, 23] cmp w0, 47 bne .L59 ldr x0, [sp, 24] bl PopStack_N str x0, [sp, 32] ldr x0, [sp, 24] bl PopStack_N str x0, [sp, 40] ldr x0, [sp, 32] cmp x0, 0 bne .L60 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 bl exit .L60: ldr x1, [sp, 40] ldr x0, [sp, 32] sdiv x0, x1, x0 ldr x1, [sp, 24] bl PushStack_N b .L55 .L59: ldrb w0, [sp, 23] cmp w0, 94 bne .L61 ldr x0, [sp, 24] bl PopStack_N str x0, [sp, 32] ldr x0, [sp, 24] bl PopStack_N str x0, [sp, 40] ldr x0, [sp, 32] cmp x0, 0 bgt .L62 ldr x0, [sp, 40] cmp x0, 0 bne .L62 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 bl exit .L62: ldr d0, [sp, 40] scvtf d2, d0 ldr d0, [sp, 32] scvtf d0, d0 fmov d1, d0 fmov d0, d2 bl pow fcvtzs x0, d0 ldr x1, [sp, 24] bl PushStack_N b .L55 .L61: ldrb w0, [sp, 23] cmp w0, 45 bne .L63 ldr x0, [sp, 24] bl PopStack_N str x0, [sp, 32] ldr x0, [sp, 24] bl PopStack_N str x0, [sp, 40] ldr x1, [sp, 40] ldr x0, [sp, 32] sub x0, x1, x0 ldr x1, [sp, 24] bl PushStack_N b .L55 .L63: adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 bl exit .L55: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE20: .size D_Cal, .-D_Cal .section .rodata .align 3 .LC5: .string "%ld" .text .align 2 .global main .type main, %function main: .LFB21: .cfi_startproc stp x29, x30, [sp, -288]! .cfi_def_cfa_offset 288 .cfi_offset 29, -288 .cfi_offset 30, -280 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -272 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 280] mov x1, 0 str wzr, [sp, 36] str xzr, [sp, 40] mov w0, 200 bl CreateStack_C str x0, [sp, 48] mov w0, 200 bl CreateStack_N str x0, [sp, 56] add x0, sp, 64 bl gets ldrb w0, [sp, 64] strb w0, [sp, 35] b .L65 .L96: ldrb w0, [sp, 35] cmp w0, 47 bls .L66 ldrb w0, [sp, 35] cmp w0, 57 bhi .L66 ldrb w0, [sp, 35] bl char2long str x0, [sp, 40] ldr w0, [sp, 36] add w0, w0, 1 str w0, [sp, 36] ldrsw x0, [sp, 36] add x1, sp, 64 add x0, x1, x0 ldrb w0, [x0] strb w0, [sp, 35] b .L67 .L69: ldr x1, [sp, 40] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 1 mov x19, x0 ldrb w0, [sp, 35] bl char2long add x0, x19, x0 str x0, [sp, 40] ldr w0, [sp, 36] add w0, w0, 1 str w0, [sp, 36] ldrsw x0, [sp, 36] add x1, sp, 64 add x0, x1, x0 ldrb w0, [x0] strb w0, [sp, 35] .L67: ldrb w0, [sp, 35] cmp w0, 47 bls .L68 ldrb w0, [sp, 35] cmp w0, 57 bls .L69 .L68: ldr x1, [sp, 56] ldr x0, [sp, 40] bl PushStack_N ldr w0, [sp, 36] sub w0, w0, #1 str w0, [sp, 36] b .L70 .L66: ldrb w0, [sp, 35] cmp w0, 97 bne .L71 ldr w0, [sp, 36] add w0, w0, 1 str w0, [sp, 36] ldrsw x0, [sp, 36] add x1, sp, 64 add x0, x1, x0 ldrb w0, [x0] cmp w0, 98 bne .L72 ldr w0, [sp, 36] add w0, w0, 1 str w0, [sp, 36] ldrsw x0, [sp, 36] add x1, sp, 64 add x0, x1, x0 ldrb w0, [x0] cmp w0, 115 bne .L72 ldr w0, [sp, 36] add w0, w0, 1 str w0, [sp, 36] ldrsw x0, [sp, 36] add x1, sp, 64 add x0, x1, x0 ldrb w0, [x0] cmp w0, 40 bne .L72 ldr x1, [sp, 48] mov w0, 91 bl PushStack_C b .L70 .L72: adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf b .L64 .L71: ldrb w0, [sp, 35] cmp w0, 40 bne .L74 ldr x1, [sp, 48] ldrb w0, [sp, 35] bl PushStack_C b .L70 .L74: ldrb w0, [sp, 35] cmp w0, 45 beq .L75 ldrb w0, [sp, 35] cmp w0, 43 bne .L76 .L75: ldr w0, [sp, 36] cmp w0, 0 beq .L77 ldrsw x0, [sp, 36] sub x0, x0, #1 add x1, sp, 64 add x0, x1, x0 ldrb w0, [x0] cmp w0, 40 bne .L79 .L77: ldr x1, [sp, 56] mov x0, 0 bl PushStack_N b .L79 .L81: ldr x0, [sp, 48] bl PopStack_C and w0, w0, 255 mov w1, w0 ldr x0, [sp, 56] bl D_Cal .L79: ldr x0, [sp, 48] bl is_empty_C cmp w0, 0 bne .L80 ldr x0, [sp, 48] bl TopStack_C and w0, w0, 255 cmp w0, 45 beq .L81 ldr x0, [sp, 48] bl TopStack_C and w0, w0, 255 cmp w0, 43 beq .L81 .L80: ldr x1, [sp, 48] ldrb w0, [sp, 35] bl PushStack_C b .L70 .L76: ldrb w0, [sp, 35] cmp w0, 42 beq .L84 ldrb w0, [sp, 35] cmp w0, 47 bne .L83 b .L84 .L86: ldr x0, [sp, 48] bl PopStack_C and w0, w0, 255 mov w1, w0 ldr x0, [sp, 56] bl D_Cal .L84: ldr x0, [sp, 48] bl is_empty_C cmp w0, 0 bne .L85 ldr x0, [sp, 48] bl TopStack_C and w0, w0, 255 cmp w0, 40 beq .L85 ldr x0, [sp, 48] bl TopStack_C and w0, w0, 255 cmp w0, 91 beq .L85 ldr x0, [sp, 48] bl TopStack_C and w0, w0, 255 cmp w0, 94 bne .L86 .L85: ldr x1, [sp, 48] ldrb w0, [sp, 35] bl PushStack_C b .L70 .L83: ldrb w0, [sp, 35] cmp w0, 94 bne .L87 b .L88 .L90: ldr x0, [sp, 48] bl PopStack_C and w0, w0, 255 mov w1, w0 ldr x0, [sp, 56] bl D_Cal .L88: ldr x0, [sp, 48] bl is_empty_C cmp w0, 0 bne .L89 ldr x0, [sp, 48] bl TopStack_C and w0, w0, 255 cmp w0, 40 beq .L89 ldr x0, [sp, 48] bl TopStack_C and w0, w0, 255 cmp w0, 91 bne .L90 .L89: ldr x1, [sp, 48] ldrb w0, [sp, 35] bl PushStack_C b .L70 .L87: ldrb w0, [sp, 35] cmp w0, 41 bne .L70 b .L91 .L93: ldr x0, [sp, 48] bl PopStack_C and w0, w0, 255 mov w1, w0 ldr x0, [sp, 56] bl D_Cal .L91: ldr x0, [sp, 48] bl is_empty_C cmp w0, 0 bne .L92 ldr x0, [sp, 48] bl TopStack_C and w0, w0, 255 cmp w0, 40 beq .L92 ldr x0, [sp, 48] bl TopStack_C and w0, w0, 255 cmp w0, 91 bne .L93 .L92: ldr x0, [sp, 48] bl TopStack_C and w0, w0, 255 cmp w0, 40 bne .L94 ldr x0, [sp, 48] bl PopStack_C b .L70 .L94: ldr x0, [sp, 48] bl TopStack_C and w0, w0, 255 cmp w0, 91 bne .L95 ldr x0, [sp, 56] bl PopStack_N cmp w0, 0 csneg w0, w0, w0, ge sxtw x0, w0 ldr x1, [sp, 56] bl PushStack_N ldr x0, [sp, 48] bl PopStack_C b .L70 .L95: adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf b .L64 .L70: ldr w0, [sp, 36] add w0, w0, 1 str w0, [sp, 36] ldrsw x0, [sp, 36] add x1, sp, 64 add x0, x1, x0 ldrb w0, [x0] strb w0, [sp, 35] .L65: ldrb w0, [sp, 35] cmp w0, 0 bne .L96 b .L97 .L98: ldr x0, [sp, 48] bl PopStack_C and w0, w0, 255 mov w1, w0 ldr x0, [sp, 56] bl D_Cal .L97: ldr x0, [sp, 48] bl is_empty_C cmp w0, 0 beq .L98 ldr x0, [sp, 56] bl PopStack_N str x0, [sp, 40] ldr x0, [sp, 56] bl is_empty_N cmp w0, 0 bne .L99 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf b .L64 .L99: ldr x1, [sp, 40] adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl printf nop .L64: adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 280] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L101 bl __stack_chk_fail .L101: ldr x19, [sp, 16] ldp x29, x30, [sp], 288 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE21: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "Please enter the book title." .align 3 .LC1: .string "Press [enter] at the start of a line to stop." .align 3 .LC2: .string "Now enter the author." .align 3 .LC3: .string "Now enter the value." .align 3 .LC4: .string "%f" .align 3 .LC5: .string "Enter the next title." .align 3 .LC6: .string "Here is the list of your books: " .align 3 .LC7: .string "%s by %s: $%.2f\n" .align 3 .LC8: .string "No books? Too bad." .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc mov x12, 8432 sub sp, sp, x12 .cfi_def_cfa_offset 8432 stp x29, x30, [sp] .cfi_offset 29, -8432 .cfi_offset 30, -8424 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 8424] mov x1, 0 str wzr, [sp, 16] adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl puts adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts b .L2 .L6: adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl puts add x2, sp, 24 ldrsw x1, [sp, 16] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 2 add x0, x0, 32 add x0, x2, x0 add x0, x0, 8 bl gets adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl puts ldr w0, [sp, 16] add w1, w0, 1 str w1, [sp, 16] add x2, sp, 24 sxtw x1, w0 mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 2 add x0, x0, 80 add x0, x2, x0 mov x1, x0 adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl __isoc99_scanf b .L3 .L4: nop .L3: bl getchar cmp w0, 10 bne .L4 ldr w0, [sp, 16] cmp w0, 99 bgt .L2 adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl puts .L2: ldr w0, [sp, 16] cmp w0, 99 bgt .L5 add x2, sp, 24 ldrsw x1, [sp, 16] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 2 add x0, x2, x0 bl gets cmp w0, 0 beq .L5 ldrsw x1, [sp, 16] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 2 add x1, sp, 24 ldrb w0, [x1, x0] cmp w0, 0 bne .L6 .L5: ldr w0, [sp, 16] cmp w0, 0 ble .L7 adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl puts str wzr, [sp, 20] b .L8 .L9: add x2, sp, 24 ldrsw x1, [sp, 20] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 2 add x3, x2, x0 add x2, sp, 24 ldrsw x1, [sp, 20] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 2 add x0, x0, 32 add x0, x2, x0 add x2, x0, 8 ldrsw x1, [sp, 20] mov x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 2 add x0, x0, x1 lsl x0, x0, 2 add x1, sp, 104 ldr s0, [x1, x0] fcvt d0, s0 mov x1, x3 adrp x0, .LC7 add x0, x0, :lo12:.LC7 bl printf ldr w0, [sp, 20] add w0, w0, 1 str w0, [sp, 20] .L8: ldr w1, [sp, 20] ldr w0, [sp, 16] cmp w1, w0 blt .L9 b .L10 .L7: adrp x0, .LC8 add x0, x0, :lo12:.LC8 bl puts .L10: mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 8424] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L12 bl __stack_chk_fail .L12: mov w0, w1 ldp x29, x30, [sp] mov x12, 8432 add sp, sp, x12 .cfi_restore 29 .cfi_restore 30 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "output.txt" .align 3 .LC1: .string "input.txt" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] adrp x0, .LC0 add x1, x0, :lo12:.LC0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl sort mov w0, 0 ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main .section .rodata .align 3 .LC2: .string "r" .align 3 .LC3: .string "w" .align 3 .LC4: .string "%d\n" .text .align 2 .global sort .type sort, %function sort: .LFB1: .cfi_startproc stp x29, x30, [sp, -112]! .cfi_def_cfa_offset 112 .cfi_offset 29, -112 .cfi_offset 30, -104 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 104] mov x1, 0 adrp x0, .LC2 add x1, x0, :lo12:.LC2 ldr x0, [sp, 24] bl fopen str x0, [sp, 48] adrp x0, .LC3 add x1, x0, :lo12:.LC3 ldr x0, [sp, 16] bl fopen str x0, [sp, 56] mov x0, 4816 movk x0, 0x13, lsl 16 bl malloc str x0, [sp, 64] str wzr, [sp, 44] mov x2, 4816 movk x2, 0x13, lsl 16 mov w1, 0 ldr x0, [sp, 64] bl memset b .L4 .L5: add x0, sp, 72 bl atoi str w0, [sp, 44] ldr w0, [sp, 44] add w1, w0, 7 cmp w0, 0 csel w0, w1, w0, lt asr w0, w0, 3 mov w3, w0 sxtw x0, w3 ldr x1, [sp, 64] add x0, x1, x0 ldrb w0, [x0] sxtb w1, w0 ldr w0, [sp, 44] negs w2, w0 and w0, w0, 7 and w2, w2, 7 csneg w0, w0, w2, mi mov w2, 7 sub w0, w2, w0 mov w2, 1 lsl w0, w2, w0 sxtb w0, w0 orr w0, w1, w0 sxtb w2, w0 sxtw x0, w3 ldr x1, [sp, 64] add x0, x1, x0 and w1, w2, 255 strb w1, [x0] .L4: add x0, sp, 72 ldr x2, [sp, 48] mov w1, 31 bl fgets cmp x0, 0 bne .L5 str wzr, [sp, 44] b .L6 .L8: ldr w0, [sp, 44] add w1, w0, 7 cmp w0, 0 csel w0, w1, w0, lt asr w0, w0, 3 sxtw x0, w0 ldr x1, [sp, 64] add x0, x1, x0 ldrb w0, [x0] mov w2, w0 ldr w0, [sp, 44] negs w1, w0 and w0, w0, 7 and w1, w1, 7 csneg w0, w0, w1, mi mov w1, 7 sub w0, w1, w0 asr w0, w2, w0 and w0, w0, 1 cmp w0, 0 beq .L7 add x3, sp, 72 ldr w2, [sp, 44] adrp x0, .LC4 add x1, x0, :lo12:.LC4 mov x0, x3 bl sprintf add x0, sp, 72 ldr x1, [sp, 56] bl fputs .L7: ldr w0, [sp, 44] add w0, w0, 1 str w0, [sp, 44] .L6: ldr w1, [sp, 44] mov w0, 38527 movk w0, 0x98, lsl 16 cmp w1, w0 ble .L8 ldr x0, [sp, 64] bl free ldr x0, [sp, 48] bl fclose ldr x0, [sp, 56] bl fclose nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [sp, 104] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L9 bl __stack_chk_fail .L9: ldp x29, x30, [sp], 112 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size sort, .-sort ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "2~1000\347\232\204\346\211\200\346\234\211\347\264\240\346\225\260\344\270\272\357\274\232\n2\t" .align 3 .LC1: .string "%d\t" .text .align 2 .global allPrimes .type allPrimes, %function allPrimes: .LFB0: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf mov w0, 3 str w0, [sp, 16] b .L2 .L8: ldr w0, [sp, 16] scvtf d0, w0 bl sqrt fcvtzs w0, d0 str w0, [sp, 28] mov w0, 1 str w0, [sp, 20] mov w0, 2 str w0, [sp, 24] b .L3 .L6: ldr w0, [sp, 16] ldr w1, [sp, 24] sdiv w2, w0, w1 ldr w1, [sp, 24] mul w1, w2, w1 sub w0, w0, w1 cmp w0, 0 bne .L4 str wzr, [sp, 20] b .L5 .L4: ldr w0, [sp, 24] add w0, w0, 1 str w0, [sp, 24] .L3: ldr w1, [sp, 24] ldr w0, [sp, 28] cmp w1, w0 ble .L6 .L5: ldr w0, [sp, 20] cmp w0, 1 bne .L7 ldr w1, [sp, 16] adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl printf .L7: ldr w0, [sp, 16] add w0, w0, 1 str w0, [sp, 16] .L2: ldr w0, [sp, 16] cmp w0, 1000 ble .L8 nop nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size allPrimes, .-allPrimes .section .rodata .align 3 .LC2: .string "\n\347\250\213\345\272\217\350\256\241\347\256\227\346\227\266\351\227\264\344\270\272%lums\343\200\202\n" .text .align 2 .global main .type main, %function main: .LFB1: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] bl clock str x0, [sp, 32] bl allPrimes bl clock str x0, [sp, 40] ldr x1, [sp, 40] ldr x0, [sp, 32] sub x0, x1, x0 mov x1, x0 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string " %c" .align 3 .LC1: .string "%f %f %f %f" .align 3 .LC2: .string "%f %f" .align 3 .LC3: .string "Point %ld is contained in figure %ld\n" .align 3 .LC4: .string "Point %ld is not contained in any figure\n" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -256]! .cfi_def_cfa_offset 256 .cfi_offset 29, -256 .cfi_offset 30, -248 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 248] mov x1, 0 str xzr, [sp, 32] str xzr, [sp, 48] .L4: add x1, sp, 232 ldr x0, [sp, 32] add x0, x1, x0 mov x1, x0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl __isoc99_scanf ldr x0, [sp, 32] add x1, sp, 232 ldrb w0, [x1, x0] cmp w0, 42 beq .L24 add x1, sp, 72 ldr x0, [sp, 32] lsl x0, x0, 4 add x5, x1, x0 add x1, sp, 72 ldr x0, [sp, 32] lsl x0, x0, 4 add x0, x0, 4 add x2, x1, x0 add x1, sp, 72 ldr x0, [sp, 32] lsl x0, x0, 4 add x0, x0, 8 add x3, x1, x0 add x1, sp, 72 ldr x0, [sp, 32] lsl x0, x0, 4 add x0, x0, 12 add x0, x1, x0 mov x4, x0 mov x1, x5 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl __isoc99_scanf ldr x0, [sp, 32] add x0, x0, 1 str x0, [sp, 32] b .L4 .L24: nop str xzr, [sp, 40] .L15: add x1, sp, 20 add x0, sp, 16 mov x2, x1 mov x1, x0 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl __isoc99_scanf ldr s1, [sp, 16] fmov s0, 1.0e+1 fmul s0, s1, s0 fcvtzs x0, s0 str x0, [sp, 56] ldr s1, [sp, 20] fmov s0, 1.0e+1 fmul s0, s1, s0 fcvtzs x0, s0 str x0, [sp, 64] ldr x1, [sp, 56] mov x0, 34463 movk x0, 0x1, lsl 16 cmp x1, x0 bne .L5 ldr x1, [sp, 64] mov x0, 34463 movk x0, 0x1, lsl 16 cmp x1, x0 beq .L25 .L5: str xzr, [sp, 48] str xzr, [sp, 24] b .L7 .L13: ldr x0, [sp, 24] lsl x0, x0, 4 add x1, sp, 72 ldr s1, [x1, x0] ldr s0, [sp, 16] fcmpe s1, s0 bmi .L18 b .L8 .L18: ldr x0, [sp, 24] lsl x0, x0, 4 add x1, sp, 80 ldr s1, [x1, x0] ldr s0, [sp, 16] fcmpe s1, s0 bgt .L19 b .L8 .L19: ldr x0, [sp, 24] lsl x0, x0, 4 add x1, sp, 76 ldr s1, [x1, x0] ldr s0, [sp, 20] fcmpe s1, s0 bgt .L20 b .L8 .L20: ldr x0, [sp, 24] lsl x0, x0, 4 add x1, sp, 84 ldr s1, [x1, x0] ldr s0, [sp, 20] fcmpe s1, s0 bmi .L21 b .L8 .L21: mov x0, 1 str x0, [sp, 48] ldr x0, [sp, 40] add x1, x0, 1 ldr x0, [sp, 24] add x0, x0, 1 mov x2, x0 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl printf .L8: ldr x0, [sp, 24] add x0, x0, 1 str x0, [sp, 24] .L7: ldr x1, [sp, 24] ldr x0, [sp, 32] cmp x1, x0 blt .L13 ldr x0, [sp, 48] cmp x0, 0 bne .L14 ldr x0, [sp, 40] add x0, x0, 1 mov x1, x0 adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl printf .L14: ldr x0, [sp, 40] add x0, x0, 1 str x0, [sp, 40] b .L15 .L25: nop mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 248] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L17 bl __stack_chk_fail .L17: mov w0, w1 ldp x29, x30, [sp], 256 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string " %.2x" .text .align 2 .global show_bytes .type show_bytes, %function show_bytes: .LFB0: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] str xzr, [sp, 40] b .L2 .L3: ldr x1, [sp, 24] ldr x0, [sp, 40] add x0, x1, x0 ldrb w0, [x0] mov w1, w0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf ldr x0, [sp, 40] add x0, x0, 1 str x0, [sp, 40] .L2: ldr x1, [sp, 40] ldr x0, [sp, 16] cmp x1, x0 bcc .L3 mov w0, 10 bl putchar nop ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size show_bytes, .-show_bytes .align 2 .global main .type main, %function main: .LFB1: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 40] mov x1, 0 mov w0, 12345 str w0, [sp, 20] add x0, sp, 20 mov x1, 4 bl show_bytes mov w0, 12345 strh w0, [sp, 18] add x0, sp, 18 mov x1, 2 bl show_bytes mov x0, 12345 str x0, [sp, 24] add x0, sp, 24 mov x1, 8 bl show_bytes mov x0, 31336081391616 movk x0, 0x40c8, lsl 48 fmov d0, x0 str d0, [sp, 32] add x0, sp, 32 mov x1, 8 bl show_bytes mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 40] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L6 bl __stack_chk_fail .L6: mov w0, w1 ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global N .bss .align 2 .type N, %object .size N, 4 N: .zero 4 .global NUM .align 2 .type NUM, %object .size NUM, 4 NUM: .zero 4 .section .rodata .align 3 .LC0: .string "Enter values in matrix m%d:\n" .align 3 .LC1: .string "m%d[%d][%d]=" .align 3 .LC2: .string "%d" .text .align 2 .global matrix_inputs .type matrix_inputs, %function matrix_inputs: .LFB0: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -48 str x0, [sp, 40] adrp x0, N add x0, x0, :lo12:N ldr w19, [x0] sxtw x0, w19 sub x0, x0, #1 str x0, [sp, 56] sxtw x0, w19 mov x4, x0 mov x5, 0 lsr x0, x4, 59 lsl x3, x5, 5 orr x3, x0, x3 lsl x2, x4, 5 adrp x0, NUM add x0, x0, :lo12:NUM ldr w0, [x0] add w1, w0, 1 adrp x0, NUM add x0, x0, :lo12:NUM str w1, [x0] adrp x0, NUM add x0, x0, :lo12:NUM ldr w0, [x0] mov w1, w0 adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf str wzr, [sp, 48] b .L2 .L5: str wzr, [sp, 52] b .L3 .L4: adrp x0, NUM add x0, x0, :lo12:NUM ldr w0, [x0] ldr w3, [sp, 52] ldr w2, [sp, 48] mov w1, w0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl printf ldrsw x1, [sp, 48] sxtw x0, w19 mul x0, x1, x0 lsl x0, x0, 2 ldr x1, [sp, 40] add x1, x1, x0 ldrsw x0, [sp, 52] lsl x0, x0, 2 add x0, x1, x0 mov x1, x0 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl __isoc99_scanf ldr w0, [sp, 52] add w0, w0, 1 str w0, [sp, 52] .L3: adrp x0, N add x0, x0, :lo12:N ldr w0, [x0] ldr w1, [sp, 52] cmp w1, w0 blt .L4 ldr w0, [sp, 48] add w0, w0, 1 str w0, [sp, 48] .L2: adrp x0, N add x0, x0, :lo12:N ldr w0, [x0] ldr w1, [sp, 48] cmp w1, w0 blt .L5 nop nop ldr x19, [sp, 16] ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size matrix_inputs, .-matrix_inputs .section .rodata .align 3 .LC3: .string "Addition of matrix m1 and m2:" .align 3 .LC4: .string "%d\t" .text .align 2 .global matrixAddition .type matrixAddition, %function matrixAddition: .LFB1: .cfi_startproc stp x29, x30, [sp, -288]! .cfi_def_cfa_offset 288 .cfi_offset 29, -288 .cfi_offset 30, -280 mov x29, sp .cfi_def_cfa_register 29 stp x19, x20, [sp, 16] stp x21, x22, [sp, 32] stp x23, x24, [sp, 48] stp x25, x26, [sp, 64] stp x27, x28, [sp, 80] sub sp, sp, #16 .cfi_offset 19, -272 .cfi_offset 20, -264 .cfi_offset 21, -256 .cfi_offset 22, -248 .cfi_offset 23, -240 .cfi_offset 24, -232 .cfi_offset 25, -224 .cfi_offset 26, -216 .cfi_offset 27, -208 .cfi_offset 28, -200 str x0, [x29, 216] str x1, [x29, 208] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [x29, 280] mov x1, 0 adrp x0, N add x0, x0, :lo12:N ldr w28, [x0] sxtw x0, w28 sub x0, x0, #1 str x0, [x29, 240] sxtw x0, w28 mov x8, x0 mov x9, 0 lsr x0, x8, 59 lsl x5, x9, 5 orr x5, x0, x5 lsl x4, x8, 5 adrp x0, N add x0, x0, :lo12:N ldr w1, [x0] str w1, [x29, 108] sxtw x0, w1 sub x0, x0, #1 str x0, [x29, 248] sxtw x0, w1 mov x6, x0 mov x7, 0 lsr x0, x6, 59 lsl x3, x7, 5 orr x3, x0, x3 lsl x2, x6, 5 mov x0, sp str x0, [x29, 96] adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl puts adrp x0, N add x0, x0, :lo12:N ldr w1, [x0] adrp x0, N add x0, x0, :lo12:N ldr w2, [x0] sxtw x0, w1 sub x0, x0, #1 str x0, [x29, 256] sxtw x0, w1 str x0, [x29, 144] str xzr, [x29, 152] ldp x4, x5, [x29, 144] mov x0, x4 lsr x0, x0, 59 mov x3, x5 lsl x3, x3, 5 str x3, [x29, 200] ldr x3, [x29, 200] orr x0, x0, x3 str x0, [x29, 200] mov x0, x4 lsl x0, x0, 5 str x0, [x29, 192] sxtw x0, w1 lsl x19, x0, 2 sxtw x0, w2 sub x0, x0, #1 str x0, [x29, 264] sxtw x0, w1 mov x26, x0 mov x27, 0 sxtw x0, w2 mov x24, x0 mov x25, 0 mul x3, x26, x24 umulh x0, x26, x24 madd x0, x27, x24, x0 madd x0, x26, x25, x0 str x3, [x29, 128] str x0, [x29, 136] ldp x4, x5, [x29, 128] mov x0, x4 lsr x0, x0, 59 mov x3, x5 lsl x3, x3, 5 str x3, [x29, 184] ldr x3, [x29, 184] orr x0, x0, x3 str x0, [x29, 184] mov x0, x4 lsl x0, x0, 5 str x0, [x29, 176] sxtw x0, w1 mov x22, x0 mov x23, 0 sxtw x0, w2 mov x20, x0 mov x21, 0 mul x3, x22, x20 umulh x0, x22, x20 madd x0, x23, x20, x0 madd x0, x22, x21, x0 str x3, [x29, 112] str x0, [x29, 120] ldp x4, x5, [x29, 112] mov x0, x4 lsr x0, x0, 59 mov x3, x5 lsl x3, x3, 5 str x3, [x29, 168] ldr x3, [x29, 168] orr x0, x0, x3 str x0, [x29, 168] mov x0, x4 lsl x0, x0, 5 str x0, [x29, 160] sxtw x1, w1 sxtw x0, w2 mul x0, x1, x0 lsl x0, x0, 2 add x0, x0, 15 lsr x0, x0, 4 lsl x0, x0, 4 and x1, x0, -65536 sub x1, sp, x1 .L7: cmp sp, x1 beq .L8 sub sp, sp, #65536 str xzr, [sp, 1024] b .L7 .L8: and x1, x0, 65535 sub sp, sp, x1 str xzr, [sp] and x0, x0, 65535 cmp x0, 1024 bcc .L9 str xzr, [sp, 1024] .L9: add x0, sp, 16 add x0, x0, 3 lsr x0, x0, 2 lsl x0, x0, 2 str x0, [x29, 272] str wzr, [x29, 232] b .L10 .L13: str wzr, [x29, 236] b .L11 .L12: ldrsw x1, [x29, 232] sxtw x0, w28 mul x0, x1, x0 lsl x0, x0, 2 ldr x1, [x29, 216] add x0, x1, x0 ldrsw x1, [x29, 236] ldr w2, [x0, x1, lsl 2] ldrsw x1, [x29, 232] ldrsw x0, [x29, 108] mul x0, x1, x0 lsl x0, x0, 2 ldr x1, [x29, 208] add x0, x1, x0 ldrsw x1, [x29, 236] ldr w0, [x0, x1, lsl 2] lsr x1, x19, 2 add w2, w2, w0 ldr x0, [x29, 272] ldrsw x3, [x29, 236] ldrsw x4, [x29, 232] mul x1, x4, x1 add x1, x3, x1 str w2, [x0, x1, lsl 2] lsr x1, x19, 2 ldr x0, [x29, 272] ldrsw x2, [x29, 236] ldrsw x3, [x29, 232] mul x1, x3, x1 add x1, x2, x1 ldr w0, [x0, x1, lsl 2] mov w1, w0 adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl printf ldr w0, [x29, 236] add w0, w0, 1 str w0, [x29, 236] .L11: adrp x0, N add x0, x0, :lo12:N ldr w0, [x0] ldr w1, [x29, 236] cmp w1, w0 blt .L12 mov w0, 10 bl putchar ldr w0, [x29, 232] add w0, w0, 1 str w0, [x29, 232] .L10: adrp x0, N add x0, x0, :lo12:N ldr w0, [x0] ldr w1, [x29, 232] cmp w1, w0 blt .L13 ldr x0, [x29, 96] mov sp, x0 nop adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x2, [x29, 280] ldr x1, [x0] subs x2, x2, x1 mov x1, 0 beq .L14 bl __stack_chk_fail .L14: mov sp, x29 ldp x19, x20, [sp, 16] ldp x21, x22, [sp, 32] ldp x23, x24, [sp, 48] ldp x25, x26, [sp, 64] ldp x27, x28, [sp, 80] ldp x29, x30, [sp], 288 .cfi_restore 30 .cfi_restore 29 .cfi_restore 27 .cfi_restore 28 .cfi_restore 25 .cfi_restore 26 .cfi_restore 23 .cfi_restore 24 .cfi_restore 21 .cfi_restore 22 .cfi_restore 19 .cfi_restore 20 .cfi_def_cfa 31, 0 ret .cfi_endproc .LFE1: .size matrixAddition, .-matrixAddition .section .rodata .align 3 .LC5: .string "Enter order of the matrix-1:" .align 3 .LC6: .string "Enter order of the matrix-2:" .align 3 .LC7: .string "matrix addition is not applicable for given order" .text .align 2 .global main .type main, %function main: .LFB2: .cfi_startproc stp x29, x30, [sp, -416]! .cfi_def_cfa_offset 416 .cfi_offset 29, -416 .cfi_offset 30, -408 mov x29, sp .cfi_def_cfa_register 29 stp x19, x20, [sp, 16] stp x21, x22, [sp, 32] stp x23, x24, [sp, 48] stp x25, x26, [sp, 64] str x27, [sp, 80] sub sp, sp, #16 .cfi_offset 19, -400 .cfi_offset 20, -392 .cfi_offset 21, -384 .cfi_offset 22, -376 .cfi_offset 23, -368 .cfi_offset 24, -360 .cfi_offset 25, -352 .cfi_offset 26, -344 .cfi_offset 27, -336 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [x29, 408] mov x1, 0 adrp x0, .LC5 add x0, x0, :lo12:.LC5 bl printf adrp x0, N add x1, x0, :lo12:N adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl __isoc99_scanf adrp x0, .LC6 add x0, x0, :lo12:.LC6 bl printf add x0, x29, 356 mov x1, x0 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl __isoc99_scanf ldr w1, [x29, 356] adrp x0, N add x0, x0, :lo12:N ldr w0, [x0] cmp w1, w0 bne .L16 mov x0, sp mov x19, x0 adrp x0, N add x0, x0, :lo12:N ldr w2, [x0] adrp x0, N add x0, x0, :lo12:N ldr w3, [x0] sxtw x0, w2 sub x0, x0, #1 str x0, [x29, 360] sxtw x0, w2 mov x22, x0 mov x23, 0 lsr x0, x22, 59 lsl x21, x23, 5 orr x21, x0, x21 lsl x20, x22, 5 sxtw x0, w3 sub x0, x0, #1 str x0, [x29, 368] sxtw x0, w2 mov x26, x0 mov x27, 0 sxtw x0, w3 mov x24, x0 mov x25, 0 mul x1, x26, x24 umulh x0, x26, x24 madd x0, x27, x24, x0 madd x0, x26, x25, x0 str x1, [x29, 256] str x0, [x29, 264] ldp x4, x5, [x29, 256] mov x0, x4 lsr x0, x0, 59 mov x1, x5 lsl x1, x1, 5 str x1, [x29, 344] ldr x1, [x29, 344] orr x0, x0, x1 str x0, [x29, 344] mov x0, x4 lsl x0, x0, 5 str x0, [x29, 336] sxtw x0, w2 str x0, [x29, 240] str xzr, [x29, 248] sxtw x0, w3 str x0, [x29, 224] str xzr, [x29, 232] ldp x6, x7, [x29, 240] mov x0, x6 ldp x4, x5, [x29, 224] mov x1, x4 mul x1, x0, x1 mov x0, x6 mov x8, x4 umulh x0, x0, x8 mov x8, x7 mov x9, x4 madd x0, x8, x9, x0 mov x4, x5 madd x0, x6, x4, x0 str x1, [x29, 208] str x0, [x29, 216] ldp x4, x5, [x29, 208] mov x0, x4 lsr x0, x0, 59 mov x1, x5 lsl x1, x1, 5 str x1, [x29, 328] ldr x1, [x29, 328] orr x0, x0, x1 str x0, [x29, 328] mov x0, x4 lsl x0, x0, 5 str x0, [x29, 320] sxtw x1, w2 sxtw x0, w3 mul x0, x1, x0 lsl x0, x0, 2 add x0, x0, 15 lsr x0, x0, 4 lsl x0, x0, 4 and x1, x0, -65536 sub x1, sp, x1 .L17: cmp sp, x1 beq .L18 sub sp, sp, #65536 str xzr, [sp, 1024] b .L17 .L18: and x1, x0, 65535 sub sp, sp, x1 str xzr, [sp] and x0, x0, 65535 cmp x0, 1024 bcc .L19 str xzr, [sp, 1024] .L19: add x0, sp, 16 add x0, x0, 3 lsr x0, x0, 2 lsl x0, x0, 2 str x0, [x29, 376] adrp x0, N add x0, x0, :lo12:N ldr w1, [x0] adrp x0, N add x0, x0, :lo12:N ldr w2, [x0] sxtw x0, w1 sub x0, x0, #1 str x0, [x29, 384] sxtw x0, w1 str x0, [x29, 192] str xzr, [x29, 200] ldp x4, x5, [x29, 192] mov x0, x4 lsr x0, x0, 59 mov x3, x5 lsl x3, x3, 5 str x3, [x29, 312] ldr x3, [x29, 312] orr x0, x0, x3 str x0, [x29, 312] mov x0, x4 lsl x0, x0, 5 str x0, [x29, 304] sxtw x0, w2 sub x0, x0, #1 str x0, [x29, 392] sxtw x0, w1 str x0, [x29, 176] str xzr, [x29, 184] sxtw x0, w2 str x0, [x29, 160] str xzr, [x29, 168] ldp x6, x7, [x29, 176] mov x0, x6 ldp x4, x5, [x29, 160] mov x3, x4 mul x3, x0, x3 mov x0, x6 mov x8, x4 umulh x0, x0, x8 mov x8, x7 mov x9, x4 madd x0, x8, x9, x0 mov x4, x5 madd x0, x6, x4, x0 str x3, [x29, 144] str x0, [x29, 152] ldp x4, x5, [x29, 144] mov x0, x4 lsr x0, x0, 59 mov x3, x5 lsl x3, x3, 5 str x3, [x29, 296] ldr x3, [x29, 296] orr x0, x0, x3 str x0, [x29, 296] mov x0, x4 lsl x0, x0, 5 str x0, [x29, 288] sxtw x0, w1 str x0, [x29, 128] str xzr, [x29, 136] sxtw x0, w2 str x0, [x29, 112] str xzr, [x29, 120] ldp x6, x7, [x29, 128] mov x0, x6 ldp x4, x5, [x29, 112] mov x3, x4 mul x3, x0, x3 mov x0, x6 mov x8, x4 umulh x0, x0, x8 mov x8, x7 mov x9, x4 madd x0, x8, x9, x0 mov x4, x5 madd x0, x6, x4, x0 str x3, [x29, 96] str x0, [x29, 104] ldp x4, x5, [x29, 96] mov x0, x4 lsr x0, x0, 59 mov x3, x5 lsl x3, x3, 5 str x3, [x29, 280] ldr x3, [x29, 280] orr x0, x0, x3 str x0, [x29, 280] mov x0, x4 lsl x0, x0, 5 str x0, [x29, 272] sxtw x1, w1 sxtw x0, w2 mul x0, x1, x0 lsl x0, x0, 2 add x0, x0, 15 lsr x0, x0, 4 lsl x0, x0, 4 and x1, x0, -65536 sub x1, sp, x1 .L20: cmp sp, x1 beq .L21 sub sp, sp, #65536 str xzr, [sp, 1024] b .L20 .L21: and x1, x0, 65535 sub sp, sp, x1 str xzr, [sp] and x0, x0, 65535 cmp x0, 1024 bcc .L22 str xzr, [sp, 1024] .L22: add x0, sp, 16 add x0, x0, 3 lsr x0, x0, 2 lsl x0, x0, 2 str x0, [x29, 400] ldr x0, [x29, 376] bl matrix_inputs ldr x0, [x29, 400] bl matrix_inputs ldr x1, [x29, 400] ldr x0, [x29, 376] bl matrixAddition mov sp, x19 b .L23 .L16: adrp x0, .LC7 add x0, x0, :lo12:.LC7 bl printf .L23: mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [x29, 408] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L25 bl __stack_chk_fail .L25: mov w0, w1 mov sp, x29 ldp x19, x20, [sp, 16] ldp x21, x22, [sp, 32] ldp x23, x24, [sp, 48] ldp x25, x26, [sp, 64] ldr x27, [sp, 80] ldp x29, x30, [sp], 416 .cfi_restore 30 .cfi_restore 29 .cfi_restore 27 .cfi_restore 25 .cfi_restore 26 .cfi_restore 23 .cfi_restore 24 .cfi_restore 21 .cfi_restore 22 .cfi_restore 19 .cfi_restore 20 .cfi_def_cfa 31, 0 ret .cfi_endproc .LFE2: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global csqrtf .type csqrtf, %function csqrtf: .LFB0: .cfi_startproc stp x29, x30, [sp, -80]! .cfi_def_cfa_offset 80 .cfi_offset 29, -80 .cfi_offset 30, -72 mov x29, sp str d8, [sp, 16] .cfi_offset 72, -64 fmov s2, s0 fmov s0, s1 fmov s1, s2 str s1, [sp, 40] str s0, [sp, 44] ldr s0, [sp, 40] str s0, [sp, 52] ldr s0, [sp, 44] str s0, [sp, 56] ldr s0, [sp, 56] fcmp s0, #0.0 bne .L2 ldr s0, [sp, 52] fcmpe s0, #0.0 bmi .L21 b .L25 .L21: ldr s0, [sp, 52] fneg s0, s0 bl sqrtf movi v1.2s, #0 fmul s1, s0, s1 movi v2.2s, #0 fadd s1, s1, s2 str s1, [sp, 72] str s0, [sp, 76] ldr s1, [sp, 72] ldr s0, [sp, 76] b .L5 .L25: ldr s0, [sp, 52] fcmp s0, #0.0 bne .L6 ldr s0, [sp, 56] movi v1.2s, #0 fmul s1, s0, s1 movi v2.2s, #0 fadd s1, s1, s2 b .L5 .L6: ldr s8, [sp, 56] ldr s0, [sp, 52] bl sqrtf fmov s1, s0 movi v0.2s, #0 fmul s0, s8, s0 fadd s0, s1, s0 str s0, [sp, 72] str s8, [sp, 76] ldr s1, [sp, 72] ldr s0, [sp, 76] b .L5 .L2: ldr s0, [sp, 52] fcmp s0, #0.0 bne .L7 ldr s0, [sp, 56] fabs s0, s0 str s0, [sp, 60] ldr s1, [sp, 60] fmov s0, 5.0e-1 fmul s0, s1, s0 bl sqrtf str s0, [sp, 60] ldr s0, [sp, 56] fcmpe s0, #0.0 bgt .L22 b .L26 .L22: ldr s0, [sp, 60] movi v1.2s, #0 fmul s2, s0, s1 ldr s1, [sp, 60] fadd s1, s2, s1 str s1, [sp, 72] str s0, [sp, 76] b .L10 .L26: ldr s0, [sp, 60] movi v1.2s, #0 fmul s1, s0, s1 ldr s2, [sp, 60] fsub s1, s2, s1 fneg s0, s0 str s1, [sp, 72] str s0, [sp, 76] .L10: ldr s1, [sp, 72] ldr s0, [sp, 76] b .L5 .L7: ldr s0, [sp, 52] fabs s1, s0 fmov s0, 4.0e+0 fcmpe s1, s0 bgt .L11 ldr s0, [sp, 56] fabs s1, s0 fmov s0, 4.0e+0 fcmpe s1, s0 bgt .L11 b .L27 .L11: ldr s1, [sp, 52] fmov s0, 2.5e-1 fmul s0, s1, s0 str s0, [sp, 52] ldr s1, [sp, 56] fmov s0, 2.5e-1 fmul s0, s1, s0 str s0, [sp, 56] fmov s0, 2.0e+0 str s0, [sp, 68] b .L14 .L27: ldr s0, [sp, 52] mov w0, 1283457024 fmov s1, w0 fmul s0, s0, s1 str s0, [sp, 52] ldr s0, [sp, 56] mov w0, 1283457024 fmov s1, w0 fmul s0, s0, s1 str s0, [sp, 56] movi v0.2s, 0x39, lsl 24 str s0, [sp, 68] .L14: ldr s0, [sp, 56] movi v1.2s, #0 fmul s2, s0, s1 ldr s1, [sp, 52] fadd s1, s2, s1 str s1, [sp, 72] str s0, [sp, 76] ldr s0, [sp, 72] ldr s1, [sp, 76] bl cabsf str s0, [sp, 60] ldr s0, [sp, 52] fcmpe s0, #0.0 bgt .L23 b .L28 .L23: ldr s1, [sp, 60] fmov s0, 5.0e-1 fmul s1, s1, s0 ldr s2, [sp, 52] fmov s0, 5.0e-1 fmul s0, s2, s0 fadd s0, s1, s0 bl sqrtf str s0, [sp, 64] ldr s1, [sp, 56] fmov s0, 5.0e-1 fmul s1, s1, s0 ldr s0, [sp, 64] fdiv s0, s1, s0 fabs s0, s0 ldr s1, [sp, 68] fmul s0, s1, s0 str s0, [sp, 60] ldr s1, [sp, 64] ldr s0, [sp, 68] fmul s0, s1, s0 str s0, [sp, 64] b .L17 .L28: ldr s1, [sp, 60] fmov s0, 5.0e-1 fmul s1, s1, s0 ldr s2, [sp, 52] fmov s0, 5.0e-1 fmul s0, s2, s0 fsub s0, s1, s0 bl sqrtf str s0, [sp, 60] ldr s1, [sp, 56] fmov s0, 5.0e-1 fmul s1, s1, s0 ldr s0, [sp, 60] fdiv s0, s1, s0 fabs s0, s0 ldr s1, [sp, 68] fmul s0, s1, s0 str s0, [sp, 64] ldr s1, [sp, 60] ldr s0, [sp, 68] fmul s0, s1, s0 str s0, [sp, 60] .L17: ldr s0, [sp, 56] fcmpe s0, #0.0 bmi .L24 b .L29 .L24: ldr s0, [sp, 60] movi v1.2s, #0 fmul s1, s0, s1 ldr s2, [sp, 64] fsub s1, s2, s1 fneg s0, s0 str s1, [sp, 72] str s0, [sp, 76] b .L20 .L29: ldr s0, [sp, 60] movi v1.2s, #0 fmul s2, s0, s1 ldr s1, [sp, 64] fadd s1, s2, s1 str s1, [sp, 72] str s0, [sp, 76] .L20: ldr s1, [sp, 72] ldr s0, [sp, 76] .L5: fmov s2, s1 fmov s1, s0 fmov s0, s2 ldr d8, [sp, 16] ldp x29, x30, [sp], 80 .cfi_restore 30 .cfi_restore 29 .cfi_restore 72 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size csqrtf, .-csqrtf ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global colorname .section .rodata .align 3 .LC0: .string "#232c31" .align 3 .LC1: .string "#2a5491" .align 3 .LC2: .string "#237986" .align 3 .LC3: .string "#a03b1e" .align 3 .LC4: .string "#484d79" .align 3 .LC5: .string "#c59820" .align 3 .LC6: .string "#b02f30" .align 3 .LC7: .string "#9ea7a6" .align 3 .LC8: .string "#3f4944" .align 3 .LC9: .string "#b5d8f6" .section .data.rel.local,"aw" .align 3 .type colorname, %object .size colorname, 2064 colorname: .xword .LC0 .xword .LC1 .xword .LC2 .xword .LC3 .xword .LC4 .xword .LC5 .xword .LC6 .xword .LC7 .xword .LC8 .xword .LC1 .xword .LC2 .xword .LC3 .xword .LC4 .xword .LC5 .xword .LC6 .xword .LC9 .zero 1920 .xword .LC0 .xword .LC7 .global defaultfg .data .align 2 .type defaultfg, %object .size defaultfg, 4 defaultfg: .word 257 .global defaultbg .align 2 .type defaultbg, %object .size defaultbg, 4 defaultbg: .word 256 .global defaultcs .align 2 .type defaultcs, %object .size defaultcs, 4 defaultcs: .word 257 .global defaultrcs .align 2 .type defaultrcs, %object .size defaultrcs, 4 defaultrcs: .word 256 .global defaultitalic .align 2 .type defaultitalic, %object .size defaultitalic, 4 defaultitalic: .word 7 .global defaultunderline .align 2 .type defaultunderline, %object .size defaultunderline, 4 defaultunderline: .word 7 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global foo .type foo, %function foo: .LFB0: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp .cfi_def_cfa_register 29 sub sp, sp, #16 str w0, [x29, 28] str x1, [x29, 16] str w2, [x29, 24] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [x29, 56] mov x1, 0 mov x0, sp mov x3, x0 ldr w0, [x29, 28] sxtw x1, w0 sub x1, x1, #1 str x1, [x29, 40] sxtw x1, w0 mov x10, x1 mov x11, 0 lsr x1, x10, 59 lsl x7, x11, 5 orr x7, x1, x7 lsl x6, x10, 5 sxtw x1, w0 mov x8, x1 mov x9, 0 lsr x1, x8, 59 lsl x5, x9, 5 orr x5, x1, x5 lsl x4, x8, 5 sxtw x0, w0 lsl x0, x0, 2 add x0, x0, 15 lsr x0, x0, 4 lsl x0, x0, 4 and x1, x0, -65536 sub x1, sp, x1 .L2: cmp sp, x1 beq .L3 sub sp, sp, #65536 str xzr, [sp, 1024] b .L2 .L3: and x1, x0, 65535 sub sp, sp, x1 str xzr, [sp] and x0, x0, 65535 cmp x0, 1024 bcc .L4 str xzr, [sp, 1024] .L4: add x0, sp, 16 add x0, x0, 3 lsr x0, x0, 2 lsl x0, x0, 2 str x0, [x29, 48] str wzr, [x29, 36] b .L5 .L6: ldrsw x0, [x29, 36] lsl x0, x0, 2 ldr x1, [x29, 16] add x0, x1, x0 ldr w2, [x0] ldr x0, [x29, 48] ldrsw x1, [x29, 36] str w2, [x0, x1, lsl 2] ldr w0, [x29, 36] add w0, w0, 1 str w0, [x29, 36] .L5: ldr w1, [x29, 24] ldr w0, [x29, 36] cmp w1, w0 bge .L6 ldr w0, [x29, 36] mov sp, x3 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [x29, 56] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L8 bl __stack_chk_fail .L8: mov w0, w1 mov sp, x29 ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa 31, 0 ret .cfi_endproc .LFE0: .size foo, .-foo .align 2 .global main .type main, %function main: .LFB1: .cfi_startproc stp x29, x30, [sp, -432]! .cfi_def_cfa_offset 432 .cfi_offset 29, -432 .cfi_offset 30, -424 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 424] mov x1, 0 str wzr, [sp, 20] b .L10 .L11: add x0, sp, 24 ldr w2, [sp, 20] mov x1, x0 ldr w0, [sp, 20] bl foo mov w2, w0 ldrsw x0, [sp, 20] lsl x0, x0, 2 add x1, sp, 24 str w2, [x1, x0] ldr w0, [sp, 20] add w0, w0, 1 str w0, [sp, 20] .L10: ldr w0, [sp, 20] cmp w0, 99 ble .L11 str wzr, [sp, 20] b .L12 .L15: ldrsw x0, [sp, 20] lsl x0, x0, 2 add x1, sp, 24 ldr w0, [x1, x0] ldr w1, [sp, 20] cmp w1, w0 beq .L12 nop .L13: mov w0, 1 b .L16 .L12: ldr w0, [sp, 20] cmp w0, 99 ble .L15 mov w0, 0 .L16: mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 424] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L17 bl __stack_chk_fail .L17: mov w0, w1 ldp x29, x30, [sp], 432 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "Usage : %s msgid msgtype\n" .align 3 .LC1: .string "msgrcv" .align 3 .LC2: .string "%c\n" .text .align 2 .global main .type main, %function main: .LFB6: .cfi_startproc stp x29, x30, [sp, -80]! .cfi_def_cfa_offset 80 .cfi_offset 29, -80 .cfi_offset 30, -72 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 72] mov x1, 0 ldr w0, [sp, 28] cmp w0, 3 beq .L2 adrp x0, :got:stderr ldr x0, [x0, #:got_lo12:stderr] ldr x3, [x0] ldr x0, [sp, 16] ldr x0, [x0] mov x2, x0 adrp x0, .LC0 add x1, x0, :lo12:.LC0 mov x0, x3 bl fprintf mov w0, 1 b .L5 .L2: ldr x0, [sp, 16] add x0, x0, 8 ldr x0, [x0] bl atoi str w0, [sp, 40] ldr x0, [sp, 16] add x0, x0, 16 ldr x0, [x0] bl atoi str w0, [sp, 44] ldrsw x1, [sp, 44] add x0, sp, 48 mov w4, 0 mov x3, x1 mov x2, 10 mov x1, x0 ldr w0, [sp, 40] bl msgrcv cmp x0, 0 bge .L4 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl perror mov w0, 1 b .L5 .L4: ldrb w0, [sp, 56] mov w1, w0 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl printf mov w0, 0 .L5: mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 72] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L6 bl __stack_chk_fail .L6: mov w0, w1 ldp x29, x30, [sp], 80 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .global _REG_OPT .bss .align 3 .type _REG_OPT, %object .size _REG_OPT, 16 _REG_OPT: .zero 16 .section .rodata .align 3 .LC0: .string "|" .text .align 2 .global matchs .type matchs, %function matchs: .LFB6: .cfi_startproc stp x29, x30, [sp, -48]! .cfi_def_cfa_offset 48 .cfi_offset 29, -48 .cfi_offset 30, -40 mov x29, sp str x0, [sp, 24] str x1, [sp, 16] adrp x0, .LC0 add x1, x0, :lo12:.LC0 ldr x0, [sp, 24] bl strtok str x0, [sp, 32] b .L2 .L5: ldr x0, [sp, 16] str x0, [sp, 40] ldr x1, [sp, 40] ldr x0, [sp, 32] bl match cmp w0, 0 beq .L3 mov w0, 1 b .L4 .L3: adrp x0, .LC0 add x1, x0, :lo12:.LC0 mov x0, 0 bl strtok str x0, [sp, 32] .L2: ldr x0, [sp, 32] cmp x0, 0 bne .L5 mov w0, 0 .L4: ldp x29, x30, [sp], 48 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE6: .size matchs, .-matchs .section .rodata .align 3 .LC1: .string ".^*$" .text .align 2 .global match .type match, %function match: .LFB7: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -48 str x0, [sp, 40] str x1, [sp, 32] str wzr, [sp, 60] ldr x0, [sp, 40] ldrb w0, [x0] cmp w0, 94 bne .L7 ldr x0, [sp, 40] add x0, x0, 1 ldr x1, [sp, 32] bl matchreg b .L8 .L7: ldr x0, [sp, 40] ldrb w0, [x0] mov w1, w0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl strchr cmp x0, 0 bne .L9 ldrsw x0, [sp, 60] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] cmp w0, 92 bne .L11 ldr w0, [sp, 60] add w0, w0, 1 str w0, [sp, 60] b .L11 .L14: ldr x0, [sp, 32] add x0, x0, 1 str x0, [sp, 32] .L11: ldr x0, [sp, 32] ldrb w0, [x0] cmp w0, 0 beq .L9 adrp x0, _REG_OPT add x0, x0, :lo12:_REG_OPT ldr w0, [x0] cmp w0, 0 beq .L12 ldr x0, [sp, 32] ldrb w0, [x0] cmp w0, 10 beq .L9 .L12: adrp x0, _REG_OPT add x0, x0, :lo12:_REG_OPT ldr w0, [x0, 4] cmp w0, 0 beq .L13 ldr x0, [sp, 32] ldrb w1, [x0] ldrsw x0, [sp, 60] ldr x2, [sp, 40] add x0, x2, x0 ldrb w0, [x0] cmp w1, w0 bne .L14 b .L9 .L13: ldr x0, [sp, 32] ldrb w0, [x0] bl tolower mov w19, w0 ldrsw x0, [sp, 60] ldr x1, [sp, 40] add x0, x1, x0 ldrb w0, [x0] bl tolower cmp w19, w0 bne .L14 .L9: ldr x1, [sp, 32] ldr x0, [sp, 40] bl matchreg .L8: ldr x19, [sp, 16] ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE7: .size match, .-match .align 2 .global matchreg .type matchreg, %function matchreg: .LFB8: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -48 str x0, [sp, 40] str x1, [sp, 32] ldr x0, [sp, 40] ldrb w0, [x0] cmp w0, 0 bne .L16 mov w0, 1 b .L17 .L16: ldr x0, [sp, 40] ldrb w0, [x0] cmp w0, 92 bne .L18 ldr x0, [sp, 40] add x0, x0, 1 ldrb w3, [x0] ldr x0, [sp, 40] add x0, x0, 1 ldr x2, [sp, 32] mov x1, x0 mov w0, w3 bl matchchar b .L17 .L18: ldr x0, [sp, 40] ldrb w0, [x0] cmp w0, 36 bne .L19 ldr x0, [sp, 40] add x0, x0, 1 ldrb w0, [x0] cmp w0, 0 bne .L19 ldr x0, [sp, 32] ldrb w0, [x0] cmp w0, 0 beq .L20 adrp x0, _REG_OPT add x0, x0, :lo12:_REG_OPT ldr w0, [x0] cmp w0, 0 beq .L21 ldr x0, [sp, 32] ldrb w0, [x0] cmp w0, 10 bne .L21 .L20: mov w0, 1 b .L17 .L21: mov w0, 0 b .L17 .L19: ldr x0, [sp, 40] add x0, x0, 1 ldrb w0, [x0] cmp w0, 42 bne .L23 ldr x0, [sp, 40] ldrb w0, [x0] cmp w0, 46 bne .L24 b .L25 .L27: ldr x0, [sp, 40] add x0, x0, 2 ldr x1, [sp, 32] bl matchreg cmp w0, 0 beq .L26 mov w0, 1 b .L17 .L26: ldr x0, [sp, 32] add x0, x0, 1 str x0, [sp, 32] .L25: ldr x0, [sp, 32] ldrb w0, [x0] cmp w0, 0 bne .L27 b .L28 .L24: ldr x0, [sp, 40] ldrb w0, [x0] strb w0, [sp, 55] ldr x0, [sp, 32] str x0, [sp, 56] b .L29 .L35: ldr x0, [sp, 40] add x0, x0, 2 ldr x1, [sp, 56] bl matchreg cmp w0, 0 beq .L30 b .L31 .L33: ldr x0, [sp, 32] add x0, x0, 1 str x0, [sp, 32] .L31: ldr x0, [sp, 32] ldrb w0, [x0] cmp w0, 0 beq .L32 ldr x1, [sp, 32] ldr x0, [sp, 56] cmp x1, x0 beq .L32 ldr x0, [sp, 32] ldrb w0, [x0] ldrb w1, [sp, 55] cmp w1, w0 beq .L33 adrp x0, _REG_OPT add x0, x0, :lo12:_REG_OPT ldr w0, [x0, 4] cmp w0, 0 bne .L32 ldr x0, [sp, 32] ldrb w0, [x0] bl tolower mov w19, w0 ldrb w0, [sp, 55] bl tolower cmp w19, w0 beq .L33 .L32: ldr x1, [sp, 32] ldr x0, [sp, 56] cmp x1, x0 bne .L34 mov w0, 1 b .L17 .L34: mov w0, 0 b .L17 .L30: ldr x0, [sp, 56] add x0, x0, 1 str x0, [sp, 56] .L29: ldr x0, [sp, 56] ldrb w0, [x0] cmp w0, 0 bne .L35 .L28: ldr x0, [sp, 40] add x0, x0, 2 ldr x1, [sp, 32] bl matchreg b .L17 .L23: ldr x0, [sp, 40] ldrb w0, [x0] cmp w0, 46 bne .L36 ldr x0, [sp, 32] ldrb w0, [x0] cmp w0, 0 beq .L36 ldr x0, [sp, 32] add x0, x0, 1 str x0, [sp, 32] ldr x0, [sp, 40] add x0, x0, 1 ldr x1, [sp, 32] bl matchreg b .L17 .L36: ldr x0, [sp, 40] ldrb w0, [x0] ldr x2, [sp, 32] ldr x1, [sp, 40] bl matchchar .L17: ldr x19, [sp, 16] ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE8: .size matchreg, .-matchreg .align 2 .global matchchar .type matchchar, %function matchchar: .LFB9: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp str x19, [sp, 16] .cfi_offset 19, -48 strb w0, [sp, 63] str x1, [sp, 48] str x2, [sp, 40] nop ldr x0, [sp, 40] ldrb w0, [x0] cmp w0, 0 beq .L41 b .L43 .L42: ldr x0, [sp, 40] add x0, x0, 1 str x0, [sp, 40] ldr x0, [sp, 48] add x0, x0, 1 ldr x1, [sp, 40] bl matchreg cmp w0, 0 beq .L39 mov w0, 1 b .L40 .L39: ldr x1, [sp, 40] ldr x0, [sp, 48] bl matchreg b .L40 .L43: ldr x0, [sp, 40] ldrb w0, [x0] ldrb w1, [sp, 63] cmp w1, w0 beq .L42 adrp x0, _REG_OPT add x0, x0, :lo12:_REG_OPT ldr w0, [x0, 4] cmp w0, 0 bne .L41 ldr x0, [sp, 40] ldrb w0, [x0] bl tolower mov w19, w0 ldrb w0, [sp, 63] bl tolower cmp w19, w0 beq .L42 .L41: mov w0, 0 .L40: ldr x19, [sp, 16] ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_restore 19 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE9: .size matchchar, .-matchchar .section .rodata .align 3 .LC2: .string "Error: less regexp\n" .align 3 .LC3: .string "-h" .align 3 .LC4: .string "\n -h : help info\n -v : inverse match\n -l : do not use \\n as endline\n -i : up low \n" .align 3 .LC5: .string "-i" .align 3 .LC6: .string "-l" .align 3 .LC7: .string "-v" .align 3 .LC8: .string "Error: unknow regex\n" .align 3 .LC9: .string "Error: too long regex\n" .align 3 .LC10: .string "fstat" .align 3 .LC11: .string "fgets" .align 3 .LC12: .string "match: %s\n" .align 3 .LC13: .string "[%s] not match\n" .align 3 .LC14: .string "%s" .text .align 2 .global main .type main, %function main: .LFB10: .cfi_startproc mov x12, 4448 sub sp, sp, x12 .cfi_def_cfa_offset 4448 stp x29, x30, [sp] .cfi_offset 29, -4448 .cfi_offset 30, -4440 mov x29, sp str w0, [sp, 28] str x1, [sp, 16] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 4440] mov x1, 0 str wzr, [sp, 36] b .L45 .L46: adrp x0, _REG_OPT add x0, x0, :lo12:_REG_OPT ldrsw x1, [sp, 36] str wzr, [x0, x1, lsl 2] ldr w0, [sp, 36] add w0, w0, 1 str w0, [sp, 36] .L45: ldr w0, [sp, 36] cmp w0, 3 ble .L46 adrp x0, _REG_OPT add x0, x0, :lo12:_REG_OPT mov w1, 1 str w1, [x0] ldr w0, [sp, 28] cmp w0, 1 bgt .L47 adrp x0, .LC2 add x1, x0, :lo12:.LC2 mov w0, 2 bl dprintf mov w0, -1 b .L72 .L47: str wzr, [sp, 40] mov w0, -1 str w0, [sp, 44] mov w0, 1 str w0, [sp, 56] mov w0, 1 str w0, [sp, 48] b .L49 .L55: ldrsw x0, [sp, 48] lsl x0, x0, 3 ldr x1, [sp, 16] add x0, x1, x0 ldr x2, [x0] adrp x0, .LC3 add x1, x0, :lo12:.LC3 mov x0, x2 bl strcmp cmp w0, 0 bne .L50 adrp x0, .LC4 add x0, x0, :lo12:.LC4 bl puts mov w0, 0 b .L72 .L50: ldrsw x0, [sp, 48] lsl x0, x0, 3 ldr x1, [sp, 16] add x0, x1, x0 ldr x2, [x0] adrp x0, .LC5 add x1, x0, :lo12:.LC5 mov x0, x2 bl strcmp cmp w0, 0 bne .L51 adrp x0, _REG_OPT add x0, x0, :lo12:_REG_OPT mov w1, 1 str w1, [x0, 4] b .L52 .L51: ldrsw x0, [sp, 48] lsl x0, x0, 3 ldr x1, [sp, 16] add x0, x1, x0 ldr x2, [x0] adrp x0, .LC6 add x1, x0, :lo12:.LC6 mov x0, x2 bl strcmp cmp w0, 0 bne .L53 adrp x0, _REG_OPT add x0, x0, :lo12:_REG_OPT str wzr, [x0] b .L52 .L53: ldrsw x0, [sp, 48] lsl x0, x0, 3 ldr x1, [sp, 16] add x0, x1, x0 ldr x2, [x0] adrp x0, .LC7 add x1, x0, :lo12:.LC7 mov x0, x2 bl strcmp cmp w0, 0 bne .L54 mov w0, 1 str w0, [sp, 40] b .L52 .L54: ldr w0, [sp, 48] str w0, [sp, 44] .L52: ldr w0, [sp, 48] add w0, w0, 1 str w0, [sp, 48] .L49: ldr w1, [sp, 48] ldr w0, [sp, 28] cmp w1, w0 blt .L55 ldr w0, [sp, 44] cmp w0, 0 bge .L56 adrp x0, .LC8 add x1, x0, :lo12:.LC8 mov w0, 2 bl dprintf mov w0, -1 b .L72 .L56: ldrsw x0, [sp, 44] lsl x0, x0, 3 ldr x1, [sp, 16] add x0, x1, x0 ldr x0, [x0] bl strlen cmp x0, 128 bls .L57 adrp x0, .LC9 add x1, x0, :lo12:.LC9 mov w0, 2 bl dprintf mov w0, -1 b .L72 .L57: mov w0, 1 str w0, [sp, 52] add x0, sp, 80 mov x1, x0 mov w0, 0 bl fstat cmp w0, 0 bge .L58 adrp x0, .LC10 add x0, x0, :lo12:.LC10 bl perror mov w0, -1 b .L72 .L58: ldr w0, [sp, 96] and w0, w0, 61440 cmp w0, 4096 bne .L59 mov w0, 2 str w0, [sp, 52] .L59: adrp x0, match add x0, x0, :lo12:match str x0, [sp, 64] ldrsw x0, [sp, 44] lsl x0, x0, 3 ldr x1, [sp, 16] add x0, x1, x0 ldr x0, [x0] mov w1, 124 bl strchr cmp x0, 0 beq .L60 adrp x0, matchs add x0, x0, :lo12:matchs str x0, [sp, 64] .L60: add x0, sp, 512 stp xzr, xzr, [x0, -168] add x0, sp, 360 mov x1, 4080 mov x2, x1 mov w1, 0 bl memset stp xzr, xzr, [sp, 208] add x0, sp, 224 movi v0.4s, 0 stp q0, q0, [x0] stp q0, q0, [x0, 32] stp q0, q0, [x0, 64] str q0, [x0, 96] umov w1, v0.b[0] strb w1, [x0, 112] ldr w0, [sp, 52] cmp w0, 1 bne .L61 .L66: adrp x0, :got:stdin ldr x0, [x0, #:got_lo12:stdin] ldr x1, [x0] add x0, sp, 344 mov x2, x1 mov w1, 4095 bl fgets cmp x0, 0 bne .L62 adrp x0, .LC11 add x0, x0, :lo12:.LC11 bl perror b .L63 .L62: add x0, sp, 344 bl strlen str w0, [sp, 60] ldr w0, [sp, 60] sub w0, w0, #1 sxtw x0, w0 add x1, sp, 344 ldrb w0, [x1, x0] cmp w0, 10 bne .L64 ldr w0, [sp, 60] sub w0, w0, #1 sxtw x0, w0 add x1, sp, 344 strb wzr, [x1, x0] .L64: ldrsw x0, [sp, 44] lsl x0, x0, 3 ldr x1, [sp, 16] add x0, x1, x0 ldr x1, [x0] add x0, sp, 208 bl strcpy add x1, sp, 344 add x0, sp, 208 ldr x2, [sp, 64] blr x2 cmp w0, 0 beq .L65 add x0, sp, 344 mov x1, x0 adrp x0, .LC12 add x0, x0, :lo12:.LC12 bl printf b .L66 .L65: add x0, sp, 344 mov x1, x0 adrp x0, .LC13 add x0, x0, :lo12:.LC13 bl printf .L63: b .L66 .L61: ldr w0, [sp, 52] cmp w0, 2 bne .L74 nop .L68: adrp x0, :got:stdin ldr x0, [x0, #:got_lo12:stdin] ldr x1, [x0] add x0, sp, 344 mov x2, x1 mov w1, 4095 bl fgets str x0, [sp, 72] ldr x0, [sp, 72] cmp x0, 0 beq .L75 ldrsw x0, [sp, 44] lsl x0, x0, 3 ldr x1, [sp, 16] add x0, x1, x0 ldr x1, [x0] add x0, sp, 208 bl strcpy add x1, sp, 344 add x0, sp, 208 ldr x2, [sp, 64] blr x2 cmp w0, 0 beq .L70 ldr w0, [sp, 40] cmp w0, 0 bne .L68 add x0, sp, 344 mov x1, x0 adrp x0, .LC14 add x0, x0, :lo12:.LC14 bl printf b .L68 .L70: ldr w0, [sp, 40] cmp w0, 0 beq .L68 add x0, sp, 344 mov x1, x0 adrp x0, .LC14 add x0, x0, :lo12:.LC14 bl printf b .L68 .L74: nop b .L67 .L75: nop .L67: mov w0, 0 .L72: mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 4440] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L73 bl __stack_chk_fail .L73: mov w0, w1 ldp x29, x30, [sp] mov x12, 4448 add sp, sp, x12 .cfi_restore 29 .cfi_restore 30 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE10: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "The sine of %lf is %lf\n" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp adrp x0, .LC1 ldr d0, [x0, #:lo12:.LC1] str d0, [sp, 16] ldr d0, [sp, 16] bl sin str d0, [sp, 24] ldr d1, [sp, 24] ldr d0, [sp, 16] adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl printf mov w0, 0 ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main .section .rodata .align 3 .LC1: .word 942502757 .word 1071694162 ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .section .rodata .align 3 .LC0: .string "%f" .align 3 .LC1: .string "%.2f\n" .text .align 2 .global main .type main, %function main: .LFB0: .cfi_startproc stp x29, x30, [sp, -32]! .cfi_def_cfa_offset 32 .cfi_offset 29, -32 .cfi_offset 30, -24 mov x29, sp mov x1, 2 mov x0, 5 bl calloc str x0, [sp, 16] mov x1, 4 ldr x0, [sp, 16] bl realloc str x0, [sp, 24] ldr x1, [sp, 24] adrp x0, .LC0 add x0, x0, :lo12:.LC0 bl __isoc99_scanf ldr x0, [sp, 24] ldr s0, [x0] fcvt d0, s0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl printf ldr x0, [sp, 16] bl free ldr x0, [sp, 24] bl free nop ldp x29, x30, [sp], 32 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size main, .-main ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .type u16_mbtouc_aux, %function u16_mbtouc_aux: .LFB0: .cfi_startproc sub sp, sp, #48 .cfi_def_cfa_offset 48 str x0, [sp, 24] str x1, [sp, 16] str x2, [sp, 8] ldr x0, [sp, 16] ldrh w0, [x0] strh w0, [sp, 46] ldrh w1, [sp, 46] mov w0, 56319 cmp w1, w0 bhi .L2 ldr x0, [sp, 8] cmp x0, 1 bls .L3 ldr x0, [sp, 16] add x0, x0, 2 ldrh w1, [x0] mov w0, 56319 cmp w1, w0 bls .L2 ldr x0, [sp, 16] add x0, x0, 2 ldrh w1, [x0] mov w0, 57343 cmp w1, w0 bhi .L2 ldrh w1, [sp, 46] mov w0, -55296 add w0, w1, w0 lsl w0, w0, 10 add w1, w0, 65536 ldr x0, [sp, 16] add x0, x0, 2 ldrh w0, [x0] mov w2, w0 mov w0, -56320 add w0, w2, w0 add w0, w1, w0 mov w1, w0 ldr x0, [sp, 24] str w1, [x0] mov w0, 2 b .L4 .L3: ldr x0, [sp, 24] mov w1, 65533 str w1, [x0] ldr x0, [sp, 8] b .L4 .L2: ldr x0, [sp, 24] mov w1, 65533 str w1, [x0] mov w0, 1 .L4: add sp, sp, 48 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size u16_mbtouc_aux, .-u16_mbtouc_aux ```
### Human: Write a random program in ARM assembly### Assistant: ``` .text .align 2 .global dateUpdate .type dateUpdate, %function dateUpdate: .LFB0: .cfi_startproc stp x29, x30, [sp, -96]! .cfi_def_cfa_offset 96 .cfi_offset 29, -96 .cfi_offset 30, -88 mov x29, sp stp x19, x20, [sp, 16] str x21, [sp, 32] .cfi_offset 19, -80 .cfi_offset 20, -72 .cfi_offset 21, -64 str x0, [sp, 48] ldr w0, [sp, 56] bfi w0, w1, 0, 32 str w0, [sp, 56] ldr w19, [sp, 52] ldr x0, [sp, 48] ldr w1, [sp, 56] bl numberOfDays cmp w19, w0 beq .L2 ldr w0, [sp, 52] add w0, w0, 1 str w0, [sp, 68] ldr w0, [sp, 48] str w0, [sp, 64] ldr w0, [sp, 56] str w0, [sp, 72] b .L3 .L2: ldr w0, [sp, 48] cmp w0, 12 bne .L4 mov w0, 1 str w0, [sp, 68] mov w0, 1 str w0, [sp, 64] ldr w0, [sp, 56] add w0, w0, 1 str w0, [sp, 72] b .L3 .L4: mov w0, 1 str w0, [sp, 68] ldr w0, [sp, 48] add w0, w0, 1 str w0, [sp, 64] ldr w0, [sp, 56] str w0, [sp, 72] .L3: add x0, sp, 80 add x1, sp, 64 ldr x2, [x1] str x2, [x0] ldr w1, [x1, 8] str w1, [x0, 8] ldr x2, [sp, 80] mov x0, 0 ldr w1, [sp, 88] bfi x0, x1, 0, 32 mov x20, x2 mov x21, x0 mov x0, x20 mov x1, x21 ldp x19, x20, [sp, 16] ldr x21, [sp, 32] ldp x29, x30, [sp], 96 .cfi_restore 30 .cfi_restore 29 .cfi_restore 21 .cfi_restore 19 .cfi_restore 20 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE0: .size dateUpdate, .-dateUpdate .align 2 .global numberOfDays .type numberOfDays, %function numberOfDays: .LFB1: .cfi_startproc stp x29, x30, [sp, -96]! .cfi_def_cfa_offset 96 .cfi_offset 29, -96 .cfi_offset 30, -88 mov x29, sp str x0, [sp, 16] ldr w0, [sp, 24] bfi w0, w1, 0, 32 str w0, [sp, 24] adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 88] mov x1, 0 adrp x0, .LC0 add x1, x0, :lo12:.LC0 add x0, sp, 40 ldp q0, q1, [x1] stp q0, q1, [x0] ldr q0, [x1, 32] str q0, [x0, 32] ldr x0, [sp, 16] ldr w1, [sp, 24] bl isLeapYear and w0, w0, 255 cmp w0, 0 beq .L7 ldr w0, [sp, 16] cmp w0, 2 bne .L7 mov w0, 29 str w0, [sp, 36] b .L8 .L7: ldr w0, [sp, 16] sub w0, w0, #1 sxtw x0, w0 lsl x0, x0, 2 add x1, sp, 40 ldr w0, [x1, x0] str w0, [sp, 36] .L8: ldr w0, [sp, 36] mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 88] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L10 bl __stack_chk_fail .L10: mov w0, w1 ldp x29, x30, [sp], 96 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE1: .size numberOfDays, .-numberOfDays .section .rodata .align 3 .LC0: .word 31 .word 28 .word 31 .word 30 .word 31 .word 30 .word 31 .word 31 .word 30 .word 31 .word 30 .word 31 .text .align 2 .global isLeapYear .type isLeapYear, %function isLeapYear: .LFB2: .cfi_startproc sub sp, sp, #32 .cfi_def_cfa_offset 32 str x0, [sp] ldr w0, [sp, 8] bfi w0, w1, 0, 32 str w0, [sp, 8] ldr w0, [sp, 8] and w0, w0, 3 cmp w0, 0 bne .L12 ldr w1, [sp, 8] mov w0, 34079 movk w0, 0x51eb, lsl 16 smull x0, w1, w0 lsr x0, x0, 32 asr w2, w0, 5 asr w0, w1, 31 sub w0, w2, w0 mov w2, 100 mul w0, w0, w2 sub w0, w1, w0 cmp w0, 0 bne .L13 .L12: ldr w1, [sp, 8] mov w0, 34079 movk w0, 0x51eb, lsl 16 smull x0, w1, w0 lsr x0, x0, 32 asr w2, w0, 7 asr w0, w1, 31 sub w0, w2, w0 mov w2, 400 mul w0, w0, w2 sub w0, w1, w0 cmp w0, 0 bne .L14 .L13: mov w0, 1 strb w0, [sp, 31] b .L15 .L14: strb wzr, [sp, 31] .L15: ldrb w0, [sp, 31] add sp, sp, 32 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE2: .size isLeapYear, .-isLeapYear .section .rodata .align 3 .LC1: .string "Enter today's date (mm dd yyyy)" .align 3 .LC2: .string "%i /%i /%i" .align 3 .LC3: .string "Tomorrow's date is %i/%i/%.2i.\n" .text .align 2 .global main .type main, %function main: .LFB3: .cfi_startproc stp x29, x30, [sp, -64]! .cfi_def_cfa_offset 64 .cfi_offset 29, -64 .cfi_offset 30, -56 mov x29, sp adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x1, [x0] str x1, [sp, 56] mov x1, 0 adrp x0, .LC1 add x0, x0, :lo12:.LC1 bl puts add x0, sp, 24 add x2, x0, 8 add x0, sp, 24 add x1, x0, 4 add x0, sp, 24 mov x3, x2 mov x2, x1 mov x1, x0 adrp x0, .LC2 add x0, x0, :lo12:.LC2 bl __isoc99_scanf ldr x0, [sp, 24] ldr w1, [sp, 32] bl dateUpdate mov w2, w0 str w2, [sp, 40] lsr x2, x0, 32 str w2, [sp, 44] mov w0, w1 str w0, [sp, 48] ldr w4, [sp, 40] ldr w5, [sp, 44] ldr w0, [sp, 48] mov w1, 34079 movk w1, 0x51eb, lsl 16 smull x1, w0, w1 lsr x1, x1, 32 asr w2, w1, 5 asr w1, w0, 31 sub w1, w2, w1 mov w2, 100 mul w1, w1, w2 sub w1, w0, w1 mov w3, w1 mov w2, w5 mov w1, w4 adrp x0, .LC3 add x0, x0, :lo12:.LC3 bl printf mov w0, 0 mov w1, w0 adrp x0, :got:__stack_chk_guard ldr x0, [x0, #:got_lo12:__stack_chk_guard] ldr x3, [sp, 56] ldr x2, [x0] subs x3, x3, x2 mov x2, 0 beq .L19 bl __stack_chk_fail .L19: mov w0, w1 ldp x29, x30, [sp], 64 .cfi_restore 30 .cfi_restore 29 .cfi_def_cfa_offset 0 ret .cfi_endproc .LFE3: .size main, .-main ```