Hi Marc,
I have a problem reproducing the hypergraph in Lesson 24 notebook, section "Final States". If I run
ResourceFunction[
"WolframModel"][{{x, y}, {y, z}} -> {{x, y}, {z, y}, {y, w}, {w,
x}}, {{0, 0}, {0, 0}}, 11, "FinalStatePlot"]
The result is this hypergraph

Where I used the same rule as the example in the section before:
rule = {{x, y}, {y, z}} -> {{x, y}, {z, y}, {y, w}, {w, x}};
I suspect another rule was used when the notebook was created; probably similar to the one in the example of the ResourceFunction["WolframModel"] documentation: https://resources.wolframcloud.com/FunctionRepository/resources/WolframModel/
ResourceFunction[
"WolframModel"][{{x, y}, {x, z}} -> {{x, z}, {x, w}, {y, w}, {z,
w}}, {{0, 0}, {0, 0}}, 11, "FinalStatePlot"]
Which gives the plot shown in the lesson notebook:
