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

Bursaspor vs Esenler Erokspor

1st League · Turkey · 13 Sept 2026, 17:00 UTC

Final score
2 : 2
Result
Lost
Pick
Bursaspor
Market
1X2
CLV vs fair close
+7.54%
Model prob.
54.3%
Best price
2.05
Min odds
1.88
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)
eeeeAMLQKAsCqm5TfgFae4FX/hXWJrNc1QWKnKIP39HVCDU7jEBxcbadMkd+ttDEVOeZsyEprJdQBMMo77s5cEOV9GldUSj1c9WbL4vmc44s7U8UOhmNADX75SafF51o7q9r20VgUUiOsxkutaEe3CMvlI4o8wio/iPtcdtyYBg0HiN8c4QfXb8c8zCLd9fN2ZlDkXnM7RrWklEzbJgPNmMzaow2/g0S+Ur+BY5BgVh3+49dgpXwntmGMmLCOqTK8LE38Q/Hxk1MncJRTiMyAyvkvQUqhw4FSaBOM9kmXVA5s1p43ruSZ40sw6cVdPLuzQ10LH/0C1unQOZWBB3S2emMjD9MVKV6LiDOmA==
key fingerprint sha256: 8d6d1cd7b920ede2d4949eb35abc14f40a0860b86a2da6dd9bdb79c99d61b173
Decrypt it & read the pick
Decryption key (released after the match)
79629f4d7fc7a182935524f6629c9f663168f3f13067d72a3d28e35075ed9cd1
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("eeeeAMLQKAsCqm5TfgFae4FX/hXWJrNc1QWKnKIP39HVCDU7jEBxcbadMkd+ttDEVOeZsyEprJdQBMMo77s5cEOV9GldUSj1c9WbL4vmc44s7U8UOhmNADX75SafF51o7q9r20VgUUiOsxkutaEe3CMvlI4o8wio/iPtcdtyYBg0HiN8c4QfXb8c8zCLd9fN2ZlDkXnM7RrWklEzbJgPNmMzaow2/g0S+Ur+BY5BgVh3+49dgpXwntmGMmLCOqTK8LE38Q/Hxk1MncJRTiMyAyvkvQUqhw4FSaBOM9kmXVA5s1p43ruSZ40sw6cVdPLuzQ10LH/0C1unQOZWBB3S2emMjD9MVKV6LiDOmA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("79629f4d7fc7a182935524f6629c9f663168f3f13067d72a3d28e35075ed9cd1".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): 79629f4d7fc7a182935524f6629c9f663168f3f13067d72a3d28e35075ed9cd1
  • IV / nonce (hex): 79e79e00c2d0280b02aa6e53
  • Ciphertext (hex): 7e015a7b8157fe15d626b35cd5058a9ca20fdfd1d508353b8c407171b69d32477eb6d0c454e799b32129ac975004c328efbb39704395f4695d5128f573d59b2f8be6738e2ced4f143a198d0035fbe5269f179d68eeaf6bdb456051488eb3192eb5a11edc232f948e28f308a8fe23ed71db726018341e237c73841f5dbf1cf3308b77d7cdd999439179cced1ad69251336c980f3663336a8c36fe0d12f94afe058e41815877fb8f5d8295f09ed9863262c23aa4caf0b137f10fc7c64d4c9dc2514e2332032be4bd052a870e0549a04e33d9265d5039b35a78debb92678d2cc3a71574f2eecd0d742c7ff40b5ba740e656
  • Auth tag (hex): 041dd2d9e98c8c3f4c54a57a2e20ce98

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