One of 954 tokens in the Default Punks collection. This PNG was generated by running the below Javascript code with the `html` property in `tokenURI` as its input.
```javascript
// Use version 17.1.3
const puppeteer = require('puppeteer');
const main = async (html, outputPath) => {
const browser = await puppeteer.launch({headless: 'chrome'});
const page = await browser.newPage();
await page.setViewport({ width: 1200, height: 1200 });
await page.setContent(html);
await page.screenshot({ path: outputPath });
await browser.close();
}
main()
```