Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a feature to enrich the hOCR output with glyph confidences #1802

Merged
merged 1 commit into from
Jul 26, 2018

Conversation

noahmetzger
Copy link
Contributor

By using the parameter -c glyph_confidences=true the user is able to enrich
the hOCR output with additional information. Tesseract then lists additionally
the timesteps with all glyphs that were considered with their confidence
for every timestep of the LSTM.

The format of the hOCR output is slightly changed: There is now a linebreak
after every word for better readability by humans.

Signed-off-by: Noah Metzger [email protected]

const UNICHARSET* charset, bool debug = false);

//Saves the most certain glyphs for the current time-step
void RecodeBeamSearch::SaveMostCertainGlyphs(const float* outputs, int num_outputs, const UNICHARSET* charset, int xCoord);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This compiles with MS Visual Studio, but not with the GNU compiler.

By using the parameter -c glyph_confidences=true the user is able to enrich
the hOCR output with additional information. Tesseract then lists additionally
the timesteps with all glyphs that were considered with their confidence
for every timestep of the LSTM.

The format of the hOCR output is slightly changed: There is now a linebreak
after every word for better readability by humans.

Signed-off-by: Noah Metzger <[email protected]>
@noahmetzger
Copy link
Contributor Author

For the example we take a rather fuzzy text scan to provide some room for interpretation for Tesseract:
fuzzy
So the normal hOCR output for this image looks like this:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 <head>
  <title></title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  <meta name='ocr-system' content='tesseract 4.0.0-beta.1' />
  <meta name='ocr-capabilities' content='ocr_page ocr_carea ocr_par ocr_line ocrx_word'/>
</head>
<body>
  <div class='ocr_page' id='page_1' title='image "test.jpg"; bbox 0 0 1152 864; ppageno 0'>
   <div class='ocr_carea' id='block_1_1' title="bbox 43 96 749 334">
    <p class='ocr_par' id='par_1_1' lang='eng' title="bbox 43 96 749 334">
     <span class='ocr_line' id='line_1_1' title="bbox 43 96 749 334; baseline -0.001 -5; x_size 262.41873; x_descenders 29.418732; x_ascenders 52">
      <span class='ocrx_word' id='word_1_1' title='bbox 43 96 749 334; x_wconf 63'>HALLO</span>
     </span>
    </p>
   </div>
   <div class='ocr_carea' id='block_1_2' title="bbox 9 405 686 585">
    <p class='ocr_par' id='par_1_2' lang='eng' title="bbox 9 405 686 585">
     <span class='ocr_line' id='line_1_2' title="bbox 9 405 686 585; baseline -0.007 -17; x_size 126.37594; x_descenders 16.37594; x_ascenders 44">
      <span class='ocrx_word' id='word_1_2' title='bbox 9 405 686 585; x_wconf 51'>Tesseract</span>
     </span>
    </p>
   </div>
   <div class='ocr_carea' id='block_1_3' title="bbox 24 670 1028 848">
    <p class='ocr_par' id='par_1_3' lang='eng' title="bbox 24 670 1028 848">
     <span class='ocr_line' id='line_1_3' title="bbox 24 670 1028 848; baseline 0.01 -26; x_size 187.82576; x_descenders 22.825758; x_ascenders 34">
      <span class='ocrx_word' id='word_1_3' title='bbox 24 682 159 792; x_wconf 67'>&amp;</span>
      <span class='ocrx_word' id='word_1_4' title='bbox 201 670 887 848; x_wconf 3'>EPA</span>
      <span class='ocrx_word' id='word_1_5' title='bbox 945 670 1028 832; x_wconf 34'>F</span>
     </span>
    </p>
   </div>
  </div>
 </body>
</html>

If we include the glyphe confidence, the timesteps of the lstm are added inside the brackets of the corresponding word. Timesteps are marked with 'ocrx_cinfo' within a timestep you can find every glyph the lstm has taken into consideration together with its confidence.
A glyphe is marked with 'ocr_glyph'. Inside the glyph, the 'x_confs' marks the confidence which can have values between 1 and 100.
All glyph confidences of one timestep always add up to 100 (or close to it because of rounding).

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 <head>
  <title></title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  <meta name='ocr-system' content='tesseract 4.0.0-beta.1' />
  <meta name='ocr-capabilities' content='ocr_page ocr_carea ocr_par ocr_line ocrx_word'/>
