#! /usr/bin/python3
import sys, re
import html_gen as h
from process_funcs import bash
import html_report_funcs as hr
last_edit = "Last edited on 2026-08-16 16:16:35 by stolfi"
def main():
global last_edit
title = "[075] Page f79r"
st = h.new_doc(title, "#eeffdd")
h.section(st, 2, "Summary")
h.parags(st, """Page f79r, like other Bio pages, shows evidence of
the global restoration pass (Rt1) as well as scattered interventions by the
infamous "Boobs Artist" (Rt2). The Rt1 pass mostly restored the text faithfully,
but apparently added several "enhancements" to the illustrations.""")
h.section(st, 2, "All clips")
hr.links_section(st)
h.output_doc(st, sys.stdout, 0, last_edit)
return 0
# ----------------------------------------------------------------------
main()