Kilmarnock vs Hearts
Premiership · Scotland · 19 Sept 2026, 16:45 UTC
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.
C+WOth/H/J5Ezv89ZdXuog70XnWALHseSGV8cF3kesZpy84EotRw+9eMu5yOTpmeJLRXUCk1ltaZAxskybwnTQTcKqpefGCurUhKPcL0eqYgeewQwGl1u1Rf3AaogKfCcziIEqbm7M1+frfRnlPkZgTFBlpHmNTA51ZWWWW32unXsDQ5U1D3unT/eGwxbcCAhyOhhSR3jD/tpZkBpc/9MwcQXvSqYgI93p5enj/6BJNKstQ1qtBzLuZJFifu1NOW8NSKv67qU34GNJ+nhD5y155jldxjygH/65lINQGaE2TK0IH34iD4Riu1seyLO6ss0aRWHGDlU1vWgqRqTcQeNXRK7kKKAz7kFVJj
c9cf8e405d69dfa5df9df51f701bbf072361bc850647c43479f0706b7c6c6c1aDecrypt 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 F12 → Console),
paste this, press Enter — it decrypts the exact pick shown above:
const blob = Uint8Array.from(atob("C+WOth/H/J5Ezv89ZdXuog70XnWALHseSGV8cF3kesZpy84EotRw+9eMu5yOTpmeJLRXUCk1ltaZAxskybwnTQTcKqpefGCurUhKPcL0eqYgeewQwGl1u1Rf3AaogKfCcziIEqbm7M1+frfRnlPkZgTFBlpHmNTA51ZWWWW32unXsDQ5U1D3unT/eGwxbcCAhyOhhSR3jD/tpZkBpc/9MwcQXvSqYgI93p5enj/6BJNKstQ1qtBzLuZJFifu1NOW8NSKv67qU34GNJ+nhD5y155jldxjygH/65lINQGaE2TK0IH34iD4Riu1seyLO6ss0aRWHGDlU1vWgqRqTcQeNXRK7kKKAz7kFVJj"), c => c.charCodeAt(0));
const key = Uint8Array.from("c9cf8e405d69dfa5df9df51f701bbf072361bc850647c43479f0706b7c6c6c1a".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):
c9cf8e405d69dfa5df9df51f701bbf072361bc850647c43479f0706b7c6c6c1a - IV / nonce (hex):
0be58eb61fc7fc9e44ceff3d - Ciphertext (hex):
65d5eea20ef45e75802c7b1e48657c705de47ac669cbce04a2d470fbd78cbb9c8e4e999e24b45750293596d699031b24c9bc274d04dc2aaa5e7c60aead484a3dc2f47aa62079ec10c06975bb545fdc06a880a7c273388812a6e6eccd7e7eb7d19e53e46604c5065a4798d4c0e756565965b7dae9d7b034395350f7ba74ff786c316dc0808723a18524778c3feda59901a5cffd3307105ef4aa62023dde9e5e9e3ffa04934ab2d435aad0732ee6491627eed4d396f0d48abfaeea537e06349fa7843e72d79e6395dc63ca01ffeb994835019a1364cad081f7e220f8462bb5b1ec8b3bab2cd1a4561c60e5535bd682a4 - Auth tag (hex):
6a4dc41e35744aee428a033ee4155263
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:
- Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
- Drop both into opentimestamps.org (or run
ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time. - See it independently: block #967186 · 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.