-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestdata.js
More file actions
1081 lines (1080 loc) · 103 KB
/
testdata.js
File metadata and controls
1081 lines (1080 loc) · 103 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Copyright 2021 Nick White.
* Use of this source code is governed by the AGPLv3
* license that can be found in the LICENSE file. */
const hocr1 = `<?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' />
<meta name='ocr-capabilities' content='ocr_page ocr_carea ocr_par ocr_line ocrx_word ocrp_wconf'/>
</head>
<body>
<div class='ocr_page' id='page_1' title='image "/tmp/Alcoranus_test_2/0001_bin0.0.png"; bbox 0 0 8533 13432; ppageno 0'>
<div class='ocr_carea' id='block_1_1' title="bbox 1845 91 6676 223">
<p class='ocr_par' id='par_1_1' lang='rescribealphav5' title="bbox 1845 91 6676 223">
<span class='ocr_line' id='line_1_1' title="bbox 1845 91 6676 223; textangle 180; x_size 166.25; x_descenders 41.5625; x_ascenders 41.5625">
<span class='ocrx_word' id='word_1_1' title='bbox 1845 91 6676 223; x_wconf 95'> </span>
</span>
</p>
</div>
<div class='ocr_carea' id='block_1_2' title="bbox 2011 1274 7387 1671">
<p class='ocr_par' id='par_1_2' lang='rescribealphav5' title="bbox 2011 1274 7387 1671">
<span class='ocr_line' id='line_1_2' title="bbox 2011 1274 7387 1671; textangle 180; x_size 329; x_descenders 40; x_ascenders 128">
<span class='ocrx_word' id='word_1_2' title='bbox 2011 1356 2367 1585; x_wconf 90'>10</span>
<span class='ocrx_word' id='word_1_3' title='bbox 2557 1289 4219 1592; x_wconf 67'>Reſutationes</span>
<span class='ocrx_word' id='word_1_4' title='bbox 4279 1324 4639 1595; x_wconf 86'>in</span>
<span class='ocrx_word' id='word_1_5' title='bbox 4683 1274 5890 1671; x_wconf 92'>Suram</span>
<span class='ocrx_word' id='word_1_6' title='bbox 5517 1270 5990 1675; x_wconf 79'>II.</span>
<span class='ocrx_word' id='word_1_7' title='bbox 5982 1274 7253 1579; x_wconf 44'>Alcorani</span>
</span>
</p>
</div>
<div class='ocr_carea' id='block_1_3' title="bbox 1848 1725 8012 11841">
<p class='ocr_par' id='par_1_3' lang='rescribealphav5' title="bbox 1848 1725 8012 11841">
<span class='ocr_line' id='line_1_3' title="bbox 1848 1725 7825 1963; textangle 180; x_size 212; x_descenders 44; x_ascenders 72">
<span class='ocrx_word' id='word_1_8' title='bbox 1848 1763 2284 1932; x_wconf 79'>fatui?</span>
<span class='ocrx_word' id='word_1_9' title='bbox 2351 1766 2628 1925; x_wconf 89'>Sed</span>
<span class='ocrx_word' id='word_1_10' title='bbox 2729 1750 3454 1963; x_wconf 88'>neſciunt,</span>
<span class='ocrx_word' id='word_1_11' title='bbox 3517 1756 3670 1960; x_wconf 90'>ſe</span>
<span class='ocrx_word' id='word_1_12' title='bbox 3768 1750 3993 1960; x_wconf 89'>eſſe</span>
<span class='ocrx_word' id='word_1_13' title='bbox 4085 1750 4486 1922; x_wconf 57'>tales.</span>
<span class='ocrx_word' id='word_1_14' title='bbox 4606 1817 4832 1951; x_wconf 82'>14.</span>
<span class='ocrx_word' id='word_1_15' title='bbox 4937 1766 5207 1963; x_wconf 23'>Et,</span>
<span class='ocrx_word' id='word_1_16' title='bbox 5299 1741 5655 1947; x_wconf 0'>cùm</span>
<span class='ocrx_word' id='word_1_17' title='bbox 5753 1750 6627 1912; x_wconf 88'>occurrerint</span>
<span class='ocrx_word' id='word_1_18' title='bbox 6725 1753 6986 1935; x_wconf 0'>is,</span>
<span class='ocrx_word' id='word_1_19' title='bbox 7072 1744 7329 1935; x_wconf 91'>qui</span>
<span class='ocrx_word' id='word_1_20' title='bbox 7364 1725 7882 1919; x_wconf 91'>credi-</span>
</span>
<span class='ocr_line' id='line_1_4' title="bbox 1848 1925 7831 2167; textangle 180; x_size 188; x_descenders 25; x_ascenders 70">
<span class='ocrx_word' id='word_1_21' title='bbox 1848 1979 2431 2167; x_wconf 89'>derunt,</span>
<span class='ocrx_word' id='word_1_22' title='bbox 2535 1960 3110 2154; x_wconf 84'>dicent:</span>
<span class='ocrx_word' id='word_1_23' title='bbox 3215 1963 4197 2160; x_wconf 88'>Credidimus.</span>
<span class='ocrx_word' id='word_1_24' title='bbox 4295 1969 4591 2160; x_wconf 92'>At,</span>
<span class='ocrx_word' id='word_1_25' title='bbox 4667 1953 5026 2135; x_wconf 0'>cùm</span>
<span class='ocrx_word' id='word_1_26' title='bbox 5105 1960 5496 2134; x_wconf 86'>clam</span>
<span class='ocrx_word' id='word_1_27' title='bbox 5575 1969 6488 2144; x_wconf 91'>convenerint</span>
<span class='ocrx_word' id='word_1_28' title='bbox 6535 1944 6723 2109; x_wconf 92'>ad</span>
<span class='ocrx_word' id='word_1_29' title='bbox 6767 1953 7336 2128; x_wconf 92'>Satanas</span>
<span class='ocrx_word' id='word_1_30' title='bbox 7408 1925 7831 2119; x_wconf 82'>ſuos,</span>
</span>
<span class='ocr_line' id='line_1_5' title="bbox 1848 2132 7872 2364; textangle 180; x_size 189; x_descenders 32; x_ascenders 66">
<span class='ocrx_word' id='word_1_31' title='bbox 1848 2176 2386 2329; x_wconf 82'>dicent:</span>
<span class='ocrx_word' id='word_1_32' title='bbox 2487 2166 2923 2329; x_wconf 42'>Certè</span>
<span class='ocrx_word' id='word_1_33' title='bbox 3021 2221 3282 2325; x_wconf 89'>nos</span>
<span class='ocrx_word' id='word_1_34' title='bbox 3352 2166 3793 2364; x_wconf 89'>ſumus</span>
<span class='ocrx_word' id='word_1_35' title='bbox 3888 2157 4747 2360; x_wconf 86'>vobiſcum,</span>
<span class='ocrx_word' id='word_1_36' title='bbox 4848 2157 5217 2345; x_wconf 16'>certè,</span>
<span class='ocrx_word' id='word_1_37' title='bbox 5407 2150 5801 2354; x_wconf 76'>quòd</span>
<span class='ocrx_word' id='word_1_38' title='bbox 5890 2220 6148 2313; x_wconf 91'>nos</span>
<span class='ocrx_word' id='word_1_39' title='bbox 6220 2157 6955 2316; x_wconf 91'>illudentes</span>
<span class='ocrx_word' id='word_1_40' title='bbox 7005 2132 7501 2335; x_wconf 89'>fuimus</span>
<span class='ocrx_word' id='word_1_41' title='bbox 7561 2160 7872 2351; x_wconf 86'>eos-</span>
</span>
<span class='ocr_line' id='line_1_6' title="bbox 1852 2354 7838 2567; textangle 180; x_size 184; x_descenders 23; x_ascenders 71">
<span class='ocrx_word' id='word_1_42' title='bbox 1852 2417 2081 2567; x_wconf 88'>15.</span>
<span class='ocrx_word' id='word_1_43' title='bbox 2182 2376 2608 2564; x_wconf 36'>Beus</span>
<span class='ocrx_word' id='word_1_44' title='bbox 2691 2363 3168 2557; x_wconf 74'>luſum</span>
<span class='ocrx_word' id='word_1_45' title='bbox 3275 2366 3908 2567; x_wconf 90'>captabit</span>
<span class='ocrx_word' id='word_1_46' title='bbox 4015 2366 4191 2526; x_wconf 86'>de</span>
<span class='ocrx_word' id='word_1_47' title='bbox 4289 2363 4699 2561; x_wconf 88'>illis,</span>
<span class='ocrx_word' id='word_1_48' title='bbox 4794 2376 4937 2542; x_wconf 91'>&</span>
<span class='ocrx_word' id='word_1_49' title='bbox 5042 2360 5684 2557; x_wconf 87'>extendet</span>
<span class='ocrx_word' id='word_1_50' title='bbox 5782 2360 6097 2542; x_wconf 87'>illos</span>
<span class='ocrx_word' id='word_1_51' title='bbox 6195 2354 6637 2560; x_wconf 52'>(ideſt</span>
<span class='ocrx_word' id='word_1_52' title='bbox 6735 2366 7206 2557; x_wconf 25'>vitam</span>
<span class='ocrx_word' id='word_1_53' title='bbox 7250 2392 7838 2567; x_wconf 87'>proroga-</span>
</span>
<span class='ocr_line' id='line_1_7' title="bbox 1848 2528 7873 2767; textangle 180; x_size 197; x_descenders 34; x_ascenders 69">
<span class='ocrx_word' id='word_1_54' title='bbox 1848 2567 2018 2732; x_wconf 34'>bi?</span>
<span class='ocrx_word' id='word_1_55' title='bbox 2128 2567 2564 2745; x_wconf 65'>illis:)</span>
<span class='ocrx_word' id='word_1_56' title='bbox 2605 2582 2764 2767; x_wconf 86'>in</span>
<span class='ocrx_word' id='word_1_57' title='bbox 2865 2567 3813 2767; x_wconf 75'>exorbitantia</span>
<span class='ocrx_word' id='word_1_58' title='bbox 3879 2560 4127 2729; x_wconf 91'>ſua</span>
<span class='ocrx_word' id='word_1_59' title='bbox 4190 2573 4762 2729; x_wconf 80'>attoniti</span>
<span class='ocrx_word' id='word_1_60' title='bbox 4838 2557 5214 2764; x_wconf 57'>hũc,</span>
<span class='ocrx_word' id='word_1_61' title='bbox 5267 2557 5614 2767; x_wconf 0'>illuc</span>
<span class='ocrx_word' id='word_1_62' title='bbox 5683 2557 6427 2725; x_wconf 87'>errabunt.</span>
<span class='ocrx_word' id='word_1_63' title='bbox 6509 2570 6793 2735; x_wconf 22'>ĩ6.</span>
<span class='ocrx_word' id='word_1_64' title='bbox 6840 2557 7053 2710; x_wconf 61'>Hi</span>
<span class='ocrx_word' id='word_1_65' title='bbox 7110 2528 7539 2761; x_wconf 90'>ſunt,</span>
<span class='ocrx_word' id='word_1_66' title='bbox 7574 2570 7873 2758; x_wconf 90'>qui</span>
</span>
<span class='ocr_line' id='line_1_8' title="bbox 1848 2764 7850 2974; textangle 180; x_size 190; x_descenders 30; x_ascenders 66">
<span class='ocrx_word' id='word_1_67' title='bbox 1848 2846 1964 2951; x_wconf 78'>a</span>
<span class='ocrx_word' id='word_1_68' title='bbox 2011 2773 3380 2958; x_wconf 86'>commutaverunt</span>
<span class='ocrx_word' id='word_1_69' title='bbox 3431 2830 4060 2951; x_wconf 89'>errorem</span>
<span class='ocrx_word' id='word_1_70' title='bbox 4158 2783 4508 2945; x_wconf 88'>cum</span>
<span class='ocrx_word' id='word_1_71' title='bbox 4610 2770 5426 2970; x_wconf 18'>directione</span>
<span class='ocrx_word' id='word_1_72' title='bbox 5493 2764 5932 2974; x_wconf 47'>(ideſt</span>
<span class='ocrx_word' id='word_1_73' title='bbox 6033 2764 6834 2939; x_wconf 80'>directivnem</span>
<span class='ocrx_word' id='word_1_74' title='bbox 6887 2764 7234 2955; x_wconf 88'>cum</span>
<span class='ocrx_word' id='word_1_75' title='bbox 7282 2770 7850 2926; x_wconf 44'>errore,</span>
</span>
<span class='ocr_line' id='line_1_9' title="bbox 1848 2967 7863 3180; textangle 180; x_size 186; x_descenders 23; x_ascenders 71">
<span class='ocrx_word' id='word_1_76' title='bbox 1848 2973 2065 3177; x_wconf 86'>ſeu</span>
<span class='ocrx_word' id='word_1_77' title='bbox 2138 2973 2605 3180; x_wconf 86'>fidem</span>
<span class='ocrx_word' id='word_1_78' title='bbox 2659 3043 2939 3142; x_wconf 90'>cum</span>
<span class='ocrx_word' id='word_1_79' title='bbox 3040 2970 3902 3180; x_wconf 38'>infidelitate)</span>
<span class='ocrx_word' id='word_1_80' title='bbox 4047 2970 4340 3142; x_wconf 90'>ſed</span>
<span class='ocrx_word' id='word_1_81' title='bbox 4422 3040 4731 3148; x_wconf 91'>non</span>
<span class='ocrx_word' id='word_1_82' title='bbox 4835 2976 5036 3132; x_wconf 92'>eſt</span>
<span class='ocrx_word' id='word_1_83' title='bbox 5137 2973 5680 3161; x_wconf 62'>lucrata</span>
<span class='ocrx_word' id='word_1_84' title='bbox 5753 3021 6551 3170; x_wconf 90'>mercatura</span>
<span class='ocrx_word' id='word_1_85' title='bbox 6652 3005 7266 3174; x_wconf 85'>eorum,</span>
<span class='ocrx_word' id='word_1_86' title='bbox 7307 2967 7491 3183; x_wconf 85'>&</span>
<span class='ocrx_word' id='word_1_87' title='bbox 7552 2986 7863 3094; x_wconf 89'>non</span>
</span>
<span class='ocr_line' id='line_1_10' title="bbox 1865 3142 7863 3377; textangle 180; x_size 202; x_descenders 47; x_ascenders 63">
<span class='ocrx_word' id='word_1_88' title='bbox 1865 3180 2450 3339; x_wconf 90'>fuerunt</span>
<span class='ocrx_word' id='word_1_89' title='bbox 2548 3180 3104 3355; x_wconf 42'>directi.</span>
<span class='ocrx_word' id='word_1_90' title='bbox 3164 3240 3400 3371; x_wconf 27'>7.</span>
<span class='ocrx_word' id='word_1_91' title='bbox 3485 3180 4299 3368; x_wconf 83'>Similitudo</span>
<span class='ocrx_word' id='word_1_92' title='bbox 4400 3221 4912 3336; x_wconf 72'>eorum</span>
<span class='ocrx_word' id='word_1_93' title='bbox 5019 3180 5191 3374; x_wconf 86'>eſt</span>
<span class='ocrx_word' id='word_1_94' title='bbox 5290 3170 5700 3361; x_wconf 89'>ſicut</span>
<span class='ocrx_word' id='word_1_95' title='bbox 5750 3167 6551 3336; x_wconf 81'>ſimilitudo</span>
<span class='ocrx_word' id='word_1_96' title='bbox 6653 3167 7117 3354; x_wconf 81'>illius,</span>
<span class='ocrx_word' id='word_1_97' title='bbox 7212 3183 7476 3355; x_wconf 90'>qui</span>
<span class='ocrx_word' id='word_1_98' title='bbox 7567 3142 7863 3377; x_wconf 91'>ſtu-</span>
</span>
<span class='ocr_line' id='line_1_11' title="bbox 1862 3348 7866 3580; textangle 180; x_size 195; x_descenders 41; x_ascenders 63">
<span class='ocrx_word' id='word_1_99' title='bbox 1862 3383 2335 3571; x_wconf 5'>duerit</span>
<span class='ocrx_word' id='word_1_100' title='bbox 2433 3380 3190 3574; x_wconf 89'>accendere</span>
<span class='ocrx_word' id='word_1_101' title='bbox 3294 3393 3867 3574; x_wconf 48'>ignem:</span>
<span class='ocrx_word' id='word_1_102' title='bbox 3907 3386 4686 3580; x_wconf 86'>poſtquam</span>
<span class='ocrx_word' id='word_1_103' title='bbox 4791 3431 5277 3545; x_wconf 47'>autem</span>
<span class='ocrx_word' id='word_1_104' title='bbox 5337 3399 5684 3565; x_wconf 47'>ignis</span>
<span class='ocrx_word' id='word_1_105' title='bbox 5791 3377 6894 3564; x_wconf 67'>illuminaverit,</span>
<span class='ocrx_word' id='word_1_106' title='bbox 6941 3358 7345 3558; x_wconf 91'>quod</span>
<span class='ocrx_word' id='word_1_107' title='bbox 7377 3348 7577 3501; x_wconf 92'>eſt</span>
<span class='ocrx_word' id='word_1_108' title='bbox 7605 3399 7866 3501; x_wconf 92'>cir-</span>
</span>
<span class='ocr_line' id='line_1_12' title="bbox 1865 3558 7863 3781; textangle 180; x_size 199.7897; x_descenders 42.588234; x_ascenders 65.36364">
<span class='ocrx_word' id='word_1_109' title='bbox 1865 3580 2037 3739; x_wconf 88'>ca</span>
<span class='ocrx_word' id='word_1_110' title='bbox 2141 3647 2564 3781; x_wconf 88'>eum,</span>
<span class='ocrx_word' id='word_1_111' title='bbox 2662 3577 3209 3755; x_wconf 91'>auferat</span>
<span class='ocrx_word' id='word_1_112' title='bbox 3310 3596 3698 3742; x_wconf 88'>Deus</span>
<span class='ocrx_word' id='word_1_113' title='bbox 3809 3586 4299 3746; x_wconf 73'>lumen</span>
<span class='ocrx_word' id='word_1_114' title='bbox 4394 3628 4998 3768; x_wconf 85'>eorum,</span>
<span class='ocrx_word' id='word_1_115' title='bbox 5083 3596 5233 3723; x_wconf 91'>&</span>
<span class='ocrx_word' id='word_1_116' title='bbox 5334 3580 6046 3771; x_wconf 90'>relinquat</span>
<span class='ocrx_word' id='word_1_117' title='bbox 6138 3625 6367 3730; x_wconf 87'>eos</span>
<span class='ocrx_word' id='word_1_118' title='bbox 6465 3583 6637 3727; x_wconf 66'>in</span>
<span class='ocrx_word' id='word_1_119' title='bbox 6725 3558 7434 3736; x_wconf 75'>tenebris:</span>
<span class='ocrx_word' id='word_1_120' title='bbox 7561 3596 7863 3698; x_wconf 92'>non</span>
</span>
<span class='ocr_line' id='line_1_13' title="bbox 1877 3767 7879 3978; textangle 180; x_size 185; x_descenders 26; x_ascenders 67">
<span class='ocrx_word' id='word_1_121' title='bbox 1877 3777 2771 3974; x_wconf 89'>videbunt.</span>
<span class='ocrx_word' id='word_1_122' title='bbox 2878 3800 3104 3965; x_wconf 88'>18.</span>
<span class='ocrx_word' id='word_1_123' title='bbox 3202 3783 3733 3978; x_wconf 89'>Surdi,</span>
<span class='ocrx_word' id='word_1_124' title='bbox 3866 3799 4356 3978; x_wconf 71'>muti,</span>
<span class='ocrx_word' id='word_1_125' title='bbox 4492 3790 4820 3958; x_wconf 89'>cæci</span>
<span class='ocrx_word' id='word_1_126' title='bbox 4905 3771 5217 3968; x_wconf 75'>ſunt</span>
<span class='ocrx_word' id='word_1_127' title='bbox 5286 3841 5334 3924; x_wconf 75'>:</span>
<span class='ocrx_word' id='word_1_128' title='bbox 5490 3774 5811 3955; x_wconf 75'>ideò</span>
<span class='ocrx_word' id='word_1_129' title='bbox 5916 3767 6179 3968; x_wconf 83'>ipſi</span>
<span class='ocrx_word' id='word_1_130' title='bbox 6277 3834 6586 3952; x_wconf 91'>non</span>
<span class='ocrx_word' id='word_1_131' title='bbox 6732 3802 7879 3978; x_wconf 81'>convertentur.</span>
</span>
<span class='ocr_line' id='line_1_14' title="bbox 1900 3948 7867 4185; textangle 180; x_size 157; x_descenders 41; x_ascenders 32">
<span class='ocrx_word' id='word_1_132' title='bbox 1900 4003 2126 4178; x_wconf 71'>19.</span>
<span class='ocrx_word' id='word_1_133' title='bbox 2230 3983 2510 4146; x_wconf 85'>Vel</span>
<span class='ocrx_word' id='word_1_134' title='bbox 2544 3976 2893 4185; x_wconf 92'>ſunt</span>
<span class='ocrx_word' id='word_1_135' title='bbox 2996 3971 3358 4155; x_wconf 78'>ſicut</span>
<span class='ocrx_word' id='word_1_136' title='bbox 3425 3980 3651 4133; x_wconf 15'>iĩlli</span>
<span class='ocrx_word' id='word_1_137' title='bbox 3685 3996 3762 4181; x_wconf 18'>-</span>
<span class='ocrx_word' id='word_1_138' title='bbox 3914 3983 4334 4174; x_wconf 90'>quibus</span>
<span class='ocrx_word' id='word_1_139' title='bbox 4409 3999 5178 4178; x_wconf 74'>ſupervenit</span>
<span class='ocrx_word' id='word_1_140' title='bbox 5280 3976 6019 4174; x_wconf 87'>tempeſtas</span>
<span class='ocrx_word' id='word_1_141' title='bbox 6131 3971 6211 4130; x_wconf 0'>è</span>
<span class='ocrx_word' id='word_1_142' title='bbox 6309 3971 6739 4146; x_wconf 26'>Cælo</span>
<span class='ocrx_word' id='word_1_143' title='bbox 6802 4091 6853 4177; x_wconf 77'>,</span>
<span class='ocrx_word' id='word_1_144' title='bbox 6980 3983 7193 4127; x_wconf 47'>in</span>
<span class='ocrx_word' id='word_1_145' title='bbox 7231 4022 7529 4159; x_wconf 91'>qua</span>
<span class='ocrx_word' id='word_1_146' title='bbox 7537 3948 7867 4168; x_wconf 9'>ſim</span>
</span>
<span class='ocr_line' id='line_1_15' title="bbox 1874 4142 7892 4384; textangle 180; x_size 193; x_descenders 24; x_ascenders 75">
<span class='ocrx_word' id='word_1_147' title='bbox 1874 4180 2574 4375; x_wconf 76'>tenebræ,</span>
<span class='ocrx_word' id='word_1_148' title='bbox 2681 4190 2834 4349; x_wconf 87'>&</span>
<span class='ocrx_word' id='word_1_149' title='bbox 2932 4196 3555 4375; x_wconf 90'>tonitru,</span>
<span class='ocrx_word' id='word_1_150' title='bbox 3676 4177 3825 4359; x_wconf 88'>&</span>
<span class='ocrx_word' id='word_1_151' title='bbox 3920 4181 4483 4384; x_wconf 86'>fulgur.</span>
<span class='ocrx_word' id='word_1_152' title='bbox 4587 4187 5147 4362; x_wconf 91'>Ponent</span>
<span class='ocrx_word' id='word_1_153' title='bbox 5188 4180 5716 4371; x_wconf 91'>digitos</span>
<span class='ocrx_word' id='word_1_154' title='bbox 5814 4165 6129 4377; x_wconf 91'>ſuos</span>
<span class='ocrx_word' id='word_1_155' title='bbox 6166 4177 6351 4371; x_wconf 86'>in</span>
<span class='ocrx_word' id='word_1_156' title='bbox 6424 4171 7002 4349; x_wconf 88'>auribus</span>
<span class='ocrx_word' id='word_1_157' title='bbox 7081 4161 7368 4337; x_wconf 89'>ſuis</span>
<span class='ocrx_word' id='word_1_158' title='bbox 7399 4152 7590 4321; x_wconf 88'>ad</span>
<span class='ocrx_word' id='word_1_159' title='bbox 7628 4142 7892 4346; x_wconf 91'>ful-</span>
</span>
<span class='ocr_line' id='line_1_16' title="bbox 1874 4355 7895 4572; textangle 180; x_size 181; x_descenders 25; x_ascenders 66">
<span class='ocrx_word' id='word_1_160' title='bbox 1874 4400 2358 4543; x_wconf 91'>mina</span>
<span class='ocrx_word' id='word_1_161' title='bbox 2357 4384 3187 4572; x_wconf 78'>ſtrepentia</span>
<span class='ocrx_word' id='word_1_162' title='bbox 3336 4377 3473 4533; x_wconf 87'>ob</span>
<span class='ocrx_word' id='word_1_163' title='bbox 3580 4397 4283 4559; x_wconf 88'>timorem</span>
<span class='ocrx_word' id='word_1_164' title='bbox 4374 4400 4966 4571; x_wconf 89'>mortis:</span>
<span class='ocrx_word' id='word_1_165' title='bbox 5083 4378 5233 4549; x_wconf 91'>&</span>
<span class='ocrx_word' id='word_1_166' title='bbox 5328 4400 5728 4559; x_wconf 92'>Deus</span>
<span class='ocrx_word' id='word_1_167' title='bbox 5826 4377 6735 4546; x_wconf 80'>circumdans</span>
<span class='ocrx_word' id='word_1_168' title='bbox 6776 4351 7018 4576; x_wconf 59'>eſt.</span>
<span class='ocrx_word' id='word_1_169' title='bbox 7027 4351 7645 4576; x_wconf 91'>infideles</span>
<span class='ocrx_word' id='word_1_170' title='bbox 7663 4355 7895 4546; x_wconf 0'>fo-</span>
</span>
<span class='ocr_line' id='line_1_17' title="bbox 1874 4565 7990 4797; textangle 180; x_size 203; x_descenders 42; x_ascenders 70">
<span class='ocrx_word' id='word_1_171' title='bbox 1874 4607 2281 4737; x_wconf 84'>tentia</span>
<span class='ocrx_word' id='word_1_172' title='bbox 2332 4581 2618 4778; x_wconf 55'>ſua</span>
<span class='ocrx_word' id='word_1_173' title='bbox 2672 4698 2710 4775; x_wconf 55'>,</span>
<span class='ocrx_word' id='word_1_174' title='bbox 2745 4644 2904 4781; x_wconf 88'>ne</span>
<span class='ocrx_word' id='word_1_175' title='bbox 2990 4593 3431 4775; x_wconf 72'>poſſinr</span>
<span class='ocrx_word' id='word_1_176' title='bbox 3539 4587 4149 4797; x_wconf 88'>eſfugere.</span>
<span class='ocrx_word' id='word_1_177' title='bbox 4270 4654 4502 4788; x_wconf 82'>20.</span>
<span class='ocrx_word' id='word_1_178' title='bbox 4610 4584 5086 4781; x_wconf 52'>Propè</span>
<span class='ocrx_word' id='word_1_179' title='bbox 5175 4587 5652 4778; x_wconf 85'>eſt,</span>
<span class='ocrx_word' id='word_1_180' title='bbox 5470 4561 5670 4801; x_wconf 67'>ur</span>
<span class='ocrx_word' id='word_1_181' title='bbox 5718 4578 6195 4775; x_wconf 92'>fulgur</span>
<span class='ocrx_word' id='word_1_182' title='bbox 6300 4590 6764 4765; x_wconf 88'>rapiat</span>
<span class='ocrx_word' id='word_1_183' title='bbox 6868 4578 6945 4730; x_wconf 75'>b</span>
<span class='ocrx_word' id='word_1_184' title='bbox 7046 4565 7895 4762; x_wconf 80'>obtutuseo-</span>
</span>
<span class='ocr_line' id='line_1_18' title="bbox 1878 4755 7993 4985; textangle 180; x_size 198; x_descenders 41; x_ascenders 66">
<span class='ocrx_word' id='word_1_185' title='bbox 1878 4845 2303 4978; x_wconf 90'>rum:</span>
<span class='ocrx_word' id='word_1_186' title='bbox 2414 4775 3527 4981; x_wconf 75'>quotieſcunque</span>
<span class='ocrx_word' id='word_1_187' title='bbox 3606 4784 4251 4985; x_wconf 75'>illuxerit</span>
<span class='ocrx_word' id='word_1_188' title='bbox 4292 4803 4477 4943; x_wconf 91'>eis,</span>
<span class='ocrx_word' id='word_1_189' title='bbox 4524 4781 5585 4985; x_wconf 88'>ambulabunt</span>
<span class='ocrx_word' id='word_1_190' title='bbox 5684 4794 5836 4934; x_wconf 87'>in</span>
<span class='ocrx_word' id='word_1_191' title='bbox 5934 4841 6179 4931; x_wconf 91'>eo:</span>
<span class='ocrx_word' id='word_1_192' title='bbox 6220 4765 6567 4934; x_wconf 26'>cum</span>
<span class='ocrx_word' id='word_1_193' title='bbox 6668 4822 7155 4943; x_wconf 89'>autem</span>
<span class='ocrx_word' id='word_1_194' title='bbox 7253 4755 7908 4927; x_wconf 82'>tenebras</span>
</span>
<span class='ocr_line' id='line_1_19' title="bbox 1887 4968 7914 5188; textangle 180; x_size 187; x_descenders 28; x_ascenders 70">
<span class='ocrx_word' id='word_1_195' title='bbox 1887 4981 2574 5147; x_wconf 92'>offuderit</span>
<span class='ocrx_word' id='word_1_196' title='bbox 2624 4978 3085 5178; x_wconf 92'>ſuper</span>
<span class='ocrx_word' id='word_1_197' title='bbox 3148 5042 3415 5140; x_wconf 92'>eos,</span>
<span class='ocrx_word' id='word_1_198' title='bbox 3460 4991 4209 5175; x_wconf 88'>ſtabunt.</span>
<span class='ocrx_word' id='word_1_199' title='bbox 4301 4981 4759 5188; x_wconf 78'>Quòd</span>
<span class='ocrx_word' id='word_1_200' title='bbox 4858 4981 4975 5149; x_wconf 92'>ſi</span>
<span class='ocrx_word' id='word_1_201' title='bbox 5080 4987 5496 5150; x_wconf 48'>vellet</span>
<span class='ocrx_word' id='word_1_202' title='bbox 5595 4981 6075 5169; x_wconf 91'>Deus,</span>
<span class='ocrx_word' id='word_1_203' title='bbox 6119 4975 6643 5169; x_wconf 84'>procul</span>
<span class='ocrx_word' id='word_1_204' title='bbox 6741 4968 7202 5131; x_wconf 90'>dubio</span>
<span class='ocrx_word' id='word_1_205' title='bbox 7285 4968 7914 5185; x_wconf 87'>auferret</span>
</span>
<span class='ocr_line' id='line_1_20' title="bbox 1893 5175 7920 5388; textangle 180; x_size 178; x_descenders 41; x_ascenders 45">
<span class='ocrx_word' id='word_1_206' title='bbox 1893 5191 2579 5372; x_wconf 87'>auditum</span>
<span class='ocrx_word' id='word_1_207' title='bbox 2608 5245 3225 5388; x_wconf 80'>eorum,</span>
<span class='ocrx_word' id='word_1_208' title='bbox 3313 5216 3475 5388; x_wconf 87'>&</span>
<span class='ocrx_word' id='word_1_209' title='bbox 3511 5184 4140 5385; x_wconf 89'>aſpectus</span>
<span class='ocrx_word' id='word_1_210' title='bbox 4178 5251 4775 5375; x_wconf 84'>eorum:</span>
<span class='ocrx_word' id='word_1_211' title='bbox 4876 5238 5226 5356; x_wconf 87'>nam</span>
<span class='ocrx_word' id='word_1_212' title='bbox 5267 5203 5658 5344; x_wconf 91'>Deus</span>
<span class='ocrx_word' id='word_1_213' title='bbox 5696 5181 6100 5375; x_wconf 91'>ſuper</span>
<span class='ocrx_word' id='word_1_214' title='bbox 6138 5232 6739 5347; x_wconf 86'>omnem</span>
<span class='ocrx_word' id='word_1_215' title='bbox 6773 5226 7085 5350; x_wconf 90'>rem</span>
<span class='ocrx_word' id='word_1_216' title='bbox 7113 5175 7310 5331; x_wconf 88'>eſt</span>
<span class='ocrx_word' id='word_1_217' title='bbox 7336 5219 7850 5363; x_wconf 92'>potens.</span>
</span>
<span class='ocr_line' id='line_1_21' title="bbox 1910 5356 7927 5588; textangle 180; x_size 194; x_descenders 54; x_ascenders 45">
<span class='ocrx_word' id='word_1_218' title='bbox 1910 5464 2151 5553; x_wconf 90'>21.</span>
<span class='ocrx_word' id='word_1_219' title='bbox 2249 5407 2389 5547; x_wconf 89'>O</span>
<span class='ocrx_word' id='word_1_220' title='bbox 2465 5388 3130 5563; x_wconf 89'>homines</span>
<span class='ocrx_word' id='word_1_221' title='bbox 3205 5378 3698 5582; x_wconf 62'>ſervite</span>
<span class='ocrx_word' id='word_1_222' title='bbox 3777 5413 4448 5556; x_wconf 90'>Domino</span>
<span class='ocrx_word' id='word_1_223' title='bbox 4533 5394 4991 5560; x_wconf 64'>veſtro,.</span>
<span class='ocrx_word' id='word_1_224' title='bbox 5042 5404 5426 5588; x_wconf 91'>qui</span>
<span class='ocrx_word' id='word_1_225' title='bbox 5499 5397 6033 5541; x_wconf 91'>creavit</span>
<span class='ocrx_word' id='word_1_226' title='bbox 6109 5352 6462 5603; x_wconf 92'>vos,</span>
<span class='ocrx_word' id='word_1_227' title='bbox 6497 5404 6634 5531; x_wconf 92'>&</span>
<span class='ocrx_word' id='word_1_228' title='bbox 6725 5445 6958 5534; x_wconf 84'>eos,</span>
<span class='ocrx_word' id='word_1_229' title='bbox 6996 5385 7361 5579; x_wconf 84'>qui</span>
<span class='ocrx_word' id='word_1_230' title='bbox 7380 5356 7927 5569; x_wconf 82'>fuerunt</span>
</span>
<span class='ocr_line' id='line_1_22' title="bbox 1912 5575 7943 5792; textangle 180; x_size 178; x_descenders 36; x_ascenders 51">
<span class='ocrx_word' id='word_1_231' title='bbox 1912 5610 2246 5773; x_wconf 91'>ante</span>
<span class='ocrx_word' id='word_1_232' title='bbox 2348 5655 2694 5792; x_wconf 89'>vos;</span>
<span class='ocrx_word' id='word_1_233' title='bbox 2796 5642 2980 5769; x_wconf 88'>ut</span>
<span class='ocrx_word' id='word_1_234' title='bbox 3028 5594 3339 5763; x_wconf 90'>vos</span>
<span class='ocrx_word' id='word_1_235' title='bbox 3440 5610 4038 5779; x_wconf 88'>timeatis</span>
<span class='ocrx_word' id='word_1_236' title='bbox 4133 5648 4492 5760; x_wconf 84'>eum:</span>
<span class='ocrx_word' id='word_1_237' title='bbox 4543 5670 4772 5772; x_wconf 90'>22.</span>
<span class='ocrx_word' id='word_1_238' title='bbox 4876 5604 5182 5785; x_wconf 92'>Qui</span>
<span class='ocrx_word' id='word_1_239' title='bbox 5286 5581 5766 5788; x_wconf 88'>poſuit</span>
<span class='ocrx_word' id='word_1_240' title='bbox 5859 5575 6275 5747; x_wconf 91'>vobis</span>
<span class='ocrx_word' id='word_1_241' title='bbox 6376 5613 6916 5753; x_wconf 90'>terram</span>
<span class='ocrx_word' id='word_1_242' title='bbox 6980 5601 7155 5769; x_wconf 81'>in</span>
<span class='ocrx_word' id='word_1_243' title='bbox 7250 5578 7943 5753; x_wconf 8'>ſtratum;</span>
</span>
<span class='ocr_line' id='line_1_23' title="bbox 1928 5763 7955 5998; textangle 180; x_size 171; x_descenders 44; x_ascenders 46">
<span class='ocrx_word' id='word_1_244' title='bbox 1928 5820 2081 5969; x_wconf 84'>&</span>
<span class='ocrx_word' id='word_1_245' title='bbox 2179 5794 2726 5992; x_wconf 82'>Celum</span>
<span class='ocrx_word' id='word_1_246' title='bbox 2827 5820 2958 5954; x_wconf 91'>in</span>
<span class='ocrx_word' id='word_1_247' title='bbox 3066 5788 3854 5989; x_wconf 32'>ędificium</span>
<span class='ocrx_word' id='word_1_248' title='bbox 3942 5792 4349 5998; x_wconf 0'>(ideſt</span>
<span class='ocrx_word' id='word_1_249' title='bbox 4445 5791 4934 5992; x_wconf 90'>terram</span>
<span class='ocrx_word' id='word_1_250' title='bbox 5007 5855 5255 5989; x_wconf 79'>pro</span>
<span class='ocrx_word' id='word_1_251' title='bbox 5299 5810 6176 5998; x_wconf 82'>pavimento,</span>
<span class='ocrx_word' id='word_1_252' title='bbox 6272 5810 6469 5941; x_wconf 90'>&</span>
<span class='ocrx_word' id='word_1_253' title='bbox 6586 5769 7040 5963; x_wconf 90'>Celum</span>
<span class='ocrx_word' id='word_1_254' title='bbox 7107 5833 7345 5966; x_wconf 90'>pro</span>
<span class='ocrx_word' id='word_1_255' title='bbox 7456 5763 7955 5944; x_wconf 35'>tecto)</span>
</span>
<span class='ocr_line' id='line_1_24' title="bbox 1916 5956 7952 6198; textangle 180; x_size 183; x_descenders 43; x_ascenders 49">
<span class='ocrx_word' id='word_1_256' title='bbox 1916 6020 2072 6170; x_wconf 92'>&</span>
<span class='ocrx_word' id='word_1_257' title='bbox 2154 5988 2726 6170; x_wconf 88'>demiſit</span>
<span class='ocrx_word' id='word_1_258' title='bbox 2792 5995 2872 6151; x_wconf 61'>è</span>
<span class='ocrx_word' id='word_1_259' title='bbox 2958 6001 3342 6192; x_wconf 92'>Celo</span>
<span class='ocrx_word' id='word_1_260' title='bbox 3396 6064 4019 6198; x_wconf 88'>aquam,</span>
<span class='ocrx_word' id='word_1_261' title='bbox 4104 6023 4247 6176; x_wconf 90'>&</span>
<span class='ocrx_word' id='word_1_262' title='bbox 4334 5988 5020 6195; x_wconf 89'>produxit</span>
<span class='ocrx_word' id='word_1_263' title='bbox 5083 6058 5328 6186; x_wconf 90'>per</span>
<span class='ocrx_word' id='word_1_264' title='bbox 5407 6055 5744 6151; x_wconf 88'>eam</span>
<span class='ocrx_word' id='word_1_265' title='bbox 5820 6058 5995 6151; x_wconf 91'>ex</span>
<span class='ocrx_word' id='word_1_266' title='bbox 6065 5979 6761 6147; x_wconf 86'>fructibus</span>
<span class='ocrx_word' id='word_1_267' title='bbox 6837 5998 7323 6128; x_wconf 90'>varias</span>
<span class='ocrx_word' id='word_1_268' title='bbox 7374 5956 7854 6160; x_wconf 51'>ſpecies</span>
<span class='ocrx_word' id='word_1_269' title='bbox 7846 5952 7918 6164; x_wconf 51'>,</span>
</span>
<span class='ocr_line' id='line_1_25' title="bbox 1919 6172 7952 6405; textangle 180; x_size 203; x_descenders 49; x_ascenders 63">
<span class='ocrx_word' id='word_1_270' title='bbox 1919 6195 2796 6360; x_wconf 89'>alimentum</span>
<span class='ocrx_word' id='word_1_271' title='bbox 2897 6195 3406 6360; x_wconf 90'>vobis.</span>
<span class='ocrx_word' id='word_1_272' title='bbox 3495 6220 3752 6363; x_wconf 90'>Ne</span>
<span class='ocrx_word' id='word_1_273' title='bbox 3850 6204 4194 6402; x_wconf 89'>ergo</span>
<span class='ocrx_word' id='word_1_274' title='bbox 4298 6217 4861 6398; x_wconf 91'>ponatis</span>
<span class='ocrx_word' id='word_1_275' title='bbox 4956 6211 5287 6351; x_wconf 91'>Deo</span>
<span class='ocrx_word' id='word_1_276' title='bbox 5385 6191 6383 6354; x_wconf 87'>ſimilitudines</span>
<span class='ocrx_word' id='word_1_277' title='bbox 6487 6176 6900 6376; x_wconf 15'>(ideſt</span>
<span class='ocrx_word' id='word_1_278' title='bbox 7002 6172 7314 6332; x_wconf 92'>alios</span>
<span class='ocrx_word' id='word_1_279' title='bbox 7415 6172 7952 6405; x_wconf 76'>Deos:)</span>
</span>
<span class='ocr_line' id='line_1_26' title="bbox 1931 6369 7978 6595; textangle 180; x_size 214; x_descenders 53; x_ascenders 68">
<span class='ocrx_word' id='word_1_280' title='bbox 1931 6417 2091 6567; x_wconf 90'>&</span>
<span class='ocrx_word' id='word_1_281' title='bbox 2189 6462 2459 6573; x_wconf 90'>vos</span>
<span class='ocrx_word' id='word_1_282' title='bbox 2557 6392 3066 6595; x_wconf 89'>ſcitis,</span>
<span class='ocrx_word' id='word_1_283' title='bbox 3203 6468 3612 6576; x_wconf 0'>unum</span>
<span class='ocrx_word' id='word_1_284' title='bbox 3654 6459 4187 6576; x_wconf 87'>tantum</span>
<span class='ocrx_word' id='word_1_285' title='bbox 4292 6395 4502 6595; x_wconf 86'>eſſe</span>
<span class='ocrx_word' id='word_1_286' title='bbox 4610 6430 5147 6576; x_wconf 43'>Deum.</span>
<span class='ocrx_word' id='word_1_287' title='bbox 5302 6474 5515 6595; x_wconf 0'>233</span>
<span class='ocrx_word' id='word_1_288' title='bbox 5620 6385 6065 6595; x_wconf 66'>Quòd</span>
<span class='ocrx_word' id='word_1_289' title='bbox 6157 6388 6281 6548; x_wconf 81'>ſi</span>
<span class='ocrx_word' id='word_1_290' title='bbox 6386 6395 6697 6547; x_wconf 81'>eſtis</span>
<span class='ocrx_word' id='word_1_291' title='bbox 6808 6392 6977 6535; x_wconf 88'>in</span>
<span class='ocrx_word' id='word_1_292' title='bbox 7062 6369 7978 6538; x_wconf 92'>dubitatione</span>
</span>
<span class='ocr_line' id='line_1_27' title="bbox 1919 6579 7974 6799; textangle 180; x_size 195; x_descenders 42; x_ascenders 62">
<span class='ocrx_word' id='word_1_293' title='bbox 1919 6595 2113 6754; x_wconf 89'>de</span>
<span class='ocrx_word' id='word_1_294' title='bbox 2217 6656 2542 6799; x_wconf 84'>eo,</span>
<span class='ocrx_word' id='word_1_295' title='bbox 2662 6601 3076 6792; x_wconf 87'>quod</span>
<span class='ocrx_word' id='word_1_296' title='bbox 3177 6598 4019 6779; x_wconf 85'>demiſimus</span>
<span class='ocrx_word' id='word_1_297' title='bbox 4120 6598 4572 6799; x_wconf 92'>ſuper</span>
<span class='ocrx_word' id='word_1_298' title='bbox 4638 6599 5220 6770; x_wconf 91'>ſervum</span>
<span class='ocrx_word' id='word_1_299' title='bbox 5315 6608 5979 6757; x_wconf 90'>noſtrum</span>
<span class='ocrx_word' id='word_1_300' title='bbox 6084 6585 6475 6789; x_wconf 41'>(ideſt</span>
<span class='ocrx_word' id='word_1_301' title='bbox 6586 6579 6729 6745; x_wconf 90'>de</span>
<span class='ocrx_word' id='word_1_302' title='bbox 6808 6579 7523 6770; x_wconf 86'>Alcorano,</span>
<span class='ocrx_word' id='word_1_303' title='bbox 7625 6627 7974 6757; x_wconf 84'>quem</span>
</span>
<span class='ocr_line' id='line_1_28' title="bbox 1912 6757 7984 6999; textangle 180; x_size 194; x_descenders 42; x_ascenders 65">
<span class='ocrx_word' id='word_1_304' title='bbox 1912 6786 2500 6999; x_wconf 89'>dedimus</span>
<span class='ocrx_word' id='word_1_305' title='bbox 2605 6798 3498 6970; x_wconf 52'>Mahumero)</span>
<span class='ocrx_word' id='word_1_306' title='bbox 3599 6805 4083 6963; x_wconf 65'>afferte</span>
<span class='ocrx_word' id='word_1_307' title='bbox 4184 6795 4645 6999; x_wconf 53'>porrò</span>
<span class='ocrx_word' id='word_1_308' title='bbox 4737 6872 5112 6967; x_wconf 89'>unam</span>
<span class='ocrx_word' id='word_1_309' title='bbox 5220 6827 5731 6961; x_wconf 88'>Suram</span>
<span class='ocrx_word' id='word_1_310' title='bbox 5830 6862 5998 6948; x_wconf 90'>ex</span>
<span class='ocrx_word' id='word_1_311' title='bbox 6100 6786 7053 6954; x_wconf 88'>ſimilitudine</span>
<span class='ocrx_word' id='word_1_312' title='bbox 7158 6805 7434 6970; x_wconf 89'>ejus</span>
<span class='ocrx_word' id='word_1_313' title='bbox 7539 6757 7984 6961; x_wconf 43'>(ideſt</span>
</span>
<span class='ocr_line' id='line_1_29' title="bbox 1919 6976 7968 7205; textangle 180; x_size 186; x_descenders 47; x_ascenders 55">
<span class='ocrx_word' id='word_1_314' title='bbox 1919 6996 2491 7205; x_wconf 91'>ſimilem</span>
<span class='ocrx_word' id='word_1_315' title='bbox 2570 7008 2971 7164; x_wconf 90'>Suris</span>
<span class='ocrx_word' id='word_1_316' title='bbox 3081 7002 3717 7177; x_wconf 58'>illius:))</span>
<span class='ocrx_word' id='word_1_317' title='bbox 3869 7033 4015 7161; x_wconf 91'>&</span>
<span class='ocrx_word' id='word_1_318' title='bbox 4117 7008 4816 7170; x_wconf 86'>advocate</span>
<span class='ocrx_word' id='word_1_319' title='bbox 4915 7014 5306 7167; x_wconf 86'>teſtes</span>
<span class='ocrx_word' id='word_1_320' title='bbox 5413 7008 5938 7170; x_wconf 88'>veſtros</span>
<span class='ocrx_word' id='word_1_321' title='bbox 6081 6983 6513 7186; x_wconf 10'>(idesi</span>
<span class='ocrx_word' id='word_1_322' title='bbox 6627 7008 6948 7151; x_wconf 90'>Deos</span>
<span class='ocrx_word' id='word_1_323' title='bbox 7056 6976 7698 7170; x_wconf 87'>veſtros,</span>
<span class='ocrx_word' id='word_1_324' title='bbox 7818 7014 7968 7205; x_wconf 87'>ut</span>
</span>
<span class='ocr_line' id='line_1_30' title="bbox 1950 7157 7974 7405; textangle 180; x_size 196; x_descenders 53; x_ascenders 52">
<span class='ocrx_word' id='word_1_325' title='bbox 1950 7195 2608 7393; x_wconf 91'>adjuvent</span>
<span class='ocrx_word' id='word_1_326' title='bbox 2754 7259 3009 7370; x_wconf 84'>vos</span>
<span class='ocrx_word' id='word_1_327' title='bbox 3155 7192 3339 7361; x_wconf 90'>ad</span>
<span class='ocrx_word' id='word_1_328' title='bbox 3431 7192 3768 7377; x_wconf 87'>hoc)</span>
<span class='ocrx_word' id='word_1_329' title='bbox 3914 7262 4400 7399; x_wconf 21'>prææer</span>
<span class='ocrx_word' id='word_1_330' title='bbox 4565 7227 5188 7405; x_wconf 87'>Deum,</span>
<span class='ocrx_word' id='word_1_331' title='bbox 5325 7199 5446 7371; x_wconf 56'>ſi</span>
<span class='ocrx_word' id='word_1_332' title='bbox 5588 7205 5893 7355; x_wconf 86'>eſtis</span>
<span class='ocrx_word' id='word_1_333' title='bbox 6046 7256 6723 7351; x_wconf 90'>veraces.</span>
<span class='ocrx_word' id='word_1_334' title='bbox 6878 7253 7107 7371; x_wconf 82'>24.</span>
<span class='ocrx_word' id='word_1_335' title='bbox 7253 7173 7749 7393; x_wconf 91'>Quod</span>
<span class='ocrx_word' id='word_1_336' title='bbox 7853 7157 7974 7313; x_wconf 90'>ſi</span>
</span>
<span class='ocr_line' id='line_1_31' title="bbox 1957 7376 8012 7602; textangle 180; x_size 198; x_descenders 46; x_ascenders 63">
<span class='ocrx_word' id='word_1_337' title='bbox 1957 7402 2653 7580; x_wconf 89'>nondum</span>
<span class='ocrx_word' id='word_1_338' title='bbox 2700 7383 3269 7574; x_wconf 90'>feciſtis</span>
<span class='ocrx_word' id='word_1_339' title='bbox 3377 7411 3746 7602; x_wconf 80'>hoc,</span>
<span class='ocrx_word' id='word_1_340' title='bbox 3879 7469 4140 7564; x_wconf 91'>nec</span>
<span class='ocrx_word' id='word_1_341' title='bbox 4241 7443 4934 7602; x_wconf 66'>unquam</span>
<span class='ocrx_word' id='word_1_342' title='bbox 5038 7396 5684 7561; x_wconf 50'>ſacietis:</span>
<span class='ocrx_word' id='word_1_343' title='bbox 5842 7411 6326 7564; x_wconf 88'>timete</span>
<span class='ocrx_word' id='word_1_344' title='bbox 6427 7376 6862 7583; x_wconf 58'>porrò</span>
<span class='ocrx_word' id='word_1_345' title='bbox 6967 7392 7606 7574; x_wconf 84'>ignem,</span>
<span class='ocrx_word' id='word_1_346' title='bbox 7739 7427 8012 7583; x_wconf 84'>cu-</span>
</span>
<span class='ocr_line' id='line_1_32' title="bbox 1947 7586 8003 7799; textangle 180; x_size 200; x_descenders 45; x_ascenders 64">
<span class='ocrx_word' id='word_1_347' title='bbox 1947 7637 2189 7793; x_wconf 89'>jus</span>
<span class='ocrx_word' id='word_1_348' title='bbox 2297 7615 2910 7768; x_wconf 88'>materia</span>
<span class='ocrx_word' id='word_1_349' title='bbox 3050 7599 3244 7774; x_wconf 88'>ad</span>
<span class='ocrx_word' id='word_1_350' title='bbox 3348 7608 4521 7774; x_wconf 82'>comburendum</span>
<span class='ocrx_word' id='word_1_351' title='bbox 4625 7605 4937 7799; x_wconf 44'>ſunt</span>
<span class='ocrx_word' id='word_1_352' title='bbox 5073 7608 5900 7790; x_wconf 84'>homines,</span>
<span class='ocrx_word' id='word_1_353' title='bbox 6039 7618 6179 7745; x_wconf 89'>&</span>
<span class='ocrx_word' id='word_1_354' title='bbox 6329 7586 6999 7784; x_wconf 81'>lapides:</span>
<span class='ocrx_word' id='word_1_355' title='bbox 7151 7618 8003 7768; x_wconf 90'>præperatus</span>
</span>
<span class='ocr_line' id='line_1_33' title="bbox 1909 7764 8003 8015; textangle 180; x_size 196; x_descenders 43; x_ascenders 62">
<span class='ocrx_word' id='word_1_356' title='bbox 1909 7796 2269 7980; x_wconf 91'>fuit</span>
<span class='ocrx_word' id='word_1_357' title='bbox 2367 7796 3320 8002; x_wconf 85'>Infidelibus.</span>
<span class='ocrx_word' id='word_1_358' title='bbox 3476 7888 3705 8015; x_wconf 86'>25.</span>
<span class='ocrx_word' id='word_1_359' title='bbox 3841 7834 4029 7971; x_wconf 90'>Et</span>
<span class='ocrx_word' id='word_1_360' title='bbox 4130 7821 4823 7977; x_wconf 81'>annuntia</span>
<span class='ocrx_word' id='word_1_361' title='bbox 4978 7809 5347 7983; x_wconf 81'>illis,</span>
<span class='ocrx_word' id='word_1_362' title='bbox 5442 7815 5751 7993; x_wconf 91'>qui</span>
<span class='ocrx_word' id='word_1_363' title='bbox 5855 7793 6910 7977; x_wconf 74'>crediderunt,</span>
<span class='ocrx_word' id='word_1_364' title='bbox 7075 7802 7218 7948; x_wconf 91'>&</span>
<span class='ocrx_word' id='word_1_365' title='bbox 7351 7764 7650 7927; x_wconf 74'>fece</span>
<span class='ocrx_word' id='word_1_366' title='bbox 7673 7818 8003 8003; x_wconf 79'>runt</span>
</span>
<span class='ocr_line' id='line_1_34' title="bbox 1966 7958 8012 8209; textangle 180; x_size 180; x_descenders 23; x_ascenders 66">
<span class='ocrx_word' id='word_1_367' title='bbox 1966 8018 2529 8190; x_wconf 63'>recta;</span>
<span class='ocrx_word' id='word_1_368' title='bbox 2659 7999 3069 8197; x_wconf 63'>quòd</span>
<span class='ocrx_word' id='word_1_369' title='bbox 3174 8069 3533 8177; x_wconf 81'>erunt</span>
<span class='ocrx_word' id='word_1_370' title='bbox 3637 8009 3975 8209; x_wconf 81'>ipſis</span>
<span class='ocrx_word' id='word_1_371' title='bbox 4064 8009 4607 8203; x_wconf 76'>horti,</span>
<span class='ocrx_word' id='word_1_372' title='bbox 4743 8066 5331 8177; x_wconf 90'>currunt</span>
<span class='ocrx_word' id='word_1_373' title='bbox 5439 8006 5614 8168; x_wconf 91'>de</span>
<span class='ocrx_word' id='word_1_374' title='bbox 5715 7993 5982 8165; x_wconf 91'>ſub</span>
<span class='ocrx_word' id='word_1_375' title='bbox 6081 8006 6329 8158; x_wconf 74'>eis</span>
<span class='ocrx_word' id='word_1_376' title='bbox 6417 7986 7152 8155; x_wconf 63'>flumina.</span>
<span class='ocrx_word' id='word_1_377' title='bbox 7339 7958 8012 8174; x_wconf 86'>Quotieſ-</span>
</span>
<span class='ocr_line' id='line_1_35' title="bbox 1944 8180 8012 8416; textangle 180; x_size 207; x_descenders 51; x_ascenders 68">
<span class='ocrx_word' id='word_1_378' title='bbox 1944 8206 2583 8413; x_wconf 89'>cunque</span>
<span class='ocrx_word' id='word_1_379' title='bbox 2688 8215 3212 8381; x_wconf 85'>nurriti</span>
<span class='ocrx_word' id='word_1_380' title='bbox 3355 8216 3882 8374; x_wconf 84'>ſuerint</span>
<span class='ocrx_word' id='word_1_381' title='bbox 3987 8215 4162 8371; x_wconf 82'>de</span>
<span class='ocrx_word' id='word_1_382' title='bbox 4295 8212 4562 8374; x_wconf 79'>illis</span>
<span class='ocrx_word' id='word_1_383' title='bbox 4664 8209 5058 8365; x_wconf 86'>horris</span>
<span class='ocrx_word' id='word_1_384' title='bbox 5159 8279 5334 8380; x_wconf 88'>ex</span>
<span class='ocrx_word' id='word_1_385' title='bbox 5477 8203 5967 8394; x_wconf 84'>aliquo</span>
<span class='ocrx_word' id='word_1_386' title='bbox 6112 8187 6608 8359; x_wconf 71'>fructu</span>
<span class='ocrx_word' id='word_1_387' title='bbox 6748 8209 6878 8346; x_wconf 76'>in</span>
<span class='ocrx_word' id='word_1_388' title='bbox 7027 8180 8012 8416; x_wconf 67'>alimentum,</span>
</span>
<span class='ocr_line' id='line_1_36' title="bbox 1982 8374 8012 8616; textangle 180; x_size 211; x_descenders 51; x_ascenders 67">
<span class='ocrx_word' id='word_1_389' title='bbox 1982 8409 2656 8574; x_wconf 57'>dicent:</span>
<span class='ocrx_word' id='word_1_390' title='bbox 2840 8422 3139 8584; x_wconf 0'>Hic</span>
<span class='ocrx_word' id='word_1_391' title='bbox 3282 8422 3460 8616; x_wconf 52'>eſt</span>
<span class='ocrx_word' id='word_1_392' title='bbox 3583 8415 3994 8613; x_wconf 23'>ill],</span>
<span class='ocrx_word' id='word_1_393' title='bbox 4168 8476 4467 8606; x_wconf 89'>quo</span>
<span class='ocrx_word' id='word_1_394' title='bbox 4613 8425 5160 8590; x_wconf 79'>nutriti</span>
<span class='ocrx_word' id='word_1_395' title='bbox 5303 8403 5805 8575; x_wconf 86'>ſumus</span>
<span class='ocrx_word' id='word_1_396' title='bbox 5896 8384 6545 8577; x_wconf 55'>ante?.</span>
<span class='ocrx_word' id='word_1_397' title='bbox 6716 8384 6970 8549; x_wconf 87'>Sed</span>
<span class='ocrx_word' id='word_1_398' title='bbox 7069 8374 7688 8559; x_wconf 89'>dabitur</span>
<span class='ocrx_word' id='word_1_399' title='bbox 7834 8431 8012 8530; x_wconf 67'>cis</span>
</span>
<span class='ocr_line' id='line_1_37' title="bbox 1985 8568 8012 8816; textangle 180; x_size 145; x_descenders 18; x_ascenders 55">
<span class='ocrx_word' id='word_1_400' title='bbox 1985 8603 2291 8774; x_wconf 86'>hoc</span>
<span class='ocrx_word' id='word_1_401' title='bbox 2411 8619 2777 8778; x_wconf 78'>inter</span>
<span class='ocrx_word' id='word_1_402' title='bbox 2929 8612 3066 8765; x_wconf 88'>ſe</span>
<span class='ocrx_word' id='word_1_403' title='bbox 3189 8616 4114 8787; x_wconf 60'>aſſmilatum</span>
<span class='ocrx_word' id='word_1_404' title='bbox 4254 8631 4299 8793; x_wconf 40'>(</span>
<span class='ocrx_word' id='word_1_405' title='bbox 4371 8606 4721 8810; x_wconf 84'>ideſt</span>
<span class='ocrx_word' id='word_1_406' title='bbox 4861 8676 5151 8775; x_wconf 82'>unus</span>
<span class='ocrx_word' id='word_1_407' title='bbox 5239 8599 5817 8816; x_wconf 90'>fructus</span>
<span class='ocrx_word' id='word_1_408' title='bbox 5885 8589 6405 8804; x_wconf 88'>ſimilis</span>
<span class='ocrx_word' id='word_1_409' title='bbox 6582 8606 6798 8782; x_wconf 70'>erit</span>
<span class='ocrx_word' id='word_1_410' title='bbox 6957 8581 7333 8740; x_wconf 87'>alteri</span>
<span class='ocrx_word' id='word_1_411' title='bbox 7469 8596 7593 8730; x_wconf 87'>in</span>
<span class='ocrx_word' id='word_1_412' title='bbox 7701 8568 8012 8733; x_wconf 92'>colo-</span>
</span>
<span class='ocr_line' id='line_1_38' title="bbox 1976 8793 8012 9019; textangle 180; x_size 185; x_descenders 46; x_ascenders 60">
<span class='ocrx_word' id='word_1_413' title='bbox 1976 8857 2342 8997; x_wconf 45'>re,</span>
<span class='ocrx_word' id='word_1_414' title='bbox 2437 8803 2685 9000; x_wconf 87'>ſed</span>
<span class='ocrx_word' id='word_1_415' title='bbox 2827 8803 3425 8978; x_wconf 88'>diverſus</span>
<span class='ocrx_word' id='word_1_416' title='bbox 3571 8844 3797 9010; x_wconf 85'>in</span>
<span class='ocrx_word' id='word_1_417' title='bbox 3831 8813 4505 9013; x_wconf 74'>ſapore)</span>
<span class='ocrx_word' id='word_1_418' title='bbox 4600 8803 4750 8975; x_wconf 87'>&</span>
<span class='ocrx_word' id='word_1_419' title='bbox 4886 8806 5150 9007; x_wconf 75'>ipſi</span>
<span class='ocrx_word' id='word_1_420' title='bbox 5289 8813 5645 8991; x_wconf 81'>erunt</span>
<span class='ocrx_word' id='word_1_421' title='bbox 5779 8819 5932 8959; x_wconf 83'>in</span>
<span class='ocrx_word' id='word_1_422' title='bbox 6074 8797 6335 8965; x_wconf 83'>illis</span>
<span class='ocrx_word' id='word_1_423' title='bbox 6532 8793 6923 8978; x_wconf 89'>hortis</span>
<span class='ocrx_word' id='word_1_424' title='bbox 7059 8794 7619 8946; x_wconf 87'>Uxores</span>
<span class='ocrx_word' id='word_1_425' title='bbox 7758 8841 8012 9019; x_wconf 86'>pu-</span>
</span>
<span class='ocr_line' id='line_1_39' title="bbox 1976 8987 8012 9220; textangle 180; x_size 208; x_descenders 47; x_ascenders 69">
<span class='ocrx_word' id='word_1_426' title='bbox 1976 9003 2729 9178; x_wconf 72'>rificatæ:</span>
<span class='ocrx_word' id='word_1_427' title='bbox 2913 9041 3060 9185; x_wconf 88'>&</span>
<span class='ocrx_word' id='word_1_428' title='bbox 3234 9016 3562 9213; x_wconf 0'>ipſ</span>
<span class='ocrx_word' id='word_1_429' title='bbox 3685 9032 3841 9175; x_wconf 82'>in</span>
<span class='ocrx_word' id='word_1_430' title='bbox 4015 9013 4276 9178; x_wconf 51'>illis</span>
<span class='ocrx_word' id='word_1_431' title='bbox 4454 9003 5141 9207; x_wconf 27'>perpetud</span>
<span class='ocrx_word' id='word_1_432' title='bbox 5305 9006 6364 9200; x_wconf 78'>commoraturi</span>
<span class='ocrx_word' id='word_1_433' title='bbox 6519 8987 6840 9185; x_wconf 41'>ſunt</span>
<span class='ocrx_word' id='word_1_434' title='bbox 6910 9108 6980 9220; x_wconf 41'>.</span>
<span class='ocrx_word' id='word_1_435' title='bbox 7170 9019 7403 9181; x_wconf 77'>26.</span>
<span class='ocrx_word' id='word_1_436' title='bbox 7567 8990 8012 9140; x_wconf 84'>Porro</span>
</span>
<span class='ocr_line' id='line_1_40' title="bbox 1973 9177 8012 9421; textangle 180; x_size 176; x_descenders 26; x_ascenders 54">
<span class='ocrx_word' id='word_1_437' title='bbox 1973 9216 2415 9375; x_wconf 87'>Deus</span>
<span class='ocrx_word' id='word_1_438' title='bbox 2535 9273 2837 9372; x_wconf 88'>non</span>
<span class='ocrx_word' id='word_1_439' title='bbox 2983 9213 3914 9413; x_wconf 44'>erubeſcet,</span>
<span class='ocrx_word' id='word_1_440' title='bbox 4060 9273 4229 9369; x_wconf 90'>ut</span>
<span class='ocrx_word' id='word_1_441' title='bbox 4374 9267 5096 9410; x_wconf 87'>proponat</span>
<span class='ocrx_word' id='word_1_442' title='bbox 5220 9229 5366 9362; x_wconf 85'>in</span>
<span class='ocrx_word' id='word_1_443' title='bbox 5436 9197 6332 9401; x_wconf 90'>parabolam</span>
<span class='ocrx_word' id='word_1_444' title='bbox 6494 9178 7045 9378; x_wconf 89'>aliquid</span>
<span class='ocrx_word' id='word_1_445' title='bbox 7154 9178 7434 9417; x_wconf 92'>vile</span>
<span class='ocrx_word' id='word_1_446' title='bbox 7472 9299 7516 9372; x_wconf 46'>,</span>
<span class='ocrx_word' id='word_1_447' title='bbox 7653 9177 8012 9421; x_wconf 91'>velut</span>
</span>
<span class='ocr_line' id='line_1_41' title="bbox 2008 9394 8012 9617; textangle 180; x_size 206; x_descenders 43; x_ascenders 69">
<span class='ocrx_word' id='word_1_448' title='bbox 2008 9403 2783 9591; x_wconf 79'>culicem:</span>
<span class='ocrx_word' id='word_1_449' title='bbox 2961 9483 3387 9617; x_wconf 87'>atque</span>
<span class='ocrx_word' id='word_1_450' title='bbox 3533 9435 3975 9591; x_wconf 90'>etiam</span>
<span class='ocrx_word' id='word_1_451' title='bbox 4104 9413 4807 9604; x_wconf 75'>aliquid,</span>
<span class='ocrx_word' id='word_1_452' title='bbox 4959 9403 5309 9601; x_wconf 86'>quod</span>
<span class='ocrx_word' id='word_1_453' title='bbox 5379 9413 5573 9613; x_wconf 86'>ſir</span>
<span class='ocrx_word' id='word_1_454' title='bbox 5709 9397 6164 9598; x_wconf 87'>ſupra</span>
<span class='ocrx_word' id='word_1_455' title='bbox 6249 9394 6643 9563; x_wconf 42'>illam</span>
<span class='ocrx_word' id='word_1_456' title='bbox 6757 9451 6796 9544; x_wconf 42'>:</span>
<span class='ocrx_word' id='word_1_457' title='bbox 6954 9435 7638 9617; x_wconf 82'>etenim,</span>
<span class='ocrx_word' id='word_1_458' title='bbox 7783 9442 8012 9585; x_wconf 58'>qui</span>
</span>
<span class='ocr_line' id='line_1_42' title="bbox 2018 9575 8012 9837; textangle 180; x_size 156; x_descenders 48; x_ascenders 22">
<span class='ocrx_word' id='word_1_459' title='bbox 2018 9610 2818 9791; x_wconf 85'>credunt,</span>
<span class='ocrx_word' id='word_1_460' title='bbox 2986 9613 3406 9788; x_wconf 85'>ſcient</span>
<span class='ocrx_word' id='word_1_461' title='bbox 3507 9743 3555 9820; x_wconf 0'>,</span>
<span class='ocrx_word' id='word_1_462' title='bbox 3723 9609 4080 9837; x_wconf 31'>quoòd</span>
<span class='ocrx_word' id='word_1_463' title='bbox 4260 9610 4526 9776; x_wconf 91'>hoc</span>
<span class='ocrx_word' id='word_1_464' title='bbox 4673 9619 4861 9810; x_wconf 90'>ſit</span>
<span class='ocrx_word' id='word_1_465' title='bbox 5007 9623 5522 9779; x_wconf 92'>veritas</span>
<span class='ocrx_word' id='word_1_466' title='bbox 5607 9600 5757 9785; x_wconf 63'>à</span>
<span class='ocrx_word' id='word_1_467' title='bbox 5884 9610 6567 9779; x_wconf 89'>Domino</span>
<span class='ocrx_word' id='word_1_468' title='bbox 6704 9575 6958 9820; x_wconf 92'>ſuo</span>
<span class='ocrx_word' id='word_1_469' title='bbox 7062 9708 7099 9741; x_wconf 88'>.</span>
<span class='ocrx_word' id='word_1_470' title='bbox 7186 9593 7529 9830; x_wconf 76'>Qui</span>
<span class='ocrx_word' id='word_1_471' title='bbox 7767 9645 8012 9747; x_wconf 15'>au-</span>
</span>
<span class='ocr_line' id='line_1_43' title="bbox 1848 9778 8012 10020; textangle 180; x_size 201; x_descenders 49; x_ascenders 61">
<span class='ocrx_word' id='word_1_472' title='bbox 1848 9905 1967 9979; x_wconf 47'>n</span>
<span class='ocrx_word' id='word_1_473' title='bbox 2030 9861 2360 9985; x_wconf 82'>tem</span>
<span class='ocrx_word' id='word_1_474' title='bbox 2484 9807 3098 9985; x_wconf 82'>infideles</span>
<span class='ocrx_word' id='word_1_475' title='bbox 3212 9816 3705 10020; x_wconf 76'>ſunt,</span>
<span class='ocrx_word' id='word_1_476' title='bbox 3841 9823 4461 9998; x_wconf 53'>dicent:</span>
<span class='ocrx_word' id='word_1_477' title='bbox 4616 9883 4683 9966; x_wconf 66'>c</span>
<span class='ocrx_word' id='word_1_478' title='bbox 4832 9829 5153 9982; x_wconf 90'>Cur</span>
<span class='ocrx_word' id='word_1_479' title='bbox 5277 9870 5633 9976; x_wconf 83'>nam</span>
<span class='ocrx_word' id='word_1_480' title='bbox 5772 9810 6237 9979; x_wconf 91'>voluit</span>
<span class='ocrx_word' id='word_1_481' title='bbox 6379 9801 6780 9953; x_wconf 88'>Deus</span>
<span class='ocrx_word' id='word_1_482' title='bbox 6910 9842 7069 10020; x_wconf 84'>in</span>
<span class='ocrx_word' id='word_1_483' title='bbox 7196 9830 7523 9934; x_wconf 60'>hoc</span>
<span class='ocrx_word' id='word_1_484' title='bbox 7596 9778 7688 9938; x_wconf 72'>d</span>
<span class='ocrx_word' id='word_1_485' title='bbox 7771 9807 8012 9988; x_wconf 0'>ꝓro</span>
</span>
<span class='ocr_line' id='line_1_44' title="bbox 1852 9982 8012 10220; textangle 180; x_size 212; x_descenders 52; x_ascenders 65">
<span class='ocrx_word' id='word_1_486' title='bbox 1852 10017 2520 10214; x_wconf 21'>n-sonere</span>
<span class='ocrx_word' id='word_1_487' title='bbox 2611 10017 3597 10210; x_wconf 75'>parabolam:</span>
<span class='ocrx_word' id='word_1_488' title='bbox 3745 10039 4245 10198; x_wconf 85'>Errare</span>
<span class='ocrx_word' id='word_1_489' title='bbox 4388 10010 4858 10185; x_wconf 88'>faciet</span>
<span class='ocrx_word' id='word_1_490' title='bbox 4905 10077 5163 10208; x_wconf 90'>per</span>
<span class='ocrx_word' id='word_1_491' title='bbox 5264 10036 5636 10182; x_wconf 88'>eam</span>
<span class='ocrx_word' id='word_1_492' title='bbox 5703 10004 6367 10201; x_wconf 61'>multos3</span>
<span class='ocrx_word' id='word_1_493' title='bbox 6513 10017 6697 10176; x_wconf 87'>&</span>
<span class='ocrx_word' id='word_1_494' title='bbox 6805 9982 7301 10179; x_wconf 80'>diriget</span>
<span class='ocrx_word' id='word_1_495' title='bbox 7399 10048 7650 10179; x_wconf 90'>per</span>
<span class='ocrx_word' id='word_1_496' title='bbox 7695 10033 8012 10220; x_wconf 87'>can</span>
</span>
<span class='ocr_line' id='line_1_45' title="bbox 1881 10175 8012 10414; textangle 180; x_size 218; x_descenders 54; x_ascenders 72">
<span class='ocrx_word' id='word_1_497' title='bbox 2008 10210 2688 10405; x_wconf 74'>multos:</span>
<span class='ocrx_word' id='word_1_498' title='bbox 2738 10217 2980 10398; x_wconf 88'>ſed</span>
<span class='ocrx_word' id='word_1_499' title='bbox 3069 10283 3387 10379; x_wconf 89'>non</span>
<span class='ocrx_word' id='word_1_500' title='bbox 3472 10214 3927 10385; x_wconf 77'>faciet</span>
<span class='ocrx_word' id='word_1_501' title='bbox 3996 10229 4480 10385; x_wconf 89'>errare</span>
<span class='ocrx_word' id='word_1_502' title='bbox 4546 10271 4823 10414; x_wconf 86'>per</span>
<span class='ocrx_word' id='word_1_503' title='bbox 4892 10239 5287 10411; x_wconf 34'>eam,</span>
<span class='ocrx_word' id='word_1_504' title='bbox 5391 10204 5684 10395; x_wconf 91'>niſi</span>
<span class='ocrx_word' id='word_1_505' title='bbox 5763 10214 6957 10398; x_wconf 50'>prævaricatores</span>
<span class='ocrx_word' id='word_1_506' title='bbox 7075 10226 7316 10376; x_wconf 88'>27.</span>
<span class='ocrx_word' id='word_1_507' title='bbox 7403 10201 7711 10388; x_wconf 56'>Qui</span>
<span class='ocrx_word' id='word_1_508' title='bbox 7815 10175 8012 10405; x_wconf 47'>dil</span>
</span>
<span class='ocr_line' id='line_1_46' title="bbox 2049 10388 8012 10627; textangle 180; x_size 234; x_descenders 59; x_ascenders 75">
<span class='ocrx_word' id='word_1_509' title='bbox 2049 10410 2653 10617; x_wconf 47'>ſolvunt</span>
<span class='ocrx_word' id='word_1_510' title='bbox 2697 10420 3225 10592; x_wconf 37'>fœdus</span>
<span class='ocrx_word' id='word_1_511' title='bbox 3320 10439 3600 10602; x_wconf 88'>Dei</span>
<span class='ocrx_word' id='word_1_512' title='bbox 3641 10407 4025 10614; x_wconf 86'>poſt</span>
<span class='ocrx_word' id='word_1_513' title='bbox 4114 10420 5210 10614; x_wconf 89'>colligationem</span>
<span class='ocrx_word' id='word_1_514' title='bbox 5302 10442 5712 10608; x_wconf 31'>ejus;</span>
<span class='ocrx_word' id='word_1_515' title='bbox 5833 10426 6014 10557; x_wconf 91'>&</span>
<span class='ocrx_word' id='word_1_516' title='bbox 6074 10391 6977 10627; x_wconf 88'>abſcindunt</span>
<span class='ocrx_word' id='word_1_517' title='bbox 7062 10388 7380 10617; x_wconf 68'>id,</span>
<span class='ocrx_word' id='word_1_518' title='bbox 7443 10391 7704 10624; x_wconf 90'>de</span>
<span class='ocrx_word' id='word_1_519' title='bbox 7787 10439 8012 10614; x_wconf 66'>qu</span>
</span>
<span class='ocr_line' id='line_1_47' title="bbox 2052 10579 8003 10827; textangle 180; x_size 193; x_descenders 43; x_ascenders 60">
<span class='ocrx_word' id='word_1_520' title='bbox 2052 10623 2767 10824; x_wconf 61'>pręcepit</span>
<span class='ocrx_word' id='word_1_521' title='bbox 2802 10620 3288 10818; x_wconf 88'>Deus,</span>
<span class='ocrx_word' id='word_1_522' title='bbox 3320 10627 3504 10789; x_wconf 89'>ut</span>
<span class='ocrx_word' id='word_1_523' title='bbox 3583 10624 4607 10814; x_wconf 88'>conjungatur;</span>
<span class='ocrx_word' id='word_1_524' title='bbox 4714 10642 4877 10776; x_wconf 91'>&</span>
<span class='ocrx_word' id='word_1_525' title='bbox 4918 10630 5925 10805; x_wconf 87'>corrumpunt</span>
<span class='ocrx_word' id='word_1_526' title='bbox 6027 10614 6176 10767; x_wconf 85'>in</span>
<span class='ocrx_word' id='word_1_527' title='bbox 6277 10646 6646 10757; x_wconf 89'>terra:</span>
<span class='ocrx_word' id='word_1_528' title='bbox 6700 10592 6932 10751; x_wconf 92'>hi</span>
<span class='ocrx_word' id='word_1_529' title='bbox 6961 10579 7317 10827; x_wconf 36'>ſunt</span>
<span class='ocrx_word' id='word_1_530' title='bbox 7421 10636 8003 10824; x_wconf 78'>perituri</span>
</span>
<span class='ocr_line' id='line_1_48' title="bbox 1909 10789 8009 11021; textangle 180; x_size 215; x_descenders 57; x_ascenders 63">
<span class='ocrx_word' id='word_1_531' title='bbox 2040 10814 2319 10992; x_wconf 87'>28.</span>
<span class='ocrx_word' id='word_1_532' title='bbox 2383 10817 3225 11011; x_wconf 52'>Quomodò</span>
<span class='ocrx_word' id='word_1_533' title='bbox 3282 10827 3587 10976; x_wconf 89'>non</span>
<span class='ocrx_word' id='word_1_534' title='bbox 3631 10820 4334 11021; x_wconf 77'>credetis</span>
<span class='ocrx_word' id='word_1_535' title='bbox 4371 10833 4527 10970; x_wconf 81'>in</span>
<span class='ocrx_word' id='word_1_536' title='bbox 4625 10839 5191 11005; x_wconf 87'>Deum?</span>
<span class='ocrx_word' id='word_1_537' title='bbox 5280 10814 5801 10989; x_wconf 91'>Fuiſtis</span>
<span class='ocrx_word' id='word_1_538' title='bbox 5887 10817 6523 11011; x_wconf 86'>mortui,</span>
<span class='ocrx_word' id='word_1_539' title='bbox 6608 10824 6754 10964; x_wconf 92'>&</span>
<span class='ocrx_word' id='word_1_540' title='bbox 6853 10789 7695 11008; x_wconf 60'>vivificavit</span>
<span class='ocrx_word' id='word_1_541' title='bbox 7745 10836 8009 10995; x_wconf 89'>vos</span>
</span>
<span class='ocr_line' id='line_1_49' title="bbox 2068 10986 8012 11215; textangle 180; x_size 193; x_descenders 24; x_ascenders 72">
<span class='ocrx_word' id='word_1_542' title='bbox 2068 11015 2656 11205; x_wconf 33'>deinde</span>
<span class='ocrx_word' id='word_1_543' title='bbox 2666 10982 3131 11219; x_wconf 87'>mori</span>
<span class='ocrx_word' id='word_1_544' title='bbox 3199 11011 3638 11192; x_wconf 87'>faciet</span>
<span class='ocrx_word' id='word_1_545' title='bbox 3682 11052 4086 11205; x_wconf 90'>vos;</span>
<span class='ocrx_word' id='word_1_546' title='bbox 4184 11011 4664 11211; x_wconf 56'>poſteà</span>
<span class='ocrx_word' id='word_1_547' title='bbox 4769 11011 5579 11211; x_wconf 87'>vivificabit</span>
<span class='ocrx_word' id='word_1_548' title='bbox 5683 11037 6030 11189; x_wconf 84'>vos;</span>
<span class='ocrx_word' id='word_1_549' title='bbox 6131 11014 6475 11211; x_wconf 89'>tum</span>
<span class='ocrx_word' id='word_1_550' title='bbox 6516 10998 6761 11173; x_wconf 89'>ad</span>
<span class='ocrx_word' id='word_1_551' title='bbox 6862 11049 7199 11154; x_wconf 90'>eum</span>
<span class='ocrx_word' id='word_1_552' title='bbox 7304 10986 8012 11183; x_wconf 84'>reducemi</span>
</span>
<span class='ocr_line' id='line_1_50' title="bbox 2049 11183 8012 11431; textangle 180; x_size 197; x_descenders 38; x_ascenders 64">
<span class='ocrx_word' id='word_1_553' title='bbox 2014 11221 2259 11396; x_wconf 76'>ni.</span>
<span class='ocrx_word' id='word_1_554' title='bbox 2361 11234 2676 11427; x_wconf 41'>29.</span>
<span class='ocrx_word' id='word_1_555' title='bbox 2691 11221 3021 11428; x_wconf 41'>Ipſc</span>
<span class='ocrx_word' id='word_1_556' title='bbox 3053 11224 3390 11424; x_wconf 19'>eſt,</span>
<span class='ocrx_word' id='word_1_557' title='bbox 3475 11231 3755 11418; x_wconf 90'>qui</span>
<span class='ocrx_word' id='word_1_558' title='bbox 3860 11218 4394 11405; x_wconf 87'>creavit</span>
<span class='ocrx_word' id='word_1_559' title='bbox 4489 11214 4915 11408; x_wconf 90'>vobis</span>
<span class='ocrx_word' id='word_1_560' title='bbox 4991 11214 5414 11421; x_wconf 90'>quod</span>
<span class='ocrx_word' id='word_1_561' title='bbox 5512 11217 5716 11383; x_wconf 85'>eſt</span>
<span class='ocrx_word' id='word_1_562' title='bbox 5820 11224 5973 11379; x_wconf 84'>in</span>
<span class='ocrx_word' id='word_1_563' title='bbox 6068 11224 6437 11377; x_wconf 87'>terra</span>
<span class='ocrx_word' id='word_1_564' title='bbox 6507 11183 7374 11431; x_wconf 82'>univetſum</span>
<span class='ocrx_word' id='word_1_565' title='bbox 7450 11259 7507 11402; x_wconf 90'>:</span>
<span class='ocrx_word' id='word_1_566' title='bbox 7596 11183 8012 11424; x_wconf 90'>deind</span>
</span>
<span class='ocr_line' id='line_1_51' title="bbox 2090 11382 8010 11635; textangle 180; x_size 162; x_descenders 28; x_ascenders 43">
<span class='ocrx_word' id='word_1_567' title='bbox 2090 11431 2717 11634; x_wconf 70'>intendit</span>
<span class='ocrx_word' id='word_1_568' title='bbox 2754 11434 2967 11599; x_wconf 67'>in</span>
<span class='ocrx_word' id='word_1_569' title='bbox 3059 11420 3575 11635; x_wconf 89'>Celum</span>
<span class='ocrx_word' id='word_1_570' title='bbox 3625 11545 3695 11628; x_wconf 46'>,</span>
<span class='ocrx_word' id='word_1_571' title='bbox 3784 11443 3936 11596; x_wconf 91'>&</span>
<span class='ocrx_word' id='word_1_572' title='bbox 4038 11418 5013 11608; x_wconf 81'>conformavit</span>
<span class='ocrx_word' id='word_1_573' title='bbox 5112 11411 5477 11599; x_wconf 81'>illud</span>
<span class='ocrx_word' id='word_1_574' title='bbox 5572 11440 5697 11574; x_wconf 64'>in</span>
<span class='ocrx_word' id='word_1_575' title='bbox 5804 11405 6332 11625; x_wconf 84'>ſeptem</span>
<span class='ocrx_word' id='word_1_576' title='bbox 6433 11398 6859 11613; x_wconf 40'>Cęlos</span>
<span class='ocrx_word' id='word_1_577' title='bbox 6913 11466 6958 11555; x_wconf 60'>:</span>
<span class='ocrx_word' id='word_1_578' title='bbox 7059 11418 7202 11618; x_wconf 87'>&</span>
<span class='ocrx_word' id='word_1_579' title='bbox 7307 11382 7587 11609; x_wconf 74'>ipſe</span>
<span class='ocrx_word' id='word_1_580' title='bbox 7694 11385 7870 11600; x_wconf 92'>eſt</span>
<span class='ocrx_word' id='word_1_581' title='bbox 7971 11446 8010 11539; x_wconf 90'>I</span>
</span>
<span class='ocr_line' id='line_1_52' title="bbox 1890 11608 5970 11841; textangle 180; x_size 224; x_descenders 42; x_ascenders 63">
<span class='ocrx_word' id='word_1_582' title='bbox 2014 11608 2815 11840; x_wconf 49'>opmni</span>
<span class='ocrx_word' id='word_1_583' title='bbox 2568 11604 2750 11845; x_wconf 0'>te</span>
<span class='ocrx_word' id='word_1_584' title='bbox 2862 11621 3568 11841; x_wconf 63'>ſciens.</span>
<span class='ocrx_word' id='word_1_585' title='bbox 5776 11637 5970 11777; x_wconf 25'>lli</span>
</span>
</p>
</div>
<div class='ocr_carea' id='block_1_4' title="bbox 1848 11996 7749 13133">
<p class='ocr_par' id='par_1_4' lang='rescribealphav5' title="bbox 1848 11996 7749 13127">
<span class='ocr_line' id='line_1_53' title="bbox 2166 11996 2170 12005; textangle 180; x_size 31.625; x_descenders 6.53125; x_ascenders 10.5">
<span class='ocrx_word' id='word_1_586' title='bbox 2166 11996 2170 12005; x_wconf 29'>.</span>
</span>
<span class='ocr_line' id='line_1_54' title="bbox 2316 12050 2323 12059; textangle 180; x_size 31.625; x_descenders 6.53125; x_ascenders 10.5">
<span class='ocrx_word' id='word_1_587' title='bbox 2316 12050 2323 12059; x_wconf 67'>.</span>
</span>
<span class='ocr_line' id='line_1_55' title="bbox 2252 12107 2380 12129; textangle 180; x_size 16.383562; x_descenders 3.3835618; x_ascenders 5.4396014">
<span class='ocrx_word' id='word_1_588' title='bbox 2252 12120 2262 12129; x_wconf 75'>.</span>
<span class='ocrx_word' id='word_1_589' title='bbox 2319 12120 2326 12123; x_wconf 79'>-</span>
<span class='ocrx_word' id='word_1_590' title='bbox 2373 12107 2380 12120; x_wconf 0'>r</span>
</span>
<span class='ocr_line' id='line_1_56' title="bbox 2389 12202 2402 12212; textangle 180; x_size 31.625; x_descenders 6.53125; x_ascenders 10.5">
<span class='ocrx_word' id='word_1_591' title='bbox 2389 12202 2402 12212; x_wconf 55'>-</span>
</span>
<span class='ocr_line' id='line_1_57' title="bbox 2132 12469 3933 12517; textangle 180; x_size 12.602739; x_descenders 2.6027398; x_ascenders 4.184309">
<span class='ocrx_word' id='word_1_592' title='bbox 2132 12482 2138 12492; x_wconf 51'>r</span>
<span class='ocrx_word' id='word_1_593' title='bbox 2236 12469 2262 12517; x_wconf 0'>a</span>
<span class='ocrx_word' id='word_1_594' title='bbox 3927 12495 3933 12498; x_wconf 1'>]</span>
</span>
<span class='ocr_line' id='line_1_58' title="bbox 2186 12520 3412 12628; textangle 180; x_size 17.475374; x_descenders 4.4753747; x_ascenders 3">
<span class='ocrx_word' id='word_1_595' title='bbox 2186 12526 2189 12533; x_wconf 6'>.</span>
<span class='ocrx_word' id='word_1_596' title='bbox 2255 12520 2290 12628; x_wconf 0'>)</span>
<span class='ocrx_word' id='word_1_597' title='bbox 2383 12520 2389 12527; x_wconf 80'>r</span>
<span class='ocrx_word' id='word_1_598' title='bbox 2421 12536 2427 12543; x_wconf 84'>.</span>
<span class='ocrx_word' id='word_1_599' title='bbox 3361 12530 3368 12533; x_wconf 67'>-</span>
<span class='ocrx_word' id='word_1_600' title='bbox 3406 12523 3412 12533; x_wconf 74'>:</span>
</span>
<span class='ocr_line' id='line_1_59' title="bbox 2354 12603 3974 12641; textangle 180; x_size 22.19486; x_descenders 5; x_ascenders 7.1948605">
<span class='ocrx_word' id='word_1_601' title='bbox 2354 12635 2358 12641; x_wconf 70'>:</span>
<span class='ocrx_word' id='word_1_602' title='bbox 2446 12616 2450 12622; x_wconf 59'>'</span>
<span class='ocrx_word' id='word_1_603' title='bbox 3307 12622 3368 12641; x_wconf 71'>-</span>
<span class='ocrx_word' id='word_1_604' title='bbox 3390 12603 3393 12609; x_wconf 70'>'</span>
<span class='ocrx_word' id='word_1_605' title='bbox 3863 12622 3867 12628; x_wconf 0'>:</span>
<span class='ocrx_word' id='word_1_606' title='bbox 3968 12615 3974 12622; x_wconf 86'>.</span>
</span>
<span class='ocr_line' id='line_1_60' title="bbox 2408 12641 3975 12660; textangle 180; x_size 12.602739; x_descenders 2.6027398; x_ascenders 4.184309">
<span class='ocrx_word' id='word_1_607' title='bbox 2408 12650 2452 12660; x_wconf 59'>-</span>
<span class='ocrx_word' id='word_1_608' title='bbox 3361 12644 3367 12653; x_wconf 86'>r</span>
<span class='ocrx_word' id='word_1_609' title='bbox 3927 12641 3933 12647; x_wconf 0'>H</span>
<span class='ocrx_word' id='word_1_610' title='bbox 3971 12647 3975 12653; x_wconf 6'>:</span>
</span>
<span class='ocr_line' id='line_1_61' title="bbox 3396 12682 3876 12698; textangle 180; x_size 31.625; x_descenders 6.53125; x_ascenders 10.5">
<span class='ocrx_word' id='word_1_611' title='bbox 3396 12682 3409 12692; x_wconf 0'>i</span>
<span class='ocrx_word' id='word_1_612' title='bbox 3844 12692 3851 12698; x_wconf 9'>li</span>
</span>
<span class='ocr_line' id='line_1_62' title="bbox 2114 12698 3943 12749; textangle 180; x_size 12.602739; x_descenders 2.6027398; x_ascenders 4.184309">
<span class='ocrx_word' id='word_1_613' title='bbox 2114 12710 2134 12749; x_wconf 66'>li</span>
<span class='ocrx_word' id='word_1_614' title='bbox 2354 12704 2386 12711; x_wconf 42'>lli</span>
<span class='ocrx_word' id='word_1_615' title='bbox 3270 12703 3307 12732; x_wconf 0'>Eli</span>
<span class='ocrx_word' id='word_1_616' title='bbox 3355 12704 3365 12723; x_wconf 0'>rT</span>
<span class='ocrx_word' id='word_1_617' title='bbox 3399 12698 3425 12717; x_wconf 35'>.</span>
<span class='ocrx_word' id='word_1_618' title='bbox 3902 12717 3908 12723; x_wconf 90'>-</span>
<span class='ocrx_word' id='word_1_619' title='bbox 3939 12714 3943 12720; x_wconf 29'>.</span>
</span>
<span class='ocr_line' id='line_1_63' title="bbox 2192 12720 3882 12736; textangle 180; x_size 12.602739; x_descenders 2.6027398; x_ascenders 4.184309">
<span class='ocrx_word' id='word_1_620' title='bbox 2192 12720 2230 12733; x_wconf 0'>iiti</span>
<span class='ocrx_word' id='word_1_621' title='bbox 3310 12727 3317 12733; x_wconf 85'>-</span>
<span class='ocrx_word' id='word_1_622' title='bbox 3371 12730 3377 12736; x_wconf 47'>a</span>
<span class='ocrx_word' id='word_1_623' title='bbox 3841 12723 3882 12736; x_wconf 0'>llt</span>
</span>
<span class='ocr_line' id='line_1_64' title="bbox 2141 12727 3965 12762; textangle 180; x_size 50.828693; x_descenders 13; x_ascenders 15.828693">
<span class='ocrx_word' id='word_1_624' title='bbox 2192 12727 2252 12752; x_wconf 20'> ]</span>
<span class='ocrx_word' id='word_1_625' title='bbox 2373 12743 2408 12759; x_wconf 29'>ll</span>
<span class='ocrx_word' id='word_1_626' title='bbox 3917 12739 3965 12756; x_wconf 39'>4</span>
</span>
<span class='ocr_line' id='line_1_65' title="bbox 2345 12749 3975 12797; textangle 180; x_size 21.19486; x_descenders 4; x_ascenders 7.1948605">
<span class='ocrx_word' id='word_1_627' title='bbox 2414 12787 2446 12794; x_wconf 45'>..</span>
<span class='ocrx_word' id='word_1_628' title='bbox 3355 12765 3365 12797; x_wconf 91'>:</span>
<span class='ocrx_word' id='word_1_629' title='bbox 3395 12784 3431 12797; x_wconf 0'>li</span>
<span class='ocrx_word' id='word_1_630' title='bbox 3844 12765 3866 12784; x_wconf 22'>-</span>
<span class='ocrx_word' id='word_1_631' title='bbox 3904 12749 3940 12797; x_wconf 0'>itſ</span>
<span class='ocrx_word' id='word_1_632' title='bbox 3965 12781 3975 12790; x_wconf 32'>,</span>
</span>
<span class='ocr_line' id='line_1_66' title="bbox 2281 12792 3933 12826; textangle 180; x_size 12.602739; x_descenders 2.6027398; x_ascenders 4.184309">
<span class='ocrx_word' id='word_1_633' title='bbox 2281 12800 2288 12803; x_wconf 10'>.</span>
<span class='ocrx_word' id='word_1_634' title='bbox 2364 12799 2392 12826; x_wconf 0'>ſlil</span>
<span class='ocrx_word' id='word_1_635' title='bbox 2427 12799 2446 12826; x_wconf 27'>iti</span>
<span class='ocrx_word' id='word_1_636' title='bbox 3342 12792 3374 12823; x_wconf 0'>ũll</span>
<span class='ocrx_word' id='word_1_637' title='bbox 3415 12796 3441 12822; x_wconf 0'>ltd</span>
<span class='ocrx_word' id='word_1_638' title='bbox 3927 12793 3933 12800; x_wconf 0'>ſl</span>
</span>
<span class='ocr_line' id='line_1_67' title="bbox 2237 12860 6309 12902; textangle 180; x_size 12.602739; x_descenders 2.6027398; x_ascenders 4.184309">
<span class='ocrx_word' id='word_1_639' title='bbox 2237 12879 2243 12886; x_wconf 91'>-</span>
<span class='ocrx_word' id='word_1_640' title='bbox 2348 12860 2351 12867; x_wconf 0'>l</span>
<span class='ocrx_word' id='word_1_641' title='bbox 2417 12864 2427 12876; x_wconf 78'>L</span>
<span class='ocrx_word' id='word_1_642' title='bbox 3301 12873 3326 12892; x_wconf 0'>n</span>
<span class='ocrx_word' id='word_1_643' title='bbox 3395 12863 3444 12889; x_wconf 29'>a</span>
<span class='ocrx_word' id='word_1_644' title='bbox 3884 12876 3902 12889; x_wconf 0'>i</span>
<span class='ocrx_word' id='word_1_645' title='bbox 6268 12866 6309 12902; x_wconf 0'>r</span>
</span>
<span class='ocr_line' id='line_1_68' title="bbox 2233 12892 6281 12921; textangle 180; x_size 26; x_descenders 7; x_ascenders 6">
<span class='ocrx_word' id='word_1_646' title='bbox 2233 12898 2240 12905; x_wconf 0'>.</span>
<span class='ocrx_word' id='word_1_647' title='bbox 2329 12904 2335 12911; x_wconf 65'>-</span>
<span class='ocrx_word' id='word_1_648' title='bbox 3346 12892 3444 12918; x_wconf 7'> -Z-</span>
<span class='ocrx_word' id='word_1_649' title='bbox 3958 12904 3971 12918; x_wconf 46'>a</span>
<span class='ocrx_word' id='word_1_650' title='bbox 6262 12895 6281 12911; x_wconf 64'>5</span>
</span>
<span class='ocr_line' id='line_1_69' title="bbox 3326 12904 7650 12972; textangle 180; x_size 50; x_descenders 12; x_ascenders 16">
<span class='ocrx_word' id='word_1_651' title='bbox 3326 12921 3364 12937; x_wconf 0'>;</span>
<span class='ocrx_word' id='word_1_652' title='bbox 6262 12904 6353 12972; x_wconf 0'>v</span>
<span class='ocrx_word' id='word_1_653' title='bbox 7644 12930 7650 12933; x_wconf 0'>i</span>
</span>
<span class='ocr_line' id='line_1_70' title="bbox 2227 12933 3955 12952; textangle 180; x_size 33.160599; x_descenders 7.1605997; x_ascenders 10">
<span class='ocrx_word' id='word_1_654' title='bbox 2227 12940 2250 12952; x_wconf 2'>li</span>
<span class='ocrx_word' id='word_1_655' title='bbox 3371 12933 3444 12952; x_wconf 58'>n</span>
<span class='ocrx_word' id='word_1_656' title='bbox 3853 12937 3955 12946; x_wconf 16'>.</span>
</span>
<span class='ocr_line' id='line_1_71' title="bbox 2380 12946 6380 12965; textangle 180; x_size 31.625; x_descenders 6.53125; x_ascenders 10.5">
<span class='ocrx_word' id='word_1_657' title='bbox 2380 12952 2396 12959; x_wconf 91'>-</span>
<span class='ocrx_word' id='word_1_658' title='bbox 3615 12946 3670 12962; x_wconf 0'>i</span>
<span class='ocrx_word' id='word_1_659' title='bbox 3901 12949 3956 12965; x_wconf 0'>u</span>
<span class='ocrx_word' id='word_1_660' title='bbox 4622 12962 4629 12965; x_wconf 0'>l</span>
</span>
<span class='ocr_line' id='line_1_72' title="bbox 2189 12937 6421 12987; textangle 180; x_size 42.389721; x_descenders 8; x_ascenders 14.389721">
<span class='ocrx_word' id='word_1_661' title='bbox 2189 12955 2227 12981; x_wconf 0'>lil</span>
<span class='ocrx_word' id='word_1_662' title='bbox 2278 12955 2377 12975; x_wconf 0'>HiPE</span>
<span class='ocrx_word' id='word_1_663' title='bbox 3304 12955 3536 12981; x_wconf 0'>æ</span>
<span class='ocrx_word' id='word_1_664' title='bbox 3631 12955 3761 12981; x_wconf 0'> n</span>
<span class='ocrx_word' id='word_1_665' title='bbox 3930 12962 3965 12978; x_wconf 0'>m.m</span>
<span class='ocrx_word' id='word_1_666' title='bbox 4305 12974 4311 12978; x_wconf 23'>i</span>
<span class='ocrx_word' id='word_1_667' title='bbox 4797 12965 4803 12971; x_wconf 32'>3</span>
<span class='ocrx_word' id='word_1_668' title='bbox 5102 12962 5106 12968; x_wconf 86'>.</span>
<span class='ocrx_word' id='word_1_669' title='bbox 5486 12965 5496 12972; x_wconf 87'>.</span>
<span class='ocrx_word' id='word_1_670' title='bbox 6240 12937 6295 12987; x_wconf 23'>a5</span>
</span>
<span class='ocr_line' id='line_1_73' title="bbox 3015 12962 6901 13000; textangle 180; x_size 29.353319; x_descenders 7; x_ascenders 9.3533192">
<span class='ocrx_word' id='word_1_671' title='bbox 3059 12981 3072 12987; x_wconf 0'>A</span>
<span class='ocrx_word' id='word_1_672' title='bbox 3218 12981 3222 12987; x_wconf 29'>.</span>
<span class='ocrx_word' id='word_1_673' title='bbox 3383 12978 3390 12984; x_wconf 22'>.</span>
<span class='ocrx_word' id='word_1_674' title='bbox 3504 12978 3514 12987; x_wconf 0'>-</span>
<span class='ocrx_word' id='word_1_675' title='bbox 3593 12974 3781 12991; x_wconf 0'>-.</span>
<span class='ocrx_word' id='word_1_676' title='bbox 3876 12972 3908 12993; x_wconf 60'>a,</span>
<span class='ocrx_word' id='word_1_677' title='bbox 3930 12974 3994 12994; x_wconf 5'>zu.</span>
<span class='ocrx_word' id='word_1_678' title='bbox 4069 12971 4092 12984; x_wconf 0'>æ</span>
<span class='ocrx_word' id='word_1_679' title='bbox 4213 12984 4222 12991; x_wconf 23'>.</span>
<span class='ocrx_word' id='word_1_680' title='bbox 4603 12974 4756 12994; x_wconf 25'> .</span>
<span class='ocrx_word' id='word_1_681' title='bbox 6306 12962 6370 13000; x_wconf 0'>ã</span>
</span>
<span class='ocr_line' id='line_1_74' title="bbox 2217 12981 7241 13010; textangle 180; x_size 22; x_descenders 5; x_ascenders 6">
<span class='ocrx_word' id='word_1_682' title='bbox 2217 13000 2224 13006; x_wconf 79'>a</span>
<span class='ocrx_word' id='word_1_683' title='bbox 2316 12990 2332 13010; x_wconf 9'>7</span>
<span class='ocrx_word' id='word_1_684' title='bbox 2452 13000 2459 13003; x_wconf 89'>-</span>
<span class='ocrx_word' id='word_1_685' title='bbox 2573 12987 2614 13006; x_wconf 3'>hili</span>
<span class='ocrx_word' id='word_1_686' title='bbox 2662 13003 2669 13006; x_wconf 27'>i</span>
<span class='ocrx_word' id='word_1_687' title='bbox 2792 13000 2799 13003; x_wconf 0'>.</span>
<span class='ocrx_word' id='word_1_688' title='bbox 2967 12990 3069 13010; x_wconf 60'>-</span>
<span class='ocrx_word' id='word_1_689' title='bbox 3120 12997 3136 13003; x_wconf 44'>-</span>
<span class='ocrx_word' id='word_1_690' title='bbox 3256 12997 3263 13003; x_wconf 31'>.</span>
<span class='ocrx_word' id='word_1_691' title='bbox 3348 12987 3374 13000; x_wconf 26'>-</span>
<span class='ocrx_word' id='word_1_692' title='bbox 3399 12984 3498 13009; x_wconf 0'>Q5/</span>
<span class='ocrx_word' id='word_1_693' title='bbox 3523 12984 3536 12994; x_wconf 0'>a</span>
<span class='ocrx_word' id='word_1_694' title='bbox 3618 12994 3631 13003; x_wconf 88'>-</span>
<span class='ocrx_word' id='word_1_695' title='bbox 3685 12984 3771 13003; x_wconf 35'>2al</span>
<span class='ocrx_word' id='word_1_696' title='bbox 3797 12984 3828 13000; x_wconf 0'>Ita</span>
<span class='ocrx_word' id='word_1_697' title='bbox 3946 12993 3959 13000; x_wconf 1'>y3</span>
<span class='ocrx_word' id='word_1_698' title='bbox 4000 12981 4092 13006; x_wconf 0'>ſ</span>
<span class='ocrx_word' id='word_1_699' title='bbox 4108 12984 4191 13006; x_wconf 4'>4æ.</span>
<span class='ocrx_word' id='word_1_700' title='bbox 4314 12991 4336 13000; x_wconf 40'>.</span>
<span class='ocrx_word' id='word_1_701' title='bbox 4381 12994 4388 13006; x_wconf 10'>.</span>
<span class='ocrx_word' id='word_1_702' title='bbox 4454 12987 4483 13006; x_wconf 0'>a</span>
<span class='ocrx_word' id='word_1_703' title='bbox 4537 12993 4543 13000; x_wconf 0'>l</span>
<span class='ocrx_word' id='word_1_704' title='bbox 4651 12990 4747 13006; x_wconf 9'> -x</span>
<span class='ocrx_word' id='word_1_705' title='bbox 4931 12990 4956 12997; x_wconf 76'>.</span>
<span class='ocrx_word' id='word_1_706' title='bbox 5019 13000 5026 13003; x_wconf 0'>l</span>
<span class='ocrx_word' id='word_1_707' title='bbox 5439 12990 5445 12997; x_wconf 17'>:</span>
<span class='ocrx_word' id='word_1_708' title='bbox 5575 12987 5579 12993; x_wconf 0'>j</span>
<span class='ocrx_word' id='word_1_709' title='bbox 6243 12990 6252 12997; x_wconf 33'>.</span>
<span class='ocrx_word' id='word_1_710' title='bbox 6551 12990 6557 12997; x_wconf 8'>]</span>
<span class='ocrx_word' id='word_1_711' title='bbox 7202 12997 7241 13006; x_wconf 0'>i</span>
</span>
<span class='ocr_line' id='line_1_75' title="bbox 1979 12983 7621 13039; textangle 180; x_size 31.625; x_descenders 6.53125; x_ascenders 10.5">
<span class='ocrx_word' id='word_1_712' title='bbox 1979 13006 2018 13022; x_wconf 0'>ſll</span>
<span class='ocrx_word' id='word_1_713' title='bbox 2227 13006 2313 13029; x_wconf 0'>iæ</span>
<span class='ocrx_word' id='word_1_714' title='bbox 2482 13006 2599 13035; x_wconf 0'>i</span>
<span class='ocrx_word' id='word_1_715' title='bbox 2726 13006 2917 13035; x_wconf 3'>d</span>
<span class='ocrx_word' id='word_1_716' title='bbox 2951 13006 3338 13032; x_wconf 15'>æ],..n</span>
<span class='ocrx_word' id='word_1_717' title='bbox 3358 13016 3447 13032; x_wconf 0'>a-</span>
<span class='ocrx_word' id='word_1_718' title='bbox 3575 12997 3625 13032; x_wconf 0'>u</span>
<span class='ocrx_word' id='word_1_719' title='bbox 3631 12983 3739 13039; x_wconf 0'> æe</span>
<span class='ocrx_word' id='word_1_720' title='bbox 3743 12997 3822 13035; x_wconf 0'>æu</span>
<span class='ocrx_word' id='word_1_721' title='bbox 3885 12987 3997 13036; x_wconf 0'> raĩin</span>
<span class='ocrx_word' id='word_1_722' title='bbox 4035 13003 4311 13032; x_wconf 26'>-/4a</span>
<span class='ocrx_word' id='word_1_723' title='bbox 4340 13006 4464 13032; x_wconf 10'>iivu-</span>
<span class='ocrx_word' id='word_1_724' title='bbox 4839 13000 4892 13032; x_wconf 0'>a</span>
<span class='ocrx_word' id='word_1_725' title='bbox 4984 13016 5017 13038; x_wconf 18'>a</span>
<span class='ocrx_word' id='word_1_726' title='bbox 5245 13012 5366 13032; x_wconf 16'>4.77.</span>
<span class='ocrx_word' id='word_1_727' title='bbox 5652 13025 5658 13029; x_wconf 0'>i</span>
<span class='ocrx_word' id='word_1_728' title='bbox 5877 13016 5887 13022; x_wconf 91'>-</span>
<span class='ocrx_word' id='word_1_729' title='bbox 6004 13022 6024 13029; x_wconf 0'>3</span>
<span class='ocrx_word' id='word_1_730' title='bbox 6163 12997 6341 13032; x_wconf 0'> ibæe-</span>
<span class='ocrx_word' id='word_1_731' title='bbox 6659 13012 6662 13019; x_wconf 0'>lli</span>
<span class='ocrx_word' id='word_1_732' title='bbox 6786 13006 6862 13022; x_wconf 0'>Ellt</span>
<span class='ocrx_word' id='word_1_733' title='bbox 7224 13016 7231 13028; x_wconf 66'>'</span>
<span class='ocrx_word' id='word_1_734' title='bbox 7507 13013 7545 13032; x_wconf 34'>r..</span>
<span class='ocrx_word' id='word_1_735' title='bbox 7615 13009 7621 13013; x_wconf 0'>E</span>
</span>
<span class='ocr_line' id='line_1_76' title="bbox 1868 13019 7749 13075; textangle 180; x_size 25; x_descenders 5; x_ascenders 8">
<span class='ocrx_word' id='word_1_736' title='bbox 1868 13032 2065 13063; x_wconf 11'>7</span>
<span class='ocrx_word' id='word_1_737' title='bbox 2176 13032 2186 13060; x_wconf 28'>i</span>
<span class='ocrx_word' id='word_1_738' title='bbox 2230 13035 2234 13041; x_wconf 0'>:</span>
<span class='ocrx_word' id='word_1_739' title='bbox 2233 13029 2326 13060; x_wconf 0'>lææ</span>
<span class='ocrx_word' id='word_1_740' title='bbox 2341 13035 2402 13066; x_wconf 54'>r</span>
<span class='ocrx_word' id='word_1_741' title='bbox 2456 13038 2545 13060; x_wconf 0'>ãtii</span>
<span class='ocrx_word' id='word_1_742' title='bbox 2636 13022 2808 13064; x_wconf 0'> r</span>
<span class='ocrx_word' id='word_1_743' title='bbox 2847 13029 2888 13057; x_wconf 0'>m5</span>
<span class='ocrx_word' id='word_1_744' title='bbox 2973 13024 3104 13070; x_wconf 0'>art4</span>
<span class='ocrx_word' id='word_1_745' title='bbox 3119 13035 3145 13051; x_wconf 7'>4</span>
<span class='ocrx_word' id='word_1_746' title='bbox 3161 13032 3253 13060; x_wconf 0'>arn⸗</span>
<span class='ocrx_word' id='word_1_747' title='bbox 3415 13035 3447 13060; x_wconf 0'> ,</span>
<span class='ocrx_word' id='word_1_748' title='bbox 3456 13032 3517 13051; x_wconf 0'>5-</span>
<span class='ocrx_word' id='word_1_749' title='bbox 3625 13026 3679 13057; x_wconf 0'>ra</span>
<span class='ocrx_word' id='word_1_750' title='bbox 3691 13038 3709 13060; x_wconf 0'>a</span>
<span class='ocrx_word' id='word_1_751' title='bbox 3775 13028 3797 13066; x_wconf 0'>-</span>
<span class='ocrx_word' id='word_1_752' title='bbox 3812 13031 3824 13075; x_wconf 0'>æ»</span>
<span class='ocrx_word' id='word_1_753' title='bbox 3963 13019 4060 13064; x_wconf 0'>iZ</span>
<span class='ocrx_word' id='word_1_754' title='bbox 4095 13032 4162 13051; x_wconf 0'>ae.</span>
<span class='ocrx_word' id='word_1_755' title='bbox 4238 13041 4245 13047; x_wconf 63'>4</span>
<span class='ocrx_word' id='word_1_756' title='bbox 4320 13032 4365 13051; x_wconf 4'>..:</span>
<span class='ocrx_word' id='word_1_757' title='bbox 4454 13035 4461 13045; x_wconf 59'>:</span>
<span class='ocrx_word' id='word_1_758' title='bbox 4546 13028 4629 13051; x_wconf 0'>r</span>
<span class='ocrx_word' id='word_1_759' title='bbox 4647 13025 4712 13057; x_wconf 9'>a</span>
<span class='ocrx_word' id='word_1_760' title='bbox 4768 13022 4998 13070; x_wconf 0'>ææmu</span>
<span class='ocrx_word' id='word_1_761' title='bbox 5016 13038 5026 13041; x_wconf 47'>-</span>
<span class='ocrx_word' id='word_1_762' title='bbox 5115 13035 5204 13060; x_wconf 36'>Vr.</span>
<span class='ocrx_word' id='word_1_763' title='bbox 5224 13021 5242 13063; x_wconf 68'>ii</span>
<span class='ocrx_word' id='word_1_764' title='bbox 5582 13038 5595 13045; x_wconf 80'>n</span>
<span class='ocrx_word' id='word_1_765' title='bbox 5699 13028 5725 13061; x_wconf 6'>iill</span>
<span class='ocrx_word' id='word_1_766' title='bbox 5807 13035 5893 13048; x_wconf 65'>r</span>
<span class='ocrx_word' id='word_1_767' title='bbox 5919 13044 5973 13054; x_wconf 57'>.</span>
<span class='ocrx_word' id='word_1_768' title='bbox 6112 13045 6119 13054; x_wconf 71'>.</span>
<span class='ocrx_word' id='word_1_769' title='bbox 6150 13032 6291 13070; x_wconf 0'>4</span>
<span class='ocrx_word' id='word_1_770' title='bbox 6331 13028 6474 13051; x_wconf 0'>E.</span>
<span class='ocrx_word' id='word_1_771' title='bbox 6548 13035 6586 13051; x_wconf 0'>MlL.</span>
<span class='ocrx_word' id='word_1_772' title='bbox 6897 13038 6901 13044; x_wconf 0'>lll</span>
<span class='ocrx_word' id='word_1_773' title='bbox 6992 13035 7034 13057; x_wconf 0'>Elſ</span>
<span class='ocrx_word' id='word_1_774' title='bbox 7212 13032 7282 13057; x_wconf 6'>,'</span>
<span class='ocrx_word' id='word_1_775' title='bbox 7431 13035 7609 13051; x_wconf 11'>r</span>
<span class='ocrx_word' id='word_1_776' title='bbox 7663 13035 7679 13051; x_wconf 17'>77</span>
<span class='ocrx_word' id='word_1_777' title='bbox 7739 13044 7749 13057; x_wconf 57'>.</span>
</span>
<span class='ocr_line' id='line_1_77' title="bbox 1848 13019 7698 13086; textangle 180; x_size 38.670235; x_descenders 6; x_ascenders 13.670235">
<span class='ocrx_word' id='word_1_778' title='bbox 1848 13060 1935 13066; x_wconf 0'>v/,</span>
<span class='ocrx_word' id='word_1_779' title='bbox 2208 13051 2281 13066; x_wconf 34'>1</span>
<span class='ocrx_word' id='word_1_780' title='bbox 2516 13054 2523 13064; x_wconf 85'>:</span>
<span class='ocrx_word' id='word_1_781' title='bbox 2694 13051 3120 13086; x_wconf 0'> nt</span>
<span class='ocrx_word' id='word_1_782' title='bbox 3158 13041 3469 13076; x_wconf 0'>næuur],-</span>
<span class='ocrx_word' id='word_1_783' title='bbox 3564 13032 3752 13073; x_wconf 0'>Sra</span>
<span class='ocrx_word' id='word_1_784' title='bbox 3871 13051 3872 13064; x_wconf 0'>n</span>
<span class='ocrx_word' id='word_1_785' title='bbox 4019 13057 4025 13064; x_wconf 0'> le</span>
<span class='ocrx_word' id='word_1_786' title='bbox 4076 13051 4124 13067; x_wconf 0'>/</span>
<span class='ocrx_word' id='word_1_787' title='bbox 4286 13051 4315 13070; x_wconf 0'>.</span>
<span class='ocrx_word' id='word_1_788' title='bbox 5215 13054 5252 13067; x_wconf 0'>.</span>
<span class='ocrx_word' id='word_1_789' title='bbox 5347 13057 5353 13064; x_wconf 0'>Hſsi</span>
<span class='ocrx_word' id='word_1_790' title='bbox 5496 13060 5503 13066; x_wconf 11'>:</span>
<span class='ocrx_word' id='word_1_791' title='bbox 5586 13019 5633 13080; x_wconf 0'>A</span>
<span class='ocrx_word' id='word_1_792' title='bbox 5884 13057 5893 13064; x_wconf 52'>1</span>
<span class='ocrx_word' id='word_1_793' title='bbox 5998 13057 6040 13070; x_wconf 15'>_</span>
<span class='ocrx_word' id='word_1_794' title='bbox 6297 13048 6554 13067; x_wconf 0'>lEEEEE</span>
<span class='ocrx_word' id='word_1_795' title='bbox 6732 13054 6739 13060; x_wconf 0'>lll</span>
<span class='ocrx_word' id='word_1_796' title='bbox 7208 13054 7215 13060; x_wconf 39'>:</span>
<span class='ocrx_word' id='word_1_797' title='bbox 7415 13051 7422 13054; x_wconf 0'>VE</span>
<span class='ocrx_word' id='word_1_798' title='bbox 7606 13028 7676 13074; x_wconf 0'> E</span>
</span>
<span class='ocr_line' id='line_1_78' title="bbox 1855 13031 7733 13105; textangle 180; x_size 31; x_descenders 6; x_ascenders 11">
<span class='ocrx_word' id='word_1_799' title='bbox 1855 13057 2094 13092; x_wconf 0'>vati]</span>
<span class='ocrx_word' id='word_1_800' title='bbox 2275 13070 2300 13082; x_wconf 16'>:5</span>
<span class='ocrx_word' id='word_1_801' title='bbox 2386 13051 2510 13092; x_wconf 0'>ERæ</span>
<span class='ocrx_word' id='word_1_802' title='bbox 2535 13057 2875 13095; x_wconf 0'> læih-</span>
<span class='ocrx_word' id='word_1_803' title='bbox 3002 13066 3069 13092; x_wconf 0'>EE</span>
<span class='ocrx_word' id='word_1_804' title='bbox 3101 13057 3247 13095; x_wconf 0'>æ</span>
<span class='ocrx_word' id='word_1_805' title='bbox 3257 13047 3326 13089; x_wconf 67'>/</span>
<span class='ocrx_word' id='word_1_806' title='bbox 3485 13073 3542 13095; x_wconf 0'>r]'e]</span>
<span class='ocrx_word' id='word_1_807' title='bbox 3666 13054 3743 13092; x_wconf 0'>ærã</span>
<span class='ocrx_word' id='word_1_808' title='bbox 3856 13066 3904 13105; x_wconf 0'>æ</span>
<span class='ocrx_word' id='word_1_809' title='bbox 3990 13057 4006 13073; x_wconf 0'>a</span>
<span class='ocrx_word' id='word_1_810' title='bbox 4124 13064 4435 13095; x_wconf 0'> auu</span>
<span class='ocrx_word' id='word_1_811' title='bbox 4502 13031 4786 13103; x_wconf 0'>ſnææ4</span>
<span class='ocrx_word' id='word_1_812' title='bbox 4675 13047 4721 13083; x_wconf 22'>x</span>
<span class='ocrx_word' id='word_1_813' title='bbox 4849 13057 4912 13095; x_wconf 20'>rl</span>
<span class='ocrx_word' id='word_1_814' title='bbox 4921 13066 4973 13086; x_wconf 0'>?7u</span>
<span class='ocrx_word' id='word_1_815' title='bbox 5039 13054 5087 13095; x_wconf 51'>4</span>