FOCUS
Matto · Project 181 · Factory
Edition size: 567 · First mint: 9 October 2021
The work and its context
FOCUS is Art Blocks project 181 on the contract at 0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270, on Ethereum mainnet, credited to Matto. The indexed record returns 567 invocations against a maximum of 567, a declared dependency of p5@1.0.0, and a display_static value of false 1. The project page describes it as an Art Blocks 500 release in the Factory category, states a fixed edition of 567, and carries an interactive badge but no animated badge 2. That badge combination is accurate, and this essay will show why it matters.
Each output is a rectangle of paper carrying a pattern, and at its centre a single shape: a square, diamond, circle, tall or wide rectangle, tall or wide diamond, or tall or wide eye. The pattern recedes toward that shape in one-point perspective, built from repeated borders and interior linework. The palette is seven colours and they are named after stationery: Felt-Tip Black, White Paint Marker, Gold Paint Marker, Teacher's Red, Ballpoint Blue, Gel-Pen Green and Pink Highlighter 3. The artist states the reason for that naming directly: the colours are "all real things, like pens and markers", because the outputs are meant to be reproducible by hand 4.
Three properties of the edition are worth fixing at the outset, because each is either absent from or contradicted by the platform record.
The work is not animated and it is not a loop. Its drawing routine ends by halting the sketch, so each token renders exactly one frame and stops 1. Observed in the renderer, four separate tokens held a frame counter of 1 across observation windows of four to eight seconds, with byte-identical canvas signatures throughout 5. What the work has instead is interaction: four documented controls that redraw the image with different parameters.
The edition has three aspect ratios, not one. The central shape determines the ratio: square for the first three shapes, a golden-ratio portrait for the next three, a golden-ratio landscape for the last three. Reproducing that rule across the edition gives 196 square, 184 portrait and 187 landscape tokens 3. The index records a single aspect_ratio of 1 and the project page prints ASPECT RATIO 1, which is correct for 196 of 567 tokens 21. Measured in the renderer, one token returned a canvas of 1124 by 1820 for a ratio of 0.6176 and another 1324 by 818 for 0.6178, against the golden ratio of 0.618 5.
And one of the twelve published traits carries no information at all. The trait named Special reads "Yes" on all 567 tokens 3. Its other two values exist in the program and were never minted.
Conception and development
FOCUS is unusually well documented by its artist. The website recorded against the project resolves, and the page it reaches carries roughly 24,000 characters of artist statement covering motivation, perceptual theory, the algorithm, the interactivity and a manual recreation of an output in pencil and paint 4. The indexed interview field is null, but in this case the artist's own page more than covers the gap 1.
The work is the second in what the artist calls the Zenerative series, following Ensō, which was Art Blocks project 34 46. On the Ensō page the artist describes a long convergence: art and programming since school, Chinese martial arts and Eastern spirituality in college, sumi-e ink wash painting as a meditative practice, then self-teaching solidity, python, processing, ruby, p5.js and finally vanilla JavaScript before the two halves met 6.
For FOCUS the stated subject is attention itself: the artist describes it as "an exploration of, and meditation on, the act of directed attention, the fixture of concentration, the state permitting clarity, and the mathematical point of convergence" 4. A long central section of the statement is about perception rather than code, covering the delay between light reaching the eye and the mind's comprehension of it, the fovea and the lower acuity of peripheral vision, colour blindness and tetrachromacy, and the dress photograph 4.
Two decisions in that statement bear directly on what the program does.
The first is the refusal of pseudo-randomness. The artist writes that the outputs are "entirely and directly determined by the token's hash value, and no computer-generated pseudo-random numbers are utilized", and gives the reason: so that the images can be recreated by hand, "with a print-out of the algorithm, rulers, a calculator, and art supplies" 4. Reading the program confirms the claim: there is no generator, no seeded sequence, only the hash consumed directly 1. The stationery palette names follow from the same intention, and the page shows a finished 40 by 40 centimetre manual recreation beside its token 4.
The second is a story about line thickness that the artist chose to preserve rather than optimise away. The stroke is set to the largest canvas dimension divided by 300, multiplied by 0.8. The artist explains that the 300 comes from thinking in 300 pixels per inch as an old-school photographer, and the 0.8 from targeting the half-millimetre line of a Sakura Pigma Micron 08 pen. The statement notes that dividing by 375 and setting the stroke to the unit directly would give the same result in fewer bytes, which matters when the file goes on chain, and that the refactor was rejected deliberately: "I like showing the artist's hand in my work" 4. The program still divides by 300 and multiplies by 0.8, exactly as described 1.
One discrepancy should be recorded rather than smoothed. The artist's statement twice frames the work as larger than it is, calling FOCUS "a 1000-image long meditation" 4. The index reports 567 invocations against a maximum of 567, with the project complete 1. No record of when or why a maximum changed was located, and this essay does not assume one; what is established is that the artist's statement describes a thousand images and the realised edition is 567.
How the work was constructed
The program was retrieved from the indexed project record by an HTTP POST to the Art Blocks public GraphQL endpoint, using a named operation filtered on the exact slug, with the returned composite identity key used to corroborate contract and project 1. The record reports a script count of 3. The three indexed fragments are returned out of index order and concatenate in ascending index order to exactly the single script field. The assembled program is 18,815 bytes and hashes to SHA-256 6eb9b8939ee875f35ede89fd4f0c936fb3f718b612007481ac1efd28e752c097. It was retrieved twice, in separate sessions either side of a connection loss, and produced the same digest both times. The whole program was read. It is not minified, and its first line is a comment directing the reader to a better commented version on the artist's website and asserting copyright in the name Matthew Costanza, 2021 1.
The hash is consumed two ways. First it is split into 32 hexadecimal byte values, and a reader takes the front value off that list for each trait decision, so each pair is used exactly once. Second, those same bytes are converted to binary and concatenated into a string that later drawing routines read from cyclically for binary choices. The artist describes precisely this division: hex pairs for the main features, binary digits for on-off and left-right choices, with the binary digits reused "creating a minimal pattern to the trained eye" 4.
A detail of that binary conversion is worth recording because it is invisible from outside. The conversion uses a plain base-two rendering with no zero padding, so a byte below 128 contributes fewer than eight characters, and the loop stops one short of the end, so the final byte never reaches the string. The result is a bit string whose length varies by token: across the edition it takes 38 distinct lengths between 198 and 237 characters 3. A reader expecting 256 uniform bits would not reproduce the drawing decisions that depend on it.
The trait mapping was reimplemented independently from the program and run against all 567 token hashes, then compared with the published features 3. Every trait reproduces exactly. Shape, Shape Style, Pattern, Pattern Border, Paper Color and Linework Color each map one to one from their selector with no exceptions. Midpoints reproduces at 567 of 567, Pattern Recursion Factor at 567 of 567, and Special at 567 of 567.
Shape Recursion Factor is the instructive one. A first reimplementation, following the arithmetic alone, reproduced only 450 of 567. The missing piece is a short cascade of overrides that runs after the palette is chosen: a shape style is demoted when its fill would match the linework colour and the interior lines would therefore be invisible, a second demotion follows when the recursion factor is 1, and the recursion factor is then forced back to 1 when the style has become solid. Adding those three in their program order lifts the reproduction to 567 of 567. The artist documents this behaviour in the statement, and explains its purpose: "if the shape's fill color is the same as the linework color, then any linework inside the shape would be hidden, so the algorithm adjusts the features", with the consequence that "the features displayed with the token will be more representative of the final image than what the hash originally called for" 4. The published traits describe the picture, not the raw hash, and the difference is 117 tokens.
One further parameter comes from outside the hash entirely. The token ID's parity selects between two orientations of the Triangle Fills pattern 1, which the artist confirms: "whether the ID is even or odd determines which orientation the Triangle Fills use" 4.
Then there is Special. The program computes it last, and the rule is narrow: when the pattern border selector lands on its fifth value and the pattern selector on its eleventh, the trait becomes "Portal" or "Truth" depending on the shape style; otherwise it is "Yes" 1. Those two selector values are the ones whose published names are None and None. In other words the special case is the empty one: no pattern border and no pattern, leaving only the paper and the central shape.
It never happened. Across 567 tokens the trait reads "Yes" every time, and the reproduction agrees at 567 of 567 with zero tokens reaching either alternative 3. This can be checked without the code at all: 14 tokens carry a Pattern Border of None, 56 carry a Pattern of None, and no token carries both 3. The artist states the same outcome independently, writing that the pair of extra traits "each have far less than a 1% chance of occurrence, and they never presented themselves in the official mints", while noting they can still be found by exploring the algorithm 4. Three separate lines of evidence agree: the drawing rule, the edition census, and the artist's own account.
The consequence for a catalogue is that Special is a published, filterable attribute with exactly one value across the entire edition. It distinguishes nothing. What it records is the absence of something, and the name of the thing it fails to mark is not published anywhere on the platform.
Finally, the rendering. The drawing routine calculates its geometry, draws the pattern, draws the shape, and ends by halting the sketch 1. One frame, then nothing. Each of the four documented controls calls the resize handler, which clears the accumulated point arrays and redraws once. Observed in the renderer, this is exactly what happens: a token sat at frame 1 indefinitely, one press of the hide key took it to frame 2, one arrow press to frame 3, and three more to frame 6 5. The work advances one frame per human action and at no other time.
The mint
Four events need separating, and the platform labels them inconsistently.
The first token, invocation 0, was minted on 9 October 2021 at 03:18:11 UTC 3. The project was activated five days later, on 14 October 2021 at 17:08:35 UTC 1. The public opening, recorded as the project start datetime, was on 26 October 2021 at 16:00:00 UTC 1. The project page displays "Released on 27 October 2021", which is that opening instant rendered in a timezone ahead of UTC 2. Completion, the final mint, was on 16 June 2023 at 03:11:35 UTC 13.
Exactly one token preceded the public opening: invocation 0, the artist proof 3.
The pace divides sharply. Counting from the opening, 59 tokens were minted in the first hour and another 59 during the rest of the first day, so 118 of 567 went in day one. Then 24 across days two to seven, 14 across days eight to thirty, 306 across the remainder of the first year, and 104 after the first anniversary 3. The longest gap between consecutive invocations was 56.0 days, between invocations 174 and 175, followed by 51.5 days between 551 and 552 3. The sale duration from public opening to final mint is 597.5 days, calculated as the final mint at 2023-06-16T03:11:35Z minus the opening at 2021-10-26T16:00:00Z divided into days 13.
So a fifth of the edition sold on the first day and the remainder took the better part of two years. That shape matters for how the project should be described: a reader told only that the edition is complete would reasonably assume it sold out, and a reader told only the current price would have no way to reconstruct the nineteen months of tail.
The index reports a current price of 0.12 ETH 1. This is a current observation of the price field and not a record of any price paid; the project page for this release publishes no sales note, so no original auction or fixed-price mechanism is quoted here. Where the comparable project by another artist in this batch published its Dutch auction ladder, this one does not, and inventing one would be guesswork.
Copyright and licensing
The artwork licence the platform reports is CC BY-NC 4.0, with a link to the canonical Creative Commons deed 1. Unlike several projects of this period, the link resolves and names a real, versioned instrument, and it was read in full during this session 7.
Attribution-NonCommercial 4.0 International permits sharing, meaning copying and redistributing the material in any medium or format, and adapting, meaning remixing, transforming and building upon it. It conditions both on attribution: appropriate credit, a link to the licence, and an indication of whether changes were made. It prohibits commercial use, which the deed defines as use primarily intended for commercial advantage or monetary compensation. It forbids applying further legal or technological restrictions that would prevent others doing what the licence permits. And it carries two notices that matter for a catalogue: the deed is not itself the licence and has no legal force, and no warranties are given, so other rights such as publicity, privacy or moral rights may still limit a given use 7.
That is a materially different position from a work whose licence label points at a document with no version number. Here the label, the link and the instrument agree.
Code rights are separate and are stated inside the work. The program's first line is a comment asserting copyright in the name Matthew Costanza, 2021, and directing readers to a better commented version on the artist's website 1. That is an assertion of authorship over the code, not a grant, and no separate code licence was located. On-chain storage makes the program readable by anyone; it does not make it redistributable. For that reason no part of the program is reproduced in this package, only its digest, its measured behaviour and a description in prose.
Two further things belong in the rights record because the artist has published them and they shape what a holder may do.
The artist offers signed prints to owners and also invites owners to print the work themselves, linking a high-resolution rendering tool for the purpose 4. Since the artist is the licensor, that invitation sits alongside rather than inside the CC BY-NC grant, and it is recorded here as the artist's stated permission rather than as a term of the licence.
The artist also publishes a separate animating variation of the script, the FOCUS Animator, which is explicitly not the minted artwork and carries a photosensitive seizure warning for flashing colours and moving patterns 4. Any presentation that reached for that tool to make FOCUS appear animated would be showing a different program from the one on chain, and the warning would travel with it.
The declared dependency, p5@1.0.0, carries its own upstream licensing, which was not inspected and is recorded separately as unknown rather than folded into either domain above 1.
Close reading of examples
Four tokens were opened in the original renderer and inspected. Two are treated at length. Every canonical token page below returned HTTP 200 when fetched during this session, and every observation is this researcher's own inspection of the live renderer rather than a preview image 5.

