Heh, not OP.
Yeah, though isn't it suspicious that the dogecoin symbol is there? Maybe we're not at the last step and there's something to do with dogecoin?
Here's some quick code I was trying out:
import hashlib, binascii
import sys
__b62chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
__b62base = len(__b62chars)
def b62decode(v, length):
""" decode v into a string of len bytes
"""
long_value = 0
for (i, c) in enumerate(v[::-1]):
long_value += __b62chars.find(c) * (__b62base**i)
result = bytes()
while long_value >= 256:
div, mod = divmod(long_value, 256)
result = chr(mod) + result
long_value = div
result = chr(long_value) + result
nPad = 0
for c in v:
if c == __b62chars[0]: nPad += 1
else: break
result = chr(0)*nPad + result
if length is not None and len(result) != length:
return None
return result
bytes = b62decode('z69JZqlJn862D1ndx7oLVEMmVOlP1zewEeUCrsI7Roahzpeny7PA', None)
for byte in bytes:
# sys.stdout.write("{:02x} ".format(ord(byte)))
sys.stdout.write("{:08b} ".format(ord(byte)))