Lajeadense vs Uniao Frederiquense
Gaucho 2 · Brazil · 09 Sept 2026, 22: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.
gBDwtgk/195q9fGlZKZTAyex2HRydfualndGI86/X2Tpo1Cu0p1jmFqYRyh7DvBpd140vKjPJsvcHWcZg5RCde6hn7yxJMfan65I6Z9HuwT0TGXcCOrnF9izpmYV24Oe9WNC+IUxWEGl9NRwj58D5Th4vKnllxWSYXNI0Yn2ks6j+PrwMz9BbYrkwatc4CNEnMuDHpbPBgcvX1SONCnk4MJph8AnQWJRnT/WejTWGUN/GCOXM5zzdiBAAqSGBhjZrxaFD4wkLn4HKvouGwKuq1pFpKr6FwSaqZaBwEY6JLxk7kdQ8URs/2KwyG3klenSQwuXr/GjYUZpJiqAZ1c6cAaj92HrjGj5TcJ8ZA==
d72b1c5534f9ee1bdc879e85901f7a7853cb63b3522c33e21dc21050b7f4cb19Decrypt 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("gBDwtgk/195q9fGlZKZTAyex2HRydfualndGI86/X2Tpo1Cu0p1jmFqYRyh7DvBpd140vKjPJsvcHWcZg5RCde6hn7yxJMfan65I6Z9HuwT0TGXcCOrnF9izpmYV24Oe9WNC+IUxWEGl9NRwj58D5Th4vKnllxWSYXNI0Yn2ks6j+PrwMz9BbYrkwatc4CNEnMuDHpbPBgcvX1SONCnk4MJph8AnQWJRnT/WejTWGUN/GCOXM5zzdiBAAqSGBhjZrxaFD4wkLn4HKvouGwKuq1pFpKr6FwSaqZaBwEY6JLxk7kdQ8URs/2KwyG3klenSQwuXr/GjYUZpJiqAZ1c6cAaj92HrjGj5TcJ8ZA=="), c => c.charCodeAt(0));
const key = Uint8Array.from("d72b1c5534f9ee1bdc879e85901f7a7853cb63b3522c33e21dc21050b7f4cb19".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):
d72b1c5534f9ee1bdc879e85901f7a7853cb63b3522c33e21dc21050b7f4cb19 - IV / nonce (hex):
8010f0b6093fd7de6af5f1a5 - Ciphertext (hex):
64a6530327b1d8747275fb9a96774623cebf5f64e9a350aed29d63985a9847287b0ef069775e34bca8cf26cbdc1d671983944275eea19fbcb124c7da9fae48e99f47bb04f44c65dc08eae717d8b3a66615db839ef56342f885315841a5f4d4708f9f03e53878bca9e5971592617348d189f692cea3f8faf0333f416d8ae4c1ab5ce023449ccb831e96cf06072f5f548e3429e4e0c26987c0274162519d3fd67a34d619437f182397339cf376204002a4860618d9af16850f8c242e7e072afa2e1b02aeab5a45a4aafa17049aa99681c0463a24bc64ee4750f1446cff62b0c86de495e9d2430b97aff1a3614669262a80 - Auth tag (hex):
67573a7006a3f761eb8c68f94dc27c64
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 #966195 · 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.