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

Quick Boys vs Rohda Raalte

Tweede Divisie · Netherlands · 12 Sept 2026, 13:00 UTC

Final score
3 : 1
Result
Won
Pick
Quick Boys
Market
1X2
CLV vs fair close
+5.12%
Model prob.
91.0%
Best price
1.17
Min odds
1.12
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)
O231FI9eMSxvKX9g8twYzDx3ZSO3ILWqXZh0lvrUfuUD4va6J5/oEf6ipTl4WMdP3Po8Jz9z514xhuNvUkToKP3x7Z4hRLnkDXKmraml9QveuaCedM244amC5N5mnVIokGP6Q/sJGZtuAe8k6dBfx57MaC5dxPbWIvBi4d1v9hUFdtQjgnCatr8e5Socy3udRVoW+My0redw99wJjbBsi8ZcaLQW14ATqIPTjN4milvBEXFYroNCFrdAuDrP1PBe8RpvlylktKNgIy6NbsbkNp+nIEZhy3UB5u8jINfZgrVuTG8Z4zou0CkYMnFWF3wNVocNg2BzEIiPHlkX8594pZMt1wElup9aQ8P/cQ==
key fingerprint sha256: 751fce9238fe4b1d5b84243e0ae90ee4bab3efc4b7d9a8915886c98485491e61
Decrypt it & read the pick
Decryption key (released after the match)
64e53dcc058c18ecc4c37e169b51fab604f94d6123a4c4d1bb5d1d4783f5c7be
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("O231FI9eMSxvKX9g8twYzDx3ZSO3ILWqXZh0lvrUfuUD4va6J5/oEf6ipTl4WMdP3Po8Jz9z514xhuNvUkToKP3x7Z4hRLnkDXKmraml9QveuaCedM244amC5N5mnVIokGP6Q/sJGZtuAe8k6dBfx57MaC5dxPbWIvBi4d1v9hUFdtQjgnCatr8e5Socy3udRVoW+My0redw99wJjbBsi8ZcaLQW14ATqIPTjN4milvBEXFYroNCFrdAuDrP1PBe8RpvlylktKNgIy6NbsbkNp+nIEZhy3UB5u8jINfZgrVuTG8Z4zou0CkYMnFWF3wNVocNg2BzEIiPHlkX8594pZMt1wElup9aQ8P/cQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("64e53dcc058c18ecc4c37e169b51fab604f94d6123a4c4d1bb5d1d4783f5c7be".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): 64e53dcc058c18ecc4c37e169b51fab604f94d6123a4c4d1bb5d1d4783f5c7be
  • IV / nonce (hex): 3b6df5148f5e312c6f297f60
  • Ciphertext (hex): f2dc18cc3c776523b720b5aa5d987496fad47ee503e2f6ba279fe811fea2a5397858c74fdcfa3c273f73e75e3186e36f5244e828fdf1ed9e2144b9e40d72a6ada9a5f50bdeb9a09e74cdb8e1a982e4de669d52289063fa43fb09199b6e01ef24e9d05fc79ecc682e5dc4f6d622f062e1dd6ff6150576d42382709ab6bf1ee52a1ccb7b9d455a16f8ccb4ade770f7dc098db06c8bc65c68b416d78013a883d38cde268a5bc1117158ae834216b740b83acfd4f05ef11a6f972964b4a360232e8d6ec6e4369fa7204661cb7501e6ef2320d7d982b56e4c6f19e33a2ed02918327156177c0d56870d83607310888f1e5917
  • Auth tag (hex): f39f78a5932dd70125ba9f5a43c3ff71

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 #966516 · 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.