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

Goianesia vs Trindade

Goiano 2 · Brazil · 22 Aug 2026, 21:30 UTC

Final score
2 : 1
Result
Lost
Pick
Trindade
Market
1X2
CLV vs fair close
+76.41%
Model prob.
20.0%
Best price
5.50
Min odds
5.10
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)
OnJWpz7Ha902MZaV83sj01MQyb/I2kKcvNtTm8hNE3ZpHKRI/onaXPE8z31RPgXFYZ00prFznwfynzTa0XRvsBwjYajDjIFnbujenTxrB8G9/ZXCT7orawxaPOMX6pRdgnwHa1T+jJeGXQhopAFfWbcpDaep/5qSJ109BzV/9PG7EsEQz3eKeEdC8LUztsTrjRYV+X1g9oM5dSczKTIBL9/ChCv2uZT5S2A2aoRbK9ElZ5/OL8RloPItev/g0p7rNaNZTnaAhjJAvqVwqhfYbmmTGlsXlz7KOuwjef0HxWViVp0wyPXH04aMmCvuKTgZYg1Fm2AS0fSjI1wRWdfTkuLraA==
key fingerprint sha256: 215d4b4ae7e7ce0700bc643e2ededbec34d0fa04516653783370bd8bfae42883
Decrypt it & read the pick
Decryption key (released after the match)
ff263f05c027621e3087981db17ae445ec05fb66f0c76b619a4f18795cd13da0
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("OnJWpz7Ha902MZaV83sj01MQyb/I2kKcvNtTm8hNE3ZpHKRI/onaXPE8z31RPgXFYZ00prFznwfynzTa0XRvsBwjYajDjIFnbujenTxrB8G9/ZXCT7orawxaPOMX6pRdgnwHa1T+jJeGXQhopAFfWbcpDaep/5qSJ109BzV/9PG7EsEQz3eKeEdC8LUztsTrjRYV+X1g9oM5dSczKTIBL9/ChCv2uZT5S2A2aoRbK9ElZ5/OL8RloPItev/g0p7rNaNZTnaAhjJAvqVwqhfYbmmTGlsXlz7KOuwjef0HxWViVp0wyPXH04aMmCvuKTgZYg1Fm2AS0fSjI1wRWdfTkuLraA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("ff263f05c027621e3087981db17ae445ec05fb66f0c76b619a4f18795cd13da0".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): ff263f05c027621e3087981db17ae445ec05fb66f0c76b619a4f18795cd13da0
  • IV / nonce (hex): 3a7256a73ec76bdd36319695
  • Ciphertext (hex): f37b23d35310c9bfc8da429cbcdb539bc84d1376691ca448fe89da5cf13ccf7d513e05c5619d34a6b1739f07f29f34dad1746fb01c2361a8c38c81676ee8de9d3c6b07c1bdfd95c24fba2b6b0c5a3ce317ea945d827c076b54fe8c97865d0868a4015f59b7290da7a9ff9a92275d3d07357ff4f1bb12c110cf778a784742f0b533b6c4eb8d1615f97d60f683397527332932012fdfc2842bf6b994f94b60366a845b2bd125679fce2fc465a0f22d7affe0d29eeb35a3594e7680863240bea570aa17d86e69931a5b17973eca3aec2379fd07c56562569d30c8f5c7d3868c982bee293819620d45
  • Auth tag (hex): 9b6012d1f4a3235c1159d7d392e2eb68

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