#! /usr/bin/python3
import sys, re
import html_gen as h
from process_funcs import bash
import html_report_funcs as hr

# Created on 2025-10-29 19:56:39.171648+00:00 make_clip_src_py.py
last_edit = "Last edited on 2025-10-29 19:56:39.171648+00:00 by nobody"

def main():

  global last_edit

  title = "[086] f82r-pond-SE-R"
  title = h.protect_html(title)
  st = h.new_doc(title, "#eeffdd")

  h.section(st, 2, "Details")

  caption = """???"""
  hr.basic_figure(st, "annotated.png", caption)

  h.section(st, 2, "Discussion")

  discussion = """"""

  h.parags(st, discussion)

  h.output_doc(st, sys.stdout, 99, last_edit)
  return 0
  # ----------------------------------------------------------------------
main()
