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

Defensores Belgrano VR vs Escobar FC

Torneo Federal A · Argentina · 05 Jul 2026, 18:30 UTC

Final score
1 : 1
Result
Lost
Pick
Defensores Belgrano VR
Market
1x2
Model prob.
50.7%
Best price
2.27
Min odds
2.14
Stake factor
2.20

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)
ZJ5gAdNuCeXvKefmnSwxMauLhLrnCXDgG4g0X6+5ANrofGJ2mCsWMWt0mlRCrjAUJhgtZfJQD68cpqWdpTr3t4sfG3h8FPYLSOiWUmeOipWoesGJ5SsPFmdA16RzN674MnhvC8NUYL2jhupZzGGUhL0TPdxcfB2kzFbx/4xjQztZdyAASCUUjvYqGzXrHbF+XNQ75wsOGgrXeyfedPjJWNl+3dOUj+wkjT4xmHq71gmfT7lztiTDr3PrsKGDoeQG5ICM/FPhLfcV5njM5vWhtwvXFyv2vZDy/m7MPNCCn0SpXu5DZKp459Okwa2t+s7uCtTcN9yc5rrreeyhjQE1OEArbs0L2QUYaSThxH1W4dPLWo09Lc6g
key fingerprint sha256: fcc5065a8838f21ca6809f209920acd21ff7ab31829083562d84d3081692f05a
Decrypt it & read the pick
Decryption key (released after the match)
e90425c8e22820e5e9e495279cfcee1e109321fbb08292810a25ee9e8358a853
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("ZJ5gAdNuCeXvKefmnSwxMauLhLrnCXDgG4g0X6+5ANrofGJ2mCsWMWt0mlRCrjAUJhgtZfJQD68cpqWdpTr3t4sfG3h8FPYLSOiWUmeOipWoesGJ5SsPFmdA16RzN674MnhvC8NUYL2jhupZzGGUhL0TPdxcfB2kzFbx/4xjQztZdyAASCUUjvYqGzXrHbF+XNQ75wsOGgrXeyfedPjJWNl+3dOUj+wkjT4xmHq71gmfT7lztiTDr3PrsKGDoeQG5ICM/FPhLfcV5njM5vWhtwvXFyv2vZDy/m7MPNCCn0SpXu5DZKp459Okwa2t+s7uCtTcN9yc5rrreeyhjQE1OEArbs0L2QUYaSThxH1W4dPLWo09Lc6g"), c => c.charCodeAt(0));
const key  = Uint8Array.from("e90425c8e22820e5e9e495279cfcee1e109321fbb08292810a25ee9e8358a853".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): e90425c8e22820e5e9e495279cfcee1e109321fbb08292810a25ee9e8358a853
  • IV / nonce (hex): 649e6001d36e09e5ef29e7e6
  • Ciphertext (hex): 9d2c3131ab8b84bae70970e01b88345fafb900dae87c6276982b16316b749a5442ae301426182d65f2500faf1ca6a59da53af7b78b1f1b787c14f60b48e89652678e8a95a87ac189e52b0f166740d7a47337aef832786f0bc35460bda386ea59cc619484bd133ddc5c7c1da4cc56f1ff8c63433b597720004825148ef62a1b35eb1db17e5cd43be70b0e1a0ad77b27de74f8c958d97eddd3948fec248d3e31987abbd6099f4fb973b624c3af73ebb0a183a1e406e4808cfc53e12df715e678cce6f5a1b70bd7172bf6bd90f2fe6ecc3cd0829f44a95eee4364aa78e7d3a4c1adadfaceee0ad4dc37dc9ce6baeb79eca18d013538402b6ecd0bd905
  • Auth tag (hex): 186924e1c47d56e1d3cb5a8d3d2dcea0

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