San Marcos de Arica vs CSD Rangers
Primera B · Chile · 22 Aug 2026, 00: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.
M+ju1+GMn9hVWOvUzZXqTwxQ/22mC0GkPHezCL4HDjC/3NgAIwnsDnXlYUImteIWnqF7kcUioUTikbAnwTM09vXGj+vCkbJKQfYYzq9K+9wzmocEa5LMJL5gL4FuKbtN7pZ6rhqaxL5oLPsD6PeHc10941qv5jvMiTzkbJJBjEE7m6BGCowe6JfUoW3I+zqQTbWWQR6HH7Fmlw2lOLT7XovW6Iuc+ICUHLJsIuq0IG8W8jNacw3/PaEqGEMS31jZ2Licszh0+1uYhV/v0ndt8DFnRbPD99+FRVWDHJGtpYAQBD44gV7YBCgu2XnzFF31Z5hjkmsH0oNAgL7G2CldsIHzjvVCLeLxsutk
d842ca85e5b3e731e911b219236b9561fa4d281380ff8d0f18b61383555629c8Decrypt 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("M+ju1+GMn9hVWOvUzZXqTwxQ/22mC0GkPHezCL4HDjC/3NgAIwnsDnXlYUImteIWnqF7kcUioUTikbAnwTM09vXGj+vCkbJKQfYYzq9K+9wzmocEa5LMJL5gL4FuKbtN7pZ6rhqaxL5oLPsD6PeHc10941qv5jvMiTzkbJJBjEE7m6BGCowe6JfUoW3I+zqQTbWWQR6HH7Fmlw2lOLT7XovW6Iuc+ICUHLJsIuq0IG8W8jNacw3/PaEqGEMS31jZ2Licszh0+1uYhV/v0ndt8DFnRbPD99+FRVWDHJGtpYAQBD44gV7YBCgu2XnzFF31Z5hjkmsH0oNAgL7G2CldsIHzjvVCLeLxsutk"), c => c.charCodeAt(0));
const key = Uint8Array.from("d842ca85e5b3e731e911b219236b9561fa4d281380ff8d0f18b61383555629c8".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):
d842ca85e5b3e731e911b219236b9561fa4d281380ff8d0f18b61383555629c8 - IV / nonce (hex):
33e8eed7e18c9fd85558ebd4 - Ciphertext (hex):
cd95ea4f0c50ff6da60b41a43c77b308be070e30bfdcd8002309ec0e75e5614226b5e2169ea17b91c522a144e291b027c13334f6f5c68febc291b24a41f618ceaf4afbdc339a87046b92cc24be602f816e29bb4dee967aae1a9ac4be682cfb03e8f787735d3de35aafe63bcc893ce46c92418c413b9ba0460a8c1ee897d4a16dc8fb3a904db596411e871fb166970da538b4fb5e8bd6e88b9cf880941cb26c22eab4206f16f2335a730dff3da12a184312df58d9d8b89cb33874fb5b98855fefd2776df0316745b3c3f7df854555831c91ada58010043e38815ed804282ed979f3145df5679863926b07d2834080be - Auth tag (hex):
c6d8295db081f38ef5422de2f1b2eb64
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 #963410 · 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.