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

Canada U20 vs Jamaica U20

Concacaf Championship U20 · North & Central America · 05 Aug 2026, 22:30 UTC

Final score
1 : 1
Result
Lost
Pick
Canada U20
Market
1x2
Model prob.
59.2%
Best price
1.96
Min odds
1.81
Stake factor
2.30

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)
54aYb7CXXfCUpyzeIZ2RHNZz6VGoHldFC2tHuvfQ0LyTj95iwTvNuVifDZhdPq9EHl14ZdmWnrBrMguE/O3mvHJbJNdFp6R8zUIBfx3DGcL9bqPQMYzLjhL24ejwp8OnwRjXJWS5yBgaaBekyZs+rqlw55vyXEXOjqS9sNEo6Gw24A50H1lSQL6xkpaD/2AuPsLcWKp9MjCOIC84BnOPwaT1ymmqgKLlNoIfiUOeaw+KkseMwQWFYde/QmUvY8psSDROlHnC/rG3rXOZYmRqyW8YIOV8OCiTG8CONU+cROOWaEgr4JAuhznw5G92bLMTLX+c7FDB3JoOseK+odr4Fe6l5pTG8f/gQGs=
key fingerprint sha256: 2c62609851f299a9eb1fa9e4a1e5152180a1508e7714883409aa62b7985b9695
Decrypt it & read the pick
Decryption key (released after the match)
2fbadf472274a6f8870ed75e4a5db6cb86158beb79f8f1fd4cc1d716064402ec
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("54aYb7CXXfCUpyzeIZ2RHNZz6VGoHldFC2tHuvfQ0LyTj95iwTvNuVifDZhdPq9EHl14ZdmWnrBrMguE/O3mvHJbJNdFp6R8zUIBfx3DGcL9bqPQMYzLjhL24ejwp8OnwRjXJWS5yBgaaBekyZs+rqlw55vyXEXOjqS9sNEo6Gw24A50H1lSQL6xkpaD/2AuPsLcWKp9MjCOIC84BnOPwaT1ymmqgKLlNoIfiUOeaw+KkseMwQWFYde/QmUvY8psSDROlHnC/rG3rXOZYmRqyW8YIOV8OCiTG8CONU+cROOWaEgr4JAuhznw5G92bLMTLX+c7FDB3JoOseK+odr4Fe6l5pTG8f/gQGs="), c => c.charCodeAt(0));
const key  = Uint8Array.from("2fbadf472274a6f8870ed75e4a5db6cb86158beb79f8f1fd4cc1d716064402ec".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): 2fbadf472274a6f8870ed75e4a5db6cb86158beb79f8f1fd4cc1d716064402ec
  • IV / nonce (hex): e786986fb0975df094a72cde
  • Ciphertext (hex): 219d911cd673e951a81e57450b6b47baf7d0d0bc938fde62c13bcdb9589f0d985d3eaf441e5d7865d9969eb06b320b84fcede6bc725b24d745a7a47ccd42017f1dc319c2fd6ea3d0318ccb8e12f6e1e8f0a7c3a7c118d72564b9c8181a6817a4c99b3eaea970e79bf25c45ce8ea4bdb0d128e86c36e00e741f595240beb1929683ff602e3ec2dc58aa7d32308e202f3806738fc1a4f5ca69aa80a2e536821f89439e6b0f8a92c78cc1058561d7bf42652f63ca6c48344e9479c2feb1b7ad739962646ac96f1820e57c3828931bc08e354f9c44e39668482be0902e8739f0e46f766cb3132d7f9cec50c1dc9a0eb1
  • Auth tag (hex): e2bea1daf815eea5e694c6f1ffe0406b

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