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

Central Cordoba vs Independiente

Liga Pro · Argentina · 06 Sept 2026, 20:00 UTC

Final score
0 : 1
Result
Lost
Pick
Central Cordoba
Market
1X2
CLV vs fair close
-0.51%
Model prob.
31.7%
Best price
3.35
Min odds
3.22
Stake factor
1.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)
g1CjAJbDseo2ch/J8WQ2gyfvjCMxrJ/HhaDtE9xFt7Xz+fm5iL2B89Pa/L+fRlRWtkCryVHYR+ZJ7slcZ3f7a0zZRzWxZaKicEbCj5QRXPEHB1OLMJxYVwtIY4dLTLJ8WtkSCRZpf/RCjgcWmJ79VJO9DaEnrAhTsmfwSi0ceIauI7LIoB8wi1z1nb1JCNmQnKDCMX3egOFnzOfSr/T+E9Nt+e530bcfaS8prQx45GTwhoQacu+sqIv7mwHJU9qXt9leT/0R3h7+ZQ4l4XABIkMUabN8vtpF2JqL6gyWPN4Lzrc5hfT1hi3MSHCa5LsxTeexcjpg014pjIBQlCqauNYDQpaQBDmUBcukQOFGWA==
key fingerprint sha256: c43dd358bd27fa2d0b90761f6fbf64bc8eaf373fc9776565205f38605a34ad51
Decrypt it & read the pick
Decryption key (released after the match)
d3722bfa9cc30fe80d3a63ae7ad72e3cb15d63565207014de462ec6dbc6fa1d0
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("g1CjAJbDseo2ch/J8WQ2gyfvjCMxrJ/HhaDtE9xFt7Xz+fm5iL2B89Pa/L+fRlRWtkCryVHYR+ZJ7slcZ3f7a0zZRzWxZaKicEbCj5QRXPEHB1OLMJxYVwtIY4dLTLJ8WtkSCRZpf/RCjgcWmJ79VJO9DaEnrAhTsmfwSi0ceIauI7LIoB8wi1z1nb1JCNmQnKDCMX3egOFnzOfSr/T+E9Nt+e530bcfaS8prQx45GTwhoQacu+sqIv7mwHJU9qXt9leT/0R3h7+ZQ4l4XABIkMUabN8vtpF2JqL6gyWPN4Lzrc5hfT1hi3MSHCa5LsxTeexcjpg014pjIBQlCqauNYDQpaQBDmUBcukQOFGWA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("d3722bfa9cc30fe80d3a63ae7ad72e3cb15d63565207014de462ec6dbc6fa1d0".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): d3722bfa9cc30fe80d3a63ae7ad72e3cb15d63565207014de462ec6dbc6fa1d0
  • IV / nonce (hex): 8350a30096c3b1ea36721fc9
  • Ciphertext (hex): f164368327ef8c2331ac9fc785a0ed13dc45b7b5f3f9f9b988bd81f3d3dafcbf9f465456b640abc951d847e649eec95c6777fb6b4cd94735b165a2a27046c28f94115cf10707538b309c58570b4863874b4cb27c5ad9120916697ff4428e0716989efd5493bd0da127ac0853b267f04a2d1c7886ae23b2c8a01f308b5cf59dbd4908d9909ca0c2317dde80e167cce7d2aff4fe13d36df9ee77d1b71f692f29ad0c78e464f086841a72efaca88bfb9b01c953da97b7d95e4ffd11de1efe650e25e1700122431469b37cbeda45d89a8bea0c963cde0bceb73985f4f5862dcc48709ae4bb314de7b1723a60d35e298c8050942a9a
  • Auth tag (hex): b8d60342969004399405cba440e14658

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