#! /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 2025-11-20 02:23:03 by stolfi" def main(): global last_edit title = "[075] Page Page f67r2 - \"The seven planets\"" st = h.new_doc(title, "#eeffdd") h.section(st, 2, "Restorations") h.parags(st, """There seem to be three layers on the brown ink text: original Rt0.B and restoration rounds Rt1.B, Rt2.B. The evidence is mainly ink density and plumes traced in the wrong direction, but there is one example where a glyph was mangled in a way suggesting that the Restorer did not know the alphabet. There may be also two layers of red ink text, "original" Rt0.R and retraced Rt1.R. The main evidence for the latter is some glyphs mangled beyond recognition, besides plumes traced in the wrong direction. The red ink has cracked and flaked off near the W and E edges of the panel. A faint brownish trace may or may not be visible in those places.""") hr.links_section(st) h.output_doc(st, sys.stdout, 99, last_edit) return 0 # ---------------------------------------------------------------------- main()