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

FC Jurong vs Hougang United

Premier League · Singapore · 18 Sept 2026, 11:30 UTC

Final score
3 : 0
Result
Lost
Pick
Hougang United
Market
1X2
CLV vs fair close
+12.84%
Model prob.
19.5%
Best price
6.00
Min odds
5.24
Stake factor
1.10

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)
2uRPf20SyvGfZaYVx1dn2u05PID0TsLsAFG6u4Xm7XjvzneYjwmJTzz01tK+sXMaISFA0RrDms+sNidAmNs5dQEzXVzcNbk8I5jOg8h5p/L0QlaJlAx8uAXP+rM3Y1UN5lwuMos1E/YX2H+ALt/Au8dxZ2oQkz/anCZV5giXwOR5eooNP+wYbpIU2x8xyCFvE6xiAa9RGJY247inxfEerOIMFuujIpTbzcyJak+wBjQI84+FxDFvO/edXInM3Klg3mAv0NGXUcO8abrSuE9bqiiIyJNb1Mb7+hOISZlRpHl2GS/E/Ec4a6astlqd1etdaHhnx4wFIj3t6M8iU8LHUmIVWdSsKws05Et0Is0=
key fingerprint sha256: 81c1826e349dde6f16c98e2abf4c65f89d59307ba208644b53df2de17f188b0c
Decrypt it & read the pick
Decryption key (released after the match)
6e5bf9d11812321dbc7c3902e0619996030b4025e3b86c523c485a59845ca68a
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("2uRPf20SyvGfZaYVx1dn2u05PID0TsLsAFG6u4Xm7XjvzneYjwmJTzz01tK+sXMaISFA0RrDms+sNidAmNs5dQEzXVzcNbk8I5jOg8h5p/L0QlaJlAx8uAXP+rM3Y1UN5lwuMos1E/YX2H+ALt/Au8dxZ2oQkz/anCZV5giXwOR5eooNP+wYbpIU2x8xyCFvE6xiAa9RGJY247inxfEerOIMFuujIpTbzcyJak+wBjQI84+FxDFvO/edXInM3Klg3mAv0NGXUcO8abrSuE9bqiiIyJNb1Mb7+hOISZlRpHl2GS/E/Ec4a6astlqd1etdaHhnx4wFIj3t6M8iU8LHUmIVWdSsKws05Et0Is0="), c => c.charCodeAt(0));
const key  = Uint8Array.from("6e5bf9d11812321dbc7c3902e0619996030b4025e3b86c523c485a59845ca68a".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): 6e5bf9d11812321dbc7c3902e0619996030b4025e3b86c523c485a59845ca68a
  • IV / nonce (hex): dae44f7f6d12caf19f65a615
  • Ciphertext (hex): c75767daed393c80f44ec2ec0051babb85e6ed78efce77988f09894f3cf4d6d2beb1731a212140d11ac39acfac36274098db397501335d5cdc35b93c2398ce83c879a7f2f4425689940c7cb805cffab33763550de65c2e328b3513f617d87f802edfc0bbc771676a10933fda9c2655e60897c0e4797a8a0d3fec186e9214db1f31c8216f13ac6201af51189636e3b8a7c5f11eace20c16eba32294dbcdcc896a4fb0063408f38f85c4316f3bf79d5c89ccdca960de602fd0d19751c3bc69bad2b84f5baa2888c8935bd4c6fbfa1388499951a47976192fc4fc47386ba6acb65a9dd5eb5d687867c78c05223dede8cf2253
  • Auth tag (hex): c2c752621559d4ac2b0b34e44b7422cd

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