FOCUS #122, token 181000122, is the AB5D holding and the proposed header work. Ownership was verified rather than assumed: the complete linked wallet set was refreshed from the AB5D profile during this session and returned three addresses, and this token's indexed owner is the third of them 83. Its published traits give Shape Tall Rectangle, Shape Style Solid Fill, Shape Fill Color Gold Paint Marker, Paper Color Felt-Tip Black, Linework Color White Paint Marker, Pattern Staggered Lines to Recurrence, Pattern Border Dashed Line, Midpoints 31, and both recursion factors 1 3.
On screen it is severe and very effective. The canvas is 1124 by 1820, a golden-ratio portrait. The ground is black. From a dashed rectangular border, white lines rake inward toward the centre in a dense radiating fan, and where they converge there is a gold rectangle, flat and solid, occupying the middle third. Because the line thickness stays constant as the lines converge, the centre reads as receding while refusing to behave like a real perspective, which is the cognitive dissonance the artist describes in the statement 4. The frame counter read 1 at every sample across 7.5 seconds with identical signatures, confirming the single-frame behaviour 5.
This token was also used for the control tests, and the results are worth reporting in full because they change the picture completely. Pressing the hide key with a physical keypress flipped the shape flag to false and advanced the frame counter to 2. The gold rectangle vanished and the fan of white lines, previously interrupted, ran all the way in to a bright hourglass-shaped void at the centre: a different image, not a version of the first with a hole in it 5. The arrow keys did not reach the sketch when pressed physically, the pane intercepting them before the page; dispatched into the page directly they behaved as documented, the up arrow taking the pattern recursion factor from 1 to 2 and three right arrows taking the midpoint count from 31 to 37, each press advancing the frame counter by exactly one 5. At that setting the centre had become a solid black rectangle inside a far denser field. One token, three states, none of them a variation on the others.
Two details of the interaction are worth recording. The arrow keys move the recursion factor additively while the minted trait values are powers of two, so a viewer stepping up from 2 lands on 3, a value no token was minted with. And the save key writes a PNG whose filename carries the token ID, the full hash, and the current recursion factor, midpoint count and shape visibility 1, so a saved image records the viewer's state rather than the token's. The artist confirms the intent: "the features will always represent the not adjusted token" 4.

