├── .gitignore ├── .project ├── README.md ├── classified └── easy │ ├── false_negatives.txt │ ├── false_positives.txt │ ├── handwritten │ ├── NY01075811_lg.txt │ ├── NY01076111_lg.txt │ ├── NY01304911_lg.txt │ ├── NY01357211_lg.txt │ ├── NY01357311_lg.txt │ ├── NY01357511_lg.txt │ ├── NY01357811_lg.txt │ ├── NY01357911_lg.txt │ ├── NY01358011_lg.txt │ ├── NY01358111_lg.txt │ ├── NY01358511_lg.txt │ ├── NY01363711_lg.txt │ ├── NY01363811_lg.txt │ ├── NY01391411_lg.txt │ ├── NY01391911_lg.txt │ ├── TENN-L-0000211_lg.txt │ ├── TENN-L-0000411_lg.txt │ ├── TENN-L-0000511_lg.txt │ ├── TENN-L-0000911_lg.txt │ ├── TENN-L-0001111_lg.txt │ ├── TENN-L-0001311_lg.txt │ ├── TENN-L-0001411_lg.txt │ ├── TENN-L-0001711_lg.txt │ ├── TENN-L-0002111_lg.txt │ ├── TENN-L-0002511_lg.txt │ ├── TENN-L-0003111_lg.txt │ ├── WIS-L-0012511_lg.txt │ ├── WIS-L-0012611_lg.txt │ ├── WIS-L-0012911_lg.txt │ ├── WIS-L-0013711_lg.txt │ ├── WIS-L-0014611_lg.txt │ ├── WIS-L-0014911_lg.txt │ ├── WIS-L-0015011_lg.txt │ ├── WIS-L-0015211_lg.txt │ ├── WIS-L-0015411_lg.txt │ ├── WIS-L-0015511_lg.txt │ ├── WIS-L-0015911_lg.txt │ ├── WIS-L-0016211_lg.txt │ ├── WIS-L-0016311_lg.txt │ ├── WIS-L-0016511_lg.txt │ └── WIS-L-0016711_lg.txt │ └── typed │ ├── NY01075911_lg.txt │ ├── NY01076011_lg.txt │ ├── NY01356611_lg.txt │ ├── NY01357611_lg.txt │ ├── NY01357711_lg.txt │ ├── NY01363011_lg.txt │ ├── NY01363111_lg.txt │ ├── NY01363411_lg.txt │ ├── NY01365511_lg.txt │ ├── NY01365611_lg.txt │ ├── NY01365711_lg.txt │ ├── NY01365911_lg.txt │ ├── NY01391211_lg.txt │ ├── NY01391311_lg.txt │ ├── NY01391511_lg.txt │ ├── NY01391611_lg.txt │ ├── NY01391711_lg.txt │ ├── NY01391811_lg.txt │ ├── TENN-L-0000111_lg.txt │ ├── TENN-L-0000311_lg.txt │ ├── TENN-L-0000611_lg.txt │ ├── TENN-L-0000711_lg.txt │ ├── TENN-L-0001011_lg.txt │ ├── TENN-L-0002011_lg.txt │ ├── TENN-L-0002211_lg.txt │ ├── TENN-L-0002411_lg.txt │ ├── TENN-L-0002711_lg.txt │ ├── TENN-L-0002911_lg.txt │ ├── TENN-L-0003011_lg.txt │ ├── TENN-L-0003311_lg.txt │ ├── TENN-L-0003511_lg.txt │ ├── WIS-L-0012811_lg.txt │ ├── WIS-L-0015111_lg.txt │ └── WIS-L-0016611_lg.txt ├── classified_from_abby.csv ├── classified_from_tesseract.csv ├── code ├── .project ├── find_labels_with_handwriting.rb └── sort_by_text.rb ├── control.csv ├── false_positives_noisy.txt ├── false_positives_terse.txt ├── lichen ├── abby │ ├── NY01075811_lg.txt │ ├── NY01075911_lg.txt │ ├── NY01076011_lg.txt │ ├── NY01076111_lg.txt │ ├── NY01304911_lg.txt │ ├── NY01356611_lg.txt │ ├── NY01357211_lg.txt │ ├── NY01357311_lg.txt │ ├── NY01357411_lg.txt │ ├── NY01357511_lg.txt │ ├── NY01357611_lg.txt │ ├── NY01357711_lg.txt │ ├── NY01357811_lg.txt │ ├── NY01357911_lg.txt │ ├── NY01358011_lg.txt │ ├── NY01358111_lg.txt │ ├── NY01358211_lg.txt │ ├── NY01358511_lg.txt │ ├── NY01363011_lg.txt │ ├── NY01363111_lg.txt │ ├── NY01363411_lg.txt │ ├── NY01363711_lg.txt │ ├── NY01363811_lg.txt │ ├── NY01365511_lg.txt │ ├── NY01365611_lg.txt │ ├── NY01365711_lg.txt │ ├── NY01365911_lg.txt │ ├── NY01391211_lg.txt │ ├── NY01391311_lg.txt │ ├── NY01391411_lg.txt │ ├── NY01391511_lg.txt │ ├── NY01391611_lg.txt │ ├── NY01391711_lg.txt │ ├── NY01391811_lg.txt │ ├── NY01391911_lg.txt │ ├── TENN-L-0000011_lg.txt │ ├── TENN-L-0000111_lg.txt │ ├── TENN-L-0000211_lg.txt │ ├── TENN-L-0000311_lg.txt │ ├── TENN-L-0000411_lg.txt │ ├── TENN-L-0000511_lg.txt │ ├── TENN-L-0000611_lg.txt │ ├── TENN-L-0000711_lg.txt │ ├── TENN-L-0000811_lg.txt │ ├── TENN-L-0000911_lg.txt │ ├── TENN-L-0001011_lg.txt │ ├── TENN-L-0001111_lg.txt │ ├── TENN-L-0001211_lg.txt │ ├── TENN-L-0001311_lg.txt │ ├── TENN-L-0001411_lg.txt │ ├── TENN-L-0001511_lg.txt │ ├── TENN-L-0001611_lg.txt │ ├── TENN-L-0001711_lg.txt │ ├── TENN-L-0001811_lg.txt │ ├── TENN-L-0001911_lg.txt │ ├── TENN-L-0002011_lg.txt │ ├── TENN-L-0002111_lg.txt │ ├── TENN-L-0002211_lg.txt │ ├── TENN-L-0002311_lg.txt │ ├── TENN-L-0002411_lg.txt │ ├── TENN-L-0002511_lg.txt │ ├── TENN-L-0002611_lg.txt │ ├── TENN-L-0002711_lg.txt │ ├── TENN-L-0002811_lg.txt │ ├── TENN-L-0002911_lg.txt │ ├── TENN-L-0003011_lg.txt │ ├── TENN-L-0003111_lg.txt │ ├── TENN-L-0003211_lg.txt │ ├── TENN-L-0003311_lg.txt │ ├── TENN-L-0003411_lg.txt │ ├── TENN-L-0003511_lg.txt │ ├── WIS-L-0012111_lg.txt │ ├── WIS-L-0012211_lg.txt │ ├── WIS-L-0012311_lg.txt │ ├── WIS-L-0012511_lg.txt │ ├── WIS-L-0012611_lg.txt │ ├── WIS-L-0012711_lg.txt │ ├── WIS-L-0012811_lg.txt │ ├── WIS-L-0012911_lg.txt │ ├── WIS-L-0013011_lg.txt │ ├── WIS-L-0013111_lg.txt │ ├── WIS-L-0013211_lg.txt │ ├── WIS-L-0013311_lg.txt │ ├── WIS-L-0013411_lg.txt │ ├── WIS-L-0013511_lg.txt │ ├── WIS-L-0013611_lg.txt │ ├── WIS-L-0013711_lg.txt │ ├── WIS-L-0014411_lg.txt │ ├── WIS-L-0014511_lg.txt │ ├── WIS-L-0014611_lg.txt │ ├── WIS-L-0014811_lg.txt │ ├── WIS-L-0014911_lg.txt │ ├── WIS-L-0015011_lg.txt │ ├── WIS-L-0015111_lg.txt │ ├── WIS-L-0015211_lg.txt │ ├── WIS-L-0015411_lg.txt │ ├── WIS-L-0015511_lg.txt │ ├── WIS-L-0015911_lg.txt │ ├── WIS-L-0016011_lg.txt │ ├── WIS-L-0016111_lg.txt │ ├── WIS-L-0016211_lg.txt │ ├── WIS-L-0016311_lg.txt │ ├── WIS-L-0016411_lg.txt │ ├── WIS-L-0016511_lg.txt │ ├── WIS-L-0016611_lg.txt │ └── WIS-L-0016711_lg.txt ├── gocr │ ├── NY01075811_lg.txt │ ├── NY01075911_lg.txt │ ├── NY01076011_lg.txt │ ├── NY01076111_lg.txt │ ├── NY01304911_lg.txt │ ├── NY01356611_lg.txt │ ├── NY01357211_lg.txt │ ├── NY01357311_lg.txt │ ├── NY01357411_lg.txt │ ├── NY01357511_lg.txt │ ├── NY01357611_lg.txt │ ├── NY01357711_lg.txt │ ├── NY01357811_lg.txt │ ├── NY01357911_lg.txt │ ├── NY01358011_lg.txt │ ├── NY01358111_lg.txt │ ├── NY01358211_lg.txt │ ├── NY01358511_lg.txt │ ├── NY01363011_lg.txt │ ├── NY01363111_lg.txt │ ├── NY01363411_lg.txt │ ├── NY01363711_lg.txt │ ├── NY01363811_lg.txt │ ├── NY01365511_lg.txt │ ├── NY01365611_lg.txt │ ├── NY01365711_lg.txt │ ├── NY01365911_lg.txt │ ├── NY01391211_lg.txt │ ├── NY01391311_lg.txt │ ├── NY01391411_lg.txt │ ├── NY01391511_lg.txt │ ├── NY01391611_lg.txt │ ├── NY01391711_lg.txt │ ├── NY01391811_lg.txt │ ├── NY01391911_lg.txt │ ├── TENN-L-0000011_lg.txt │ ├── TENN-L-0000111_lg.txt │ ├── TENN-L-0000211_lg.txt │ ├── TENN-L-0000311_lg.txt │ ├── TENN-L-0000411_lg.txt │ ├── TENN-L-0000511_lg.txt │ ├── TENN-L-0000611_lg.txt │ ├── TENN-L-0000711_lg.txt │ ├── TENN-L-0000811_lg.txt │ ├── TENN-L-0000911_lg.txt │ ├── TENN-L-0001011_lg.txt │ ├── TENN-L-0001111_lg.txt │ ├── TENN-L-0001211_lg.txt │ ├── TENN-L-0001311_lg.txt │ ├── TENN-L-0001411_lg.txt │ ├── TENN-L-0001511_lg.txt │ ├── TENN-L-0001611_lg.txt │ ├── TENN-L-0001711_lg.txt │ ├── TENN-L-0001811_lg.txt │ ├── TENN-L-0001911_lg.txt │ ├── TENN-L-0002011_lg.txt │ ├── TENN-L-0002111_lg.txt │ ├── TENN-L-0002211_lg.txt │ ├── TENN-L-0002311_lg.txt │ ├── TENN-L-0002411_lg.txt │ ├── TENN-L-0002511_lg.txt │ ├── TENN-L-0002611_lg.txt │ ├── TENN-L-0002711_lg.txt │ ├── TENN-L-0002811_lg.txt │ ├── TENN-L-0002911_lg.txt │ ├── TENN-L-0003011_lg.txt │ ├── TENN-L-0003111_lg.txt │ ├── TENN-L-0003211_lg.txt │ ├── TENN-L-0003311_lg.txt │ ├── TENN-L-0003411_lg.txt │ ├── TENN-L-0003511_lg.txt │ ├── WIS-L-0012111_lg.txt │ ├── WIS-L-0012211_lg.txt │ ├── WIS-L-0012311_lg.txt │ ├── WIS-L-0012511_lg.txt │ ├── WIS-L-0012611_lg.txt │ ├── WIS-L-0012711_lg.txt │ ├── WIS-L-0012811_lg.txt │ ├── WIS-L-0012911_lg.txt │ ├── WIS-L-0013011_lg.txt │ ├── WIS-L-0013111_lg.txt │ ├── WIS-L-0013211_lg.txt │ ├── WIS-L-0013311_lg.txt │ ├── WIS-L-0013411_lg.txt │ ├── WIS-L-0013511_lg.txt │ ├── WIS-L-0013611_lg.txt │ ├── WIS-L-0013711_lg.txt │ ├── WIS-L-0014411_lg.txt │ ├── WIS-L-0014511_lg.txt │ ├── WIS-L-0014611_lg.txt │ ├── WIS-L-0014811_lg.txt │ ├── WIS-L-0014911_lg.txt │ ├── WIS-L-0015011_lg.txt │ ├── WIS-L-0015111_lg.txt │ ├── WIS-L-0015211_lg.txt │ ├── WIS-L-0015411_lg.txt │ ├── WIS-L-0015511_lg.txt │ ├── WIS-L-0015911_lg.txt │ ├── WIS-L-0016011_lg.txt │ ├── WIS-L-0016111_lg.txt │ ├── WIS-L-0016211_lg.txt │ ├── WIS-L-0016311_lg.txt │ ├── WIS-L-0016411_lg.txt │ ├── WIS-L-0016511_lg.txt │ ├── WIS-L-0016611_lg.txt │ └── WIS-L-0016711_lg.txt ├── images │ ├── NY01075811_lg.jpg │ ├── NY01075911_lg.jpg │ ├── NY01076011_lg.jpg │ ├── NY01076111_lg.jpg │ ├── NY01304911_lg.jpg │ ├── NY01356611_lg.jpg │ ├── NY01357211_lg.jpg │ ├── NY01357311_lg.jpg │ ├── NY01357411_lg.jpg │ ├── NY01357511_lg.jpg │ ├── NY01357611_lg.jpg │ ├── NY01357711_lg.jpg │ ├── NY01357811_lg.jpg │ ├── NY01357911_lg.jpg │ ├── NY01358011_lg.jpg │ ├── NY01358111_lg.jpg │ ├── NY01358211_lg.jpg │ ├── NY01358511_lg.jpg │ ├── NY01363011_lg.jpg │ ├── NY01363111_lg.jpg │ ├── NY01363411_lg.jpg │ ├── NY01363711_lg.jpg │ ├── NY01363811_lg.jpg │ ├── NY01365511_lg.jpg │ ├── NY01365611_lg.jpg │ ├── NY01365711_lg.jpg │ ├── NY01365911_lg.jpg │ ├── NY01391211_lg.jpg │ ├── NY01391311_lg.jpg │ ├── NY01391411_lg.jpg │ ├── NY01391511_lg.jpg │ ├── NY01391611_lg.jpg │ ├── NY01391711_lg.jpg │ ├── NY01391811_lg.jpg │ ├── NY01391911_lg.jpg │ ├── TENN-L-0000011_lg.jpg │ ├── TENN-L-0000111_lg.jpg │ ├── TENN-L-0000211_lg.jpg │ ├── TENN-L-0000311_lg.jpg │ ├── TENN-L-0000411_lg.jpg │ ├── TENN-L-0000511_lg.jpg │ ├── TENN-L-0000611_lg.jpg │ ├── TENN-L-0000711_lg.jpg │ ├── TENN-L-0000811_lg.jpg │ ├── TENN-L-0000911_lg.jpg │ ├── TENN-L-0001011_lg.jpg │ ├── TENN-L-0001111_lg.jpg │ ├── TENN-L-0001211_lg.jpg │ ├── TENN-L-0001311_lg.jpg │ ├── TENN-L-0001411_lg.jpg │ ├── TENN-L-0001511_lg.jpg │ ├── TENN-L-0001611_lg.jpg │ ├── TENN-L-0001711_lg.jpg │ ├── TENN-L-0001811_lg.jpg │ ├── TENN-L-0001911_lg.jpg │ ├── TENN-L-0002011_lg.jpg │ ├── TENN-L-0002111_lg.jpg │ ├── TENN-L-0002211_lg.jpg │ ├── TENN-L-0002311_lg.jpg │ ├── TENN-L-0002411_lg.jpg │ ├── TENN-L-0002511_lg.jpg │ ├── TENN-L-0002611_lg.jpg │ ├── TENN-L-0002711_lg.jpg │ ├── TENN-L-0002811_lg.jpg │ ├── TENN-L-0002911_lg.jpg │ ├── TENN-L-0003011_lg.jpg │ ├── TENN-L-0003111_lg.jpg │ ├── TENN-L-0003211_lg.jpg │ ├── TENN-L-0003311_lg.jpg │ ├── TENN-L-0003411_lg.jpg │ ├── TENN-L-0003511_lg.jpg │ ├── WIS-L-0012111_lg.jpg │ ├── WIS-L-0012211_lg.jpg │ ├── WIS-L-0012311_lg.jpg │ ├── WIS-L-0012511_lg.jpg │ ├── WIS-L-0012611_lg.jpg │ ├── WIS-L-0012711_lg.jpg │ ├── WIS-L-0012811_lg.jpg │ ├── WIS-L-0012911_lg.jpg │ ├── WIS-L-0013011_lg.jpg │ ├── WIS-L-0013111_lg.jpg │ ├── WIS-L-0013211_lg.jpg │ ├── WIS-L-0013311_lg.jpg │ ├── WIS-L-0013411_lg.jpg │ ├── WIS-L-0013511_lg.jpg │ ├── WIS-L-0013611_lg.jpg │ ├── WIS-L-0013711_lg.jpg │ ├── WIS-L-0014411_lg.jpg │ ├── WIS-L-0014511_lg.jpg │ ├── WIS-L-0014611_lg.jpg │ ├── WIS-L-0014811_lg.jpg │ ├── WIS-L-0014911_lg.jpg │ ├── WIS-L-0015011_lg.jpg │ ├── WIS-L-0015111_lg.jpg │ ├── WIS-L-0015211_lg.jpg │ ├── WIS-L-0015411_lg.jpg │ ├── WIS-L-0015511_lg.jpg │ ├── WIS-L-0015911_lg.jpg │ ├── WIS-L-0016011_lg.jpg │ ├── WIS-L-0016111_lg.jpg │ ├── WIS-L-0016211_lg.jpg │ ├── WIS-L-0016311_lg.jpg │ ├── WIS-L-0016411_lg.jpg │ ├── WIS-L-0016511_lg.jpg │ ├── WIS-L-0016611_lg.jpg │ └── WIS-L-0016711_lg.jpg ├── ocrad │ ├── NY01075811_lg.txt │ ├── NY01075911_lg.txt │ ├── NY01076011_lg.txt │ ├── NY01076111_lg.txt │ ├── NY01304911_lg.txt │ ├── NY01356611_lg.txt │ ├── NY01357211_lg.txt │ ├── NY01357311_lg.txt │ ├── NY01357411_lg.txt │ ├── NY01357511_lg.txt │ ├── NY01357611_lg.txt │ ├── NY01357711_lg.txt │ ├── NY01357811_lg.txt │ ├── NY01357911_lg.txt │ ├── NY01358011_lg.txt │ ├── NY01358111_lg.txt │ ├── NY01358211_lg.txt │ ├── NY01358511_lg.txt │ ├── NY01363011_lg.txt │ ├── NY01363111_lg.txt │ ├── NY01363411_lg.txt │ ├── NY01363711_lg.txt │ ├── NY01363811_lg.txt │ ├── NY01365511_lg.txt │ ├── NY01365611_lg.txt │ ├── NY01365711_lg.txt │ ├── NY01365911_lg.txt │ ├── NY01391211_lg.txt │ ├── NY01391311_lg.txt │ ├── NY01391411_lg.txt │ ├── NY01391511_lg.txt │ ├── NY01391611_lg.txt │ ├── NY01391711_lg.txt │ ├── NY01391811_lg.txt │ ├── NY01391911_lg.txt │ ├── TENN-L-0000011_lg.txt │ ├── TENN-L-0000111_lg.txt │ ├── TENN-L-0000211_lg.txt │ ├── TENN-L-0000311_lg.txt │ ├── TENN-L-0000411_lg.txt │ ├── TENN-L-0000511_lg.txt │ ├── TENN-L-0000611_lg.txt │ ├── TENN-L-0000711_lg.txt │ ├── TENN-L-0000811_lg.txt │ ├── TENN-L-0000911_lg.txt │ ├── TENN-L-0001011_lg.txt │ ├── TENN-L-0001111_lg.txt │ ├── TENN-L-0001211_lg.txt │ ├── TENN-L-0001311_lg.txt │ ├── TENN-L-0001411_lg.txt │ ├── TENN-L-0001511_lg.txt │ ├── TENN-L-0001611_lg.txt │ ├── TENN-L-0001711_lg.txt │ ├── TENN-L-0001811_lg.txt │ ├── TENN-L-0001911_lg.txt │ ├── TENN-L-0002011_lg.txt │ ├── TENN-L-0002111_lg.txt │ ├── TENN-L-0002211_lg.txt │ ├── TENN-L-0002311_lg.txt │ ├── TENN-L-0002411_lg.txt │ ├── TENN-L-0002511_lg.txt │ ├── TENN-L-0002611_lg.txt │ ├── TENN-L-0002711_lg.txt │ ├── TENN-L-0002811_lg.txt │ ├── TENN-L-0002911_lg.txt │ ├── TENN-L-0003011_lg.txt │ ├── TENN-L-0003111_lg.txt │ ├── TENN-L-0003211_lg.txt │ ├── TENN-L-0003311_lg.txt │ ├── TENN-L-0003411_lg.txt │ ├── TENN-L-0003511_lg.txt │ ├── WIS-L-0012111_lg.txt │ ├── WIS-L-0012211_lg.txt │ ├── WIS-L-0012311_lg.txt │ ├── WIS-L-0012511_lg.txt │ ├── WIS-L-0012611_lg.txt │ ├── WIS-L-0012711_lg.txt │ ├── WIS-L-0012811_lg.txt │ ├── WIS-L-0012911_lg.txt │ ├── WIS-L-0013011_lg.txt │ ├── WIS-L-0013111_lg.txt │ ├── WIS-L-0013211_lg.txt │ ├── WIS-L-0013311_lg.txt │ ├── WIS-L-0013411_lg.txt │ ├── WIS-L-0013511_lg.txt │ ├── WIS-L-0013611_lg.txt │ ├── WIS-L-0013711_lg.txt │ ├── WIS-L-0014411_lg.txt │ ├── WIS-L-0014511_lg.txt │ ├── WIS-L-0014611_lg.txt │ ├── WIS-L-0014811_lg.txt │ ├── WIS-L-0014911_lg.txt │ ├── WIS-L-0015011_lg.txt │ ├── WIS-L-0015111_lg.txt │ ├── WIS-L-0015211_lg.txt │ ├── WIS-L-0015411_lg.txt │ ├── WIS-L-0015511_lg.txt │ ├── WIS-L-0015911_lg.txt │ ├── WIS-L-0016011_lg.txt │ ├── WIS-L-0016111_lg.txt │ ├── WIS-L-0016211_lg.txt │ ├── WIS-L-0016311_lg.txt │ ├── WIS-L-0016411_lg.txt │ ├── WIS-L-0016511_lg.txt │ ├── WIS-L-0016611_lg.txt │ └── WIS-L-0016711_lg.txt ├── ocropus │ ├── NY01075811_lg.txt │ ├── NY01075911_lg.txt │ ├── NY01076011_lg.txt │ ├── NY01076111_lg.txt │ ├── NY01304911_lg.txt │ ├── NY01356611_lg.txt │ ├── NY01357211_lg.txt │ ├── NY01357311_lg.txt │ ├── NY01357411_lg.txt │ ├── NY01357511_lg.txt │ ├── NY01357611_lg.txt │ ├── NY01357711_lg.txt │ ├── NY01357811_lg.txt │ ├── NY01357911_lg.txt │ ├── NY01358011_lg.txt │ ├── NY01358111_lg.txt │ ├── NY01358211_lg.txt │ ├── NY01358511_lg.txt │ ├── NY01363011_lg.txt │ ├── NY01363111_lg.txt │ ├── NY01363411_lg.txt │ ├── NY01363711_lg.txt │ ├── NY01363811_lg.txt │ ├── NY01365511_lg.txt │ ├── NY01365611_lg.txt │ ├── NY01365711_lg.txt │ ├── NY01365911_lg.txt │ ├── NY01391211_lg.txt │ ├── NY01391311_lg.txt │ ├── NY01391411_lg.txt │ ├── NY01391511_lg.txt │ ├── NY01391611_lg.txt │ ├── NY01391711_lg.txt │ ├── NY01391811_lg.txt │ ├── NY01391911_lg.txt │ ├── TENN-L-0000011_lg.txt │ ├── TENN-L-0000111_lg.txt │ ├── TENN-L-0000211_lg.txt │ ├── TENN-L-0000311_lg.txt │ ├── TENN-L-0000411_lg.txt │ ├── TENN-L-0000511_lg.txt │ ├── TENN-L-0000611_lg.txt │ ├── TENN-L-0000711_lg.txt │ ├── TENN-L-0000811_lg.txt │ ├── TENN-L-0000911_lg.txt │ ├── TENN-L-0001011_lg.txt │ ├── TENN-L-0001111_lg.txt │ ├── TENN-L-0001211_lg.txt │ ├── TENN-L-0001311_lg.txt │ ├── TENN-L-0001411_lg.txt │ ├── TENN-L-0001511_lg.txt │ ├── TENN-L-0001611_lg.txt │ ├── TENN-L-0001711_lg.txt │ ├── TENN-L-0001811_lg.txt │ ├── TENN-L-0001911_lg.txt │ ├── TENN-L-0002011_lg.txt │ ├── TENN-L-0002111_lg.txt │ ├── TENN-L-0002211_lg.txt │ ├── TENN-L-0002311_lg.txt │ ├── TENN-L-0002411_lg.txt │ ├── TENN-L-0002511_lg.txt │ ├── TENN-L-0002611_lg.txt │ ├── TENN-L-0002711_lg.txt │ ├── TENN-L-0002811_lg.txt │ ├── TENN-L-0002911_lg.txt │ ├── TENN-L-0003011_lg.txt │ ├── TENN-L-0003111_lg.txt │ ├── TENN-L-0003211_lg.txt │ ├── TENN-L-0003311_lg.txt │ ├── TENN-L-0003411_lg.txt │ ├── TENN-L-0003511_lg.txt │ ├── WIS-L-0012111_lg.txt │ ├── WIS-L-0012211_lg.txt │ ├── WIS-L-0012311_lg.txt │ ├── WIS-L-0012511_lg.txt │ ├── WIS-L-0012611_lg.txt │ ├── WIS-L-0012711_lg.txt │ ├── WIS-L-0012811_lg.txt │ ├── WIS-L-0012911_lg.txt │ ├── WIS-L-0013011_lg.txt │ ├── WIS-L-0013111_lg.txt │ ├── WIS-L-0013211_lg.txt │ ├── WIS-L-0013311_lg.txt │ ├── WIS-L-0013411_lg.txt │ ├── WIS-L-0013511_lg.txt │ ├── WIS-L-0013611_lg.txt │ ├── WIS-L-0013711_lg.txt │ ├── WIS-L-0014411_lg.txt │ ├── WIS-L-0014511_lg.txt │ ├── WIS-L-0014611_lg.txt │ ├── WIS-L-0014811_lg.txt │ ├── WIS-L-0014911_lg.txt │ ├── WIS-L-0015011_lg.txt │ ├── WIS-L-0015111_lg.txt │ ├── WIS-L-0015211_lg.txt │ ├── WIS-L-0015411_lg.txt │ ├── WIS-L-0015511_lg.txt │ ├── WIS-L-0015911_lg.txt │ ├── WIS-L-0016011_lg.txt │ ├── WIS-L-0016111_lg.txt │ ├── WIS-L-0016211_lg.txt │ ├── WIS-L-0016311_lg.txt │ ├── WIS-L-0016411_lg.txt │ ├── WIS-L-0016511_lg.txt │ ├── WIS-L-0016611_lg.txt │ └── WIS-L-0016711_lg.txt └── tesseract │ ├── NY01075811_lg.txt │ ├── NY01075911_lg.txt │ ├── NY01076011_lg.txt │ ├── NY01076111_lg.txt │ ├── NY01304911_lg.txt │ ├── NY01356611_lg.txt │ ├── NY01357211_lg.txt │ ├── NY01357311_lg.txt │ ├── NY01357411_lg.txt │ ├── NY01357511_lg.txt │ ├── NY01357611_lg.txt │ ├── NY01357711_lg.txt │ ├── NY01357811_lg.txt │ ├── NY01357911_lg.txt │ ├── NY01358011_lg.txt │ ├── NY01358111_lg.txt │ ├── NY01358211_lg.txt │ ├── NY01358511_lg.txt │ ├── NY01363011_lg.txt │ ├── NY01363111_lg.txt │ ├── NY01363411_lg.txt │ ├── NY01363711_lg.txt │ ├── NY01363811_lg.txt │ ├── NY01365511_lg.txt │ ├── NY01365611_lg.txt │ ├── NY01365711_lg.txt │ ├── NY01365911_lg.txt │ ├── NY01391211_lg.txt │ ├── NY01391311_lg.txt │ ├── NY01391411_lg.txt │ ├── NY01391511_lg.txt │ ├── NY01391611_lg.txt │ ├── NY01391711_lg.txt │ ├── NY01391811_lg.txt │ ├── NY01391911_lg.txt │ ├── TENN-L-0000011_lg.txt │ ├── TENN-L-0000111_lg.txt │ ├── TENN-L-0000211_lg.txt │ ├── TENN-L-0000311_lg.txt │ ├── TENN-L-0000411_lg.txt │ ├── TENN-L-0000511_lg.txt │ ├── TENN-L-0000611_lg.txt │ ├── TENN-L-0000711_lg.txt │ ├── TENN-L-0000811_lg.txt │ ├── TENN-L-0000911_lg.txt │ ├── TENN-L-0001011_lg.txt │ ├── TENN-L-0001111_lg.txt │ ├── TENN-L-0001211_lg.txt │ ├── TENN-L-0001311_lg.txt │ ├── TENN-L-0001411_lg.txt │ ├── TENN-L-0001511_lg.txt │ ├── TENN-L-0001611_lg.txt │ ├── TENN-L-0001711_lg.txt │ ├── TENN-L-0001811_lg.txt │ ├── TENN-L-0001911_lg.txt │ ├── TENN-L-0002011_lg.txt │ ├── TENN-L-0002111_lg.txt │ ├── TENN-L-0002211_lg.txt │ ├── TENN-L-0002311_lg.txt │ ├── TENN-L-0002411_lg.txt │ ├── TENN-L-0002511_lg.txt │ ├── TENN-L-0002611_lg.txt │ ├── TENN-L-0002711_lg.txt │ ├── TENN-L-0002811_lg.txt │ ├── TENN-L-0002911_lg.txt │ ├── TENN-L-0003011_lg.txt │ ├── TENN-L-0003111_lg.txt │ ├── TENN-L-0003211_lg.txt │ ├── TENN-L-0003311_lg.txt │ ├── TENN-L-0003411_lg.txt │ ├── TENN-L-0003511_lg.txt │ ├── WIS-L-0012111_lg.txt │ ├── WIS-L-0012211_lg.txt │ ├── WIS-L-0012311_lg.txt │ ├── WIS-L-0012511_lg.txt │ ├── WIS-L-0012611_lg.txt │ ├── WIS-L-0012711_lg.txt │ ├── WIS-L-0012811_lg.txt │ ├── WIS-L-0012911_lg.txt │ ├── WIS-L-0013011_lg.txt │ ├── WIS-L-0013111_lg.txt │ ├── WIS-L-0013211_lg.txt │ ├── WIS-L-0013311_lg.txt │ ├── WIS-L-0013411_lg.txt │ ├── WIS-L-0013511_lg.txt │ ├── WIS-L-0013611_lg.txt │ ├── WIS-L-0013711_lg.txt │ ├── WIS-L-0014411_lg.txt │ ├── WIS-L-0014511_lg.txt │ ├── WIS-L-0014611_lg.txt │ ├── WIS-L-0014811_lg.txt │ ├── WIS-L-0014911_lg.txt │ ├── WIS-L-0015011_lg.txt │ ├── WIS-L-0015111_lg.txt │ ├── WIS-L-0015211_lg.txt │ ├── WIS-L-0015411_lg.txt │ ├── WIS-L-0015511_lg.txt │ ├── WIS-L-0015911_lg.txt │ ├── WIS-L-0016011_lg.txt │ ├── WIS-L-0016111_lg.txt │ ├── WIS-L-0016211_lg.txt │ ├── WIS-L-0016311_lg.txt │ ├── WIS-L-0016411_lg.txt │ ├── WIS-L-0016511_lg.txt │ ├── WIS-L-0016611_lg.txt │ └── WIS-L-0016711_lg.txt ├── notes ├── notes.txt ├── outfile.csv ├── tesseract_todo └── transcript.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | *.rbc 3 | .bundle 4 | .config 5 | coverage 6 | InstalledFiles 7 | lib/bundler/man 8 | pkg 9 | rdoc 10 | spec/reports 11 | test/tmp 12 | test/version_tmp 13 | tmp 14 | 15 | # YARD artifacts 16 | .yardoc 17 | _yardoc 18 | doc/ 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | HandwritingDetection 2 | ==================== 3 | 4 | Work relating to the OCR wish-list item ["figure out an algorithm that would separate images into sets with no handwriting, little handwriting (mostly text typed or printed), lots of handwriting"](https://www.idigbio.org/wiki/index.php/Known_OCR,_ML,_NLP_Issues) 5 | -------------------------------------------------------------------------------- /classified/easy/handwritten/NY01075811_lg.txt: -------------------------------------------------------------------------------- 1 | ITH AMERICAN LICHENS. 2 | W. W. CALKINS’ 3 | Ip &--r' i I 4 | < Locality ^ ........—..............f -................ 5 | Nairn 6 | The New York Botanical Garden 7 | Arthopyrenia cinchonae (Ach.) Mull. Arg 8 | Det. Richard C. Harris 1995 -------------------------------------------------------------------------------- /classified/easy/handwritten/NY01076111_lg.txt: -------------------------------------------------------------------------------- 1 | W. w. CALKINS’ NORTH AMERICAN LICHENS-£ ? 2 | 1 Name. ‘ Jr^ 3 | On*. 4 | vvmorvw 5 | The New York Botanical Garden 6 | Julella fallaciosa (Arn.) R. c. Harris Det. Richard C. Harris 1995 7 | Wellesley College Herbarium (WELC) 8 | 01076111 Donated to NY in 198 -------------------------------------------------------------------------------- /classified/easy/handwritten/NY01304911_lg.txt: -------------------------------------------------------------------------------- 1 | THE NEW YORK BOTANICAL GARDEN 2 | />7/ LICHENS OF SOUTHERN FLORIDA 3 | NEW YORK BOTANICAL GARDEN 4 | Tomasellia sparsella (Nyl.) R. C. Harris ........................................................* ........................01304911 5 | (.....^o/yyO/5Uvy^ JI ^yvdj...............TftXux/vvi^..... 6 | N. L. BRITTON/ E. G. BRITTON! 7 | Collectors 8 | December. 9 | .1.......ISIS -------------------------------------------------------------------------------- /classified/easy/handwritten/NY01357211_lg.txt: -------------------------------------------------------------------------------- 1 | PLANTS OF LOUISIANA 2 | ^ (^>c. \t u.vc< yaAS'jo t A'tM. 3 | ct4.Jd.lS 4 | Locality: 2 mi. N. of Bolling, 5 | Bossier Parish, Louisiana 6 | Collector G. T. Johnson No. 7 | June 25, 1964 S'SSJ 8 | 01357211 9 | HERBARIUM 0'£ 10 | GEORGE T. JO.HNSON. DEP-°-' ITCD. fiY 1932 -------------------------------------------------------------------------------- /classified/easy/handwritten/NY01357311_lg.txt: -------------------------------------------------------------------------------- 1 | PLANTS OF NORTH CAROLINA / f L( ha VM /44~^t • 2 | djL^, € 'Hie l/u jv'Qficu^ A]. 6 | Locality: Near Ficklings Mill, 7 | Taylor County, Georgia 8 | Collector: G. T. Johnson No. ^5' February 3> 19&7 9 | garden 10 | 01357811 11 | HERBARIUM OF GEORGE T. JOHNSON 12 | deposited ny 1982 -------------------------------------------------------------------------------- /classified/easy/handwritten/NY01357911_lg.txt: -------------------------------------------------------------------------------- 1 | PLANTS OF TEXAS // UK* -Jyo p teuton (AcM'J /pfii //, Sfrj} 2 | UlJ.M, i.ye^u-- 3 | ity: 2 miles £K of Thompsonvilie, Gonzales County, Texas 4 | Locality: 5 | Collector: G. T. Johnson No. (o^S^ July 12, 1966 6 | HERBARIUM of GEORGE T. L/G;-.i\lSO.M 7 | LSi 8 | LY 19821 -------------------------------------------------------------------------------- /classified/easy/handwritten/NY01358011_lg.txt: -------------------------------------------------------------------------------- 1 | W. W. CALKINS’ NORTH AMERICAN LICHENS. Xo . 2 -T^t 2 | XuilH' 3 | o„ 0£/L-**'^r 4 | NEW YORK BOTANICAL GARDEN 5 | if" 6 | Wellesley College Herbarium (WELC) Donated to NY in 1988 7 | W. W. CALIC^S^ NORTHAyERIgA^L^gENS. 8 | I 9 | ■M -------------------------------------------------------------------------------- /classified/easy/handwritten/NY01358111_lg.txt: -------------------------------------------------------------------------------- 1 | ELAM’S OF ALABAMA ly»t^vi P-c* di <2 19 | m 20 | Illinois Wesleyan University '1S° 21 | Jonathan P. Dey -------------------------------------------------------------------------------- /classified/easy/handwritten/TENN-L-0000411_lg.txt: -------------------------------------------------------------------------------- 1 | A 2 | B nrruz. PjZ^ 1$, Wsrte 3 | 72-/C > 4 | University of Tennessee (TENN) 5 | TENN-L-D000411 -------------------------------------------------------------------------------- /classified/easy/handwritten/TENN-L-0000511_lg.txt: -------------------------------------------------------------------------------- 1 | Herbarium of the University of Michigan 2 | Expedition to Isle Royale, Michigan, 1930 A. H. Povah, C. A. Brown, J. B. McFarlin, J. L. Lowe. 3 | -A^4I 4 | ■_j£crvir<. \ NO. 5 | LEGIT: 6 | FIDE: 7 | Form 3032 7- -------------------------------------------------------------------------------- /classified/easy/handwritten/TENN-L-0000911_lg.txt: -------------------------------------------------------------------------------- 1 | No. 2 | L H-I&f 3 | FLORA OF TENNESSEE GSMNP 4 | Lichens University of Tennessee (TENN) nCi K ^ S i % c\ _ 5 | Co. 6 | TENN-L-ODDtmi 7 | Substratum 8 | /% LasK oE 'm sfrct* sd* £vr*s1 9 | Loc Pqlife ~Tr£{il oa. } nylc fcirfcihj _ 10 | Coll.. "P. H A/orr/\_ _ Alt____ 11 | Det. 12 | PA.0 CTC— 13 | Date. 14 | 22- fv\arch 15 | HERBARIUM OF THE UNIVERSITY OF TENNESSEE -------------------------------------------------------------------------------- /classified/easy/handwritten/TENN-L-0001311_lg.txt: -------------------------------------------------------------------------------- 1 | No. 2 | FLORA OF TENNESSEE 3 | Lichens 4 | (lJL&t?6cr>UjaJ_ 5 | University of Tennessee (TENN) 6 | Substratum 7 | Co. 8 | TENN-L-D001311 9 | Loc 10 | AW /y. 7: 11 | Coll. 12 | Det. 13 | Alt. 14 | Date 15 | HERBARIUM OF THE UNIVERSITY OF TENNESSEE -------------------------------------------------------------------------------- /classified/easy/handwritten/TENN-L-0001411_lg.txt: -------------------------------------------------------------------------------- 1 | ^ FLORA OF TENNESSEE 2 | Lichens 3 | WtA- 4 | II Q-C k.>.3..^a/uE?.....................azl ±.5&a$£.s..... 5 | ■1ERBARIUM OF THE UNIVERSITY OF TENNESSEE -------------------------------------------------------------------------------- /classified/easy/handwritten/TENN-L-0001711_lg.txt: -------------------------------------------------------------------------------- 1 | TENN-L-0001711 2 | FLORA OF TENNESSEE 3 | Lichens 4 | Co. 5 | PPt 6 | K- 7 | ubstratum 8 | @77 y&frLtf t^r tJj4C&&£ j\aJ?rHAj*j a~»Ts AsK.0&^jl 9 | '?**>>. 8>^ gwi /S4fe, UZ~ G>. 10 | ;oll. I. _ 11 | _ Alt____ 12 | Jet. J. ,_nn(c Wf 13 | HERBARIUM OF THE UNIVERSITY OF TENNESSEE -------------------------------------------------------------------------------- /classified/easy/handwritten/TENN-L-0002111_lg.txt: -------------------------------------------------------------------------------- 1 | HErtb. C. A. ROBBINSi 2 | * 3 | Plant 8 from Warehamf 4 | Cl. crispata (Ach.) Plot, v.elegans (Del.) Vain. 5 | ► 1 6 | .j£ 7 | COLL. C. A. ROBBINS -------------------------------------------------------------------------------- /classified/easy/handwritten/TENN-L-0002511_lg.txt: -------------------------------------------------------------------------------- 1 | LICHENS OF ALASKA No. SA-58UU 2 | Cladonia <0m xi'do^c*. ( )v ) K- (^6 V> £ (J^iv • £aJJkOM.CI "T" 5 | Location Mount Fairplay; vicinity of Tetlin NWR 6 | Latitude 63° 41.899’N Longitude 142° 15.248'W Elevation 3,600 ft Habitat On mineral soil in alpine road cut bank 7 | Quad. Map Tanacross (C-3), Alaska Coll. Date 25 July 2001 8 | Collector S. S. Talbot & W. B. Schofield # 428 9 | Det. John W. Thomson February 2002 -------------------------------------------------------------------------------- /classified/easy/handwritten/WIS-L-0013711_lg.txt: -------------------------------------------------------------------------------- 1 | AKFY3 HERBARIUM 2 | FLORA OF ALASKA 3 | * \au*a. Ojta. ” ^^iCVMKdt ( 5 | Location: Yukon Delta NWR; Chuilnak River area; 6 | 62°10'N, 162°30'V 7 | Habitat: Pices glauca - V&cciniim uliginosu* 8 | Woodland 9 | Elevation: 60 ft 10 | Collector: Stephen S. Talbot # JJ6-3 11 | Wap/Quad. : Kwigut (A-l) Date: 1 Sept 1983 12 | Det.: John V. Thomson -------------------------------------------------------------------------------- /classified/easy/handwritten/WIS-L-0014611_lg.txt: -------------------------------------------------------------------------------- 1 | NORTHWEST TERRITORIES 2 | District of Keewatin 3 | c/w 4 | i&JytUUv ^rS "•' 5 | 2-iU 6 | Oui ^OOuficiOi^ lov| 7 | IOaJGDv 8 | North end of Lake Ennadai Lat.61 10*N, Long.100 50’W July X® , 1960 Coll. J.W.Thomson J.A.Larsen -------------------------------------------------------------------------------- /classified/easy/handwritten/WIS-L-0014911_lg.txt: -------------------------------------------------------------------------------- 1 | COLORADO LICHENS 2x1 ** ALBS FORAY, 3 984 2 | Ru* v\A. a I^oaUju 3 | r\ V IfliVA Vvo(J CLAJ2.&*. - 4 | 4. LARIMER CO.: ROCKY MT. NAT'L. PARK: alpine tundra of Trail Ridge NW & W of Toll Memorial* E of Iceberg Pass; 40 25'N, 105 44»W; T5N, R74W, Sec. 7 3500-3720 m alt. 5 | August 4 & 5,1984 Coll, J, V/, Thomson -------------------------------------------------------------------------------- /classified/easy/handwritten/WIS-L-0015011_lg.txt: -------------------------------------------------------------------------------- 1 | AKFWS HERBARIUM ** FLORA of ALASKA 0 2 | CLC^JK pi/Vi C^o v ^ ^ -*'H ' 3 | Location Selawik NWR, Lake 180 area 4 | Latitude 66°12,23.6" N Longitude 160° 15'01.9" W Elevation 204ft Habitat On rock in Polytrichum juniperinum-Empetrum nigrum burn 5 | Quad. Map Selawik (A-3) Alaska Coil. Date 23 July 2003 6 | Collector Stephen S. Talbot # 295 7 | jet John W. Thomson November 2003 -------------------------------------------------------------------------------- /classified/easy/handwritten/WIS-L-0015211_lg.txt: -------------------------------------------------------------------------------- 1 | AKFWS HERBARIUM ** FLORA of ALASKA 2 | Location Selawik NWR 3 | Latitude 66°28'19.0"N Longitude 157° 11'43.0" W Habitat Lakeshore cobble on stoney beach 4 | Quad. Map Shungnak (B-3) Alaska Coil. 5 | Collector Stephen S. Talbot # 071 6 | Det. John W. Thomson November 2003 7 | o7| 8 | IAjl , 9 | Elevation 494 ft 10 | r 11 | 15 July 2003 -------------------------------------------------------------------------------- /classified/easy/handwritten/WIS-L-0015411_lg.txt: -------------------------------------------------------------------------------- 1 | AKTV3 HERBARIU1I 2 | FLORA OF ALASKA _ Q 3 | _____Icrv'bt'V 4 | O ' 5 | £ JLivKA VI AIjAJKA 6 | CoJ)o^ioc.<^ je***CCJjta. (kSv^-) 7 | Location: Cape Wrangell, Attu Is., Aleutian 8 | Islands; 52*55.5’N, 173°27.5,E 9 | Habitat: Epilithic on lower slope stony ridge 10 | Elevation: 150 ft 11 | Collector: Stephen & Sandra Talbot # 299 Map/Quad. : Attu C-6 NW Date: 14 Jul 1988 12 | Det. : John W. Thomson , 13 | K-v -------------------------------------------------------------------------------- /classified/easy/handwritten/WIS-L-0015511_lg.txt: -------------------------------------------------------------------------------- 1 | 16761 2 | MINNESOTA CLEARWATER COUNTY LAKE ITASCA BIOLOGICAL STATION 3 | Ramai i na 4 | dU'( c. CjSJX <0“ 5 | On dead branches of jack pine, Beaver Trail Itasca. June 29* 1970 J.W.Thomson -------------------------------------------------------------------------------- /classified/easy/handwritten/WIS-L-0016311_lg.txt: -------------------------------------------------------------------------------- 1 | V. 2 | h 3 | mem 4 | R# H. Denniston Lichen Collection 5 | Donated to '.VIS, 1944 6 | t\fi 7/ LICHENS OF SOUTHERN FLORIDA 3 | NEW YORK BOTANICAL GARDEN 4 | Tomasellia sparsella (Nyl.) R. C. Harris ........................................................* ........................01304911 5 | (.....^o/yyO/5Uvy^ JI ^yvdj...............TftXux/vvi^..... 6 | N. L. BRITTON/ E. G. BRITTON! 7 | Collectors 8 | December. 9 | .1.......ISIS -------------------------------------------------------------------------------- /lichen/abby/NY01356611_lg.txt: -------------------------------------------------------------------------------- 1 | The New York Botanical Garden 2 | Cryptogams of North Carolina, U.S.A. 3 | Mycoporum compositum (Massal.) R. C. Harris on trunk of Fagus 4 | Graham County: Nantahala Natibnal Forest, Cherohala Skyway [NC 143], Mudd Gap, 35°20’N, 84°025W, 1388 m; i^g^-dominated hardwood forest. 5 | 1 October 1997 6 | William R. Buck 32562 7 | NEW YORK BOTANICAL GARDEN 8 | 01356611 -------------------------------------------------------------------------------- /lichen/abby/NY01357211_lg.txt: -------------------------------------------------------------------------------- 1 | PLANTS OF LOUISIANA 2 | ^ (^>c. \t u.vc< yaAS'jo t A'tM. 3 | ct4.Jd.lS 4 | Locality: 2 mi. N. of Bolling, 5 | Bossier Parish, Louisiana 6 | Collector G. T. Johnson No. 7 | June 25, 1964 S'SSJ 8 | 01357211 9 | HERBARIUM 0'£ 10 | GEORGE T. JO.HNSON. DEP-°-' ITCD. fiY 1932 -------------------------------------------------------------------------------- /lichen/abby/NY01357311_lg.txt: -------------------------------------------------------------------------------- 1 | PLANTS OF NORTH CAROLINA / f L( ha VM /44~^t • 2 | djL^, € 'Hie l/u jv'Qficu^ A]. 6 | Locality: Near Ficklings Mill, 7 | Taylor County, Georgia 8 | Collector: G. T. Johnson No. ^5' February 3> 19&7 9 | garden 10 | 01357811 11 | HERBARIUM OF GEORGE T. JOHNSON 12 | deposited ny 1982 -------------------------------------------------------------------------------- /lichen/abby/NY01357911_lg.txt: -------------------------------------------------------------------------------- 1 | PLANTS OF TEXAS // UK* -Jyo p teuton (AcM'J /pfii //, Sfrj} 2 | UlJ.M, i.ye^u-- 3 | ity: 2 miles £K of Thompsonvilie, Gonzales County, Texas 4 | Locality: 5 | Collector: G. T. Johnson No. (o^S^ July 12, 1966 6 | HERBARIUM of GEORGE T. L/G;-.i\lSO.M 7 | LSi 8 | LY 19821 -------------------------------------------------------------------------------- /lichen/abby/NY01358011_lg.txt: -------------------------------------------------------------------------------- 1 | W. W. CALKINS’ NORTH AMERICAN LICHENS. Xo . 2 -T^t 2 | XuilH' 3 | o„ 0£/L-**'^r 4 | NEW YORK BOTANICAL GARDEN 5 | if" 6 | Wellesley College Herbarium (WELC) Donated to NY in 1988 7 | W. W. CALIC^S^ NORTHAyERIgA^L^gENS. 8 | I 9 | ■M -------------------------------------------------------------------------------- /lichen/abby/NY01358111_lg.txt: -------------------------------------------------------------------------------- 1 | ELAM’S OF ALABAMA ly»t^vi P-c* di <2 19 | m 20 | Illinois Wesleyan University '1S° 21 | Jonathan P. Dey -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0000311_lg.txt: -------------------------------------------------------------------------------- 1 | HATTORI-TENNESSEE COOPERATIVE BRYOGEOGRAPHIC COLLECTIONS, 1964-66 2 | The University of Tennessee and The Hattori Botanical Laboratory 3 | Anaptychia palmulata On bark of tree 4 | U. S. A.: VIRGINIA: Buchanan Co., East of Oakwood along Hwy. i+60. April 10, 1966 Coll. Mason E. Hale & Isao Yoshimura -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0000411_lg.txt: -------------------------------------------------------------------------------- 1 | A 2 | B nrruz. PjZ^ 1$, Wsrte 3 | 72-/C > 4 | University of Tennessee (TENN) 5 | TENN-L-D000411 -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0000511_lg.txt: -------------------------------------------------------------------------------- 1 | Herbarium of the University of Michigan 2 | Expedition to Isle Royale, Michigan, 1930 A. H. Povah, C. A. Brown, J. B. McFarlin, J. L. Lowe. 3 | -A^4I 4 | ■_j£crvir<. \ NO. 5 | LEGIT: 6 | FIDE: 7 | Form 3032 7- -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0000611_lg.txt: -------------------------------------------------------------------------------- 1 | University of Tennessee (TENN) 2 | 67551 3 | LICHENS OF 4 | THE UNIVERSITY OF TENNESSEE 5 | Baeomyces imbricater 6 | I 7 | JAMAICA» St. Andrew Parish, trail from Canchona Morce*s Gap, Uj800 ft* alte Jan. 11, 19&7 coll. Gary Morton -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0000711_lg.txt: -------------------------------------------------------------------------------- 1 | 465 LICHENS OF I II CHI GAIT Caloplaca eleg-ans (Link.) T. Fries On rock, Sturgeon Bay Emmet Co. July 16, 1957 2 | Coll. H. A. Sierk Bet. H. A. Sierk 3 | University of Tennessee (TENN) 4 | TENN-L-DDDD711 -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0000811_lg.txt: -------------------------------------------------------------------------------- 1 | No. 2 | ^78 LICHENS OF MICHIGAN Candelariella vitellina (Ehrh.) M&ll. 3 | On rock, Cecil Bay - Lake Michigan Emmet Co. July 18, 1957 4 | Coll. H. A. Sierk University of Tennessee (TENN) 5 | Det. H. A. Sierk 6 | TENN-L-00D0All 7 | r -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0000911_lg.txt: -------------------------------------------------------------------------------- 1 | No. 2 | L H-I&f 3 | FLORA OF TENNESSEE GSMNP 4 | Lichens University of Tennessee (TENN) nCi K ^ S i % c\ _ 5 | Co. 6 | TENN-L-ODDtmi 7 | Substratum 8 | /% LasK oE 'm sfrct* sd* £vr*s1 9 | Loc Pqlife ~Tr£{il oa. } nylc fcirfcihj _ 10 | Coll.. "P. H A/orr/\_ _ Alt____ 11 | Det. 12 | PA.0 CTC— 13 | Date. 14 | 22- fv\arch 15 | HERBARIUM OF THE UNIVERSITY OF TENNESSEE -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0001011_lg.txt: -------------------------------------------------------------------------------- 1 | LICHENS DU NOUVEAU-QUEBEC 2 | Cetraria delisei (Bory) Th. Fr. 3 | LAC PAYNE, Circa 59° 17' N. 73° 25' W. 4 | Sur le sol prhs de petits etangs. 5 | 13 aout 1965. Det. Dr Mason Hale n° 6 | Albert Legault, Samuel Brisson Universite de Sherbrooke 7 | j 8 | 8040 9 | t 10 | University of Tennessee (TENN) -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0001211_lg.txt: -------------------------------------------------------------------------------- 1 | MCL-581| flora of No----. ALASKS. 2 | Lichens 3 | Cetraria tilesii 4 | University of Tennessee (TENN) 5 | TENN-L-ODDlElli Co._ 6 | i- Substratum 7 | Loc. 8 | Gravel pav«aont of &lx»strlp 9 | near Mancha Cr»©©k and Firth Hiver 10 | Coll 11 | AJ Shar 12 | Alt. 13 | Det. 14 | Aim 15 | D% 19g0 16 | HERBARIUM OF THE UNIVERSITY OF TENNESSEE -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0001311_lg.txt: -------------------------------------------------------------------------------- 1 | No. 2 | FLORA OF TENNESSEE 3 | Lichens 4 | (lJL&t?6cr>UjaJ_ 5 | University of Tennessee (TENN) 6 | Substratum 7 | Co. 8 | TENN-L-D001311 9 | Loc 10 | AW /y. 7: 11 | Coll. 12 | Det. 13 | Alt. 14 | Date 15 | HERBARIUM OF THE UNIVERSITY OF TENNESSEE -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0001411_lg.txt: -------------------------------------------------------------------------------- 1 | ^ FLORA OF TENNESSEE 2 | Lichens 3 | WtA- 4 | II Q-C k.>.3..^a/uE?.....................azl ±.5&a$£.s..... 5 | ■1ERBARIUM OF THE UNIVERSITY OF TENNESSEE -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0001511_lg.txt: -------------------------------------------------------------------------------- 1 | No. 390 2 | FLORA OF TENNESSEE 3 | Lichens 4 | Cladonia gracilis (L.) './illd. 5 | Q Q |\ * t\! O 6 | soil 7 | Substratum______ 8 | Loc Sugarlands Utility area con. Barbara Koore_ 9 | Sevier 10 | Co. 11 | University o* Tennessee (TENN) — 12 | 11*11| I 11 1 II III III I 13 | i'lllillif II11111 14 | TENN-L-0001S11 15 | _ Alt__ 16 | Det. Barbara Moore_nnt.26 April 19.V3 17 | HERBARIUM OF THE UNIVERSITY OF TENNESSEE -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0001611_lg.txt: -------------------------------------------------------------------------------- 1 | 60 2 | j j<- 3 | H ATTORI-TENNESSEE COOPERATIVE BRYOGEOGRAPHIC COLLECTIONS, 1964-66 4 | The t'nivcrwty of Tcnncwe and Th« Hatitjri ISoUnical LaU-jfatory -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0001711_lg.txt: -------------------------------------------------------------------------------- 1 | TENN-L-0001711 2 | FLORA OF TENNESSEE 3 | Lichens 4 | Co. 5 | PPt 6 | K- 7 | ubstratum 8 | @77 y&frLtf t^r tJj4C&&£ j\aJ?rHAj*j a~»Ts AsK.0&^jl 9 | '?**>>. 8>^ gwi /S4fe, UZ~ G>. 10 | ;oll. I. _ 11 | _ Alt____ 12 | Jet. J. ,_nn(c Wf 13 | HERBARIUM OF THE UNIVERSITY OF TENNESSEE -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0001811_lg.txt: -------------------------------------------------------------------------------- 1 | .OK FLORA OF TENNESSEE 2 | no. _3o5___ 3 | Lichens 4 | Cladonia verticillata (Hoffm.) Schaer_ 5 | _GShiN P_rn Se-cier 6 | Substratum SOll--University of Tennessee (TENN) — 7 | loc. Brushy Mt._ llUilllHlllllH _ 8 | TENN-L-0001filli 9 | Coil. Barbara Moore_Ait.___ 10 | Det—Barbara—^00re-Date ^963 11 | HERBARIUM OF THE UNIVERSITY OF TENNESSEE -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0001911_lg.txt: -------------------------------------------------------------------------------- 1 | HATTORI-TENNESSEE COOPERATIVE BRYOGEOGRAPHIC COLLECTIONS, 1964-66 2 | The University of Tennessee and The Hattori Botanical Laboratory 3 | CU00N1A 4 | Crevice of boulder, moist, open. Barricade on road to Tooside, Arachitka, Alaska. Elev. 800 ft. 5 | Coll. A. J. Sharp 27 June 1967 -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0002011_lg.txt: -------------------------------------------------------------------------------- 1 | No. 502 LICHEN'S OF MICHIGAN 2 | Cladonia cenotea (Ach.) Schaer. 3 | On burned stump, behind MBS Campus Cheboygan Co. July 21, 1957 4 | Coll.' H. A. Sierk Det. H. A. Sierk -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0002111_lg.txt: -------------------------------------------------------------------------------- 1 | HErtb. C. A. ROBBINSi 2 | * 3 | Plant 8 from Warehamf 4 | Cl. crispata (Ach.) Plot, v.elegans (Del.) Vain. 5 | ► 1 6 | .j£ 7 | COLL. C. A. ROBBINS -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0002211_lg.txt: -------------------------------------------------------------------------------- 1 | LICHiii'IS OF FLORIDA 2 | Cladonia evansii des Abbayes 3 | white sand, Crystal Lake, near Lakeland Polk County 4 | coll. A.J. Sharp 17 Dec 19U8 5 | det. Barbara Moore -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0002311_lg.txt: -------------------------------------------------------------------------------- 1 | HATTORI-TENNESSEE COOPERATIVE 2 | BRYOGEOGRAPHIC COLLECTIONS, 1964-68 3 | Soil at base of low bl\;ff, moist, 4 | Intermittent stream valley (narrow) about 3 ml. W. of Baker Hanger, Arachitka, Alaska. 5 | Coll. A. J. Sharp 30 June 1967 6 | The University of Tennessee and The Hattori Botanical Laboratory 7 | full shade -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0002411_lg.txt: -------------------------------------------------------------------------------- 1 | RELIQUIAE TUCKERMANIANAE 2 | Distributed by the Farlow Herbarium of Harvard University 3 | 32. Cladonia leporina Fr. 4 | Aiken, South Carolina 5 | Coll. H. W. Ravenel Det. Edward Tuckerman 6 | T E N N - L - 0 □ 0 2 411 7 | University of Tennessee (TENN) -------------------------------------------------------------------------------- /lichen/abby/TENN-L-0002511_lg.txt: -------------------------------------------------------------------------------- 1 | LICHENS OF ALASKA No. SA-58UU 2 | Cladonia <0m xi'do^c*. ( )v ) K- (^6 V> £ (J^iv • £aJJkOM.CI "T" 5 | Location Mount Fairplay; vicinity of Tetlin NWR 6 | Latitude 63° 41.899’N Longitude 142° 15.248'W Elevation 3,600 ft Habitat On mineral soil in alpine road cut bank 7 | Quad. Map Tanacross (C-3), Alaska Coll. Date 25 July 2001 8 | Collector S. S. Talbot & W. B. Schofield # 428 9 | Det. John W. Thomson February 2002 -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0013011_lg.txt: -------------------------------------------------------------------------------- 1 | 2 2 | ALCAN EXPEDITION 3 | UNIVERSITY OF WISCONSIN 4 | N.S.F. Fund G.B.2702 5 | US'O'odl W 6 | BRITISH COLUMBIA: Mile 81 Alaska Hwy. 7 | Lat. 62°34'N. Long. 121°24'W. Elev. 2800 ft. July 10, 1967 John W. Thomson 8 | Teuvo Ahti -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0013111_lg.txt: -------------------------------------------------------------------------------- 1 | AXFVS HERBARIUE 2 | FLORA OF ALASKA 3 | Location: Koyukuk NWR; 8 mi SW of Louis Lake; 4 | 65°12'N, 157*03¥; T3S, R9E, Sect.29 5 | Habitat: Ombrotrophic peat plateau dominated by 6 | Elevation: 219 ft 7 | Collector: Stephen & Sandra Talbot # 3-3-11 8 | Map/Quad. : Kateel River (A-3) Date: 22 Aug 1989 9 | Det. : John W. Thomson -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0013211_lg.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0013311_lg.txt: -------------------------------------------------------------------------------- 1 | AKFWS HERBARIUM ** FLORA of ALASKA 1^2— 2 | Cladonia c^t^cUluv (jJ) LojU^ 3 | Location St. Paul Island, Alaska; 1 km S of Bogoslof Hill 4 | Latitude 57° 09.466’N Longitude 170° 18.793’ W Elevation 30 m 5 | Habitat On mosses between volcanic boulders in Empetrum nigrum heath 6 | Quad. Map Pribilof Islands, Alaska coil. Date 13 July 1997 7 | Collector Stephen & Sandra Talbot # SP97-192 8 | Det. John W. Thomson 1998 -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0013411_lg.txt: -------------------------------------------------------------------------------- 1 | . / 2 | AKFWS HERBARIUM ** FLORA of ALASKA 3 | Cladonia ^ ‘ ^ 10 *1 4 | Location Alaid Island, Aleutian Islands, Alaska 5 | Latitude 52° 45.190' N Longitude 173° 55.729'E Habitat Empetrum nigrum-Carex pluriflora slope mire 6 | Quad. Map Attu Coll. Date 7 | Collector Stephen S. Talbot # ALA1A-16 8 | Det. John W. Thomson April 2003 9 | I 10 | Elevation 140 ft 11 | 9 August 2002 12 | f -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0013511_lg.txt: -------------------------------------------------------------------------------- 1 | AKFYS HERBARIUM 2 | FLORA OF ALASKA 3 | ^LVciAoWot <^vc^CjLAc^ 4 | Location: Koyukuk NWR; 8 mi SW of Louis Lake; 5 | 65°12'N, 157°03W; T3S, R9E, Sect.29 6 | Habitat: Ombrotrophic peat plateau dominated by 7 | lerfim decimbens & Yacciniim vitis-idaaa 8 | Elevation: 219 ft- 9 | Collector: Stephen & Sandra Talbot# 3-7-18 10 | Map/Quad.: Kateel River (A-3) Date: 22 Aug 1989 11 | Det. : John V. Thomson -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0013611_lg.txt: -------------------------------------------------------------------------------- 1 | AKFWS HERBARIUM 2 | FLORA OF ALASKA 3 | 0\a.Atfv%iV C©Vv»^e, 4 | Location: Kenai NWR;0,5 km W of Dabbler L.; 5 | 60°42.0'N, 150*47.O’W; T7N R9W Sec 13 6 | Habitat: Picea mariana - Vaccinium vitis-idaea - 7 | Pleurozium schreberi burn regeneration 8 | Elevation: 76 m 9 | Collector: Stephen S. Talbot # 16A1-8 10 | Map/Quad. : Kenai (C-3) Quad Date: 5 Aug 1991 11 | Det,: John W. Thomson 1992 -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0013711_lg.txt: -------------------------------------------------------------------------------- 1 | AKFY3 HERBARIUM 2 | FLORA OF ALASKA 3 | * \au*a. Ojta. ” ^^iCVMKdt ( 5 | Location: Yukon Delta NWR; Chuilnak River area; 6 | 62°10'N, 162°30'V 7 | Habitat: Pices glauca - V&cciniim uliginosu* 8 | Woodland 9 | Elevation: 60 ft 10 | Collector: Stephen S. Talbot # JJ6-3 11 | Wap/Quad. : Kwigut (A-l) Date: 1 Sept 1983 12 | Det.: John V. Thomson -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0014411_lg.txt: -------------------------------------------------------------------------------- 1 | LICHENS OF ALBERTA, CANADA Banff National Park 2 | Cladonia ecmocyna (Ach*) Nyl* 3 | Canadian zone, Larch Vall©y near Moraine Lake 7500 ft. 4 | H. A. Imshaug 6788 12 ^uly 1950 5 | CAM-, /viberta- 6 | ✓ 7 | A/ -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0014511_lg.txt: -------------------------------------------------------------------------------- 1 | ALCAN EXPEDITION l8l88 2 | UNIVERSITY OF WISCONSIN 3 | N.S.F. Fund G.B.2702 W , ^ 4 | Cladonia 5 | 0«w} 6 | ALASKA: Eagle Summit Tundras Mile 108, Steese Hwy. 7 | Lat. 65°29'N Long. 145 29'W Aug. 6, 1967 John W. Thomson Teuvo Ahti -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0014611_lg.txt: -------------------------------------------------------------------------------- 1 | NORTHWEST TERRITORIES 2 | District of Keewatin 3 | c/w 4 | i&JytUUv ^rS "•' 5 | 2-iU 6 | Oui ^OOuficiOi^ lov| 7 | IOaJGDv 8 | North end of Lake Ennadai Lat.61 10*N, Long.100 50’W July X® , 1960 Coll. J.W.Thomson J.A.Larsen -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0014811_lg.txt: -------------------------------------------------------------------------------- 1 | NORTHWEST TERRITORIES CENTRAL MACKENZIE MOUNTAINS KEELE RIVER REGION COLLECTED BY GEORGE W. SCOTTER 2 | K-25 3 | 1628U 4 | Rhigocarpon pusillua 5 | RUNEM. 6 | d«t. H.HERTEL, Miinchen, w 1974 7 | Tiponankweine Range Alpine community 8 | 55001 9 | 63°401N, 127°52'W July 8, 1971 10 | US’ -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0014911_lg.txt: -------------------------------------------------------------------------------- 1 | COLORADO LICHENS 2x1 ** ALBS FORAY, 3 984 2 | Ru* v\A. a I^oaUju 3 | r\ V IfliVA Vvo(J CLAJ2.&*. - 4 | 4. LARIMER CO.: ROCKY MT. NAT'L. PARK: alpine tundra of Trail Ridge NW & W of Toll Memorial* E of Iceberg Pass; 40 25'N, 105 44»W; T5N, R74W, Sec. 7 3500-3720 m alt. 5 | August 4 & 5,1984 Coll, J, V/, Thomson -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0015011_lg.txt: -------------------------------------------------------------------------------- 1 | AKFWS HERBARIUM ** FLORA of ALASKA 0 2 | CLC^JK pi/Vi C^o v ^ ^ -*'H ' 3 | Location Selawik NWR, Lake 180 area 4 | Latitude 66°12,23.6" N Longitude 160° 15'01.9" W Elevation 204ft Habitat On rock in Polytrichum juniperinum-Empetrum nigrum burn 5 | Quad. Map Selawik (A-3) Alaska Coil. Date 23 July 2003 6 | Collector Stephen S. Talbot # 295 7 | jet John W. Thomson November 2003 -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0015111_lg.txt: -------------------------------------------------------------------------------- 1 | 16912 2 | MINNESOTA CLEARWATER COUNTY LAKE ITASCA BIOLOGICAL STATION 3 | Caloplaca uttmorum 4 | On elm on the station igrounds. Aug. 16, 1953 J.H.Thomson -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0015211_lg.txt: -------------------------------------------------------------------------------- 1 | AKFWS HERBARIUM ** FLORA of ALASKA 2 | Location Selawik NWR 3 | Latitude 66°28'19.0"N Longitude 157° 11'43.0" W Habitat Lakeshore cobble on stoney beach 4 | Quad. Map Shungnak (B-3) Alaska Coil. 5 | Collector Stephen S. Talbot # 071 6 | Det. John W. Thomson November 2003 7 | o7| 8 | IAjl , 9 | Elevation 494 ft 10 | r 11 | 15 July 2003 -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0015411_lg.txt: -------------------------------------------------------------------------------- 1 | AKTV3 HERBARIU1I 2 | FLORA OF ALASKA _ Q 3 | _____Icrv'bt'V 4 | O ' 5 | £ JLivKA VI AIjAJKA 6 | CoJ)o^ioc.<^ je***CCJjta. (kSv^-) 7 | Location: Cape Wrangell, Attu Is., Aleutian 8 | Islands; 52*55.5’N, 173°27.5,E 9 | Habitat: Epilithic on lower slope stony ridge 10 | Elevation: 150 ft 11 | Collector: Stephen & Sandra Talbot # 299 Map/Quad. : Attu C-6 NW Date: 14 Jul 1988 12 | Det. : John W. Thomson , 13 | K-v -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0015511_lg.txt: -------------------------------------------------------------------------------- 1 | 16761 2 | MINNESOTA CLEARWATER COUNTY LAKE ITASCA BIOLOGICAL STATION 3 | Ramai i na 4 | dU'( c. CjSJX <0“ 5 | On dead branches of jack pine, Beaver Trail Itasca. June 29* 1970 J.W.Thomson -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0016011_lg.txt: -------------------------------------------------------------------------------- 1 | AKFWS HERBARIUM ** FLORA of ALASKA 2 | Cladonia 3 | Location Izembek NWR; Base of N side of Baldy Mountain 4 | Latitude 55° 12.124 N Longitude 162° 47.807 W Elevation 100 Habitat Empetrum nigrum-Petasites hyperboreus hummocky heath 5 | Quad. Map Cold Bay 6 | Collector Stephen S. Talbot 7 | Det. John W. Thomson 1997 8 | Coll. Date 7 Aug 1997 9 | # 97-04-45 -------------------------------------------------------------------------------- /lichen/abby/WIS-L-0016111_lg.txt: -------------------------------------------------------------------------------- 1 | In 2 | ) 3 | A1FVS HERBARIUM 4 | FLORA OF ALASKA 5 | C_V o^t\ 2 | 3 | The New Yorh Botanical Garden 4 | CR_ToGAMs oF FLo_A, U.S.A. , 5 | T_et_eli_7n s_bel_t_- Mak. 8c _aT. 6 | GIJdes CounTy: OrTona CemeTe_, along SR 78, 1 mi 7 | W of CR 78A, 26049'N, 81018'W; oah-palmeT_o 8 | scrub direc_ly N of ceme_ery. 9 | __OMJrch 1998 10 | _Villi_m R. Buck _J_O__1 'E_, J4K'_i'__'_ 'A__;E 11 | -------------------------------------------------------------------------------- /lichen/gocr/NY01358211_lg.txt: -------------------------------------------------------------------------------- 1 | ___t1)_t ____ruo__-_______________________________________0m2_rn>_o_2_po______lv____ %_r _____?_____?4 __/__tr___ _ __ 2 | t -__--m_z ,,, 3 | -------------------------------------------------------------------------------- /lichen/gocr/NY01363711_lg.txt: -------------------------------------------------------------------------------- 1 | ___N_ 2 | Ew_yoo__1AyK3Bo6TT_3sNt7cA1__G1F__0_EN 0R_A r _0_ _t c |_ 3 | _0_ 0 _._0n,_n_,_0.n__ - - 4 | 5 | 6 | T th li_ mastoide_ (Ach.) Ach_ 7 | 8 | 9 | - u_ , Localit_; th' w, ,7 8___o_1/ 10 | P_ ___o Co. / _/__,__ 11 | Col1ector G. T. Johnson NO_ 12 | ______ Jl_ /S_S' 13 | -------------------------------------------------------------------------------- /lichen/gocr/NY01391811_lg.txt: -------------------------------------------------------------------------------- 1 | ____ 2 | 3 | 4 | HERBARIUM OF > 5 | THENEWYORKBOTANICALGARDEN 6 | L_cHENsoFf_oiTDA 7 | _O ea raD_a _1 t auc t. NEWYORKBOTAN!CA'GARDEN 8 | 01391g11 9 | _EON COUNTY: Swamp forest E of Natural 6ridge 10 | Battlefie1d monument, 6 mi E of Woodvi11e. 11 | 1 Jan 1991. 12 | _-'uLL___T_;D By R. C. Harris 26237 13 | -------------------------------------------------------------------------------- /lichen/gocr/TENN-L-0000311_lg.txt: -------------------------------------------------------------------------------- 1 | __ _zzw__%n_c_/___7_a7//_///_/_c/__%///__///_//_/_/__////_///_/__////__////_0Doow_ __u_ sl A__ o_nThve__HRa_ttro_rl_B_oAtan__lcagl_LacbhoryatoTT_y_n co__ Eal_9t66o_ 2 | _J _Jn, 3 | 4 | 5 | 6 | ___ n______ v__ _ ' __ ___ _ , ?_ _ _ _ L _ _! _,;_ 7 | __/_//_m '_;_ ;'c?__+' _? _?_,___ 8 | ___/////_ ì Oa_ood along Hw_. 4 60. Ap_j _ l 0, 9 | ___/////z, Col_. M8son _. Hale & T___ o _os h _u_ & 10 | -------------------------------------------------------------------------------- /lichen/gocr/TENN-L-0000411_lg.txt: -------------------------------------------------------------------------------- 1 | ________ w__ _ __0 ________o_r_ 2 | /_?(_J 4 J __ /__r t 3 | 4 | 5 | 6 | 7 | t 8 | _ __ ____ 9 | __;,,___ o 10 | ___ 11 | 12 | _ ____ /_i/_/____ _ 13 | . _/ _ _ un_ve_s!_ o_ Tennessee _T_NN_ 14 | -------------------------------------------------------------------------------- /lichen/gocr/TENN-L-0000611_lg.txt: -------------------------------------------------------------------------------- 1 | ____l_ tvt_w_uuL_urcuo___%>__7____________________________________________________________________ooo02wt_zl_ JM_u__ceTc__As_o_G_a_r_p____tm_NĄ__n9_d8roeo__wf____nl_a___c__l_ht_7___tt___r___n_l_f__lu_tm9lr__a6n7chona_ to __ JJ?____ 2 | 3 | 4 | 5 | l _ 6 | t _ 7 | t _zz_--___ ,__, , ,_ _ ,_______ 8 | 9 | 10 | 11 | j-----__ col _, Gary _ _ t o n L 12 | ) 13 | -------------------------------------------------------------------------------- /lichen/gocr/TENN-L-0000711_lg.txt: -------------------------------------------------------------------------------- 1 | __ __/ __0 c __ 2 | TENN_L_o_t_0007__ ____ ___o1 3 | 4 | 5 | 6 | __o. 46G _JC._,_:5 _,_; ;_C__IÇ__ 7 | _C_loDlac8 _elec_ns (___.) __. __ries 8 | On roclc, Sturgeon _&y 9 | _etCo_ July _5, l957 10 | Coll. H_ A_ Sierlc _,,_,,p,_,_y_,Te,_,pssee_TENN, _,, 11 | _et_ __ A_ Sier_ , 12 | -------------------------------------------------------------------------------- /lichen/gocr/TENN-L-0000811_lg.txt: -------------------------------------------------------------------------------- 1 | _ _ 2 | ll 3 | M_ a _,!__ ____-__5 o_ l,_,;ccHTGAN 4 | _a__e__rie__e _vj__l_i__ (_hrh _) ____ll _ 5 | On r__ka GeCi_ B_Y _ _8he _4TiChig8n 6 | ___ Co_ July l8_ l957 7 | _oll_ Ho A_ Sier_ un_ve_s_NofTennessee(TENN) _ 8 | _e_. H_ __ 5ierk 9 | TENN-L-0000811 10 | ! 11 | _ 12 | -------------------------------------------------------------------------------- /lichen/gocr/TENN-L-0001611_lg.txt: -------------------------------------------------------------------------------- 1 | H__tAT__t__ot R_____t__ _ _E___ ___t_ ___ E____ts_ E_E ____ c_c_ __r_ ERA t_v6ttE _ ______________M_M_M_____________ ___t___t _ 2 | -------------------------------------------------------------------------------- /lichen/gocr/TENN-L-0002011_lg.txt: -------------------------------------------------------------------------------- 1 | ltlllll________?_n_r ___c_Dnhee_lbb___otyr_ngH_8e_dnJ{_sctos_sll_etprtkr__ehJul_rll_d T2w__l__B___c9a5_7pus tvt__0t_cncna7_oh________________________________-__________0ruoo_2__ 2 | _l__o_ia. _ceno tea\ ( _c h_) S c h a _ __ _-____ć ^____ O 3 | i O ' ' ' _ _ _ aJ -----_ w_ 4 | l _ c-__-_ 5 | _ --- _ 6 | -------------------------------------------------------------------------------- /lichen/gocr/TENN-L-0002111_lg.txt: -------------------------------------------------------------------------------- 1 | ___crtttJ_f___tt_____ _ ___________J________________7__________________________r______________________________________fuooo_w_t 2 | HE_- _. C. A. Ro_BtN t, 3 | Pl_t_ fro_ __e1__, 4 | Cl. _tt___t& (Ach_) _lot_ ____ 5 | _, e_ee_& (_e__} __n, __ ____________ _ 6 | co Ll. _ A, ROBBINS ___- 5_______-_-__ z, 7 | -------------------------------------------------------------------------------- /lichen/gocr/TENN-L-0002511_lg.txt: -------------------------------------------------------------------------------- 1 | _ _ _%oh_%_____^__^^_rt_________t_022_ 2 | __CH____s o_ A_S_ 3 | ;!_Joo __,_-__44 ___ 4 | c__on__a ___x_a__ Ch_ _4_ __ ' ZZw,___^^_^__ 5 | . ___ ,__q, __^__^__ _ 6 | RaJther d_y op_.n _ro_nd _ Pt _ _c _______ 0 7 | _arr__r_ j_ ^______ i_ 8 | Co11_ Jo__ _ora_da >_^^-^____ 9 | _et, ___ J!__1_,r _19/_C_!__ j^_-_^__ 10 | __ 11 | 12 | ;_n;'__. 13 | -------------------------------------------------------------------------------- /lichen/gocr/TENN-L-0002611_lg.txt: -------------------------------------------------------------------------------- 1 | n2zwtvt07___cn0Jcc__o_h_ut_________t_______t__r__r_r____r______t?__??________?___________________________ruooo_zzw___ u_os__hcgtarsho_______t Ao__l_2c_?stMoH__?mqE__J0yl __N_________Ttts_H____ __o_Gn_o_c_ Ara__y Fn_____0___c__fNc__om_ol__ A/e__R____ T_Jr_Jr_H__ c_ c__lo_ _Atn_mrc_EttotpRo_tl c_J A9o _v _ 2 | ___ 3 | -------------------------------------------------------------------------------- /lichen/gocr/TENN-L-0003511_lg.txt: -------------------------------------------------------------------------------- 1 | __LcooclI_____0 r00_c_____ 0_0__0000t00_00_ _n h__0 _ 0_ 2 | 0unA__Tv_eEtr___s__N___tyN_o_fLTe_n0_n_eos0se3e5(0T_E_NN) _t _ ___0_____0_ 3 | -_T_ 2 f LoR_ of TENNEs s E E _,. 4 | No.__ _ _ . 5 | 6 | Substratum _' B 0 _ 0 B 7 | a_ H&1l'9 C_ossroad_ 8 | -------------------------------------------------------------------------------- /lichen/gocr/WIS-L-0012111_lg.txt: -------------------------------------------------------------------------------- 1 | 6__q7_Npl_o__6_5_soop____s__ 2 | 3 | 4 | 5 | 6 | C___ 4__q' & ___g. 7 | _oc&tion; Y_on D_lta _; A_kinuk _ountaina; 8 | _bitat: _^_rR,__ _ip_ld__ii - _id_ dR__in_ 9 | h_ocky tundr_ 10 | Ele_tion: 600 ft 11 | Collector: Stephen S. T&lbot _ 26-1 12 | __J_d.: H0oger 8__ (D-2) _8te: 27 __ t983 '?- 13 | Det.: JomW. mo_gon 14 | -------------------------------------------------------------------------------- /lichen/gocr/WIS-L-0012511_lg.txt: -------------------------------------------------------------------------------- 1 | __ Latltude Lon9ltuJe / E_evatlon 25om 2 | AKfws HERBARlUM *X FLO_ of ALAS_ '_,_ _ 3 | CIadina ______s3 rs_____,) Fv____h_.__-, 4 | 5 | Location Deef lSIand, A_a _Ska 6 | . 540 57.015' N . 1620 20.126' W _ 7 | Habitat BetUIa _a_a _OOr fen 8 | Quad. Map FalSe PaSS co_l. Date 1 3 Aug 1 997 9 | collector Stephen S. Talbot # 97-22-X-20 10 | _et. John W. Thomson 1 997 11 | -------------------------------------------------------------------------------- /lichen/gocr/WIS-L-0013711_lg.txt: -------------------------------------------------------------------------------- 1 | _ _ 2 | 3 | 4 | 5 | Ur____8_I_ 6 | P_O_i O_UiS__ 7 | '_ _____o'_0 '0___'0', 8 | _ _ _____ 9 | _0c_t_' m; _Wcon D__t_ _ ; C_u___k _ty__ _r__ ; 10 | 62_10'_, 162_30'_ 11 | _bit8t: _i_i_ _laGF__ - M___ini_ _lipino__ 12 | Wo0dl8nd 13 | 14 | _levation: 60 ft 15 | Collector: Stephen S. _lbot f J_6-3 16 | _p/Q_d.: Kwigut (A-_) _8te: 1 5egt _983 17 | Det.:Jom_.mo__on 18 | 19 | 20 | __- 21 | -------------------------------------------------------------------------------- /lichen/gocr/WIS-L-0014411_lg.txt: -------------------------------------------------------------------------------- 1 | t __t __ _ ___ _ 2 | 3 | c_N._ _(__a 4 | __cH__.s oF _n__m_A, cA1__,__A 5 | Bgn__ ì';_8ti ong_ i_1c 6 | 7 | Cledoni8 8c__oc_L_8 (J_ch_) I\__rl_ 8 | 9 | Can_dign 2ong, ___h V_lle__r _,_2_ 10 | __orai__8 _k_ 7500 __ _ 11 | A_ 12 | __ A_ IMh8ug 678ß l2 J ul_r lO,50 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | __. , ___, _,_n_-, 25 | -------------------------------------------------------------------------------- /lichen/gocr/WIS-L-0015111_lg.txt: -------------------------------------------------------------------------------- 1 | __ _ __0_____0___ _ 2 | 3 | 4 | 5 | 16g_2 6 | 7 | mINMESOTA 8 | CLEARMATER COuYN 9 | _JA_ TTASCA BTO_oG_CA_ sTATToN 10 | '0___ 11 | _l On, laC_ U_O_m 12 | 000__ __ 13 | 0_0' 0 14 | _,0__0_0__ 15 | 00_000> 16 | __0__0>,DDa0_00 17 | 0 00_ ___ _0 0 0_ 0 0_ _D 18 | _00B_0 __, 0 19 | 20 | 21 | 0n elm o_ t_e 5t_,ti_.'_,\n__e;!_o__d__ 22 | __ue_, _6. _95_ 23 | J___i__' _hom_-;on 24 | _ 25 | -------------------------------------------------------------------------------- /lichen/gocr/WIS-L-0016311_lg.txt: -------------------------------------------------------------------------------- 1 | ___ _wt___J_r_ _ l_ t _ t /___%____1 _s 2 | 3 | R, H, _enniston _ichen 0lleCtio_ 4 | Donate_ to !_Iì_ l9_4 5 | _ _\e _ -_ Q___ i __î1_ _ ' w,. ___ 6 | _ / , __ _ ___(_q_q 7 | 8 | _! __r_,,__ 9 | _ . ''' (_____4'__e _!_ 10 | ''! __? - _____(q'_ r 11 | B N ; __- _ _'nvi__ 12 | -------------------------------------------------------------------------------- /lichen/gocr/WIS-L-0016611_lg.txt: -------------------------------------------------------------------------------- 1 | _ l _ __ _ _ 2 | 3 | __N_IA 4 | ___A vv____I_ (_, } H_a. !. __ _q7 _ 5 | ___0_DT Ci'). _. _n _oof o_ hous_ &t 6 | l_l7 _8__s St__ _î'u_ka, 7 | Col_ _ V{lbu_ _, gtg_son & 462 8 | _t, t __Ub__ _gte_5on l6 J_ l9_ 9 | -------------------------------------------------------------------------------- /lichen/gocr/WIS-L-0016711_lg.txt: -------------------------------------------------------------------------------- 1 | ________ t____t_0_0__tT_lc_0_0____t____cn__0çl_ cAN A( _ 2 | 3 | 4 | 5 | 6 | District of Mac_en_ie, N.W.T. 7 | No. 5_ w5o. Margaret E. Oldenburg 8 | _i44_ ' '''-_w_' ", t. r 9 | _i_,__4_, !___ '____(_L_.. ___c__c_ ( L ) h, i _, 10 | 11 | 12 | 13 | 14 | 15 | ,_ 16 | . __ _ ____o___e 17 | 12_ __o_ Sta. 2 nugu9G _W2 9,l_5o 18 | -------------------------------------------------------------------------------- /lichen/images/NY01075811_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01075811_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01075911_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01075911_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01076011_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01076011_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01076111_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01076111_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01304911_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01304911_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01356611_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01356611_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01357211_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01357211_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01357311_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01357311_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01357411_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01357411_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01357511_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01357511_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01357611_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01357611_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01357711_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01357711_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01357811_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01357811_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01357911_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01357911_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01358011_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01358011_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01358111_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01358111_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01358211_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01358211_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01358511_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01358511_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01363011_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01363011_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01363111_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01363111_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01363411_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01363411_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01363711_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01363711_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01363811_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01363811_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01365511_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01365511_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01365611_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01365611_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01365711_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01365711_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01365911_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01365911_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01391211_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01391211_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01391311_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01391311_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01391411_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01391411_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01391511_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01391511_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01391611_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01391611_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01391711_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01391711_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01391811_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01391811_lg.jpg -------------------------------------------------------------------------------- /lichen/images/NY01391911_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/NY01391911_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0000011_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0000011_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0000111_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0000111_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0000211_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0000211_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0000311_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0000311_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0000411_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0000411_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0000511_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0000511_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0000611_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0000611_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0000711_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0000711_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0000811_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0000811_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0000911_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0000911_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0001011_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0001011_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0001111_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0001111_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0001211_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0001211_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0001311_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0001311_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0001411_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0001411_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0001511_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0001511_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0001611_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0001611_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0001711_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0001711_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0001811_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0001811_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0001911_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0001911_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0002011_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0002011_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0002111_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0002111_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0002211_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0002211_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0002311_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0002311_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0002411_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0002411_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0002511_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0002511_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0002611_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0002611_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0002711_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0002711_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0002811_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0002811_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0002911_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0002911_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0003011_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0003011_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0003111_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0003111_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0003211_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0003211_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0003311_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0003311_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0003411_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0003411_lg.jpg -------------------------------------------------------------------------------- /lichen/images/TENN-L-0003511_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/TENN-L-0003511_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0012111_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0012111_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0012211_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0012211_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0012311_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0012311_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0012511_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0012511_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0012611_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0012611_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0012711_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0012711_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0012811_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0012811_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0012911_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0012911_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0013011_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0013011_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0013111_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0013111_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0013211_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0013211_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0013311_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0013311_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0013411_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0013411_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0013511_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0013511_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0013611_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0013611_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0013711_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0013711_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0014411_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0014411_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0014511_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0014511_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0014611_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0014611_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0014811_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0014811_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0014911_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0014911_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0015011_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0015011_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0015111_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0015111_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0015211_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0015211_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0015411_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0015411_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0015511_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0015511_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0015911_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0015911_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0016011_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0016011_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0016111_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0016111_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0016211_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0016211_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0016311_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0016311_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0016411_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0016411_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0016511_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0016511_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0016611_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0016611_lg.jpg -------------------------------------------------------------------------------- /lichen/images/WIS-L-0016711_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/images/WIS-L-0016711_lg.jpg -------------------------------------------------------------------------------- /lichen/ocrad/NY01075811_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01075811_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01075911_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01075911_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01076011_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01076011_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01076111_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01076111_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01304911_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01304911_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01356611_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01356611_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01357211_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01357211_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01357311_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01357311_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01357411_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01357411_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01357511_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01357511_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01357611_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01357611_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01357711_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01357711_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01357811_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01357811_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01357911_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01357911_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01358011_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01358011_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01358111_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01358111_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01358211_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01358211_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01358511_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01358511_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01363011_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01363011_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01363111_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01363111_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01363411_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01363411_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01363711_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01363711_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01363811_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01363811_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01365511_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01365511_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01365611_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01365611_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01365711_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01365711_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01365911_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01365911_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01391211_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01391211_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01391311_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01391311_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01391411_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01391411_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01391511_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01391511_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01391611_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01391611_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01391711_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01391711_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01391811_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01391811_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/NY01391911_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/NY01391911_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0000011_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0000011_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0000111_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0000111_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0000211_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0000211_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0000311_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0000311_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0000411_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0000411_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0000511_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0000511_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0000611_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0000611_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0000711_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0000711_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0000811_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0000811_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0000911_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0000911_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0001011_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0001011_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0001111_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0001111_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0001211_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0001211_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0001311_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0001311_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0001411_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0001411_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0001511_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0001511_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0001611_lg.txt: -------------------------------------------------------------------------------- 1 | HATT___-T__,.___c__ ____ _ __L-F_hTl\_.E 2 | BR`__)_El)__A___,_ ________Tl_'_S, |_`__-G6 3 | 4 | -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0001711_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0001711_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0001811_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0001811_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0001911_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0001911_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0002011_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0002011_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0002111_lg.txt: -------------------------------------------------------------------------------- 1 | h _ 2 | 3 | 4 | 5 | 6 | 7 | 8 | n 9 | n 10 | w 11 | o 12 | o 13 | o 14 | | 15 | ' _ 16 | _| 17 | _ _ 18 | 19 | 20 | 21 | 22 | >/ 23 | 24 | 25 | | _ 26 | 27 | -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0002211_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0002211_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0002311_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0002311_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0002411_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0002411_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0002511_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0002511_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0002611_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0002611_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0002711_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0002711_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0002811_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0002811_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0002911_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0002911_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0003011_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0003011_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0003111_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0003111_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0003211_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0003211_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0003311_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0003311_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0003411_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0003411_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/TENN-L-0003511_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/TENN-L-0003511_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0012111_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0012111_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0012211_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0012211_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0012311_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0012311_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0012511_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0012511_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0012611_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0012611_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0012711_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0012711_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0012811_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0012811_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0012911_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0012911_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0013011_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0013011_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0013111_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0013111_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0013211_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0013211_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0013311_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0013311_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0013411_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0013411_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0013511_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0013511_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0013611_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0013611_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0013711_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0013711_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0014411_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0014411_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0014511_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0014511_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0014611_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0014611_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0014811_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0014811_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0014911_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0014911_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0015011_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0015011_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0015111_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0015111_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0015211_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0015211_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0015411_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0015411_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0015511_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0015511_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0015911_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0015911_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0016011_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0016011_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0016111_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0016111_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0016211_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0016211_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0016311_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0016311_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0016411_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0016411_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0016511_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0016511_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0016611_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0016611_lg.txt -------------------------------------------------------------------------------- /lichen/ocrad/WIS-L-0016711_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/ocrad/WIS-L-0016711_lg.txt -------------------------------------------------------------------------------- /lichen/ocropus/NY01075811_lg.txt: -------------------------------------------------------------------------------- 1 | n-z-Nie-mi-m- 4- iiii, e.,.a, a.m m.io-m o.,-m' iiin W..ims , 2 | (w. w. c AcnlN s' ,TH AMs hicAN LIc HENs. . 3 | e 4 4 | eN am -..d 5 | AXA ug[g 6 | - cv e4s QU . 0 7 | ''e-, 8 | AA--. 9 | On.,-d.. 10 | d.-. worsior -6-------------- 11 | -d,' 12 | sleec`- 13 | drae/s 14 | The New York Botanical Garden 15 | Arthopyrenia cinchonae (Ach.) Miill. Arg. 16 | Da. Richard C. Harris 1995 17 | . d. 18 | - ; 19 | ....- 20 | O 1075811 21 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01076011_lg.txt: -------------------------------------------------------------------------------- 1 | . -- - - = = f,aidi Pttm- - ---.iw a-..= s 2 | eicHeNs mr NEW YORK 3 | Pol blastio sis fallaciose (Arn. 4 | on white oak 5 | WES 1CHC STER COUNI2: 6 | manus River Gocg e. 7 | ] cr,,m d s, 8 | - 9 | ) aa mee. 10 | - so., Al 11 | l6.V.198l 12 | O 1O7 6O 11 13 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01304911_lg.txt: -------------------------------------------------------------------------------- 1 | s.y 2 | dy 3 | LICHENS OF SOUTHERN FLORID 4 | 01304911 5 | m, Nuc-krn 6 | f . 7 | Mm m 8 | .o ,iueid (/Loctoi 9 | N. L. mAi TmE N, 10 | H. O. G nlt-rkN ( co-Ls coR s 11 | foU 12 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01356611_lg.txt: -------------------------------------------------------------------------------- 1 | The New York Botanical Garden 2 | CRYPTOGAMS OF NORTH CAROLINA, U.S.A. 3 | Mycoporum compositum (Massal.) R. C. Arris 4 | on trunk of Fagus 5 | Graham County: Nantah ala National Forest, 6 | Chero hala Skyway [NC 143], Mudd Gap, 35.20' N, 7 | 84 i02'C, 1388 m; Fagus-doenated hardwood forest. 8 | ] 1 October 1997 9 | slR 10 | 01356611 11 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01357211_lg.txt: -------------------------------------------------------------------------------- 1 | y------. " 2 | PLANTS OF LOU) SIANA 3 | i - e -aeWi yva aido,' A e- M B, f. 4 | ez .w. o. 5 | Looality: 2 mi. N. of Eolling, 6 | Eossier Farish, Louisiana 7 | Collector G. T. Johnson No. 8 | 2une E 5, 1 P6k S9 S3 9 | Deo. 10 | eit!]i [c 11 | .Pe.c ] 12 | Ons572 t1 13 | , og :k 14 | Jilth 15 | is/ ]-. 16 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01357311_lg.txt: -------------------------------------------------------------------------------- 1 | ..PL A0S 0F NORTR 0A RoL INA 2 | l - r se gel it v, - rvsP a, 'o.o-- A-s. 3 | aO. do.7.. 4 | locality: 3 Adles west of 5 | Nash County, N. 6 | 0 o11ector: g. T. Jounson 7 | l. 8 | uuust 2l, l9 66 9 | d 01357311 10 | Nashville, 11 | Carolina 12 | No. 9 y oo - 13 | ( AM 'r c 14 | ol 15 | Neiieci pcc :DU, , 16 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01357411_lg.txt: -------------------------------------------------------------------------------- 1 | 5 i-r.-- 2 | PLANf S OF HEXAS 3 | le e R e1i- -, ws as doi 4 | -pm 5 | rie 6 | Texas 7 | i 8 | S, 9 | is 10 | -. g 11 | `-ods 12 | 8 o1leecor G. T. Johnson 13 | July 1l, l9 65 14 | r A.L. 15 | County, 16 | NO. 17 | DE UO.;[) o-e 18 | a3 90 19 | .2] 20 | e,/isEs 21 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01357511_lg.txt: -------------------------------------------------------------------------------- 1 | LAaTS OF MORIDA 2 | Trv MeRe fite elWee-aeSnl1 . 3 | m . e J s M 4 | Loca1ity: Lile E, cc - hd -, um kw Tai 5 | Es av, laf as IVa+ i' 6r v1 PA, kg P(A , 6 | Ta-,W ,evko. 7 | No. e4 R7. 8 | 'M 9 | o .i ,d 10 | DUEO,c( CG NY i9, 11 | s.0l Ydwdo 12 | GAR2 ;hl 13 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01357611_lg.txt: -------------------------------------------------------------------------------- 1 | The New York Botanical Garden 2 | CRYPTOGAMS OF FLORIDA, U.S.A. 3 | T tpethelium saluteie ; Mak. & Pat. 4 | Glades County: Ortona Cemetery, along SR 78, 5 | 1 mi 6 | % of CR 78 A, 26.49' N, 81i18' C- , oak-palmetto 7 | scrub directly N of cemetery. 8 | 3O March 1998 9 | William R. Buck 34051 10 | s4 or- 11 | 01357611 12 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01357711_lg.txt: -------------------------------------------------------------------------------- 1 | THE NEW YORK BOTANICAL GARDEN 2 | L1 CHENS OF FUGRIDA 3 | Trethe1 ium Zee(giy (Ach.) Mtl1 1. Arg. 4 | LIBERTY C0 UNTY: Young cypress dome w of County 5 | Road 379, 0.9 mi NW of Fla. Ilwy. 6 | Apalachicola National Forest. 4 7 | COLLEa TED BY R- C. HarrlS 25l 07 8 | HERBARIUM OF 9 | 65 at Sumatra, 10 | May 11 | 1990. 12 | [ W . ------,] 13 | THE NEW YORK BOTA6r C.L GARDEN 14 | LICHENS OF FLU 15 | 01357711 16 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01357911_lg.txt: -------------------------------------------------------------------------------- 1 | G.Awrs oF rE x As 2 | /bohoald'==Algor, ) AA0 a4 // Z SQ,ace- 3 | d ,sot df i e Ase l. - as. -. as , eu - A .& , 4 | a>..-V .J. 5 | Locality: 2 miles . of Thompsonville, 6 | Gonzales Councy, Texas 7 | 0 o1lector: G. T. Johnson No. E V S6 8 | July l2 , 9 | 1966 10 | 01357911 11 | UA Rl Uc' Oe 12 | GEOodor. , t 13 | e, .loOA 14 | - - e u - e ev/ 1 Sa 15 | L-.s 16 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01358011_lg.txt: -------------------------------------------------------------------------------- 1 | o . 2 | [l 3 | a 4 | ur- n1.-, 5 | 01358011 6 | nlellesley Collego 7 | FerCornerr (v VELC) 8 | Donated to NY i: 19SR 9 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01358111_lg.txt: -------------------------------------------------------------------------------- 1 | PLANts oF ALAEAMA 2 | In eeeIicwi` r,s Asak, 3 | - 4 | rcae. . 5 | Locality: Along Ligh wood ot Creek, 6 | l5 ddles SE of Anda Lusia, 7 | Covington County, Alabama 8 | co11ector 0 . 1. Jonn son 9 | Oetorer R1 , l9 6466 F3 10 | 01358111 11 | NO. 12 | rt yols 13 | , K- 14 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01358211_lg.txt: -------------------------------------------------------------------------------- 1 | cs 2 | eat 3 | ca 8 4 | E u 5 | c= 6 | :ceo xs.e 7 | `e.e., 8 | ye/.'r 9 | ..c,MZ t=cs 10 | . ec 11 | .r c. 12 | ,--N--A, 13 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01358511_lg.txt: -------------------------------------------------------------------------------- 1 | P-Urrs oF sownI e ARoLt NA 2 | l H GR e[lG n0as fou" ie MM f,i 3 | eiv. w. d . , 4 | iooality: Near Rid and, Jasper 5 | County, South Carolina 6 | Collector: G. T. Johnson No. 7 | January 31, 19678f 7c 8 | si) 9 | C135801 10 | .c. 11 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01363111_lg.txt: -------------------------------------------------------------------------------- 1 | The New York Botanical Garden 2 | CRYPTOGAMS OF NEVe YOR & STATE, U.S.A. 3 | Anisomeridium nyssaenum (Ellis N Everh.) harris 4 | on trunk of Thuja 5 | Jefferson County: El Dorado Shore Preserve, end of 6 | GranmeanRoad off Co. Rd. 152d.3 mi W of NY 7 | 3, 43s49' N, 76.14'W '; Tkuja7 umiperus swamp along 8 | shore of Lake Ontario. 9 | 24 May 1997 10 | Silliam R Euck 32236 11 | sillllllilMl 12 | O 1363111 13 | '-, 14 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01363411_lg.txt: -------------------------------------------------------------------------------- 1 | HERBARIUM OF 2 | E= ..--. , X---- 3 | THE NEW YORK BOSA NlCAL GARDEN 4 | LICHENS OF FLOR [0A 5 | Trethelium mastoideum (Ach.) Ach. 6 | NASSAU C0 UNTY: Just E of Lofton Creek on 7 | [lj Fla. Hwy. Alh, 5.5 mi W of Arselia River 8 | (lntraCoastal Waterway), hardy tood svwamp. 9 | 17 Dec 1987 10 | COLLECTED BY R. U. H0rr iS 11 | NEW YOEK BOTANICAL GARDEN 12 | 0hl 13 | 01363411 14 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01363711_lg.txt: -------------------------------------------------------------------------------- 1 | . m--te` 2 | T ethelion mastoidem (Ach.) Ach. 3 | PLANTS OF FLORI0 4 | Pe Cl/= C<. . ,/eaAi 5 | Collector G. T. Johnson 6 | asd u.arf 3 f. , i aS 7 | -Ts---ld. 8 | 01363711 9 | No. 10 | . y: t. C)p 11 | sd.- I. aOHNs On 12 | de 13 | -'-e-.irha. 3 nrlB 14 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01363811_lg.txt: -------------------------------------------------------------------------------- 1 | t 2 | --W 3 | lHe r1 e(rw Nasfo. fece .g. 4 | an 5 | vocality: 6 | Collector: 7 | 0 I, a.amt 8 | a mileblE of miijay, 9 | Gilmer County, Georgia 10 | G. T. johnson No. 11 | Feb IU ary 5, l QS7 9 OVh 12 | Ua 9c".o..0C T 13 | 4' I 1ii1C -g-ys--n. AoeeyPs.. 14 | r Amrs or dwesIA 15 | 01363811 16 | DERQ Sf( eO ( 1DBZ eW www. 17 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01365511_lg.txt: -------------------------------------------------------------------------------- 1 | - 2 | The New York Botanical Garden 3 | LICHENS 0F FL0 RIDA, U.S.A. 4 | Cr to thecta.,2,9 Ther 5 | on [U 29. UP 6 | Collier County: Fakahatchee Strand State 7 | Preserve, 1.2 mi from N entrance on 8 | W.J. Janes Memorial Scenic Drive, 9 | 26003' N, 10 | swamp. 11 | 6 December 12 | Richard C. 13 | 81026" W; open 14 | 1992 15 | Harris 29996 16 | . l22CH0 17 | 01365511 18 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01365611_lg.txt: -------------------------------------------------------------------------------- 1 | ---a d0 i Esaw,yage...# aUen-goa Mepesr #sx -A'rw% Nm"s 2 | HERBARIUM OF 3 | THE NEW YORK BOFANICAL GARDEN 4 | LICHENS OF fL 0RI 5A, U.S.A. 5 | Bactros ora brevts ora R. C. Harris 6 | Liberty County: Apalachicola National Forest, 7 | 0.2 ti E of Co. Rd. 379 on Forest Serv. Rd. 8 | l06, 3.1 nii NW of Sumatra; Taxodium dome 9 | N 0f road. 10 | 6 May 1990 11 | COLLECLED BY Wl1li0m R. 8 u Ck l7933 12 | RNilS 13 | 01365611 14 | al 15 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01365711_lg.txt: -------------------------------------------------------------------------------- 1 | HERBARIUM OF 2 | THE NEW YORK BOTANICAL GARDEN 3 | LlCHENS OF NEV YORK 4 | Lecanactis chloroconia Tuck. 5 | on Acer saccharum 6 | NEW YORK BOTANICAL GARDEN 7 | 01365711 8 | ST. LAWRENCE COUNTYi Cranberry Lake Campground, 9 | Bear Mountain Trail, beechmaple-yellow birch, 10 | c. 15O0 l600 ft. 22 September l9 S3. 11 | COLLECTED BY Richard C. Harris 16787 12 | ...Sm-g- 13 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01365911_lg.txt: -------------------------------------------------------------------------------- 1 | The New York tanical Garden 2 | LICENS 0F FL0 RIOA 3 | Chio decton san ui neum (Swartz) Vainio 4 | On oeruC 5 | wakulla County: Apalachicola National 6 | Forest, Bradwell Bay Wilderness, along 7 | Apalachicola Trai1 at jct with Forest 8 | Serv. Rd. 3 l4, T.4S., R. 4W., sec. ll, 9 | SW10; swamp forest. 10 | 4 December l9 88 11 | Richard C. Harris 23473 12 | NEW YORK BOTANr 13 | 01365911 14 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01391211_lg.txt: -------------------------------------------------------------------------------- 1 | l, l( ` III;N SO) IF CAl. ln Sl . (rlcn.R; I. 2 | Lecana cm epiIeucar Nyl.)Tehler 3 | Locality: Franklin County, Florida. USA.Little St. George 4 | Island, Cape St. George. 29.35' N, 85.03'W. ln stable 5 | backdunes and swales of barrier islan. 6 | Habitat: base of Wuerc tuv mvrtifo/ ia in shaded xeric scrub 7 | R. Yahr 433l 8 | 25-26 May 2002 9 | NEW YOn K BO3A NICAL GARDEN 10 | 01391211 11 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01391411_lg.txt: -------------------------------------------------------------------------------- 1 | o- 2 | UNITED STATES NATIONAL HERBARIUM 3 | CRYPTOGAMS OF THR LANGLOJ S HRRBARtUM, RRC mV RD FROM THE / / Lc / 4 | [3 se- 5 | Louis1ann: : 6 | No. 7 | / e-. 8 | / ,e 9 | y d 10 | m 0 11 | Rev. A. B. LANGLOl S, Collector a 12 | & - 13 | 14 | m 4Es-a 15 | W . 16 | . , .c . 17 | es : 18 | 01391411 19 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01391511_lg.txt: -------------------------------------------------------------------------------- 1 | The New York Botanical Garden 2 | LICHENS OF FLORIDA, U.S.A. 3 | uee,aeo Gea Pers. 4 | on Li uidambar 5 | Seminole County: Little Big Econlockhatchee State 6 | Forest, along Florida Trail from entrance on Co. Rd. 7 | 426, 3.3 mi NE of Co. Rd. 419in Oviedo, 28.41' N, 8 | 81.10' VV; Saba. Quercus virgimiama-hardwood swamp. 9 | 1eanuary 1996 10 | 01391511 11 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01391611_lg.txt: -------------------------------------------------------------------------------- 1 | LlCHNS OF NORTH CAROLl NA 2 | u Ro,ooa varia Pers. s. lat. 3 | on oG 4 | 01391611 5 | TRANSYLVANIA COUNTY: Pisgah National 6 | Forest, Moore Cove on U. S. Highway 276 7 | northeast of Brevard, mixed hardwoods. 8 | 27 May l9 67 9 | Richard C. Harris, no. 3254 10 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01391711_lg.txt: -------------------------------------------------------------------------------- 1 | The New York Botanical Garden 2 | CRYPT0 SAMS 0F FL0 RIDA, U.S.A. 3 | u Roeoo y2 LJ (Ach.) Behlen 8 Desberger 4 | Levy County: Black Point Swamp, along Co. 5 | Rd. 326 1.1 mi W of Co. Rd. 347, 29"13 `N, 6 | 83002' W; hardwoodTaxodium swamp forest. 7 | 30 November 1992 8 | Willia In 9 | R. Buck 22491 10 | 01391711 11 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01391811_lg.txt: -------------------------------------------------------------------------------- 1 | HERBARIUM OF 2 | THE NEW YORK BOTANICAL GARDEN 3 | LICHENS OF FE0R [0A 4 | Uppm Uedes au Cb. 5 | LE 0N C0 UNTY: Swamp forest 6 | Battlefield monument, 6 mi 7 | 1 dan 1991. 8 | COLLEC lED BY R. E. 9 | Harris 10 | NEW YORK BOLANICAL GARDEN 11 | lli f1 12 | 01391811 13 | E of Natural Bridge 14 | E of Woodville. 15 | 26237 16 | -------------------------------------------------------------------------------- /lichen/ocropus/NY01391911_lg.txt: -------------------------------------------------------------------------------- 1 | I, 1tyv,o .1bo:lt ev. 2 | SR]...- c5 4.-se/.- 3 | (J/ /pe0 ed 4 | Np .d-tw-a 5 | f---"------ 6 | Mbd - aseoe4 -- .c'c . t 7 | fd= .Jcs0 dmfe9 8 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0000011_lg.txt: -------------------------------------------------------------------------------- 1 | e5 X sau 2 | herbarium of the University of michigan 3 | -2t. t.y ;c 8.> zos 4 | Collected by, f.d / 5 | / . . o-e 6 | Determinby lv 7 | -rx . 8 | r/rd 9 | -c-J) na 10 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0000111_lg.txt: -------------------------------------------------------------------------------- 1 | Ne. Le 2 | FLORA OF TENNESSEE 3 | tichens 4 | bleo coria uadvornikiana 5 yel. 5 | Substratum pine bark 6 | Loc. 7 | coII. :arbara tooro 8 | Det. le 9 | c.ount 10 | co. - 11 | alt, 12 | Dote da 13 | HEHBANIUM OF THE UNIVENSITY OF TENNESSEE 14 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0000311_lg.txt: -------------------------------------------------------------------------------- 1 | EIArf ON l-T DNNEGSEB COOnE MATIVB 2 | GM YOOEOORAPHiC COLLECTIONS, lO G4-Go 3 | The Cniversity of . Tenneee and 4 | The Hattori Botanical Laboratory 5 | l.t.:L..d'tee 6 | e:, s; 7 | .Oaicwood along Bwy. 460. April lO, l9 66 8 | g Coll. Mason E. Halo & Isao Yoshimura 9 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0000411_lg.txt: -------------------------------------------------------------------------------- 1 | .-,..d,C 2 | 'A `2 3 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0000511_lg.txt: -------------------------------------------------------------------------------- 1 | T., 2 | ev 4a 3 | Herbarium of the University of Michigan 4 | LEGIT: y. 5 | Expc dition to Isle Royale, Michigan, 1930 6 | Povah, C. A. Brown, J. B. McFarliu, J. L. Lowe. 7 | FIDE: /N 8 | E s:,o s0.r 7G sM 9 | yc.oxe 10 | ee ,y 11 | es 12 | A 13 | e 14 | s 15 | n 16 | . s 17 | s 18 | x 19 | n 20 | uo.s,3 21 | g 22 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0000611_lg.txt: -------------------------------------------------------------------------------- 1 | . d.1 2 | 5 3 | S 4 | e 5 | s 6 | c 7 | i 8 | s 9 | 0 10 | 1 11 | t 12 | LliN CN =0s 13 | THE OolVE RElT Y mF TENNE9EEE 14 | ....--- C-o..`. 15 | e J hgA 1CA. St. Andrew Fer.i.shrt rail from Canchonn to . . 16 | L Horce1s Gap, ii,8S0 ft. alt. Jam. ll, l9 57 17 | coll. Gary borton 18 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0000711_lg.txt: -------------------------------------------------------------------------------- 1 | No. 469 LICHE1 GS OF liI CEIGA J) 2 | Calo laca SteKee (LM nk.) T. Friee 3 | On roclc, Sturgeon Bay 4 | July l6, l9 57 5 | Goll. B. A. Sierlt 6 | Det. E. A. Sierlc 7 | Unversity ofMennessee (TENN) 8 | TENN-L-ODOO 7ll 9 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0000811_lg.txt: -------------------------------------------------------------------------------- 1 | Ho. 4l5 LIOEhlS OF YIO B1 GAN 2 | Candelariella vitellima (Ehrh.) l) Oll. 3 | On rock, Cecil Bay - Lake Uie higan 4 | anet Co. July l8, lOb7 5 | Coll. B. A. Sierk 6 | Det. H. s. Sierk 7 | Uneversity of Tennessee (TENN) 8 | TENNL-OOOO 8bh 9 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0000911_lg.txt: -------------------------------------------------------------------------------- 1 | j ` ---W 2 | fr-/q FA ORA OF TN NESSEE j`l 3 | 'm O,I 4 | tic bens 5 | .Cet rI 'yK e oar 6 | University of Tennessee (TENN) 7 | TENN-LUOOO llt 8 | Co. y Jo-,'f 9 | Substrotum gls -d8 Ct Ah Ae ,/ie - sl rs icAre c7 10 | Loc. /I brouos y / % 'ue c a Jet % a9 , Wrk. i ni 11 | Coll. 12 | scre 13 | Del. S,.r.bo - c,Co cce 14 | Alt. 15 | Dote 2l moecL 19cy 16 | HENBAHIUh M OF THE UNIVENSITY OF TENNESSEE 17 | , MC == 18 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0001011_lg.txt: -------------------------------------------------------------------------------- 1 | LICHENS DU NOUVEAU-QUEBEC 2 | % Aaea -,3e (Bory) Th. Fr. 3 | delis 4 | LAC FAYNE, Circa 59o l7" N. 73o 25" W. 5 | Sur le sol prhs de petits dtangs. 6 | l3 aoO t l9 65, 7 | .b t. Dr Mason Hale 8 | Albert Legault, Samuel Brisson 9 | Universite de Sherbrooke 10 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0001111_lg.txt: -------------------------------------------------------------------------------- 1 | No.. 2 | do.---- - 3 | EL oRA on TeN Nss ses 4 | .ichens 5 | Substratum. xRu Mee......,, 6 | Loe...h 0.4g .DW Em....a ,8 ,Ba J,d Re 7 | odfull;f.5c K,-ibh-Ledd.ed 8 | D el...... . .. 9 | t.c . .t ,ewg'eoyy,;., 10 | University of Tennessee (TENN) 11 | TENN-LOUD lhbh 12 | ..A l t ..... . .. 13 | ..Dale.6c P(i 8ateh 14 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0001211_lg.txt: -------------------------------------------------------------------------------- 1 | lt CL-58n F LORA OF.TENNESSEE- 2 | mo, 3 | tichens 4 | Cetraria tilesii 5 | Substratum 6 | fote: vot . tot v; h:r . o 7 | Loc. 1C s .-t:e descoc t: wn6 E 8 | Coll. 9 | Det. 10 | "& .ohs1t r. 11 | University of Tennessee (TENN) 12 | TENNLUODMRbl 13 | Co. 14 | [ge 15 | , .net-fier 16 | Alt. 17 | DotR 18 | irr D. 19 | HERBARl UM1 OF THE ONIVERSITY OF TENNESSEE 20 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0001311_lg.txt: -------------------------------------------------------------------------------- 1 | m O, 2 | Sabstratum 3 | Loc. 4 | Coll. 5 | Det. 6 | PLOrA OP TENOESSEE 7 | tichens 8 | University of Tennessee ( 4NN) 9 | TENNL-OOOl 3ll 10 | dA 11 | f-aw ? 12 | Alt. 13 | M, . SRue 14 | HERBARl UM On THE UNIVEHSITY OF TENNESSEE 15 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0001411_lg.txt: -------------------------------------------------------------------------------- 1 | - = P ,cnA oP T mssRG HEE 2 | N..sedLde 3 | , SH bmatim------o 4 | -E o e . ----- 5 | EX..a- 6 | yt[c( ,p 7 | I cuilky-sha 8 | oe.h 9 | Licherms 10 | . de. d.dd.so0 ......t 11 | sd,scil 12 | dAC-sssssss ss s 13 | m) 14 | f5 M.N..0C-ii-n--sucs 15 | f( ;wi 16 | asssssst,A oeip Cedded 17 | dddssssssvr :oF yu,b Js 18 | g HENH 7Rl DM OF THE UNIVERSl TY OF TENNESSEE 19 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0001511_lg.txt: -------------------------------------------------------------------------------- 1 | No. . 2 | FLORA OF TENNE ssEE 3 | tichens 4 | C.1Suonie .rncilis (L.) ..illd. 5 | Substmtvm soil 6 | l e : lt y 7 | Sevier 8 | . ,, seafao,e c--: -ce ar( -l1M ]] H1U l 9 | Coll. e.e ,'FR '.'OOrg 10 | Det .l-. 11 | TEBR-L-OO0 lSlW r 12 | Dote /5, 13 | HENBARIUm OF THE UNIVERSITY OF TENNESSEE 14 | ` -3 15 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0001611_lg.txt: -------------------------------------------------------------------------------- 1 | fie- 2 | HATTORI-TEorESSEE COOPERATlV E 3 | GRYOGEOGRAPHIC GOLLECTIONG. tO s4-Ga 4 | Gln"em: 5 | o 6 | h 7 | . l 8 | i 9 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0001711_lg.txt: -------------------------------------------------------------------------------- 1 | z 2 | ? - 3 | te 4 | nO. 5 | fG 6 | 9 c ubstrutum 7 | / 8 | 3 A4 9 | s, 10 | o 11 | FLORA OF TENNESSEE 12 | Liohens 13 | Co. 14 | Alt. 15 | C 16 | PPr 17 | s- 18 | ob, e eS ,F '/Yur 19 | HERBARl UM OF THE ONIVERSITY OF TENNESSEE 20 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0001811_lg.txt: -------------------------------------------------------------------------------- 1 | 38, 2 | nO. 3 | FLORA OF TENNE sSEE 4 | .ichens 5 | Cladonia vorticillata Eloff m. 5 chaer 6 | Substrutum SO jl 7 | Loc. crush )lt. 8 | Coll. 9 | Det. 10 | rioore 11 | co. Seeier 12 | Unersity offennessee (fE NN) 13 | TENNL-0 UUl Blh 14 | Alt. 15 | olle l8 ya l9 Oi 16 | HERBARl UNM OF THE UNIVERSiTY OF TENNESSEE 17 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0001911_lg.txt: -------------------------------------------------------------------------------- 1 | DATTOEl-TENe EGBC COOoG EATIVC 2 | GRYOOEOOn APHIG GOLL RGTIONG, 1O G4-Gn 3 | . :oc I. .L49 9NM 4 | The Cniversity of Tenne and 5 | The Hattori dtanicl Laboratory 6 | pa. 7 | , cO"..te'G Oi ',Otlou.O `,, 8 | soe; o`] C - C O G,', 9 | le1oo1ts, jo 10 | sa]]. /5 11 | :CIt, O sO `2-cO, : .oe 12 | , , CC c-. 13 | c :o:- ,'.1so d 14 | ) C1 .ysy-G,t s 15 | , : l> 7 16 | te 17 | eeo, 18 | ?l MA 19 | tU 20 | D 21 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0002011_lg.txt: -------------------------------------------------------------------------------- 1 | 'd 2 | No. UU2 Ll CUENS OF edJGUl Ger) 3 | cenotee (hcb.) Schser. 4 | s 5 | On burned stump, behind U10S Campus 6 | Cheboygen Co. 7 | Colli H. 4. Serk 8 | Det. E. A. Sierk 9 | FTUl y PJs J>X i 10 | a 11 | sa 12 | sO 13 | 8 = 14 | sg 15 | A1 16 | . e 17 | Er 18 | ie 19 | s 20 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0002111_lg.txt: -------------------------------------------------------------------------------- 1 | d ds=.r" w,------ 2 | HE-u. C. A. hossI N9 3 | d Plants from Warehamo ,cr e 4 | e,oi.(/ -- 5 | - .t,d 6 | Cl. crispata (Ach.) lot" 7 | v" elegaris (Delu) 9a in. . 8 | coe L- c. A. no BB hNs 9 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0002211_lg.txt: -------------------------------------------------------------------------------- 1 | CIo.Eo cass" nc1 r(flb 2 | Llodomlia evansio .os ii.tcayos 3 | oh ito sao o, ory 3a.l . Re, nesr Ln keland 4 | Eo. CouUy 5 | coio . (t.d. Sb nrp 6 | aec. caronra : ]oore 7 | . ? oec l9 b5 8 | do 9 | e l 10 | - 11 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0002311_lg.txt: -------------------------------------------------------------------------------- 1 | HATTOMI-TENNESSEE COOEMATIVE 2 | DRYOGEOGRAPHIC GOLLECTIGNG, tO s4-Ga 3 | ,dd 4 | The University of Tennand 5 | The Hattori dnicl Labratory 6 | . e3 Nglu axn'.c 7 | Intormittent stream val.loy (narrow) 8 | about 3 mi. W. of Baker Banger, . 9 | umchitka, AlasRa. 10 | Coll. A, 11 | 30 June 12 | , J. Sharp 13 | l967 14 | - e 15 | Cy 16 | ei' 17 | ; . 18 | , 19 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0002411_lg.txt: -------------------------------------------------------------------------------- 1 | [s 2 | RELIQUIAE TUCKERMANIANAE 3 | Distrihuted by the 4 | FARLOW HERBARIUM OF HARVARD UNIVERSITY 5 | 32. Cladonia leporina Fr. 6 | Coll. H. W. Raven e1 7 | Det. Edward Tuckerman 8 | Aiken, 9 | South Carolina 10 | mnessee lf ENN) 11 | University 12 | eli[eW Wdt'i 13 | TENN-L- 000S 9ll 14 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0002511_lg.txt: -------------------------------------------------------------------------------- 1 | LTCH ,fS . e ALLONA 2 | , No. Sn5 JL 3 | g1acfooia osl ' cw t L- N D-o - 4 | - 11 5 | /G y W.AA) 6 | Rather dry opon Eround , Pc . 7 | Sarrow. 8 | Coll. Jonn Eoranda 9 | Det. 10 | E 11 | Ag 12 | n 13 | e 14 | 7- 15 | l5 Jutly i9 5, 9 16 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0002611_lg.txt: -------------------------------------------------------------------------------- 1 | "C.: 2 | E 3 | a 4 | i 5 | LIC-lE NS On NOn TN AN1E Rl CA 6 | THE UNIVEREITY 7 | . jrr '1 8 | OF TEMNESSEE 9 | t CG s . 'VX .Ct 10 | Macon Co., 11 | X U. S. A., NORTH CAROLINA: 12 | = ghlands , National foreet 13 | 7 (3-, 14 | g 0Ec. 30, i9 65 ioj) - t 15 | Shp, Zo Totau-e Y 16 | , - [,r e ,b g J z 17 | .',1s"'Z 18 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0002711_lg.txt: -------------------------------------------------------------------------------- 1 | = rva--..d.-eew 2 | .Plants of Cold Spring Harbor 3 | Long Island, New York 4 | ne3O ,l9 36.Ne.2, 5 | .'Stanley A. Cain Waternman Institute 6 | Indiana Cniversity 7 | Naie. Oladonia unciali (L.) 8 | . Locality 9 | Notcs: 10 | plain 11 | Web. f. eetigera 12 | 8 e1 denourro1k O o. 13 | Det. A. W. Evans 14 | Common in the eand 15 | region. 16 | wuo.(. 1eN 9C ,, 17 | TENNL-00OB 7bh 18 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0002811_lg.txt: -------------------------------------------------------------------------------- 1 | 2911. 2 | HAT TOR l-TENNESSEE COOPERATiVE 3 | nnY o GEo GRAPHIc coL LEc TIONs, to e4-ea 4 | RMMa 5 | The Univty of Tenand 6 | The Hattori dsnikl Labratory 7 | E 8 | 8. 9 | nt 10 | ,oil on b iu 1a ei, roads.oe ocnkroe so, s9 n9 o'e m 11 | Olen, oo. 12 | iy 13 | MEf ICO. Veranruz. About 5 -4. north of 14 | Naolinco. 15 | Co].. A- .T. fnnrp, C5 audic) Itlgadillo Mo, 16 | Waymeo Chesterg Mark Folsom 17 | 3 July lS 18 | r 19 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0002911_lg.txt: -------------------------------------------------------------------------------- 1 | EXPEDITION FOH CONNELATlON OF FLONA 2 | OF THE SOUTHRN APPALACH lANS AND 3 | MEXICO-CENTNAL AheEH lCAN HlGHLANDS. 4 | nO, 5 | ] Bd 6 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0003111_lg.txt: -------------------------------------------------------------------------------- 1 | p. l CJ AddeP.ORA Q F TENNEGSEE 2 | ....a RUGoG WC' 3 | Suistrmro. ZaeR., 4 | roe. ,0,ofe., xnors. 5 | eddwn[:: he0,) M s/l.Au..,;.... 6 | c 4i o . .oh8.b l7 4ked edd.dddd 7 | Beid J0d ,,d Ui e4 Kee, d....d 8 | ..........C o.X mnx.......... 9 | Unnersay of Tennessee MENN) 10 | TENN-L-0 UU3 hlh 11 | .....,.....rl t. .......... 12 | --.-----.-U atoe. y.T o] ft3.... 13 | r -ueX eG" ec. .lie 14 | Dey 15 | 1eyan University 16 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0003211_lg.txt: -------------------------------------------------------------------------------- 1 | NO. 2 | Ex Derbarium Elihu Hall 3 | Field Museum of Natural History 4 | c-Clcses 5 | ColL C 6 | + -- 7 | % tkod 8 | e 9 | ./ f /g.es 10 | Unversty of Tennessee GENN) 11 | TENN-L-OOO 3Rh, 12 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0003311_lg.txt: -------------------------------------------------------------------------------- 1 | LICHENES ARCTICI 2 | LICHENS FROM NORTHERN ALASKA 3 | , c `o4 i," 4 | R. c 5 | M teme-W-.s - 6 | d'aM 7 -- 7 | 51. o acty1 ima arctica (Hook. ) Ny1. 8 | On old beach ridge at Circular Marsh near 9 | Banowe. 7I 18' N. Is 6 11g W. 10 | July, 1958. 11 | Coll. J.W.Thoms oo S. Shushan 12 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0003411_lg.txt: -------------------------------------------------------------------------------- 1 | ., 2 | FLORA TENNESSiENS lS 3 | col Lecton. S. A. 2ain 4 | .,oermatooarp :on nepaticun 5 | .Nasoot 6 | "0L dcv.lee 7 | oal daredus soi1 8 | coU NrY 9 | ll h3 6uoa/: 10 | (Anh.) T. t`ries. 11 | Unersity of Tenneeee (TENN) 12 | TENN-L-O0 D3 9ll 13 | -------------------------------------------------------------------------------- /lichen/ocropus/TENN-L-0003511_lg.txt: -------------------------------------------------------------------------------- 1 | B TN-G 2 | -: n 3 | NO .00- 4 | Substrotum 5 | Loc. 6 | Coll. 7 | Det. 8 | st 9 | -1 . 10 | FLORA OF TENNESSEE 11 | Lichens 12 | Hallts Crossroeds 13 | . = 'e 14 | University of Tennessee (TENN) . 15 | TENNL-OOO3 Sll 16 | e 'f 17 | Alt. 18 | Date 19 | rE NBAHIUM OF THE UNIVENSITY OF TENNESSEE 20 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0012111_lg.txt: -------------------------------------------------------------------------------- 1 | PLo aA or As A sxa 2 | Cc NL iM lcR .m G-a. 3 | Location: 4 | bitat: 5 | E 1 evation: 6 | Co11ector: 7 | h1 ap/ 0md. : 8 | pet.: 9 | Yukon De 1ta Ny R; Askinmk Mounteins; 10 | 61'e7 'N, 165.5O` 11 | dazar oz ge2o Mzz lsdua decumbens 12 | huiipcky tundra 13 | 600 ft 14 | Stephen S. Talbot s 26-i 15 | Booper Bay ( b-2) Date; 27 li i983 r 16 | JO hn W. TD On 8On 17 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0012211_lg.txt: -------------------------------------------------------------------------------- 1 | AK FWS HERBARIUM ""FLOHA of ALAS gA 2 | CIadina setos Csu,,,i.C eoL nK 3 | Locatu-n St. Paul lsland, Alaska; 0.6 km NE of Telegraph Hill 4 | 13s 5 | Lai1tud a 5n 0 9.478" NLo n01tu de 17015.812' WW jevauoc100 m 6 | Havint On mosses beN veen talus rocks 7 | Ouad. Maa pribilof lslands, Alaska 8 | coItector Stephen & Sandra Talbot 9 | bet. John VW. Thomson 1998 10 | t, 11 | Coll. Date 12 July 1997 12 | = SP 97121 13 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0012511_lg.txt: -------------------------------------------------------------------------------- 1 | Au FWS HEHBARlUMA "" FLORA of ALASKA 'Je 2d 2 | CIad1na nls , sS y-d,fo'"--S- 3 | Location Deer lsland, Alaska 4 | so-%e 5 | Lautude 5457015"N Long1 tuue 1626 20.126' Wjevat1 on 6 | Hahicat Bofula nana poor fen 7 | Quad. Map FalSe P aSS 8 | coIIcctor Stephen S. Talbot 9 | oct. John Vi. Thomson 1997 10 | 250 m 11 | CoI I. Date 13 6uq i997 12 | 8 97-22X20 13 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0012611_lg.txt: -------------------------------------------------------------------------------- 1 | AWFW S HERBARl UM ` ` FLORA of ALASKA 2 | Clanita 0.m 4eJ - ytA ,,',w 3 | dl. 4 | D p 10 5 | Locauoc Khvostof lsland, Aleutian lsland S, Ala Ska 6 | Lauiudp 51l 58.225"N Longitude 178e 7.224' E Elevation 300 fl 7 | Habiht Empetrum n/grum-Salix arctica heafh 8 | Quad. A tp RaflslandS ( C-6), Ala Ska 9 | c-IIector Stephen S. Talbot 10 | CoI I. Date 19 AuguSt 2001 11 | s KH V3 C-37 12 | Del. John M/. Thomson December 2001 13 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0012711_lg.txt: -------------------------------------------------------------------------------- 1 | MINNESOTA 2 | CLEARy ATER CO 0NTY 3 | 15% G4 4 | LAKE ITASCA BOOGICAL STATION 5 | UlrdO I1iG DW t-Ib oo 9 , . 6 | In the eu. o. onedy olope 7 | .t )ale 8 | orothe weot oido of 9 | the : edt erm of 1 alce Etaooa. Aug. l5, l9 53 10 | J.1f. Thoenon 11 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0012811_lg.txt: -------------------------------------------------------------------------------- 1 | PLANTS OF ONTARi O 2 | Lakehead Universiry , Thunger Bay, Ontario, Canada, P7B 5E 1 3 | 'de2n L9 amauroerea (F1ork e) Schaer. 4 | N. 49' 06' w, 88 `58' 5 | Locaicty W. end of Albert Lake 26 km. S. of Black 6 | Sturgeon Research Stn. 7 | Collector & No. C ,E.0arton 8 | l 1758B 9 | DeL By P .Y.Wong Nov. l9 T5 oo. of ReclteS 6 10 | Notes: 11 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0013211_lg.txt: -------------------------------------------------------------------------------- 1 | No. U o.sy 2 | P L A N TS OF C A N A D A 3 | District of Maehenzie, N.W.T. 4 | rr-' 5 | '0 Xii''A 6 | l Pir, 7 | i hrs`r 8 | ee de` a ne 9 | AkI avik 10 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0013411_lg.txt: -------------------------------------------------------------------------------- 1 | AK FWS HERBARIUM s" FLORA of ALASKA 2 | CIadonia (ycc.os( .Velt Ui 3 | Wo el,, se, oW, / dvc ,-.% Ua--c - 4 | Locauon Alaid lSland, Aleutian lslands, Alaska 5 | Latitude 52. 45.190' N Longitude 173. 55.729' E Elevation 140 f 6 | Habitat Empetrum nigrum-Carex pluriflora slope mire 7 | Quad. Map 6ltu 8 | Collector Stephen S. Talbot 9 | De. John iN . Thomson April 2003 10 | g 11 | coII. Date 9 AuguSt 2002 12 | 8 ALA 1A16 13 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0013511_lg.txt: -------------------------------------------------------------------------------- 1 | Ax rs az RnA Rm tm 2 | PLo aA oP A,Asx a 3 | lvr- k-A, C.1aA d1 4 | 3 -O-I9 5 | Location: Koyukuk N 9R; 8 ni Sof Louis Lake; 6 | 65.i 2'N. i5 7.039; T35, R 9 E, Sect. 29 7 | Habitot: Ob Fotnophic peat plateau doninated by 8 | ledu decubo as G Pwc czazutrz,zs -z daea 9 | Elevation: 2i9 ft 10 | Collectort Stephen . Sara Talbot 8 3--7-i8 11 | tp/0 uad. : Kateel Riven (A--3) Date: 22 Al989 12 | Det. : Jonn 9. Tn onson 13 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0013711_lg.txt: -------------------------------------------------------------------------------- 1 | roRA oP A Lasa 2 | vvw u e4 sxrw d-ra, gx 3 | oY w,e O - ux4 KLar. 4 | Location: 5 | sbitat: 6 | Elevation: 7 | Collector: 8 | bep/gmd. 9 | Det. 10 | m kon be1 ta Nt FR; Chui1 nak River erea; 11 | 62a i6 'X, i6 2a 3n' 12 | P zcea g3 auca - Macc zmiun u3 uprmosum 13 | Woodlard 14 | 60 ft 15 | Stephen S. Talbot s JJ 63 16 | Date: i Sept i9 83 17 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0014411_lg.txt: -------------------------------------------------------------------------------- 1 | LIOH, NS OF aL EERTA, 0a NADA 2 | Banff National Park 3 | Cladonia ecrocyna (Ach.) Nyl. 4 | Canadiau zone, ler eh 5 | 1 Y1o raine Iake 6 | B. a. Imshaug 6788 7 | Ce 8 | ig 9 | Valley near 10 | 7500 nt. 11 | - July 195O 12 | Ag 13 | CAM., AtmR 14 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0014511_lg.txt: -------------------------------------------------------------------------------- 1 | ALCAN EXPEDITION 2 | PNIVERSITY OF wIS CONSIN 3 | N. S.F. Fund G. B. 2702 .e 4 | F1so oh1a man-a ek l1lA 5 | CMm t2 6 | ALASKA: 7 | Eagle 8 | sms 9. 9 | Suimnit Tundras 10 | Mile l08, Steese Hwy. 11 | Lat. 65o 29'N Long. l4 5o 29'U 12 | Aug. 6, 1967 13 | John W. Thomson 14 | , . TeuoO Ahti 15 | 17tS 16 | . len 17 | 4 p.. 18 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0014611_lg.txt: -------------------------------------------------------------------------------- 1 | NORTHwEST TERRITORIES 2 | District of Keewatin 3 | i,4 . 4 | ,ru 3M 5 | , 6 | -doc cv ve 7 | M u 8 | ` c Apia,s Rcx `,9 .es .f- 9 | L.-KBacb.M ,v- .- 10 | Ccc Wa va i e 4 tm 11 | Ku to-E. 12 | North ond of Lake 13 | Lat.6l lO 'N, Long. 14 | July 2.o ,19OO 15 | Coll. J. W. Thomson 16 | J.A.Larsen 17 | d.lo= -rD 18 | e's dz..a.` pd [ 19 | ` ee`xe e 20 | ot=s -,.- 21 | Ennadail 22 | . 1o0 50,w 23 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0014811_lg.txt: -------------------------------------------------------------------------------- 1 | N oRTHu EsT TERRIT oRIEs 2 | CErr RAL KACKENZIE Mo UhnA INs 1624s 3 | KEELE RIVER REGION 4 | COLLECTED BY GEORGE W. 5 | uocar on rsillum 6 | geeHs c 7 | det. H.HERTIL, Miinchen, ot 8 | i974 9 | Tipopankwed ne Ranee 10 | Alpine coriunity 11 | 5500' 12 | K-25 13 | 63o 40' N, l27o5 2"W 14 | July 8, l97l 15 | SCONER 16 | ,s 17 | , . t 18 | .sr-` -g 19 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0014911_lg.txt: -------------------------------------------------------------------------------- 1 | COLORADO LICHENS ,,wa 2 | AL eS FORAY, 59 O4 3 | 00s W o 4 | . eccy (Svo.eads 5 | ainy wk lAi 5M u- aa- 6 | 4. LARIM1 ER CO.: ROCKT MT. NAT'L. 7 | PARE: alpine tundra of Trail Ridge 8 | NW & W of Tolb1emori nlA E of 1ce 9 | berg Pass; 4Ow 25' N, 1O 5.44' W; T5 N, 10 | R 740, Sec. 7350 O37 2O m alt. 11 | August 4 & 5, l9 B4 12 | Coll. J. W. Thomson 13 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0015011_lg.txt: -------------------------------------------------------------------------------- 1 | AK mWNS HERBARIUM yy FLORA of ALASKA Qis 2 | Oc-C . 3 | t doc csx p. r b.tA cv ',L- .vb 4 | Locanen Selawik NV VK, Lake 180 area 5 | Latituae 66 `12"23.6"N Longituse 1607 15' 01.9" VV EI evat1o a 204 ft 6 | Nanii On rock in Polytrichum juniperinum Empetrum nigrum burn 7 | ouad. Map Selatvik (A-3)Alaska 8 | c-IIecmr Stephen S. Talbot 9 | Coll. Date 23 July 2003 10 | o 295 11 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0015111_lg.txt: -------------------------------------------------------------------------------- 1 | MINNESOTA 2 | CLEARRATER COUNTY 3 | LAKE IIASCA BIOLOGICAL STAIION 4 | Oalo placa u2 morum 5 | On olm or : tno qt ution 6 | Aug. 16. 1953 7 | J.W .choroon 8 | igroutdo. 9 | l59l2 10 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0015211_lg.txt: -------------------------------------------------------------------------------- 1 | AK FWS HERBARl UM 2 | Ro. pc Lc 3 | Location Selawvik NV VM 4 | sL ORA of ALASKA z7j 5 | /n 6 | dS YreS- cviia 3 Lc e), syv - ev, 7 | Latitute 66728' 19.0"N Longitude 15T 1 1' 43.0" VVEIevation 494 ft 8 | Hanitat Lakeshore cobble on stoney beach 9 | ovas. Map Shungnak (B 3)Alaska 10 | c-IIecior Stephen S. Talbot 11 | 'MW 12 | CoI I. Date 15 July 2003 13 | o 071 14 | Det. John lN . Thomson Novom ber 2003 15 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0015411_lg.txt: -------------------------------------------------------------------------------- 1 | it 2 | Arrs HERBARl tm 3 | 2% 4 | FL oRA oF ALAsrA 5 | -i =e0 =eW awrem- UM] eW x e 6 | Location: Cape 9 Fangell, Attu Is. , Aleutian 7 | Islands. 6 Z0 55. 5' N, 173.Z 7. 5'E 8 | Habitat; Epilithic on loven slope stony Fidge 9 | Elevation: 150 tt 10 | Collector: Stephen , Sandra Talbot l 299 11 | fsp/0 uad. : Attu C6 N9 12 | Det. : John V. Tn onson 13 | Date: i4 Jul 1988 14 | c3 e--e 15 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0015511_lg.txt: -------------------------------------------------------------------------------- 1 | HINNESOTA 2 | CLEARWATER COUNTY 3 | LA xE 4 | Rama,ina 5 | IT ASCA BIOLOGi CAL STATION 6 | M- 7 | d.(aeac Bs 8 | (Mtoo(W 9 | 1676l 10 | C n dead brarohee of anok piee, Feaver Yrail 11 | Itae oa. 3 u.e 29, 197O 12 | J.R.Thomson 13 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0016011_lg.txt: -------------------------------------------------------------------------------- 1 | AKFV VS HERBARl UM "" FLOHA of ALASKA CQ -L jS - 2 | CIadonia E .ccrccvee,s,Sr c P3 IW-W 3 | Locauon lz embek NWNR; Base of N side of Baldy Mountain 4 | Laumde 5a 12.124"N Long1 tude 162a4T8 07' WIe Yat1 on 100 m 5 | Habimc Empetrum nigrum-Petasites hyperboreus hummocky heath 6 | Ouad. Map Cold Bay 7 | coIIector Stephen S. Talbot 8 | Det. John VV. Thomsor . i997 9 | CoI I. Date 7 Aug 1997 10 | 8 97-04-45 11 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0016311_lg.txt: -------------------------------------------------------------------------------- 1 | e tre J zo crou,e 4c,b ,Nlo 2 | et 3 | l / ,t P: %. f., 4 | b 5 | - " ''t 6 | d TasTo A4.1 7 | .c u orL L-4s- 8 | ht0A Wle,7e /, 9 | ywwz x-, ic 10 | fer. wa, Ms 11 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0016511_lg.txt: -------------------------------------------------------------------------------- 1 | cet.ss 2 | cca 3 | ALCAN EXPED1 T1 ON 4 | UNIv ERSITY oF WISCoN SIN 5 | N.S, F, Fund G. B. 27 02 .o c 6 | . g 7 | uvr 8 | VM0d Ne 9 | roeGt. 10 | ALASKA: Eag1e Sunmnt Tundras 11 | Mile l08, Steese Hwy. 12 | Lat. 65o 29"N Long. l4 5o 29"W 13 | Aug. 6, 1967 14 | d 3ohn W. Thomson 15 | Teuvo Ahti 16 | se 17 | ` . 18 | pho a3 19 | - J 20 | .w 21 | e > .- 22 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0016611_lg.txt: -------------------------------------------------------------------------------- 1 | c-MoRaI . 2 | LKAAdA votPEL i (L ,) 8ae. lgiti7ep 3 | RU% OLDT 3).: On roof of house at 4 | l7l7 Harris St,, Sureka. 5 | Col, I Wilbur Peterson 6 | sie 2 7 | fet.i Wilbur Peterson .l6 Jan l972 8 | -------------------------------------------------------------------------------- /lichen/ocropus/WIS-L-0016711_lg.txt: -------------------------------------------------------------------------------- 1 | No. 50 l4 5O. 2 | o 3 | es iQ 4 | l2Oe 5 | Districf of Mockenzie, N.Y.T. 6 | L tow .osuo 7 | , tcets ]sa 8 | CANADA 9 | Morgoret E. Oldenburg 10 | -Neu (ayts e4 m ,4)a uv 11 | Sso. 2 12 | d now lake 13 | August G-29o l9 50 14 | -------------------------------------------------------------------------------- /lichen/tesseract/NY01075811_lg.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 1 .r_.I..I..I.1L.I.1z.aa.-'..I_ y..t,1_K.&8..&,&..fi.L!\nA.aJ.L)..v.,k.L1..x_;J.x_:.; E 8 | 9 | w. w. CALKIN TH AMERICAN LICHENS. 10 | 11 | 12 | 13 | @@@@ 1 14 | 1 T«iu111I°11‘u11fl[1x1\1111111» 15 | 16 | 0107 811 17 | 18 | am‘-————--—--L 19 | 20 | The New York Botanical Garden 21 | 22 | 23 | 24 | 25 | 26 | Det. Richard C. Harris 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /lichen/tesseract/NY01076011_lg.txt: -------------------------------------------------------------------------------- 1 | THE NEW YURK BOTANICAL GARDEN 2 | 3 | UGHEN5 UFNEW YORK 4 | 5 | Polyblastiogsis fallaciosa (Arn.) Zahlbr. 6 | 7 | on white oak 8 | 9 | WESTCHESTER COUNTY: 10 | 11 | NEW vonx BOTANICAL GARDEN 12 | 13 | ‘HI I ll 14 | 15 | 1 16 | 01076011 17 | 18 | -------------------------------------------------------------------------------- /lichen/tesseract/NY01076111_lg.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | The New York Botanical Garden 4 | 5 | Ju1e11a fa11aciosa (Arn.) R. c. Harris 6 | 7 | Det. Richard C. Harris 8 | 9 | ‘r‘/ 4' . v,-vrl, 10 | 31:.‘ 3521;’ .' v~—‘» 11 | NEW RK ‘ L’ 12 | 13 | «xxx\i\Mm\mwE\mi1§i 14 | 15 | 010761 11 [T",‘yg,;‘."m"'l<-.-g_j; 13, V‘~.,z‘*,a ~w fw.‘ ‘ §. 16 | 17 | 18 | 19 | 1 20 | 21 | g,. 22 | , ,.:. 23 | 24 | V 25 | 26 | -------------------------------------------------------------------------------- /lichen/tesseract/NY01304911_lg.txt: -------------------------------------------------------------------------------- 1 | THE NEW YORK BOTANICAL GARDEN 2 | 3 | 6 7/“ 4 | 5 | 6 | 7 | N 8 | Jlpmasflegllia sparsella (Nyl.) R. C. Harris 9 | 10 | ‘H. %{\/vwvv 11 | 12 | N. L. BRITTON; 13 | E. G. BRlTTON\ C °°°°°°° R5 14 | 15 | 16 | 17 | EW 18 | 19 | LICHENS OF SOUTHERN FLORIDA 20 | 21 | 22 | 23 | KL 24 | 25 | -------------------------------------------------------------------------------- /lichen/tesseract/NY01356611_lg.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | The New York Botanical Garden 4 | CRYPTOGAMS OF NORTH CAROLINA, U.S.A. 5 | 6 | Mycopomm compositum (MassaI.) R. C. Harris 7 | 8 | on trunk of Fagus 9 | 10 | Graham County: Nantahala National Forest, 11 | Cherohala Skyway [NC 143], Mudd Gap, 35°20’N, 12 | 84°O2’W, 1388 m; Fagus-dominated hardwood forest. 13 | 14 | 1*] Rt 1n1a11111111111w«11111 15 | 16 | 01356611 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /lichen/tesseract/NY01357211_lg.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | PLANTS OF LOUISIANA 4 | 5 | 7:: E:-V.-Le\i um wa5‘foa'oQetu\-s 6 | 7 | l . ‘£4 8 | 9 | Locality: 2 mi. N. of Bolling, 10 | Bossier Parish, Louisiana 11 | 12 | Collector G. T. Johnson No. 13 | June 25, 1961+ {$53 14 | 15 | _____——« ,-. 16 | BOTANMALGARDEN flzfl 17 | 18 | l1ill\\ii§§\\l\»\\\._ml‘“Ill!W 19 | 20 | 1357211 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /lichen/tesseract/NY01357411_lg.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | PLANTS OF TEXAS 4 | 5 | :77*jg=‘\‘4c‘iI«-- haasfoaflgum N14. 6 | 7 | 44.;/. /£31. 8 | 9 | Locality: Near Rye, Liberty County, 10 | Texas 11 | 12 | 13 | 14 | Collector G. T. Johnson 15 | 16 | 17 | 18 | NO. 6399 19 | July ll, l965 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /lichen/tesseract/NY01357511_lg.txt: -------------------------------------------------------------------------------- 1 | ux;rx./._n : L.u nv_n_ LJMLQ. 2 | 3 | 4 | 5 | 6 | 7 | E: 8 | 21 9 | ~ PLANTS OF FLORIDA §%g 10 | i 7:‘I1fe'H\e(.'uu~. elm‘-.I~'ac 5a"‘=-1'- §%B 11 | 7‘ '3 12 | 5:5 13 | >% 14 | igi 15 | Locality: WI'|e1,G-u.-Mb:-L:mL. 75-.,‘I 16 | E-I/‘Y§I‘&‘J JVA4 1'.-“Al Park’ Flag, 17 | Collector G. T. Johnson No. 655,7 18 | Ta».-ar.l so, I;(,.5‘ 7 ON: 19 | _I,3Ei:fC‘;3J’i'L' :1 N"! 1975}? 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /lichen/tesseract/NY01358011_lg.txt: -------------------------------------------------------------------------------- 1 | W. W. CALKINS' NORTH AMERICAN LICHENS‘ 2 | _ / 2 L - 3 | ‘/17 flfl/V;/r ,1‘ 4 | §/ / 5 | 6 | AAAAAAAAAAAAAAAAAAAA EN 7 | 8 | 1|1||1|1H|||IWI111l|l\\|l||W||W|H||1 9 | 10 | 01358011 11 | 12 | Donazfeci ’f_r" ;rw g¢_‘¢)., 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /lichen/tesseract/NY01358211_lg.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | zm<< _. m>nomz 4 | 5 | 6 | 7 | 8 | 9 | Smmmm: 10 | 11 | 1. 12 | ..nuL.¢ 13 | 14 | -------------------------------------------------------------------------------- /lichen/tesseract/NY01358511_lg.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | SOUTH CAROLINA 7 | 8 | 77w-1&6“-'I,.\NI).“. 6 | 7 | / (‘o1I. Du. 1CD\\'.-mp _l’AL)11a1<. August 18, 1888, 8 | 9 | '% Nc, 3,-ma. g__4 ’//3/é4 % " 10 | 11 | ‘ ' 12 | 13 | S“Q"':~¢o‘5~¢—9-4-< -<.L;- 14 | m~“°")I<’o¥'f &?r11‘c§‘soo 15 | 16 | . 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0000011_lg.txt: -------------------------------------------------------------------------------- 1 | Herbarium of the University of Michigan 2 | 3 | % /M)/W 4 | pé /$974) §C,.,“&5/71 5 | , . 7/7/3,, 6 | 7 | U 8 | 9 | §:::,:::::;,, W W W wumnmMMiximHWfifl»imfi”Mi»»tIsum 10 | 11 | TENN-L-DDEIUDLL 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0000111_lg.txt: -------------------------------------------------------------------------------- 1 | , FLORA OF TENNESSEE 2 | No. 30:2 3 | lichens 4 | 5 | Ale C tor ia na dvornik ia na Cave 1 . 6 | 7 | GS ‘n’\* P Co. Blount 8 | 9 | Substratum ‘O ine bark 10 | 11 | 12 | 13 | 14 | 15 | TENN-L-0000111.]. 16 | 17 | 18 | 19 | Alt. » ‘ 20 | 21 | Det. ‘>—:an]ga7_~a gem Date“ ,,- , "ox; 22 | 23 | HERBARIUM or THE UNIVERSITY OF TENNESSEE 24 | 25 | ./..... u.......,..._r.L\.J 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0000411_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idigbio-aocr/HandwritingDetection/a5a96e0e649a712e7172cacca6a6af6d993dff1f/lichen/tesseract/TENN-L-0000411_lg.txt -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0000511_lg.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Herbarium of the University of Michigan 5 | 6 | 7 | 8 | Expedition to Isle Royale, Michigan, 1930 9 | A. H. Povah, C. A. Brown, J. B. McFarlin, J. L. Lowe. 10 | 11 | % Kflvf-) 7%4»w- 12 | 13 | 51‘; gwgj M W44/5 M4 14 | .4/4,;4M,’: Kg/A.’ 7////30 15 | “°/M 16 | 17 | I-V):‘;n JO )2 7~\ 18 | 19 | {______?_L 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0000611_lg.txt: -------------------------------------------------------------------------------- 1 | University of Tennessee (TENN) 2 | 3 | 4 | 5 | TENN-L-[]DE|l.'J|=].]. 6 | 7 | LICHENS OF 8 | 9 | 10 | 11 | THE UBHVERSHY OF TENNESSEE 12 | 13 | JAMAICA. Ste Andrew Parish; 14 | Morce‘s Gap, H9800 ft“ alt’ 15 | coll. Gary Morton 16 | 17 | 19 18 | 19 | trail from Canchonia. to 20 | Jan. 11, 1967 21 | 22 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0000711_lg.txt: -------------------------------------------------------------------------------- 1 | ("‘——-' j 2 | 3 | N0. 465 LICHEICS CF I-IICEIGAN 4 | Caloglaca elegans (Link.) T. Fries 5 | On rock, Sturgeon Bay 6 | Emmet Co. July 16, 1957 7 | 8 | C011‘ H‘ A’ Sierk U vvvvv suryolT eeeeee ee(TENN) 9 | 10 | Hl\PlHVll!lWll(l|lHMl|H1|lH1|lH1|lHH| INHIHH1 11 | 12 | TENN-L-DDUU7l1. 13 | 14 | 15 | 16 | Det. H. A. Sierk rwm 17 | 18 | 19 | 20 | ? 21 | 22 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0000811_lg.txt: -------------------------------------------------------------------------------- 1 | No. 2 | 3 | 478 LICHEINS OF MICHIGAN 4 | 5 | 6 | 7 | Candelariella vitellina (Ehrh.) M1311. 8 | 9 | On rock, Cecil Bay - Lake Michigan 10 | 11 | Emmet Co. 12 | 0011. H. A. Sierk 13 | 14 | Det. H. A. Sierk 15 | 16 | July 18, 1957 17 | 18 | University of Tennessee (TENN) 19 | 20 | 1lllmllllllN\|!|\K|\|lH||\|Hlll\|l\l||\\\||\\\||Nl|\|\l|llW||\WIIN 21 | 22 | TENN-L-EIEIEIEIBLL 23 | 24 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0001011_lg.txt: -------------------------------------------------------------------------------- 1 | LICHENS DU NOUVEAU-QUEBEC 2 | Cetraria delisei (Bory) Th. Fr. 3 | 4 | LAC PAYNE, Circa 59° 17' N. 73° 25' w. 5 | Sur le sol prés de petits étangs. 6 | 7 | 13 aofit 1965. Det. Dr Mason Hale n 8 | 9 | Albert Legault, Samuel Brisson 10 | Université de Sherbrooke 11 | 12 | (TENN) 13 | 14 | University of Tennessee 15 | 16 | 17 | 18 | TENN-L-UUDLDLL 19 | 20 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0001311_lg.txt: -------------------------------------------------------------------------------- 1 | FLORA OF TENNESSEE 2 | 3 | lichens 4 | ImummHM@@@mirW@@i@@@@fi@mi\mum 5 | 6 | Loc. 7 | 8 | Col|..yLJb ,_’34_._/5&3? Alt. 9 | 10 | Det_ D°te 3flz4a 11 | 12 | HERBARIUM OF THE UNIVERSITY OF TENNESSEE 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0001411_lg.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | (6 Z ’ FLORA (.3F TENNESSEE 4 | N” """""""""""" “ Llchens 5 | 6 | 7 | 8 | 9 | ...-. ....... .. .. .................... 10 | 11 | 12 | HERB RIUM OF THE UNiVERSITY OF TENNESSEE 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0001611_lg.txt: -------------------------------------------------------------------------------- 1 | HATTQF?l—TE\‘».:QC~‘-'7 «A7,: '*"ERATl\/E 2 | 3 | -__.-v___. \_,~ 4 | 5 | BR‘r’OGE©GF?A9H1C C ”, .__E‘:T't;7NS. 1964-68 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0001711_lg.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | .j.:—— 4 | .j_—;— 5 | J 6 | 7 | “mm 8 | 9 | No. 10 | 11 | TENN-L-DlJE|l?ll 12 | \I .0 13 | O 14 | 15 | FLORA OF TENNESSEE 16 | lichens 17 | 18 | ubstratumflfi /Zffnfil‘ Of 423;/2«¢#2 19 | 20 | Alt. . 21 | We 02;/%£' /M’ 22 | 23 | HERBARIUM OF THE UNIVERSITY OF TENNESSEE 24 | 25 | F01‘ 26 | K. 27 | 28 | ‘W 29 | Ca 30 | 31 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0002011_lg.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | No. 502 LICHENS OF MICE-IIGE4‘I 4 | 5 | 6 | 7 | 8 | Cladonia cenotea (Ach.) Schaer. 9 | 10 | On burned stump, behind UMBS Campus 11 | 12 | ennessee (TENN) 13 | 14 | Cheboygan 00. July 21, 1957 15 | 0011: H. A. Sierk 16 | 17 | Det. H. A. Sierk 18 | 19 | TENN-L-EIEIUEEILL 20 | 21 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0002111_lg.txt: -------------------------------------------------------------------------------- 1 | *1 2 | 3 | *> "H;gca.? c. A. Roamsi 4 | 5 | AI>’1a.l1“:Es from Vareham, 11444.‘. . 6 | 7 | -19., 8 | 9 | c1. crispatu (Ach.) Plot‘; ; 10 | v."e1egans. (De1._.) Vain. E 11 | 12 | 13 | 14 | ACOLL. C. ROBBINS ‘ 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0002211_lg.txt: -------------------------------------------------------------------------------- 1 | LICHLWS ow FLURIDA 2 | 3 | C]_"'d0nj_ '1‘ _- - W » 4 | C4. W_”-_‘:Z €VcLf1‘S’~J:;]; deg Avbayes 5 | 6 | white sand C —. 7 7 | Polk Count; Tystal Lake’ near Lakeland 8 | 9 | _L_m®\\lW\L\\\\\U\N\\\\ 10 | 11 | COl1- A-J- Sharp 12 | 13 | fii\\”\\e\\{\i\T 14 | 15 | 1? Dec 19u8 16 | 17 | -u 18 | 19 | Qet- Barbara Moore 20 | 21 | 22 | 23 | x\\\\\\\\‘{\\i\i\igE{§iijfigixi\\i\ 24 | 25 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0002411_lg.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | ‘ ‘ nia. eporina r. 4 | ‘ »: .. 5 | ‘ ‘ .— W ~ . 1;: ., 6 | 1; C011. H. W. Ravenel 7 | 8 | Det. Edward Tuckerman 9 | 10 | 1 ,_??__¢__,_ __ ,, 11 | 12 | nnnnnn sity of Tennessee (TENN) 13 | 14 | ¢ smm\\\\\\\»wWwmsmswwmumn\\a 15 | 16 | -------------------------------------------------------------------------------- /lichen/tesseract/TENN-L-0002511_lg.txt: -------------------------------------------------------------------------------- 1 | . 2 | 3 | LIGHENS bf ALASKA 4 | 5 | No. sA—58LLu 6 | 7 | Cladonia \Dup,H\o )». 8 | 9 | Quad. Map Shungnak (B-3) Alaska cou_ Date 15 July 2003 10 | Collector Stephen S. Talbot # 071 11 | 12 | Det. John W. Thomson November 2003 13 | 14 | -------------------------------------------------------------------------------- /lichen/tesseract/WIS-L-0015511_lg.txt: -------------------------------------------------------------------------------- 1 | 16761 2 | 3 | MI NNE S OTA 4 | C LEARWATER COUNTY 5 | 6 | LAKE ITASCA BIOLOGICAL STATION 7 | 8 | Ramaiina 9 | 10 | 11 | 12 | (<+.,4{,c_,V.\ (+~I£c,;. 13 | 14 | 15 | 16 | On dead branches of jack pine, Beaver Trail 17 | 18 | Itasca. June 29, 1970 19 | J.H.Thomson 20 | 21 | -------------------------------------------------------------------------------- /lichen/tesseract/WIS-L-0016011_lg.txt: -------------------------------------------------------------------------------- 1 | AKFWS HERBARIUM ** FLORA of ALASKA oL,*-L[$" 2 | 3 | Cladonia .»:%».~qum~;c. (‘SCQFW '*"}$’§*~- 4 | 5 | Location Izembek NWR; Base of N side of Baldy Mountain 6 | Latitude 550 12-124' N Longitude 1620 47-807' W Elevation 100 m 7 | Habitat Empetrum nigrum-Petasites hyperboreus hummocky heath 8 | 9 | Quad- Map C0|d Bay Coll. Date 7 Aug 1997 10 | Collector Stephen S. Talbot # 97-O4-45 11 | Det. John W. Thomson 1997 12 | 13 | -------------------------------------------------------------------------------- /lichen/tesseract/WIS-L-0016311_lg.txt: -------------------------------------------------------------------------------- 1 | : [Git n'z.O.<>:,<,'_; ’ :“.i“:’:=.¢“;« 2 | 3 | W 4 | 5 | ’. 6 | 7 | sg 8 | 9 | l\ec.;m,~_ C\:\a9s1\o.su:3Q, Vwgfl, 10 | 11 | R. H. Denniston Lichen Collection 12 | Donated to WIS, 1944 13 | 14 | Q1 “ 1 fl ; 15 | 16 | ,6; J9 CO"~ ~/3G.m&/x3ruxsg 17 | ~ \+c\\amAq\e_ 3 Q Ms 18 | J, o '/ _ 19 | 20 | Tum \°\. \-=t).g* 21 | R. .H- B2'y\n1,5\-m,‘ 22 | 23 | -------------------------------------------------------------------------------- /lichen/tesseract/WIS-L-0016511_lg.txt: -------------------------------------------------------------------------------- 1 | c>3;3 2 | ALCAN EXPEDITION 7'3 3 | 4 | UNIVERSITY OF WISCONSIN 5 | N.S.F. Fund 9.3.2702 \ 6 | 7 | 8 | 9 | (CL. /aclILJf. 10 | 11 | ALASKA: Eagle Sumit Tundras 12 | Mile 108, Steese 13 | 14 | Lat. 65°29’ 15 | 16 | “John W. Thomson 17 | aTeuvo Ahti 18 | 19 | -------------------------------------------------------------------------------- /lichen/tesseract/WIS-L-0016611_lg.txt: -------------------------------------------------------------------------------- 1 | CALIFORNIA 2 | LE'lHAPC[A VULPD-IA (I...) Hue. }9»~Y\‘t‘>7»( 3 | 4 | HUFIBOLDT C0,: On roof of.house at 5 | 1717 Harris 312., Eureka. 6 | 7 | 31 8 | 7'1 9 | 10 | 301.: Wilbur Peterson #462 11 | Dem Wilbur Peterson . 16 Jan 1972 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /lichen/tesseract/WIS-L-0016711_lg.txt: -------------------------------------------------------------------------------- 1 | CANADA 2 | District of Mackenzie, N.W.T. 3 | 4 | No. 50— 1150, Margaret E. Oldenburg 5 | 6 | L xuuoy , . ,~ 7 | ¢ muei ‘;.\.,U I/\QC)‘L (L-, (C. Qs¢;»c\o_ LC..\ ,3.¢L. 8 | 9 | Snow Lake 10 | no- Sta. 2 August 20-29,1950 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- 1 | Human (eyeball) handwriting detection 2 | 3 | Abby output: 4 | 41 correct positives 5 | 34 correct negatives 6 | 5 false positives 7 | 16 false negatives 8 | 9 | Tesseract output: 10 | 60 correct positives 11 | 21 correct negatives 12 | 20 false positives 13 | 1 false negative 14 | 15 | 16 | -------------------------------------------------------------------------------- /tesseract_todo: -------------------------------------------------------------------------------- 1 | WIS-L-0012211_lg.txt,2 2 | NY01365511_lg.txt,1 3 | NY01357311_lg.txt,2 4 | 5 | Notes: Tesseract seems to produce a lot of strings that look 6 | suspiciously like bar codes: 7 | 8 | 1n1a11111111111w«11111 9 | llfllllfllll II I III II II 10 | also see fun OCR: 11 | II IN WIN)! H H! H H 12 | 13 | 14 | 15 | Compare the false positives for handwriting in Tesseract vs. the false 16 | negatives for handwriting with ABBYY 17 | 18 | 19 | --------------------------------------------------------------------------------