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

Racing Club vs Defensa y Justicia

Copa Argentina · Argentina · 16 Jul 2026, 21:45 UTC

Final score
4 : 1
Result
Won
Pick
Racing Club
Market
1x2
Model prob.
54.2%
Best price
2.09
Min odds
1.99
Stake factor
2.10

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)
fSGnsoKp8mgFpf1xMQtWuusD1+SV+eNOWG9CMANeEeHwQQa6pg3Fz6LMo9kc3BLZxrbDSF5zWdszmCkUFSH9sGUQJNx+FjraVU47NKuHPuvMW0No3LsiE4bjt3H/ol9ztbqRKNiixTw1w42tVH1vCEqy0zyjzfiv/BS9ZM9GjZd7sRUqwzaXYyfevQ04Bcah0DdGeTDtHaIgTx2EPo6PRH+UGNZsUYVRvp27Iz0mblOqwmJDTtCvbR2P7SRQgSKaXx5NpPCEk8v/elAM7+iEWlQCDJeH69aHUDr6WHDDhMf/bLrN3SiqPYzngBMqE7ICBXAnhonQ23zbP1sGZmmhVfqHQDwY7IuzSN+nOQ==
key fingerprint sha256: 79b297c24e201ba3fdc49e424865d721c8a9e80b34d7cc314342619f8cf3c17c
Decrypt it & read the pick
Decryption key (released after the match)
d85dfc74c7543a0ae9d90c329608af3fe26cd69da515c693eebfbd12e530946a
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("fSGnsoKp8mgFpf1xMQtWuusD1+SV+eNOWG9CMANeEeHwQQa6pg3Fz6LMo9kc3BLZxrbDSF5zWdszmCkUFSH9sGUQJNx+FjraVU47NKuHPuvMW0No3LsiE4bjt3H/ol9ztbqRKNiixTw1w42tVH1vCEqy0zyjzfiv/BS9ZM9GjZd7sRUqwzaXYyfevQ04Bcah0DdGeTDtHaIgTx2EPo6PRH+UGNZsUYVRvp27Iz0mblOqwmJDTtCvbR2P7SRQgSKaXx5NpPCEk8v/elAM7+iEWlQCDJeH69aHUDr6WHDDhMf/bLrN3SiqPYzngBMqE7ICBXAnhonQ23zbP1sGZmmhVfqHQDwY7IuzSN+nOQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("d85dfc74c7543a0ae9d90c329608af3fe26cd69da515c693eebfbd12e530946a".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): d85dfc74c7543a0ae9d90c329608af3fe26cd69da515c693eebfbd12e530946a
  • IV / nonce (hex): 7d21a7b282a9f26805a5fd71
  • Ciphertext (hex): 310b56baeb03d7e495f9e34e586f4230035e11e1f04106baa60dc5cfa2cca3d91cdc12d9c6b6c3485e7359db339829141521fdb0651024dc7e163ada554e3b34ab873eebcc5b4368dcbb221386e3b771ffa25f73b5ba9128d8a2c53c35c38dad547d6f084ab2d33ca3cdf8affc14bd64cf468d977bb1152ac336976327debd0d3805c6a1d037467930ed1da2204f1d843e8e8f447f9418d66c518551be9dbb233d266e53aac262434ed0af6d1d8fed245081229a5f1e4da4f08493cbff7a500cefe8845a54020c9787ebd687503afa5870c384c7ff6cbacddd28aa3d8ce780132a13b2020570278689d0db7cdb3f5b06
  • Auth tag (hex): 6669a155fa87403c18ec8bb348dfa739

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