Draw Proof Details - Draw #503413302
Prove this draw
The cryptographic inputs published before and after this draw deterministically produce the winning numbers. Click below to run the full verification in your own browser - no server round-trip, no trust required, just the maths.
Draw Information
#503413302
Instant Million
2026-06-23 05:44:14 UTC
2026-06-23 05:44:16 UTC
Winning Numbers
Main Numbers
Bonus Numbers
Cryptographic Proof
Verification Steps:
- Server seed committed before any entries
- Client seeds collected from all entries
- Combined seed used for random generation
- Results can be independently verified
Proof Status:
Run the full verification above to confirm the server seed, combined seed and winning numbers all line up. The buttons inside the technical details below also let you re-check each piece individually.
Technical Information:
Timestamp: 1782207854
Server Seed Commitment: f2d29713e33ee40184cb757a16ec2aa3fa461cdad041faa051c54a6890d98b93
Commitment Nonce: f3995d6a3db7db261da77fe22041c9302e6ab60e373c76ab530690a7f6201e55
Merkle Root: 06c84c86159d455303168d44fad82a091a74be539f27c7f7d9ae61cdf6922fca
Server Seed (revealed): 6db76fd068eb19b80b20f92cb3936e2099cc387c654d1aa34549d02cef5720ba
Combined Seed: 22a1d8df1d6aebb6bb41440d0efec36aa620b82e2807bd61a7a6fffde5e84a2b
Verification Instructions
- Copy the Server Seed (revealed after draw), Draw ID, Nonce, and other commitment data from below.
-
Verify the Server Seed Commitment by computing:
SHA256("server_seed:" + draw_id + "|" + server_seed + "|" + nonce + "|" + entropy_sources + "|" + version + "|" + commitment_type)
Confirm it equals the Server Seed Commitment hash shown below. - Compute combined_seed = SHA256(server_seed + merkle_root).
-
Generate winning numbers using this exact algorithm:
seed_integer = combined_seed.to_i(16) # Convert hex to integer rng = Random.new(seed_integer) # Ruby's Mersenne Twister PRNG main_numbers = (1..MAIN_COUNT).to_a.sample(PICK_COUNT, random: rng).sort bonus_number = (1..BONUS_COUNT).to_a.sample(1, random: rng).firstGame config for this draw: MAIN_COUNT=40, PICK_COUNT=5, BONUS_COUNT=25 - Confirm the recomputed numbers exactly match the published result numbers.
- To verify your ticket inclusion in the Merkle root: use the Inclusion Proofs section below, copy the Verifier JSON, and verify with the on-page script or a third-party tool.
In-Browser Commitment Verifier
Verify the server seed commitment matches the revealed server seed. No data is sent anywhere; verification runs locally in your browser.
External Verification
leaf: and internal:).
Standard Merkle tree tools will not work directly. You must implement the specific hashing format shown in the proof data above.
Standalone Ruby Verification Script
Copy this script and run it on jdoodle.com/execute-ruby-online (Ruby) to independently verify this draw.