Sign in
← All matches
✅ Cryptographically verified · sealed pick #509

Kozakken Boys vs RKC Waalwijk

Club Friendlies 3 · World · 11 Jul 2026, 13:00 UTC

Final score
0 : 0
Result
Lost
Pick
RKC Waalwijk
Market
1x2
Model prob.
49.5%
Best price
2.77
Min odds
2.20
Stake factor
3.00

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.

Encrypted pick (AES-256-GCM)
ffgo5t916EBlgZ6f9dAxglQMeLbdZiRw7mxYVa7ZbrdVrjzTmUncrTDPcYM81Jv8t5hKnVAQkZztbosQ2qPYkZMR94F8VvLfcW+vFk+Pmp55gRhgfuIZuyBvKnF77zvwNgorPdInvp0TLVWxrQLEqP27X1iuSldOtjgfwwlbbadi6ZbkwM1oPTf7A1Geb2ML7ljPQohbaLgEVT7Ca+579nZn8gi27yYN77W++vs7OhXj7hkVLS8XqUyqwvrVmWspxK1n4GXTgoxLUBoE3KJPe2G/u+3IJkST8hs8frFvMOuvNy612TAcITB3dPm6DaJOZFgrZ/tk3/PecnPFRsSg1QjXuK77j1th28M=
key fingerprint sha256: dbeb1338ec5ed84af3497d8f5115d5091864240457052a13c0570a078732fa94
Decrypt it & read the pick
Decryption key (released after the match)
e099bad659def7d580afd323b7133a796db1db902568d4ad2cd00c8c902935b5
Decrypt 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 F12Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("ffgo5t916EBlgZ6f9dAxglQMeLbdZiRw7mxYVa7ZbrdVrjzTmUncrTDPcYM81Jv8t5hKnVAQkZztbosQ2qPYkZMR94F8VvLfcW+vFk+Pmp55gRhgfuIZuyBvKnF77zvwNgorPdInvp0TLVWxrQLEqP27X1iuSldOtjgfwwlbbadi6ZbkwM1oPTf7A1Geb2ML7ljPQohbaLgEVT7Ca+579nZn8gi27yYN77W++vs7OhXj7hkVLS8XqUyqwvrVmWspxK1n4GXTgoxLUBoE3KJPe2G/u+3IJkST8hs8frFvMOuvNy612TAcITB3dPm6DaJOZFgrZ/tk3/PecnPFRsSg1QjXuK77j1th28M="), c => c.charCodeAt(0));
const key  = Uint8Array.from("e099bad659def7d580afd323b7133a796db1db902568d4ad2cd00c8c902935b5".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): e099bad659def7d580afd323b7133a796db1db902568d4ad2cd00c8c902935b5
  • IV / nonce (hex): 7df828e6df75e84065819e9f
  • Ciphertext (hex): f5d03182540c78b6dd662470ee6c5855aed96eb755ae3cd39949dcad30cf71833cd49bfcb7984a9d5010919ced6e8b10daa3d8919311f7817c56f2df716faf164f8f9a9e798118607ee219bb206f2a717bef3bf0360a2b3dd227be9d132d55b1ad02c4a8fdbb5f58ae4a574eb6381fc3095b6da762e996e4c0cd683d37fb03519e6f630bee58cf42885b68b804553ec26bee7bf67667f208b6ef260defb5befafb3b3a15e3ee19152d2f17a94caac2fad5996b29c4ad67e065d3828c4b501a04dca24f7b61bfbbedc8264493f21b3c7eb16f30ebaf372eb5d9301c21307774f9ba0da24e64582b67fb64dff3de72
  • Auth tag (hex): 73c546c4a0d508d7b8aefb8f5b61dbc3

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:

  1. Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
  2. Drop both into opentimestamps.org (or run ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time.
  3. See it independently: block #957556 · 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.