1use crate::ctx::GenContext; 2 3pub fn gen(ctx: &mut GenContext<'_>, buf: &mut String) { 4 ctx.rng.push_hex(buf, 40); 5}