Persiku Kudus vs PSIS Semarang
Championship · Indonesia · 27 Sept 2026, 08:30 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.
NzxLOlKlitk0sU6nSSsZifXKVTOB+2/q7YxKWDNRegAwjKCm4t3B/mXoX1v5Z8IwPUxyzO0J1kSNnwZB5psump4zcfPGpMJYL9oDEXaNG5RZ0YHbxUKiNv6NG/arln2xjChnIvik4mrYCThjKrr98fFfrWS5lD2eJyi+gvwIEW9ITYTe0BvEPZD/OLNPmMLWS/3hoSfmeYO+Ltsi6L/mg0hn5ftpI4ziRp5z78drqTiM2I5SjqxY65QcOe7geJU1XBiAaNeziKh9m9C6FU28XZImnsT1d1s7Aya1y55mjq1tkbUivjdwljDZFzmcNBjZRNUkgQB9J9CTTVLL8vCUiMgXrJgwiVOAbERUgXtYGOfxatK0zfOiHPwjv91Gr2tZuENM7iaFSjK1MZBVNDZOzH0mEcp3+GmCTqRuUCCtOE8CNldQ8muVcC1usP9dCusFh8+wbXxloc7Uxq6ccdBcT4bnf3Zs+IZ3lemg2U+EOCReTeVHaVZdyi8NjcR11HnyiegTOB2QN+q21jGzSIPoRxZVgG4GX3lgw57GVGJAOtFI2A15mlvprN9tyX06cHt02mjirRTZ7kGvCYgwjuLQMvFpoZu3PURi5G6haVLceGOq4rO8OiRwWMEroT+RxkEgkpUobZVAh7PZ55Ic7n2fjGa5YhaXgaBmL3fAVeUzQ6zk9BuZ4mcdDoegZHhyAdTCAQMBjlUuYPG5yv5F
f7c8a8bfaca4f44d7b588d89bad043260d6b81d02860556387da30d439459ab2Decrypt 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("NzxLOlKlitk0sU6nSSsZifXKVTOB+2/q7YxKWDNRegAwjKCm4t3B/mXoX1v5Z8IwPUxyzO0J1kSNnwZB5psump4zcfPGpMJYL9oDEXaNG5RZ0YHbxUKiNv6NG/arln2xjChnIvik4mrYCThjKrr98fFfrWS5lD2eJyi+gvwIEW9ITYTe0BvEPZD/OLNPmMLWS/3hoSfmeYO+Ltsi6L/mg0hn5ftpI4ziRp5z78drqTiM2I5SjqxY65QcOe7geJU1XBiAaNeziKh9m9C6FU28XZImnsT1d1s7Aya1y55mjq1tkbUivjdwljDZFzmcNBjZRNUkgQB9J9CTTVLL8vCUiMgXrJgwiVOAbERUgXtYGOfxatK0zfOiHPwjv91Gr2tZuENM7iaFSjK1MZBVNDZOzH0mEcp3+GmCTqRuUCCtOE8CNldQ8muVcC1usP9dCusFh8+wbXxloc7Uxq6ccdBcT4bnf3Zs+IZ3lemg2U+EOCReTeVHaVZdyi8NjcR11HnyiegTOB2QN+q21jGzSIPoRxZVgG4GX3lgw57GVGJAOtFI2A15mlvprN9tyX06cHt02mjirRTZ7kGvCYgwjuLQMvFpoZu3PURi5G6haVLceGOq4rO8OiRwWMEroT+RxkEgkpUobZVAh7PZ55Ic7n2fjGa5YhaXgaBmL3fAVeUzQ6zk9BuZ4mcdDoegZHhyAdTCAQMBjlUuYPG5yv5F"), c => c.charCodeAt(0));
const key = Uint8Array.from("f7c8a8bfaca4f44d7b588d89bad043260d6b81d02860556387da30d439459ab2".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).split("\n")[0])); 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):
f7c8a8bfaca4f44d7b588d89bad043260d6b81d02860556387da30d439459ab2 - IV / nonce (hex):
373c4b3a52a58ad934b14ea7 - Ciphertext (hex):
492b1989f5ca553381fb6feaed8c4a5833517a00308ca0a6e2ddc1fe65e85f5bf967c2303d4c72cced09d6448d9f0641e69b2e9a9e3371f3c6a4c2582fda0311768d1b9459d181dbc542a236fe8d1bf6ab967db18c286722f8a4e26ad80938632abafdf1f15fad64b9943d9e2728be82fc08116f484d84ded01bc43d90ff38b34f98c2d64bfde1a127e67983be2edb22e8bfe6834867e5fb69238ce2469e73efc76ba9388cd88e528eac58eb941c39eee07895355c188068d7b388a87d9bd0ba154dbc5d92269ec4f5775b3b0326b5cb9e668ead6d91b522be37709630d917399c3418d944d52481007d27d0934d52cbf2f09488c817ac98308953806c4454817b5818e7f16ad2b4cdf3a21cfc23bfdd46af6b59b8434cee26854a32b531905534364ecc7d2611ca77f869824ea46e5020ad384f02365750f26b95702d6eb0ff5d0aeb0587cfb06d7c65a1ced4c6ae9c71d05c4f86e77f766cf8867795e9a0d94f8438245e4de54769565dca2f0d8dc475d479f289e813381d9037eab6d631b34883e8471655806e065f7960c39ec65462403ad148d80d799a5be9acdf6dc97d3a707b74da68e2ad14d9ee41af0988308ee2d032f169a19bb73d4462e46ea16952dc7863aae2b3bc3a247058c12ba13f91c641209295286d954087b3d9e7921cee7d9f8c66b962169781a0662f77c055e53343ace4f41b99e2671d0e87a06478 - Auth tag (hex):
7201d4c20103018e552e60f1b9cafe45
Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.
The pick is the first line of the decrypted text. Records sealed from 24 September 2026
are followed by a line break and spaces up to a fixed size, so every encrypted pick has the same length
and its size reveals nothing about the selection before the key is published. The commitment hash is
sha256(first line + key), exactly as before.
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 #968745 · 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.