Ningbo Professional vs Meizhou Hakka
League One · China · 30 Aug 2026, 11:00 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.
rTcqatkzk/AQj9RynsPvNZpa+I9d9ijAGkOvOJ/M2RzTWVLEsS668plYhLEgvvdnoZhTD/ULacv6f+bsIy7Qpjmia5vsWJFUo7PZLTDDA954Dh7bFER3A/k8Ajw1127sKCmRMgrgwZQ+AD9HGu18sPTTDytPrVCoQRjGGMkQfCyb5Gs5yx9kxadP/YTQ6GVCwwkGhXAg64cwZgtntMxNhI/V3D1N+VQkJfRCT936FifizTjc4BagJNpR4ZtkkzAh/a8hzbEc+qHK3i4BqPOP5Py7ciUT/z+KBauYbs+DHe8lrnlLITEEQaGt4eGyhmpSdMHFDSXBe8WIE3wRzd/eOqeY
3f2d993218027b9d52e82a5c81c486967b80893ecc1b694d411fb9a82b7c97a0Decrypt 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("rTcqatkzk/AQj9RynsPvNZpa+I9d9ijAGkOvOJ/M2RzTWVLEsS668plYhLEgvvdnoZhTD/ULacv6f+bsIy7Qpjmia5vsWJFUo7PZLTDDA954Dh7bFER3A/k8Ajw1127sKCmRMgrgwZQ+AD9HGu18sPTTDytPrVCoQRjGGMkQfCyb5Gs5yx9kxadP/YTQ6GVCwwkGhXAg64cwZgtntMxNhI/V3D1N+VQkJfRCT936FifizTjc4BagJNpR4ZtkkzAh/a8hzbEc+qHK3i4BqPOP5Py7ciUT/z+KBauYbs+DHe8lrnlLITEEQaGt4eGyhmpSdMHFDSXBe8WIE3wRzd/eOqeY"), c => c.charCodeAt(0));
const key = Uint8Array.from("3f2d993218027b9d52e82a5c81c486967b80893ecc1b694d411fb9a82b7c97a0".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):
3f2d993218027b9d52e82a5c81c486967b80893ecc1b694d411fb9a82b7c97a0 - IV / nonce (hex):
ad372a6ad93393f0108fd472 - Ciphertext (hex):
9ec3ef359a5af88f5df628c01a43af389fccd91cd35952c4b12ebaf2995884b120bef767a198530ff50b69cbfa7fe6ec232ed0a639a26b9bec589154a3b3d92d30c303de780e1edb14447703f93c023c35d76eec282991320ae0c1943e003f471aed7cb0f4d30f2b4fad50a84118c618c9107c2c9be46b39cb1f64c5a74ffd84d0e86542c30906857020eb8730660b67b4cc4d848fd5dc3d4df9542425f4424fddfa1627e2cd38dce016a024da51e19b64933021fdaf21cdb11cfaa1cade2e01a8f38fe4fcbb722513ff3f8a05ab986ecf831def25ae794b21310441a1ade1e1b2866a5274c1 - Auth tag (hex):
c50d25c17bc588137c11cddfde3aa798
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 #964366 · 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.