function ob1_Wan_satoshi_overlay() {
const [id, font, edition_number, total_editions, _is_iframe, theme] = document
.querySelector("script")
.dataset.p.split(",");
const content = `/content/${id}`;
const is_unlimited = total_editions == 0;
const type = _is_iframe == "1" ? "iframe" : "image";
const bg_color =
theme == "d" ? "rgba(255, 255, 255, 0.75)" : "rgba(12, 12, 13, 0.5)";
const color = theme == "d" ? "black" : "white";
const font_family = font == "m" ? mono : font == "s" ? serif : sans;
let edition_text = `
${edition_number}/${total_editions}
`;
if (is_unlimited) {
edition_text = `#${edition_number}
`;
}
const html = `
${
type == "image"
? `
${edition_text}
Art by: Ob1 Wan Satoshi
`
: ""
}
${
type == "iframe"
? `${edition_text}
Art by: Ob1 Wan Satoshi
`
: ""
}
`;
document.documentElement.innerHTML = html;
}
const sans =
"-apple-system, BlinkMacSystemFont, roboto, helvetica neue, helvetica, avenir next, avenir, noto, segoe ui, Cantarell, Ubuntu, arial, sans-serif;";
const serif =
"Iowan Old Style, Baskerville, Times New Roman, Apple Garamond, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;";
const mono =
"Menlo, Liberation Mono, Consolas, Monaco, Lucida Console, monospace;";
window.onload = ob1_Wan_satoshi_overlay;