Vitoria U20 vs Barcelona BA U20
Baiano U20 · Brazil · 04 Jul 2026, 12:00 UTC
Proof this pick was locked in before kickoff
The pick was encrypted before kickoff and published the moment it was sealed to Telegram and GitHub, each carrying an independent timestamp. The encrypted batch is also anchored in Bitcoin — a public record nobody, including us, can alter or back-date. After the match the key is released; decrypting that exact pre-published message reveals the pick, proving it was fixed in advance, not cherry-picked.
UcbTei34OLRtU8wOqPMAsQOn94PXs+lMMggdhjq6FqxDsKpLFQsnSAQ1IAfz7wUMXDMn5NqfcWsEEEIweQo7M3bAEZgo9bDz2BywhFf3PKphEImM8wZRcfzfU4zLvcywrTalWT617LeJLEiWs6cADYTOmg3hmaK4rEqnLogvuaiLomL2vQq1weEd88shW02osawty5K4Sq+3pszDZPRh/1i5AHCQ+rJJBe1ehKHEU0lpDF2WbXadwaGpnSVJl8OW9YrrizxxP6/lFb2yUfpKsHR4KbJNzT3DYaQAq8fqcgGakMy4GmQ8E071jcNIpr5DuAYigpFzMer1H7avc49XhrafJAiUSlkA9OYz
927e9b4b64799cb7dddfef88b99637e5caa00273f8bb70f36808529e24af937dDecrypt in CyberChef →
Verify it yourself — paste both values, no install
The Encrypted pick above is base64( nonce[12 bytes] + ciphertext + tag[16 bytes] ),
AES-256-GCM. Zero-install check: open your browser console (press F12 → Console),
paste this, press Enter — it decrypts the exact pick shown above:
const blob = Uint8Array.from(atob("UcbTei34OLRtU8wOqPMAsQOn94PXs+lMMggdhjq6FqxDsKpLFQsnSAQ1IAfz7wUMXDMn5NqfcWsEEEIweQo7M3bAEZgo9bDz2BywhFf3PKphEImM8wZRcfzfU4zLvcywrTalWT617LeJLEiWs6cADYTOmg3hmaK4rEqnLogvuaiLomL2vQq1weEd88shW02osawty5K4Sq+3pszDZPRh/1i5AHCQ+rJJBe1ehKHEU0lpDF2WbXadwaGpnSVJl8OW9YrrizxxP6/lFb2yUfpKsHR4KbJNzT3DYaQAq8fqcgGakMy4GmQ8E071jcNIpr5DuAYigpFzMer1H7avc49XhrafJAiUSlkA9OYz"), c => c.charCodeAt(0));
const key = Uint8Array.from("927e9b4b64799cb7dddfef88b99637e5caa00273f8bb70f36808529e24af937d".match(/../g).map(h => parseInt(h, 16)));
crypto.subtle.importKey("raw", key, "AES-GCM", false, ["decrypt"])
.then(k => crypto.subtle.decrypt({ name: "AES-GCM", iv: blob.slice(0, 12) }, k, blob.slice(12)))
.then(b => console.log(new TextDecoder().decode(b))); Prefer a GUI? The orange button opens CyberChef pre-filled. Or split the parts yourself for any AES-256-GCM tool:
- Algorithm:
AES-256-GCM - Key (hex):
927e9b4b64799cb7dddfef88b99637e5caa00273f8bb70f36808529e24af937d - IV / nonce (hex):
51c6d37a2df838b46d53cc0e - Ciphertext (hex):
a8f300b103a7f783d7b3e94c32081d863aba16ac43b0aa4b150b274804352007f3ef050c5c3327e4da9f716b04104230790a3b3376c0119828f5b0f3d81cb08457f73caa6110898cf3065171fcdf538ccbbdccb0ad36a5593eb5ecb7892c4896b3a7000d84ce9a0de199a2b8ac4aa72e882fb9a88ba262f6bd0ab5c1e11df3cb215b4da8b1ac2dcb92b84aafb7a6ccc364f461ff58b9007090fab24905ed5e84a1c45349690c5d966d769dc1a1a99d254997c396f58aeb8b3c713fafe515bdb251fa4ab0747829b24dcd3dc361a400abc7ea72019a90ccb81a643c134ef58dc348a6be43b8062282917331eaf51fb6 - Auth tag (hex):
af738f5786b69f2408944a5900f4e633
Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.
How to verify the Bitcoin timestamp yourself
Bitcoin doesn't store the pick — it stores a 32-byte fingerprint (SHA-256) of the
encrypted batch, via OpenTimestamps. That fingerprint is frozen in a public block nobody can alter
or back-date. You can't spot it by eye on a block explorer (a block holds thousands of unrelated
transactions) — you verify it with the .ots proof and any OpenTimestamps tool:
- Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
- Drop both into opentimestamps.org (or run
ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time. - See it independently: block #956618 · anchoring transaction (its OP_RETURN holds the commitment). The block's Timestamp is when it became permanent.
Note: Bitcoin anchoring lands ~30–60 min after sealing, and a block's timestamp is miner-set (approximate). So the exact “before kickoff” proof is the seal time above — timestamped instantly by Telegram/GitHub — while Bitcoin is the independent, un-forgeable anchor of permanence.