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

Cardoso Moreira vs Independente RJ

Carioca C · Brazil · 28 Jun 2026, 17:45 UTC

Final score
Result
Void
Pick
Cardoso Moreira
Market
1x2
Model prob.
72.4%
Best price
1.52
Min odds
1.46
Stake factor
1.80

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)
4mmEYtp6v34KZX14uxjvDSxfRvWJ1oznJOjmKt5EoZ4kqS8+LybOWGUInFL2wTP5QqCPhZ07CMO2Y+rzbi3m/2huNaQT7nKquGSujBs6pFR6Inl2X2sYq7GoigwhW/Ug5ZluwqRPjAyUjbAEh+oj6vUF0QIHmJzYPDd2Ih+cR3YfixYz6WtFdEcPTMS3yoqZ1wKOfzNa4IS+0MMM37jmBUJajLWXwVBxdUINqDBoMTZuOo2JJGolPCZ0GbjZsP2A5fbSbSmnqNtUYM2wgjXvzEpXH2AzCLZSBugqEt3EiCKaEjO4ZZJIip+AXW/k+ZFawLDOWhXCzF9hZ4bkAu+LxdZK8AX1npSU3gwS7bvnWA==
key fingerprint sha256: be31797c0fd96e902f0800880f9d490bbf122b0ea7961065d955a3408ee1ca48
Decrypt it & read the pick
Decryption key (released after the match)
be04c2901e5309421f9b606477ba70ea79d71107cf8355b9c79f93823dba0543
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("4mmEYtp6v34KZX14uxjvDSxfRvWJ1oznJOjmKt5EoZ4kqS8+LybOWGUInFL2wTP5QqCPhZ07CMO2Y+rzbi3m/2huNaQT7nKquGSujBs6pFR6Inl2X2sYq7GoigwhW/Ug5ZluwqRPjAyUjbAEh+oj6vUF0QIHmJzYPDd2Ih+cR3YfixYz6WtFdEcPTMS3yoqZ1wKOfzNa4IS+0MMM37jmBUJajLWXwVBxdUINqDBoMTZuOo2JJGolPCZ0GbjZsP2A5fbSbSmnqNtUYM2wgjXvzEpXH2AzCLZSBugqEt3EiCKaEjO4ZZJIip+AXW/k+ZFawLDOWhXCzF9hZ4bkAu+LxdZK8AX1npSU3gwS7bvnWA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("be04c2901e5309421f9b606477ba70ea79d71107cf8355b9c79f93823dba0543".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): be04c2901e5309421f9b606477ba70ea79d71107cf8355b9c79f93823dba0543
  • IV / nonce (hex): e2698462da7abf7e0a657d78
  • Ciphertext (hex): bb18ef0d2c5f46f589d68ce724e8e62ade44a19e24a92f3e2f26ce5865089c52f6c133f942a08f859d3b08c3b663eaf36e2de6ff686e35a413ee72aab864ae8c1b3aa4547a2279765f6b18abb1a88a0c215bf520e5996ec2a44f8c0c948db00487ea23eaf505d10207989cd83c3776221f9c47761f8b1633e96b4574470f4cc4b7ca8a99d7028e7f335ae084bed0c30cdfb8e605425a8cb597c1507175420da8306831366e3a8d89246a253c267419b8d9b0fd80e5f6d26d29a7a8db5460cdb08235efcc4a571f603308b65206e82a12ddc488229a1233b86592488a9f805d6fe4f9915ac0b0ce5a15c2cc5f616786e402ef8b
  • Auth tag (hex): c5d64af005f59e9494de0c12edbbe758

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