</head>
<body>
  <div class='ocr_page' id='page_1' title='image "test.jpg"; bbox 0 0 1152 864; ppageno 0'>
   <div class='ocr_carea' id='block_1_1' title="bbox 43 96 749 334">
    <p class='ocr_par' id='par_1_1' lang='eng' title="bbox 43 96 749 334">
     <span class='ocr_line' id='line_1_1' title="bbox 43 96 749 334; baseline -0.001 -5; x_size 262.41873; x_descenders 29.418732; x_ascenders 52">
      <span class='ocrx_word' id='word_1_1' title='bbox 43 96 749 334; x_wconf 63'>HALLO
       <span class='ocrx_cinfo' id='timestep_1_1_1'><span class='ocr_glyph' id='glyph_1_1_1' title='x_confs 99'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_2'><span class='ocr_glyph' id='glyph_1_1_2' title='x_confs 99'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_3'><span class='ocr_glyph' id='glyph_1_1_3' title='x_confs 90'></span><span class='ocr_glyph' id='glyph_1_1_4' title='x_confs 9'>H</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_4'><span class='ocr_glyph' id='glyph_1_1_5' title='x_confs 92'>H</span><span class='ocr_glyph' id='glyph_1_1_6' title='x_confs 6'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_5'><span class='ocr_glyph' id='glyph_1_1_7' title='x_confs 99'>H</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_6'><span class='ocr_glyph' id='glyph_1_1_8' title='x_confs 96'>H</span><span class='ocr_glyph' id='glyph_1_1_9' title='x_confs 3'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_7'><span class='ocr_glyph' id='glyph_1_1_10' title='x_confs 97'></span><span class='ocr_glyph' id='glyph_1_1_11' title='x_confs 2'>H</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_8'><span class='ocr_glyph' id='glyph_1_1_12' title='x_confs 99'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_9'><span class='ocr_glyph' id='glyph_1_1_13' title='x_confs 98'></span><span class='ocr_glyph' id='glyph_1_1_14' title='x_confs 1'>A</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_10'><span class='ocr_glyph' id='glyph_1_1_15' title='x_confs 84'>A</span><span class='ocr_glyph' id='glyph_1_1_16' title='x_confs 14'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_11'><span class='ocr_glyph' id='glyph_1_1_17' title='x_confs 96'>A</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_12'><span class='ocr_glyph' id='glyph_1_1_18' title='x_confs 82'>A</span><span class='ocr_glyph' id='glyph_1_1_19' title='x_confs 14'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_13'><span class='ocr_glyph' id='glyph_1_1_20' title='x_confs 97'></span><span class='ocr_glyph' id='glyph_1_1_21' title='x_confs 1'>A</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_14'><span class='ocr_glyph' id='glyph_1_1_22' title='x_confs 88'></span><span class='ocr_glyph' id='glyph_1_1_23' title='x_confs 9'> </span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_15'><span class='ocr_glyph' id='glyph_1_1_24' title='x_confs 74'></span><span class='ocr_glyph' id='glyph_1_1_25' title='x_confs 6'>L</span><span class='ocr_glyph' id='glyph_1_1_26' title='x_confs 3'>I</span><span class='ocr_glyph' id='glyph_1_1_27' title='x_confs 3'> </span><span class='ocr_glyph' id='glyph_1_1_28' title='x_confs 1'>U</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_16'><span class='ocr_glyph' id='glyph_1_1_29' title='x_confs 63'></span><span class='ocr_glyph' id='glyph_1_1_30' title='x_confs 14'>L</span><span class='ocr_glyph' id='glyph_1_1_31' title='x_confs 12'>I</span><span class='ocr_glyph' id='glyph_1_1_32' title='x_confs 2'>U</span><span class='ocr_glyph' id='glyph_1_1_33' title='x_confs 1'>1</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_17'><span class='ocr_glyph' id='glyph_1_1_34' title='x_confs 38'>L</span><span class='ocr_glyph' id='glyph_1_1_35' title='x_confs 24'></span><span class='ocr_glyph' id='glyph_1_1_36' title='x_confs 20'>I</span><span class='ocr_glyph' id='glyph_1_1_37' title='x_confs 3'>U</span><span class='ocr_glyph' id='glyph_1_1_38' title='x_confs 3'>H</span><span class='ocr_glyph' id='glyph_1_1_39' title='x_confs 2'>1</span><span class='ocr_glyph' id='glyph_1_1_40' title='x_confs 1'>N</span><span class='ocr_glyph' id='glyph_1_1_41' title='x_confs 1'>T</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_18'><span class='ocr_glyph' id='glyph_1_1_42' title='x_confs 61'></span><span class='ocr_glyph' id='glyph_1_1_43' title='x_confs 17'>L</span><span class='ocr_glyph' id='glyph_1_1_44' title='x_confs 12'>I</span><span class='ocr_glyph' id='glyph_1_1_45' title='x_confs 1'>H</span><span class='ocr_glyph' id='glyph_1_1_46' title='x_confs 1'>U</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_19'><span class='ocr_glyph' id='glyph_1_1_47' title='x_confs 92'></span><span class='ocr_glyph' id='glyph_1_1_48' title='x_confs 5'>L</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_20'><span class='ocr_glyph' id='glyph_1_1_49' title='x_confs 47'></span><span class='ocr_glyph' id='glyph_1_1_50' title='x_confs 47'>L</span><span class='ocr_glyph' id='glyph_1_1_51' title='x_confs 1'>I</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_21'><span class='ocr_glyph' id='glyph_1_1_52' title='x_confs 91'>L</span><span class='ocr_glyph' id='glyph_1_1_53' title='x_confs 2'></span><span class='ocr_glyph' id='glyph_1_1_54' title='x_confs 1'>I</span><span class='ocr_glyph' id='glyph_1_1_55' title='x_confs 1'>E</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_22'><span class='ocr_glyph' id='glyph_1_1_56' title='x_confs 69'>L</span><span class='ocr_glyph' id='glyph_1_1_57' title='x_confs 26'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_23'><span class='ocr_glyph' id='glyph_1_1_58' title='x_confs 84'></span><span class='ocr_glyph' id='glyph_1_1_59' title='x_confs 9'>L</span><span class='ocr_glyph' id='glyph_1_1_60' title='x_confs 2'>.</span><span class='ocr_glyph' id='glyph_1_1_61' title='x_confs 2'> </span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_24'><span class='ocr_glyph' id='glyph_1_1_62' title='x_confs 98'></span><span class='ocr_glyph' id='glyph_1_1_63' title='x_confs 1'> </span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_25'><span class='ocr_glyph' id='glyph_1_1_64' title='x_confs 98'></span><span class='ocr_glyph' id='glyph_1_1_65' title='x_confs 1'>O</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_26'><span class='ocr_glyph' id='glyph_1_1_66' title='x_confs 88'>O</span><span class='ocr_glyph' id='glyph_1_1_67' title='x_confs 10'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_27'><span class='ocr_glyph' id='glyph_1_1_68' title='x_confs 98'>O</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_28'><span class='ocr_glyph' id='glyph_1_1_69' title='x_confs 77'>O</span><span class='ocr_glyph' id='glyph_1_1_70' title='x_confs 22'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_29'><span class='ocr_glyph' id='glyph_1_1_71' title='x_confs 95'></span><span class='ocr_glyph' id='glyph_1_1_72' title='x_confs 4'>O</span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_30'><span class='ocr_glyph' id='glyph_1_1_73' title='x_confs 99'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_1_31'><span class='ocr_glyph' id='glyph_1_1_74' title='x_confs 99'></span></span></span>
     </span>
    </p>
   </div>
   <div class='ocr_carea' id='block_1_2' title="bbox 9 405 686 585">
    <p class='ocr_par' id='par_1_2' lang='eng' title="bbox 9 405 686 585">
     <span class='ocr_line' id='line_1_2' title="bbox 9 405 686 585; baseline -0.007 -17; x_size 126.37594; x_descenders 16.37594; x_ascenders 44">
      <span class='ocrx_word' id='word_1_2' title='bbox 9 405 686 585; x_wconf 51'>Tesseract
       <span class='ocrx_cinfo' id='timestep_1_2_1'><span class='ocr_glyph' id='glyph_1_2_1' title='x_confs 99'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_2'><span class='ocr_glyph' id='glyph_1_2_2' title='x_confs 99'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_3'><span class='ocr_glyph' id='glyph_1_2_3' title='x_confs 98'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_4'><span class='ocr_glyph' id='glyph_1_2_4' title='x_confs 27'>T</span><span class='ocr_glyph' id='glyph_1_2_5' title='x_confs 15'>J</span><span class='ocr_glyph' id='glyph_1_2_6' title='x_confs 12'>[</span><span class='ocr_glyph' id='glyph_1_2_7' title='x_confs 11'></span><span class='ocr_glyph' id='glyph_1_2_8' title='x_confs 4'>I</span><span class='ocr_glyph' id='glyph_1_2_9' title='x_confs 4'>1</span><span class='ocr_glyph' id='glyph_1_2_10' title='x_confs 3'>|</span><span class='ocr_glyph' id='glyph_1_2_11' title='x_confs 3'>{</span><span class='ocr_glyph' id='glyph_1_2_12' title='x_confs 3'>(</span><span class='ocr_glyph' id='glyph_1_2_13' title='x_confs 2'>L</span><span class='ocr_glyph' id='glyph_1_2_14' title='x_confs 2'>l</span><span class='ocr_glyph' id='glyph_1_2_15' title='x_confs 1'>f</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_5'><span class='ocr_glyph' id='glyph_1_2_16' title='x_confs 74'></span><span class='ocr_glyph' id='glyph_1_2_17' title='x_confs 10'>T</span><span class='ocr_glyph' id='glyph_1_2_18' title='x_confs 2'>J</span><span class='ocr_glyph' id='glyph_1_2_19' title='x_confs 1'>1</span><span class='ocr_glyph' id='glyph_1_2_20' title='x_confs 1'>[</span><span class='ocr_glyph' id='glyph_1_2_21' title='x_confs 1'>l</span><span class='ocr_glyph' id='glyph_1_2_22' title='x_confs 1'>I</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_6'><span class='ocr_glyph' id='glyph_1_2_23' title='x_confs 92'></span><span class='ocr_glyph' id='glyph_1_2_24' title='x_confs 2'>T</span><span class='ocr_glyph' id='glyph_1_2_25' title='x_confs 1'> </span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_7'><span class='ocr_glyph' id='glyph_1_2_26' title='x_confs 80'></span><span class='ocr_glyph' id='glyph_1_2_27' title='x_confs 14'> </span><span class='ocr_glyph' id='glyph_1_2_28' title='x_confs 1'>'</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_8'><span class='ocr_glyph' id='glyph_1_2_29' title='x_confs 70'></span><span class='ocr_glyph' id='glyph_1_2_30' title='x_confs 9'> </span><span class='ocr_glyph' id='glyph_1_2_31' title='x_confs 6'>e</span><span class='ocr_glyph' id='glyph_1_2_32' title='x_confs 2'>o</span><span class='ocr_glyph' id='glyph_1_2_33' title='x_confs 1'>i</span><span class='ocr_glyph' id='glyph_1_2_34' title='x_confs 1'>r</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_9'><span class='ocr_glyph' id='glyph_1_2_35' title='x_confs 51'>e</span><span class='ocr_glyph' id='glyph_1_2_36' title='x_confs 40'></span><span class='ocr_glyph' id='glyph_1_2_37' title='x_confs 3'>c</span><span class='ocr_glyph' id='glyph_1_2_38' title='x_confs 1'>o</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_10'><span class='ocr_glyph' id='glyph_1_2_39' title='x_confs 82'>e</span><span class='ocr_glyph' id='glyph_1_2_40' title='x_confs 6'>c</span><span class='ocr_glyph' id='glyph_1_2_41' title='x_confs 3'>o</span><span class='ocr_glyph' id='glyph_1_2_42' title='x_confs 3'></span><span class='ocr_glyph' id='glyph_1_2_43' title='x_confs 1'>a</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_11'><span class='ocr_glyph' id='glyph_1_2_44' title='x_confs 58'></span><span class='ocr_glyph' id='glyph_1_2_45' title='x_confs 33'>e</span><span class='ocr_glyph' id='glyph_1_2_46' title='x_confs 3'>c</span><span class='ocr_glyph' id='glyph_1_2_47' title='x_confs 1'>o</span><span class='ocr_glyph' id='glyph_1_2_48' title='x_confs 1'> </span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_12'><span class='ocr_glyph' id='glyph_1_2_49' title='x_confs 96'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_13'><span class='ocr_glyph' id='glyph_1_2_50' title='x_confs 97'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_14'><span class='ocr_glyph' id='glyph_1_2_51' title='x_confs 72'></span><span class='ocr_glyph' id='glyph_1_2_52' title='x_confs 10'>s</span><span class='ocr_glyph' id='glyph_1_2_53' title='x_confs 6'>c</span><span class='ocr_glyph' id='glyph_1_2_54' title='x_confs 3'>o</span><span class='ocr_glyph' id='glyph_1_2_55' title='x_confs 2'>e</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_15'><span class='ocr_glyph' id='glyph_1_2_56' title='x_confs 52'>s</span><span class='ocr_glyph' id='glyph_1_2_57' title='x_confs 14'>c</span><span class='ocr_glyph' id='glyph_1_2_58' title='x_confs 11'>o</span><span class='ocr_glyph' id='glyph_1_2_59' title='x_confs 7'>e</span><span class='ocr_glyph' id='glyph_1_2_60' title='x_confs 2'>a</span><span class='ocr_glyph' id='glyph_1_2_61' title='x_confs 2'>v</span><span class='ocr_glyph' id='glyph_1_2_62' title='x_confs 1'></span><span class='ocr_glyph' id='glyph_1_2_63' title='x_confs 1'>i</span><span class='ocr_glyph' id='glyph_1_2_64' title='x_confs 1'>w</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_16'><span class='ocr_glyph' id='glyph_1_2_65' title='x_confs 78'></span><span class='ocr_glyph' id='glyph_1_2_66' title='x_confs 11'>s</span><span class='ocr_glyph' id='glyph_1_2_67' title='x_confs 6'>c</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_17'><span class='ocr_glyph' id='glyph_1_2_68' title='x_confs 99'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_18'><span class='ocr_glyph' id='glyph_1_2_69' title='x_confs 77'></span><span class='ocr_glyph' id='glyph_1_2_70' title='x_confs 12'>c</span><span class='ocr_glyph' id='glyph_1_2_71' title='x_confs 7'>s</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_19'><span class='ocr_glyph' id='glyph_1_2_72' title='x_confs 52'>c</span><span class='ocr_glyph' id='glyph_1_2_73' title='x_confs 35'>s</span><span class='ocr_glyph' id='glyph_1_2_74' title='x_confs 3'>e</span><span class='ocr_glyph' id='glyph_1_2_75' title='x_confs 2'>o</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_20'><span class='ocr_glyph' id='glyph_1_2_76' title='x_confs 81'></span><span class='ocr_glyph' id='glyph_1_2_77' title='x_confs 13'>c</span><span class='ocr_glyph' id='glyph_1_2_78' title='x_confs 4'>s</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_21'><span class='ocr_glyph' id='glyph_1_2_79' title='x_confs 99'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_22'><span class='ocr_glyph' id='glyph_1_2_80' title='x_confs 77'></span><span class='ocr_glyph' id='glyph_1_2_81' title='x_confs 21'>e</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_23'><span class='ocr_glyph' id='glyph_1_2_82' title='x_confs 97'>e</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_24'><span class='ocr_glyph' id='glyph_1_2_83' title='x_confs 85'>e</span><span class='ocr_glyph' id='glyph_1_2_84' title='x_confs 14'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_25'><span class='ocr_glyph' id='glyph_1_2_85' title='x_confs 82'></span><span class='ocr_glyph' id='glyph_1_2_86' title='x_confs 17'>e</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_26'><span class='ocr_glyph' id='glyph_1_2_87' title='x_confs 99'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_27'><span class='ocr_glyph' id='glyph_1_2_88' title='x_confs 55'></span><span class='ocr_glyph' id='glyph_1_2_89' title='x_confs 25'>t</span><span class='ocr_glyph' id='glyph_1_2_90' title='x_confs 18'>r</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_28'><span class='ocr_glyph' id='glyph_1_2_91' title='x_confs 88'>r</span><span class='ocr_glyph' id='glyph_1_2_92' title='x_confs 9'>t</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_29'><span class='ocr_glyph' id='glyph_1_2_93' title='x_confs 59'></span><span class='ocr_glyph' id='glyph_1_2_94' title='x_confs 39'>r</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_30'><span class='ocr_glyph' id='glyph_1_2_95' title='x_confs 97'></span><span class='ocr_glyph' id='glyph_1_2_96' title='x_confs 2'>r</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_31'><span class='ocr_glyph' id='glyph_1_2_97' title='x_confs 99'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_32'><span class='ocr_glyph' id='glyph_1_2_98' title='x_confs 90'></span><span class='ocr_glyph' id='glyph_1_2_99' title='x_confs 7'>a</span><span class='ocr_glyph' id='glyph_1_2_100' title='x_confs 1'>u</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_33'><span class='ocr_glyph' id='glyph_1_2_101' title='x_confs 96'>a</span><span class='ocr_glyph' id='glyph_1_2_102' title='x_confs 1'></span><span class='ocr_glyph' id='glyph_1_2_103' title='x_confs 1'>u</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_34'><span class='ocr_glyph' id='glyph_1_2_104' title='x_confs 95'>a</span><span class='ocr_glyph' id='glyph_1_2_105' title='x_confs 4'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_35'><span class='ocr_glyph' id='glyph_1_2_106' title='x_confs 96'></span><span class='ocr_glyph' id='glyph_1_2_107' title='x_confs 3'>a</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_36'><span class='ocr_glyph' id='glyph_1_2_108' title='x_confs 99'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_37'><span class='ocr_glyph' id='glyph_1_2_109' title='x_confs 72'>c</span><span class='ocr_glyph' id='glyph_1_2_110' title='x_confs 27'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_38'><span class='ocr_glyph' id='glyph_1_2_111' title='x_confs 97'>c</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_39'><span class='ocr_glyph' id='glyph_1_2_112' title='x_confs 90'></span><span class='ocr_glyph' id='glyph_1_2_113' title='x_confs 8'>c</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_40'><span class='ocr_glyph' id='glyph_1_2_114' title='x_confs 96'></span><span class='ocr_glyph' id='glyph_1_2_115' title='x_confs 3'>t</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_41'><span class='ocr_glyph' id='glyph_1_2_116' title='x_confs 99'>t</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_42'><span class='ocr_glyph' id='glyph_1_2_117' title='x_confs 52'></span><span class='ocr_glyph' id='glyph_1_2_118' title='x_confs 47'>t</span></span>
       <span class='ocrx_cinfo' id='timestep_1_2_43'><span class='ocr_glyph' id='glyph_1_2_119' title='x_confs 99'></span></span></span>
     </span>
    </p>
   </div>
   <div class='ocr_carea' id='block_1_3' title="bbox 24 670 1028 848">
    <p class='ocr_par' id='par_1_3' lang='eng' title="bbox 24 670 1028 848">
     <span class='ocr_line' id='line_1_3' title="bbox 24 670 1028 848; baseline 0.01 -26; x_size 187.82576; x_descenders 22.825758; x_ascenders 34">
      <span class='ocrx_word' id='word_1_3' title='bbox 24 682 159 792; x_wconf 67'>&amp;
       <span class='ocrx_cinfo' id='timestep_1_3_1'><span class='ocr_glyph' id='glyph_1_3_1' title='x_confs 98'></span><span class='ocr_glyph' id='glyph_1_3_2' title='x_confs 1'>(</span></span>
       <span class='ocrx_cinfo' id='timestep_1_3_2'><span class='ocr_glyph' id='glyph_1_3_3' title='x_confs 98'></span><span class='ocr_glyph' id='glyph_1_3_4' title='x_confs 1'>(</span></span>
       <span class='ocrx_cinfo' id='timestep_1_3_3'><span class='ocr_glyph' id='glyph_1_3_5' title='x_confs 96'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_3_4'><span class='ocr_glyph' id='glyph_1_3_6' title='x_confs 84'></span><span class='ocr_glyph' id='glyph_1_3_7' title='x_confs 8'>&</span></span>
       <span class='ocrx_cinfo' id='timestep_1_3_5'><span class='ocr_glyph' id='glyph_1_3_8' title='x_confs 71'>&</span><span class='ocr_glyph' id='glyph_1_3_9' title='x_confs 15'></span><span class='ocr_glyph' id='glyph_1_3_10' title='x_confs 2'>></span><span class='ocr_glyph' id='glyph_1_3_11' title='x_confs 1'>©</span><span class='ocr_glyph' id='glyph_1_3_12' title='x_confs 1'>S</span><span class='ocr_glyph' id='glyph_1_3_13' title='x_confs 1'>e</span><span class='ocr_glyph' id='glyph_1_3_14' title='x_confs 1'>E</span></span>
       <span class='ocrx_cinfo' id='timestep_1_3_6'><span class='ocr_glyph' id='glyph_1_3_15' title='x_confs 70'>&</span><span class='ocr_glyph' id='glyph_1_3_16' title='x_confs 12'></span><span class='ocr_glyph' id='glyph_1_3_17' title='x_confs 7'>></span><span class='ocr_glyph' id='glyph_1_3_18' title='x_confs 1'>S</span></span>
       <span class='ocrx_cinfo' id='timestep_1_3_7'><span class='ocr_glyph' id='glyph_1_3_19' title='x_confs 81'></span><span class='ocr_glyph' id='glyph_1_3_20' title='x_confs 4'>5</span><span class='ocr_glyph' id='glyph_1_3_21' title='x_confs 3'>&</span><span class='ocr_glyph' id='glyph_1_3_22' title='x_confs 3'>></span></span>
       <span class='ocrx_cinfo' id='timestep_1_3_8'><span class='ocr_glyph' id='glyph_1_3_23' title='x_confs 95'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_3_9'><span class='ocr_glyph' id='glyph_1_3_24' title='x_confs 68'></span><span class='ocr_glyph' id='glyph_1_3_25' title='x_confs 11'>'</span><span class='ocr_glyph' id='glyph_1_3_26' title='x_confs 5'>"</span><span class='ocr_glyph' id='glyph_1_3_27' title='x_confs 4'>’</span><span class='ocr_glyph' id='glyph_1_3_28' title='x_confs 1'>7</span></span></span>
      <span class='ocrx_word' id='word_1_4' title='bbox 201 670 887 848; x_wconf 3'>EPA
       <span class='ocrx_cinfo' id='timestep_1_4_1'><span class='ocr_glyph' id='glyph_1_4_1' title='x_confs 55'></span><span class='ocr_glyph' id='glyph_1_4_2' title='x_confs 20'> </span><span class='ocr_glyph' id='glyph_1_4_3' title='x_confs 13'>'</span><span class='ocr_glyph' id='glyph_1_4_4' title='x_confs 3'>"</span><span class='ocr_glyph' id='glyph_1_4_5' title='x_confs 1'>’</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_2'><span class='ocr_glyph' id='glyph_1_4_6' title='x_confs 55'></span><span class='ocr_glyph' id='glyph_1_4_7' title='x_confs 40'> </span><span class='ocr_glyph' id='glyph_1_4_8' title='x_confs 1'>'</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_3'><span class='ocr_glyph' id='glyph_1_4_9' title='x_confs 86'></span><span class='ocr_glyph' id='glyph_1_4_10' title='x_confs 10'> </span><span class='ocr_glyph' id='glyph_1_4_11' title='x_confs 1'>E</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_4'><span class='ocr_glyph' id='glyph_1_4_12' title='x_confs 90'></span><span class='ocr_glyph' id='glyph_1_4_13' title='x_confs 6'>E</span><span class='ocr_glyph' id='glyph_1_4_14' title='x_confs 2'>€</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_5'><span class='ocr_glyph' id='glyph_1_4_15' title='x_confs 44'>€</span><span class='ocr_glyph' id='glyph_1_4_16' title='x_confs 30'>E</span><span class='ocr_glyph' id='glyph_1_4_17' title='x_confs 16'></span><span class='ocr_glyph' id='glyph_1_4_18' title='x_confs 6'>C</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_6'><span class='ocr_glyph' id='glyph_1_4_19' title='x_confs 61'>€</span><span class='ocr_glyph' id='glyph_1_4_20' title='x_confs 30'>E</span><span class='ocr_glyph' id='glyph_1_4_21' title='x_confs 3'>C</span><span class='ocr_glyph' id='glyph_1_4_22' title='x_confs 1'>e</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_7'><span class='ocr_glyph' id='glyph_1_4_23' title='x_confs 69'></span><span class='ocr_glyph' id='glyph_1_4_24' title='x_confs 20'>E</span><span class='ocr_glyph' id='glyph_1_4_25' title='x_confs 8'>€</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_8'><span class='ocr_glyph' id='glyph_1_4_26' title='x_confs 96'></span><span class='ocr_glyph' id='glyph_1_4_27' title='x_confs 2'>E</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_9'><span class='ocr_glyph' id='glyph_1_4_28' title='x_confs 93'></span><span class='ocr_glyph' id='glyph_1_4_29' title='x_confs 6'> </span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_10'><span class='ocr_glyph' id='glyph_1_4_30' title='x_confs 92'></span><span class='ocr_glyph' id='glyph_1_4_31' title='x_confs 7'> </span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_11'><span class='ocr_glyph' id='glyph_1_4_32' title='x_confs 96'></span><span class='ocr_glyph' id='glyph_1_4_33' title='x_confs 1'> </span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_12'><span class='ocr_glyph' id='glyph_1_4_34' title='x_confs 78'></span><span class='ocr_glyph' id='glyph_1_4_35' title='x_confs 11'>S</span><span class='ocr_glyph' id='glyph_1_4_36' title='x_confs 1'>L</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_13'><span class='ocr_glyph' id='glyph_1_4_37' title='x_confs 52'></span><span class='ocr_glyph' id='glyph_1_4_38' title='x_confs 20'>S</span><span class='ocr_glyph' id='glyph_1_4_39' title='x_confs 5'>L</span><span class='ocr_glyph' id='glyph_1_4_40' title='x_confs 3'>K</span><span class='ocr_glyph' id='glyph_1_4_41' title='x_confs 2'>Q</span><span class='ocr_glyph' id='glyph_1_4_42' title='x_confs 2'>H</span><span class='ocr_glyph' id='glyph_1_4_43' title='x_confs 1'>X</span><span class='ocr_glyph' id='glyph_1_4_44' title='x_confs 1'>R</span><span class='ocr_glyph' id='glyph_1_4_45' title='x_confs 1'>Y</span><span class='ocr_glyph' id='glyph_1_4_46' title='x_confs 1'>&</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_14'><span class='ocr_glyph' id='glyph_1_4_47' title='x_confs 25'></span><span class='ocr_glyph' id='glyph_1_4_48' title='x_confs 18'>S</span><span class='ocr_glyph' id='glyph_1_4_49' title='x_confs 9'>K</span><span class='ocr_glyph' id='glyph_1_4_50' title='x_confs 9'>H</span><span class='ocr_glyph' id='glyph_1_4_51' title='x_confs 6'>Q</span><span class='ocr_glyph' id='glyph_1_4_52' title='x_confs 4'>Y</span><span class='ocr_glyph' id='glyph_1_4_53' title='x_confs 4'>X</span><span class='ocr_glyph' id='glyph_1_4_54' title='x_confs 4'>L</span><span class='ocr_glyph' id='glyph_1_4_55' title='x_confs 2'>R</span><span class='ocr_glyph' id='glyph_1_4_56' title='x_confs 2'>N</span><span class='ocr_glyph' id='glyph_1_4_57' title='x_confs 2'>D</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_15'><span class='ocr_glyph' id='glyph_1_4_58' title='x_confs 88'></span><span class='ocr_glyph' id='glyph_1_4_59' title='x_confs 2'>Y</span><span class='ocr_glyph' id='glyph_1_4_60' title='x_confs 1'>S</span><span class='ocr_glyph' id='glyph_1_4_61' title='x_confs 1'>D</span><span class='ocr_glyph' id='glyph_1_4_62' title='x_confs 1'>H</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_16'><span class='ocr_glyph' id='glyph_1_4_63' title='x_confs 96'></span><span class='ocr_glyph' id='glyph_1_4_64' title='x_confs 1'>I</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_17'><span class='ocr_glyph' id='glyph_1_4_65' title='x_confs 61'></span><span class='ocr_glyph' id='glyph_1_4_66' title='x_confs 13'>I</span><span class='ocr_glyph' id='glyph_1_4_67' title='x_confs 4'>N</span><span class='ocr_glyph' id='glyph_1_4_68' title='x_confs 3'>)</span><span class='ocr_glyph' id='glyph_1_4_69' title='x_confs 2'>D</span><span class='ocr_glyph' id='glyph_1_4_70' title='x_confs 2'>V</span><span class='ocr_glyph' id='glyph_1_4_71' title='x_confs 1'>M</span><span class='ocr_glyph' id='glyph_1_4_72' title='x_confs 1'>0</span><span class='ocr_glyph' id='glyph_1_4_73' title='x_confs 1'>9</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_18'><span class='ocr_glyph' id='glyph_1_4_74' title='x_confs 98'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_19'><span class='ocr_glyph' id='glyph_1_4_75' title='x_confs 99'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_20'><span class='ocr_glyph' id='glyph_1_4_76' title='x_confs 97'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_21'><span class='ocr_glyph' id='glyph_1_4_77' title='x_confs 41'></span><span class='ocr_glyph' id='glyph_1_4_78' title='x_confs 9'>P</span><span class='ocr_glyph' id='glyph_1_4_79' title='x_confs 6'>e</span><span class='ocr_glyph' id='glyph_1_4_80' title='x_confs 6'>E</span><span class='ocr_glyph' id='glyph_1_4_81' title='x_confs 5'>g</span><span class='ocr_glyph' id='glyph_1_4_82' title='x_confs 5'>Z</span><span class='ocr_glyph' id='glyph_1_4_83' title='x_confs 3'>R</span><span class='ocr_glyph' id='glyph_1_4_84' title='x_confs 3'>Q</span><span class='ocr_glyph' id='glyph_1_4_85' title='x_confs 3'>@</span><span class='ocr_glyph' id='glyph_1_4_86' title='x_confs 2'>G</span><span class='ocr_glyph' id='glyph_1_4_87' title='x_confs 1'>F</span><span class='ocr_glyph' id='glyph_1_4_88' title='x_confs 1'>2</span><span class='ocr_glyph' id='glyph_1_4_89' title='x_confs 1'>I</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_22'><span class='ocr_glyph' id='glyph_1_4_90' title='x_confs 59'></span><span class='ocr_glyph' id='glyph_1_4_91' title='x_confs 5'>g</span><span class='ocr_glyph' id='glyph_1_4_92' title='x_confs 5'>2</span><span class='ocr_glyph' id='glyph_1_4_93' title='x_confs 4'>Q</span><span class='ocr_glyph' id='glyph_1_4_94' title='x_confs 3'>@</span><span class='ocr_glyph' id='glyph_1_4_95' title='x_confs 3'>P</span><span class='ocr_glyph' id='glyph_1_4_96' title='x_confs 2'>E</span><span class='ocr_glyph' id='glyph_1_4_97' title='x_confs 1'>e</span><span class='ocr_glyph' id='glyph_1_4_98' title='x_confs 1'>Z</span><span class='ocr_glyph' id='glyph_1_4_99' title='x_confs 1'>R</span><span class='ocr_glyph' id='glyph_1_4_100' title='x_confs 1'>G</span><span class='ocr_glyph' id='glyph_1_4_101' title='x_confs 1'>A</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_23'><span class='ocr_glyph' id='glyph_1_4_102' title='x_confs 98'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_24'><span class='ocr_glyph' id='glyph_1_4_103' title='x_confs 99'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_25'><span class='ocr_glyph' id='glyph_1_4_104' title='x_confs 95'></span><span class='ocr_glyph' id='glyph_1_4_105' title='x_confs 1'>e</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_26'><span class='ocr_glyph' id='glyph_1_4_106' title='x_confs 91'></span><span class='ocr_glyph' id='glyph_1_4_107' title='x_confs 2'>a</span><span class='ocr_glyph' id='glyph_1_4_108' title='x_confs 1'>e</span><span class='ocr_glyph' id='glyph_1_4_109' title='x_confs 1'> </span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_27'><span class='ocr_glyph' id='glyph_1_4_110' title='x_confs 92'></span><span class='ocr_glyph' id='glyph_1_4_111' title='x_confs 1'>a</span><span class='ocr_glyph' id='glyph_1_4_112' title='x_confs 1'> </span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_28'><span class='ocr_glyph' id='glyph_1_4_113' title='x_confs 61'></span><span class='ocr_glyph' id='glyph_1_4_114' title='x_confs 12'>P</span><span class='ocr_glyph' id='glyph_1_4_115' title='x_confs 11'>p</span><span class='ocr_glyph' id='glyph_1_4_116' title='x_confs 10'>D</span><span class='ocr_glyph' id='glyph_1_4_117' title='x_confs 1'>R</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_29'><span class='ocr_glyph' id='glyph_1_4_118' title='x_confs 58'>p</span><span class='ocr_glyph' id='glyph_1_4_119' title='x_confs 26'>P</span><span class='ocr_glyph' id='glyph_1_4_120' title='x_confs 6'>D</span><span class='ocr_glyph' id='glyph_1_4_121' title='x_confs 3'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_30'><span class='ocr_glyph' id='glyph_1_4_122' title='x_confs 57'></span><span class='ocr_glyph' id='glyph_1_4_123' title='x_confs 35'>p</span><span class='ocr_glyph' id='glyph_1_4_124' title='x_confs 5'>P</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_31'><span class='ocr_glyph' id='glyph_1_4_125' title='x_confs 98'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_32'><span class='ocr_glyph' id='glyph_1_4_126' title='x_confs 99'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_33'><span class='ocr_glyph' id='glyph_1_4_127' title='x_confs 98'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_34'><span class='ocr_glyph' id='glyph_1_4_128' title='x_confs 37'></span><span class='ocr_glyph' id='glyph_1_4_129' title='x_confs 13'>A</span><span class='ocr_glyph' id='glyph_1_4_130' title='x_confs 6'>N</span><span class='ocr_glyph' id='glyph_1_4_131' title='x_confs 5'>H</span><span class='ocr_glyph' id='glyph_1_4_132' title='x_confs 4'>I</span><span class='ocr_glyph' id='glyph_1_4_133' title='x_confs 3'>R</span><span class='ocr_glyph' id='glyph_1_4_134' title='x_confs 3'>r</span><span class='ocr_glyph' id='glyph_1_4_135' title='x_confs 3'>X</span><span class='ocr_glyph' id='glyph_1_4_136' title='x_confs 2'>a</span><span class='ocr_glyph' id='glyph_1_4_137' title='x_confs 2'>n</span><span class='ocr_glyph' id='glyph_1_4_138' title='x_confs 1'>U</span><span class='ocr_glyph' id='glyph_1_4_139' title='x_confs 1'>i</span><span class='ocr_glyph' id='glyph_1_4_140' title='x_confs 1'>K</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_35'><span class='ocr_glyph' id='glyph_1_4_141' title='x_confs 49'>A</span><span class='ocr_glyph' id='glyph_1_4_142' title='x_confs 30'></span><span class='ocr_glyph' id='glyph_1_4_143' title='x_confs 4'>I</span><span class='ocr_glyph' id='glyph_1_4_144' title='x_confs 4'>N</span><span class='ocr_glyph' id='glyph_1_4_145' title='x_confs 2'>U</span><span class='ocr_glyph' id='glyph_1_4_146' title='x_confs 1'>a</span><span class='ocr_glyph' id='glyph_1_4_147' title='x_confs 1'>R</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_36'><span class='ocr_glyph' id='glyph_1_4_148' title='x_confs 48'></span><span class='ocr_glyph' id='glyph_1_4_149' title='x_confs 24'>A</span><span class='ocr_glyph' id='glyph_1_4_150' title='x_confs 9'>I</span><span class='ocr_glyph' id='glyph_1_4_151' title='x_confs 5'>N</span><span class='ocr_glyph' id='glyph_1_4_152' title='x_confs 4'>U</span><span class='ocr_glyph' id='glyph_1_4_153' title='x_confs 1'>O</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_37'><span class='ocr_glyph' id='glyph_1_4_154' title='x_confs 89'></span><span class='ocr_glyph' id='glyph_1_4_155' title='x_confs 4'>I</span><span class='ocr_glyph' id='glyph_1_4_156' title='x_confs 2'>A</span><span class='ocr_glyph' id='glyph_1_4_157' title='x_confs 1'>N</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_38'><span class='ocr_glyph' id='glyph_1_4_158' title='x_confs 99'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_39'><span class='ocr_glyph' id='glyph_1_4_159' title='x_confs 98'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_40'><span class='ocr_glyph' id='glyph_1_4_160' title='x_confs 55'></span><span class='ocr_glyph' id='glyph_1_4_161' title='x_confs 18'>R</span><span class='ocr_glyph' id='glyph_1_4_162' title='x_confs 4'>f</span><span class='ocr_glyph' id='glyph_1_4_163' title='x_confs 2'>T</span><span class='ocr_glyph' id='glyph_1_4_164' title='x_confs 2'>F</span><span class='ocr_glyph' id='glyph_1_4_165' title='x_confs 1'>t</span><span class='ocr_glyph' id='glyph_1_4_166' title='x_confs 1'>N</span><span class='ocr_glyph' id='glyph_1_4_167' title='x_confs 1'>r</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_41'><span class='ocr_glyph' id='glyph_1_4_168' title='x_confs 48'>R</span><span class='ocr_glyph' id='glyph_1_4_169' title='x_confs 6'></span><span class='ocr_glyph' id='glyph_1_4_170' title='x_confs 3'>P</span><span class='ocr_glyph' id='glyph_1_4_171' title='x_confs 3'>T</span><span class='ocr_glyph' id='glyph_1_4_172' title='x_confs 3'>N</span><span class='ocr_glyph' id='glyph_1_4_173' title='x_confs 2'>F</span><span class='ocr_glyph' id='glyph_1_4_174' title='x_confs 2'>Q</span><span class='ocr_glyph' id='glyph_1_4_175' title='x_confs 1'>D</span><span class='ocr_glyph' id='glyph_1_4_176' title='x_confs 1'>f</span><span class='ocr_glyph' id='glyph_1_4_177' title='x_confs 1'>0</span><span class='ocr_glyph' id='glyph_1_4_178' title='x_confs 1'>B</span><span class='ocr_glyph' id='glyph_1_4_179' title='x_confs 1'>M</span><span class='ocr_glyph' id='glyph_1_4_180' title='x_confs 1'>g</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_42'><span class='ocr_glyph' id='glyph_1_4_181' title='x_confs 60'></span><span class='ocr_glyph' id='glyph_1_4_182' title='x_confs 5'>R</span><span class='ocr_glyph' id='glyph_1_4_183' title='x_confs 2'>N</span><span class='ocr_glyph' id='glyph_1_4_184' title='x_confs 2'>0</span><span class='ocr_glyph' id='glyph_1_4_185' title='x_confs 2'>I</span><span class='ocr_glyph' id='glyph_1_4_186' title='x_confs 1'>D</span><span class='ocr_glyph' id='glyph_1_4_187' title='x_confs 1'>Y</span><span class='ocr_glyph' id='glyph_1_4_188' title='x_confs 1'>M</span><span class='ocr_glyph' id='glyph_1_4_189' title='x_confs 1'>T</span><span class='ocr_glyph' id='glyph_1_4_190' title='x_confs 1'>A</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_43'><span class='ocr_glyph' id='glyph_1_4_191' title='x_confs 71'></span><span class='ocr_glyph' id='glyph_1_4_192' title='x_confs 2'>D</span><span class='ocr_glyph' id='glyph_1_4_193' title='x_confs 1'>I</span><span class='ocr_glyph' id='glyph_1_4_194' title='x_confs 1'>l</span><span class='ocr_glyph' id='glyph_1_4_195' title='x_confs 1'>0</span><span class='ocr_glyph' id='glyph_1_4_196' title='x_confs 1'>)</span><span class='ocr_glyph' id='glyph_1_4_197' title='x_confs 1'>Y</span><span class='ocr_glyph' id='glyph_1_4_198' title='x_confs 1'>N</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_44'><span class='ocr_glyph' id='glyph_1_4_199' title='x_confs 68'></span><span class='ocr_glyph' id='glyph_1_4_200' title='x_confs 4'>)</span><span class='ocr_glyph' id='glyph_1_4_201' title='x_confs 2'>I</span><span class='ocr_glyph' id='glyph_1_4_202' title='x_confs 1'>L</span><span class='ocr_glyph' id='glyph_1_4_203' title='x_confs 1'>Y</span><span class='ocr_glyph' id='glyph_1_4_204' title='x_confs 1'>N</span><span class='ocr_glyph' id='glyph_1_4_205' title='x_confs 1'>l</span><span class='ocr_glyph' id='glyph_1_4_206' title='x_confs 1'>D</span><span class='ocr_glyph' id='glyph_1_4_207' title='x_confs 1'>y</span></span>
       <span class='ocrx_cinfo' id='timestep_1_4_45'><span class='ocr_glyph' id='glyph_1_4_208' title='x_confs 88'></span><span class='ocr_glyph' id='glyph_1_4_209' title='x_confs 3'> </span></span></span>
      <span class='ocrx_word' id='word_1_5' title='bbox 945 670 1028 832; x_wconf 34'>F
       <span class='ocrx_cinfo' id='timestep_1_5_1'><span class='ocr_glyph' id='glyph_1_5_1' title='x_confs 57'> </span><span class='ocr_glyph' id='glyph_1_5_2' title='x_confs 39'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_5_2'><span class='ocr_glyph' id='glyph_1_5_3' title='x_confs 70'> </span><span class='ocr_glyph' id='glyph_1_5_4' title='x_confs 20'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_5_3'><span class='ocr_glyph' id='glyph_1_5_5' title='x_confs 80'></span><span class='ocr_glyph' id='glyph_1_5_6' title='x_confs 18'> </span></span>
       <span class='ocrx_cinfo' id='timestep_1_5_4'><span class='ocr_glyph' id='glyph_1_5_7' title='x_confs 97'></span></span>
       <span class='ocrx_cinfo' id='timestep_1_5_5'><span class='ocr_glyph' id='glyph_1_5_8' title='x_confs 80'></span><span class='ocr_glyph' id='glyph_1_5_9' title='x_confs 4'>T</span><span class='ocr_glyph' id='glyph_1_5_10' title='x_confs 2'>7</span><span class='ocr_glyph' id='glyph_1_5_11' title='x_confs 1'>F</span><span class='ocr_glyph' id='glyph_1_5_12' title='x_confs 1'>*</span><span class='ocr_glyph' id='glyph_1_5_13' title='x_confs 1'>+</span></span>
       <span class='ocrx_cinfo' id='timestep_1_5_6'><span class='ocr_glyph' id='glyph_1_5_14' title='x_confs 47'>F</span><span class='ocr_glyph' id='glyph_1_5_15' title='x_confs 11'>T</span><span class='ocr_glyph' id='glyph_1_5_16' title='x_confs 5'>¥</span><span class='ocr_glyph' id='glyph_1_5_17' title='x_confs 5'>+</span><span class='ocr_glyph' id='glyph_1_5_18' title='x_confs 3'>}</span><span class='ocr_glyph' id='glyph_1_5_19' title='x_confs 2'>¢</span><span class='ocr_glyph' id='glyph_1_5_20' title='x_confs 2'>§</span><span class='ocr_glyph' id='glyph_1_5_21' title='x_confs 1'>b</span><span class='ocr_glyph' id='glyph_1_5_22' title='x_confs 1'>7</span><span class='ocr_glyph' id='glyph_1_5_23' title='x_confs 1'>3</span><span class='ocr_glyph' id='glyph_1_5_24' title='x_confs 1'>H</span><span class='ocr_glyph' id='glyph_1_5_25' title='x_confs 1'>$</span><span class='ocr_glyph' id='glyph_1_5_26' title='x_confs 1'>t</span><span class='ocr_glyph' id='glyph_1_5_27' title='x_confs 1'>G</span><span class='ocr_glyph' id='glyph_1_5_28' title='x_confs 1'>B</span></span>
       <span class='ocrx_cinfo' id='timestep_1_5_7'><span class='ocr_glyph' id='glyph_1_5_29' title='x_confs 97'></span><span class='ocr_glyph' id='glyph_1_5_30' title='x_confs 1'>F</span></span>
       <span class='ocrx_cinfo' id='timestep_1_5_8'><span class='ocr_glyph' id='glyph_1_5_31' title='x_confs 99'></span></span></span>
     </span>
    </p>
   </div>
  </div>
 </body>
</html>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants