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

Aalesund II vs Ranheim II

3. Division - Group 2 · Norway · 22 Jun 2026, 15:00 UTC

Final score
2 : 5
Result
Lost
Pick
Aalesund II
Market
1x2
Model prob.
43.0%
Best price
2.78
Min odds
2.57
Stake factor
2.60

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)
1t3c/DrVrMbWYg4L/TsTXg9XHYp0SrQph3d3D/RfYfg4wHD8V56VfbFyM8jwS5L403n/ZHza9RzvqVmYsFaXJs48DlW+xE4RPaqDn3vz2sQCGzJcMWRNvCNurHL5/MfayiPIal4cWrIMYN8Y95eHob3RN9LZ6vcgpqcXPHECQm6A2d+cHLLSo3HcfdHYdgY4Q/ScEkGBCzpGs9z0ScoaGYmj/Kl7UF6ISAV9IKe7gOXOnoaToQO3TwvPmxnPyLTSLXQFGMKslSkTEB+O6LAUNLCX2cd9BQj03IzyXAJb7j7g7eG8NDt4ICe1mquwEtfYq70Wf6Vz4RebXMm/6GgqkDyx5gAJ203wasPC8g==
key fingerprint sha256: 25b745ff9846dec8052871b0643bf2007219d1d921832a0b195aa845deed702e
Decrypt it & read the pick
Decryption key (released after the match)
9b93120f4e62393e8d02fed958b0253beccfa70060e8bfc15ba805f449f694a0
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("1t3c/DrVrMbWYg4L/TsTXg9XHYp0SrQph3d3D/RfYfg4wHD8V56VfbFyM8jwS5L403n/ZHza9RzvqVmYsFaXJs48DlW+xE4RPaqDn3vz2sQCGzJcMWRNvCNurHL5/MfayiPIal4cWrIMYN8Y95eHob3RN9LZ6vcgpqcXPHECQm6A2d+cHLLSo3HcfdHYdgY4Q/ScEkGBCzpGs9z0ScoaGYmj/Kl7UF6ISAV9IKe7gOXOnoaToQO3TwvPmxnPyLTSLXQFGMKslSkTEB+O6LAUNLCX2cd9BQj03IzyXAJb7j7g7eG8NDt4ICe1mquwEtfYq70Wf6Vz4RebXMm/6GgqkDyx5gAJ203wasPC8g=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("9b93120f4e62393e8d02fed958b0253beccfa70060e8bfc15ba805f449f694a0".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): 9b93120f4e62393e8d02fed958b0253beccfa70060e8bfc15ba805f449f694a0
  • IV / nonce (hex): d6dddcfc3ad5acc6d6620e0b
  • Ciphertext (hex): fd3b135e0f571d8a744ab4298777770ff45f61f838c070fc579e957db17233c8f04b92f8d379ff647cdaf51cefa95998b0569726ce3c0e55bec44e113daa839f7bf3dac4021b325c31644dbc236eac72f9fcc7daca23c86a5e1c5ab20c60df18f79787a1bdd137d2d9eaf720a6a7173c7102426e80d9df9c1cb2d2a371dc7dd1d876063843f49c1241810b3a46b3dcf449ca1a1989a3fca97b505e8848057d20a7bb80e5ce9e8693a103b74f0bcf9b19cfc8b4d22d740518c2ac952913101f8ee8b01434b097d9c77d0508f4dc8cf25c025bee3ee0ede1bc343b782027b59aabb012d7d8abbd167fa573e1179b5cc9bf
  • Auth tag (hex): e8682a903cb1e60009db4df06ac3c2f2

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