FOCUS #176, token 181000176, is one of the 14 tokens in the edition with no pattern border, and it is the closest this edition comes to the variant that never minted. Its traits give Shape Wide Eye, Shape Style Lens, Pattern Binary Override Fills, Pattern Border None 3. Its canvas is 1324 by 818, the golden-ratio landscape, ratio 0.6178 5.
On a white ground, dark maroon blocks step inward in one-point perspective, arranged in receding rows that read unmistakably as a corridor, and at the vanishing point sits a gold lens: a pointed oval outlined in dark red. With no border the blocks simply stop at the canvas edge rather than being framed, which is what makes the space feel like it continues past the picture. The frame counter held at 1 across four seconds 5. This is the artist's "artificial space" claim in its most literal form, and it is also the clearest demonstration of what the missing Portal and Truth tokens would have looked like had the pattern been absent too: the same paper, the same lens, and nothing else.

FOCUS #29, token 181000029, carries Pattern None with a Dashed Line border, a Wide Diamond in Solid Fill, and Felt-Tip Black paper 3. Black ground, a gold diamond at centre, and concentric dashed white rectangles stepping inward around it. With the pattern absent, only the border's own recursion survives, and the result is the minimal register the artist hoped for: "outputs that are only a few concentric shapes" 4.

FOCUS #2, token 181000002, is square, the third aspect ratio, and shows the perceptual machinery working through line interference rather than perspective. Its traits give Shape Circle, Shape Style Lens, Pattern Parallels, Pattern Border Circles, Paper Color White Paint Marker 3. The canvas measured 1324 by 1324 5. On white, fine black horizontal rules cross the whole field; an inset square panel of fine vertical rules sits within them; and at the centre a green disc, ringed in white, reads as a lens sitting above both. The border is a chain of small circles around the perimeter. The vertical and horizontal rule fields produce a visible shimmer where they meet, which is the sort of phenomenon the artist's perception essay is about. Frame counter 1, unchanged across four seconds 5.
On sound: every renderer session was silent, and this is silence by construction rather than blocked playback. The document contained no audio or video elements, the only script loaded was the p5 library at version 1.0.0 with no sound add-on, and the program contains no audio call 51. No playback action was attempted because there is no audio path to attempt one on.
Significance and limitations
The interesting thing about FOCUS is that its documentation is better than its metadata, and the gap between them is where a cataloguer will go wrong.
The artist's statement is a genuine primary source: it explains the refusal of pseudo-randomness, the hand-recreatability that follows from it, the stationery palette that follows from that, the trait overrides that make the published features describe the picture rather than the hash, the token-parity trait, the interactivity, and the never-minted special case 4. Nearly every claim in it that can be checked against the program or the edition checks out. The reproduction reaches 567 of 567 on every trait, and the artist's account of the overrides is exactly what was needed to get Shape Recursion Factor there from 450.
Against that, the platform record misdescribes the work in three ways.
It reports a single aspect ratio for an edition with three, so 371 of 567 tokens are recorded under a shape they do not have 213.
It publishes Special as a filterable attribute with one value across 567 tokens 3. The trait is the residue of a case that did not occur. A reader filtering on it learns nothing, and the platform gives no hint that the interesting values are the missing ones.
And its display_static flag reads false for a work that renders a single frame and halts 1. Here the project page is the more accurate document: it carries an interactive badge and no animated badge 2, which is exactly right. A dossier that took the index field instead, and presented FOCUS with a looping player, would be showing an animation the work does not have. The artist does publish an animating variation, but it is a separate program and it carries a photosensitive seizure warning 4.
What the edition gained from the missing case is worth stating plainly. In a series about doing more with less, the rarest possible output was the emptiest: no pattern, no border, only paper and a central shape, and the artist gave that case the names Portal and Truth. It had, by the artist's own estimate, well under a one per cent chance, and across 567 draws it never came up 4. The most Zen output this algorithm can make is one that exists only in the algorithm.
The limitations of this package should be stated plainly. Four of 567 tokens were observed, and the single-frame behaviour of the other 563 rests on reading the program rather than watching each one. Control testing was done on one token: the hide key with physical input, the arrow keys by dispatched event after physical presses were intercepted by the browser pane, and the save key not exercised at all because it initiates a file download. The mint chronology comes from indexed timestamps; no on-chain price history was read, and no sales note exists on the project page to corroborate a mint mechanism. The artist's statement is a primary source but it is the artist's own account, and where it makes claims this essay could not independently check, such as the millions of trait combinations or the perceptual theory, they are reported as the artist's statements rather than as verified fact. The connection between this researcher's environment and the renderer was lost once mid-session; all project and token data was re-retrieved afterwards and the script digest reconfirmed identical, and the corroboration is recorded rather than the second retrieval being presented as the only one.
Unresolved research questions, stated explicitly:
Why does the artist's statement describe FOCUS as a thousand images when the completed edition is 567? No record of a maximum being changed, or of a decision to close the edition early, was located.
What was the original mint mechanism and price? The project page publishes no sales note, and the index reports only a current price field. Whether 0.12 ETH was a fixed mint price, an auction resting price or a later value is not established here.
Was Special intended to ship as a published attribute at all, given that its informative values were always going to be improbable? The artist knew the case was rare and said so; whether the trait was meant to be visible on every token regardless is not addressed in any located source.
How many tokens would a viewer find non-interactive in practice? The artist notes that a token with both Pattern and Pattern Border set to None will not respond to the recursion or midpoint controls, and no such token exists. But 14 tokens have no border and 56 have no pattern, and the degree to which those respond was not measured token by token here.
Does the published feature set for any token disagree with its rendered image in the way the overrides are meant to prevent? The overrides were verified as reproducing the published values, but no systematic comparison of published traits against rendered pixels was performed beyond the four tokens observed.
References
-
Art Blocks. Art Blocks public GraphQL index, projects_metadata for project 181. Accessed 2026-09-18. ↩
-
Art Blocks. FOCUS by Matto, collection page. Accessed 2026-09-18. ↩
-
Art Blocks. Art Blocks public GraphQL index, tokens_metadata for all 567 tokens of project 181. Accessed 2026-09-18. ↩
-
Matto. FOCUS, artist project page and statement. Accessed 2026-09-18. ↩
-
Art Blocks. Art Blocks live renderer for project 181 tokens. Accessed 2026-09-18. ↩
-
Matto. Ensō, artist project page. Accessed 2026-09-18. ↩
-
Creative Commons. Attribution-NonCommercial 4.0 International (CC BY-NC 4.0) deed. Accessed 2026-09-18. ↩
-
Art Blocks. Art Blocks public GraphQL index, user_profiles for the AB5D collection. Accessed 2026-09-18. ↩
Written by claude-opus-5 (contributor-reported) for AB5D. Original prose: CC0. Artwork and code rights are addressed separately above.
Token usage unavailable for the complete essay.
Token usage
No token telemetry is exposed to the agent in this environment. All counts are null rather than estimated, and no batch figure has been divided into per-essay numbers. Cached input and reasoning counts are null rather than folded into a total, so nothing is double-counted. The coordinator must take telemetry from the account usage record before publication.
Artist dossier · Source record · Essay data
Research record
The indexed project script was inspected. Runtime observations and limits are documented in the research record. Historical price, allocation and licensing questions remain as identified in the essay. Publication does not resolve those evidence gaps.
