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

Gilla vs HooGee

Kolmonen - Southern Group · Finland · 01 Jul 2026, 16:00 UTC

Final score
6 : 3
Result
Won
Pick
Gilla
Market
1x2
Model prob.
67.2%
Best price
1.91
Min odds
1.58
Stake factor
3.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)
3NJiuOQcpixHExEhP/c7aZJ8bNgv0p9RkwHNH31YhT0TZb/cMqK2whp/+ev1Nz1/ovHZSVKK5lQEzHVJpecE7zQ5yDyQhOUUkYLpV20g+NAQHVN8vI6DgHDDQYCyKxkQKACKGKm2jQv0JqKYttC/YltJcMPGwmy3Wj+InykK1seWDTpWYz0/pRTqTHZc7iGHTpllpp13bLI1wE9qvl7oWyJ0mQGgDgsInAy0Y0PGQ9HEp8mlWrmvbLOqxyGQw3VNJfRFhU7P7hAbMi9Glo4hMAGexnOwZ05oPoDBP9cnky8ZnskrgNgcq6bOj6zyxzTo/kdPxeDa/qyLQ5xgIvV7PEuZ
key fingerprint sha256: a3b7bf75fe98f66cbc3a0d89900ec4949ffc06cfd199235e1332fececf176dee
Decrypt it & read the pick
Decryption key (released after the match)
dc94ee5dab9e50ef171c51b13885d91b9636393e74e7dc3d34f9c605a156eaa3
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("3NJiuOQcpixHExEhP/c7aZJ8bNgv0p9RkwHNH31YhT0TZb/cMqK2whp/+ev1Nz1/ovHZSVKK5lQEzHVJpecE7zQ5yDyQhOUUkYLpV20g+NAQHVN8vI6DgHDDQYCyKxkQKACKGKm2jQv0JqKYttC/YltJcMPGwmy3Wj+InykK1seWDTpWYz0/pRTqTHZc7iGHTpllpp13bLI1wE9qvl7oWyJ0mQGgDgsInAy0Y0PGQ9HEp8mlWrmvbLOqxyGQw3VNJfRFhU7P7hAbMi9Glo4hMAGexnOwZ05oPoDBP9cnky8ZnskrgNgcq6bOj6zyxzTo/kdPxeDa/qyLQ5xgIvV7PEuZ"), c => c.charCodeAt(0));
const key  = Uint8Array.from("dc94ee5dab9e50ef171c51b13885d91b9636393e74e7dc3d34f9c605a156eaa3".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): dc94ee5dab9e50ef171c51b13885d91b9636393e74e7dc3d34f9c605a156eaa3
  • IV / nonce (hex): dcd262b8e41ca62c47131121
  • Ciphertext (hex): 3ff73b69927c6cd82fd29f519301cd1f7d58853d1365bfdc32a2b6c21a7ff9ebf5373d7fa2f1d949528ae65404cc7549a5e704ef3439c83c9084e5149182e9576d20f8d0101d537cbc8e838070c34180b22b191028008a18a9b68d0bf426a298b6d0bf625b4970c3c6c26cb75a3f889f290ad6c7960d3a56633d3fa514ea4c765cee21874e9965a69d776cb235c04f6abe5ee85b22749901a00e0b089c0cb46343c643d1c4a7c9a55ab9af6cb3aac72190c3754d25f445854ecfee101b322f46968e2130019ec673b0674e683e80c13fd727932f199ec92b80d81caba6ce8facf2c734e8fe47
  • Auth tag (hex): 4fc5e0dafeac8b439c6022f57b3c4b99

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