-
Notifications
You must be signed in to change notification settings - Fork 0
/
15_stc_to_text.log
1774 lines (1774 loc) · 324 KB
/
15_stc_to_text.log
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
2023-10-14 00:05:11,544 Create a pickle/excel file with all
2023-10-14 00:05:11,705 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00014CH__Current__0F9F4CDA481A692586257F8D0051E308.txt
2023-10-14 00:05:11,705 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00014CH__Historical__C45413F9C813182C862579420058B7C0.txt
2023-10-14 00:05:11,716 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00027MC-D__Current__AB80219E04E9EC478625762000544966.txt
2023-10-14 00:05:11,728 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00035NY__Historical__1022D5A86D97D988862579E300645FFB.txt
2023-10-14 00:05:11,743 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00047SE__Historical__1E1ABD54CF0AC11986257B7C00467BBD.txt
2023-10-14 00:05:11,748 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00051MC__Current__56864296BF6D897E862577C30055FFA8.txt
2023-10-14 00:05:11,749 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00054IB__Current__E9349630ACD42515862588A100413150.txt
2023-10-14 00:05:11,756 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00059AT__Historical__CAD665E663EB23CC862585C8004AF13B.txt
2023-10-14 00:05:11,791 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00080LA__Current__C4538DF08AB8F5C28625769A006D4023.txt
2023-10-14 00:05:11,797 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00082IB__Current__DRSDOCID148256983620221216173952.txt
2023-10-14 00:05:11,833 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00113MC__Current__838D5EF8B41DC69886257D20004D957D.txt
2023-10-14 00:05:11,871 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00160LA__Current__ADE37004EAE41489862587830049EE32.txt
2023-10-14 00:05:11,872 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00160LA__Historical__06DCD860C0AC607186257DE200729FD8.txt
2023-10-14 00:05:11,872 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00160LA__Historical__13B0E696FFEC23A9862586B60049FE19.txt
2023-10-14 00:05:11,888 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00172WI__Historical__AFB393EF863B5023862574C70078BA95.txt
2023-10-14 00:05:11,959 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00262AT__Current__DRSDOCID163125690620230206144424.txt
2023-10-14 00:05:11,970 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00272LA__Current__AD266FC935361233862586110045C071.txt
2023-10-14 00:05:11,970 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00272LA__Historical__4F16D987970605578625849B00500131.txt
2023-10-14 00:05:11,974 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00274AT__Current__08DCF526FBE1C04C8625755300543E02.txt
2023-10-14 00:05:11,975 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00276SE__Current__191209BC954C3D608625849B005052AE.txt
2023-10-14 00:05:11,978 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00281NY__Current__DEC5C68EFEB2DD27862579A500688EB5.txt
2023-10-14 00:05:12,005 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00306WI__Current__653C7D3870BFEC8186257E26006BB365.txt
2023-10-14 00:05:12,032 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00337BO__Current__DF13B69DA97F123786257D6900504D17.txt
2023-10-14 00:05:12,092 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00388NY__Current__D16364E52BBC139F862579C700706BF0.txt
2023-10-14 00:05:12,092 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00388NY__Historical__A8C311DC79F22BAE862579A500688F7B.txt
2023-10-14 00:05:12,097 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00396BO__Current__C7C43BAAF3F60F788625879D00518428.txt
2023-10-14 00:05:12,105 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00402SE__Current__264B938F2ABEC41E862579490059DBCB.txt
2023-10-14 00:05:12,105 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00402SE__Historical__0393F8A75516548786257949004B078A.txt
2023-10-14 00:05:12,111 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00410SE__Current__D37F15BBC8F4234D85256CC1007DC8FE.txt
2023-10-14 00:05:12,113 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00413WI__Current__FD6D7CDBC2FD044E862571710052BB79.txt
2023-10-14 00:05:12,113 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00414SE__Current__07991D5252C54716862579A6005A5BC0.txt
2023-10-14 00:05:12,116 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00417MC__Current__6CFFCBE5353759FA8625833E005B949A.txt
2023-10-14 00:05:12,130 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00432SE (PG 1)__Historical__7F0DCD8BA05EBCE0862575FB007C3EF6.txt
2023-10-14 00:05:12,131 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00432SE (PG 3)__Historical__CEDFC1014168734C862575FB007C3F50.txt
2023-10-14 00:05:12,133 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00433AT__Historical__034E30747995BB5F862573440056889F.txt
2023-10-14 00:05:12,153 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00458DE__Current__3EF36DE3C9D80EB885256CC1007DC93A.txt
2023-10-14 00:05:12,153 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00458SE__Current__C63DD64E26918B7585256CC1007DC93B.txt
2023-10-14 00:05:12,157 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00462DE__Current__EDE1979589F0538886257DDD00586B00.txt
2023-10-14 00:05:12,160 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00468WI__Historical__E2A647C11FA356EA8625843F0065707E.txt
2023-10-14 00:05:12,164 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00475SE__Historical__84DE026E1CFD5C39862572C1004C5F1C.txt
2023-10-14 00:05:12,168 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00478CH (PAGE 1)__Historical__66499CD6C632EC978625792600762D81.txt
2023-10-14 00:05:12,195 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00500SE__Historical__5D2838DD725DF34086257726005CE654.txt
2023-10-14 00:05:12,206 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00522SE__Current__AB94A61626FDC17B862579A60048BB6D.txt
2023-10-14 00:05:12,212 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00531WI__Current__B63354F0F579DC5E862570FA0057760E.txt
2023-10-14 00:05:12,234 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00567WI__Current__0299FA87BEEA2E1986257082004FB2D9.txt
2023-10-14 00:05:12,305 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00718SE__Current__D761A66609FF508C862579A60059D3A7.txt
2023-10-14 00:05:12,319 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00729SE__Current__7EC6BC14670F4CDA862570D5005AB819.txt
2023-10-14 00:05:12,332 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00747DE__Current__855CF858FEB6914C86257A40004E370B.txt
2023-10-14 00:05:12,335 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00750SE__Current__BC6B51515F0D8166862579A6006FB48B.txt
2023-10-14 00:05:12,336 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00750SE__Historical__606A08F863B1C5968625799900570CA8.txt
2023-10-14 00:05:12,337 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00752SE__Historical__66CAE1201BAA0D3986257600004C359E.txt
2023-10-14 00:05:12,338 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00753SE__Current__782508B61991A2FE862579A60059D458.txt
2023-10-14 00:05:12,357 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00773DE__Current__8CCA865FD6E0A13786257D400061AC8D.txt
2023-10-14 00:05:12,359 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00776DE__Historical__D91496442384B3F286258340004F33FC.txt
2023-10-14 00:05:12,380 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00798AT__Current__C54871C768391138862575B5006DEB9B.txt
2023-10-14 00:05:12,419 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00850WI__Historical__A3ECC42B33D56DAD862572C7005898D9.txt
2023-10-14 00:05:12,425 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00858DE__Current__4CFBE6A0F9630ACF862580ED00659C99.txt
2023-10-14 00:05:12,431 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00861SE (PG 1)__Historical__29B9A88736428900862575FB0066B2DA.txt
2023-10-14 00:05:12,431 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00861SE (PG 1)__Historical__A4E222943ACB9B86862578DB00552486.txt
2023-10-14 00:05:12,432 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00861SE (PG 2)__Historical__1E8841EC9A6AA6D2862578DB005524B3.txt
2023-10-14 00:05:12,433 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00861SE (PG 3)__Historical__DD9C13C450771F02862575FB0066B303.txt
2023-10-14 00:05:12,446 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00873WI__Current__AD10D852AF20C343862576EA004E5986.txt
2023-10-14 00:05:12,496 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00951SE__Current__3A13E879D73FEF74862579A60059D671.txt
2023-10-14 00:05:12,516 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA00997CH__Current__4909C07D52D2600A8625786B005AD469.txt
2023-10-14 00:05:12,521 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01002AT__Current__72622EE5B3221A8B862575B5006E2E00.txt
2023-10-14 00:05:12,546 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01029AT__Historical__190AC8130D2CB2AA86256E8300656F82.txt
2023-10-14 00:05:12,549 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01033WI__Current__DE0BE9C41E2C289286257B2F00506E44.txt
2023-10-14 00:05:12,549 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01033WI__Historical__F948C6E694D6B331862571530064CB25.txt
2023-10-14 00:05:12,593 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01092WI__Historical__789B0E51C090A64885256CC1007E027C.txt
2023-10-14 00:05:12,618 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01126SE__Current__BE2EAFA394BCC534862579A6005D9DF9.txt
2023-10-14 00:05:12,627 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01140AT__Current__B38BF9AF328BA5D2862575BA004E790F.txt
2023-10-14 00:05:12,635 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01149AT__Current__118CAA902BEE7447862575BA0054DB4D.txt
2023-10-14 00:05:12,635 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01151AT__Current__03F7D0083150BF07862575BA00550C66.txt
2023-10-14 00:05:12,644 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01158SE__Current__A136E01AE3D04BFA862579A6005D9F92.txt
2023-10-14 00:05:12,644 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01158SE__Historical__9D31E9454369330B8625795E004C9042.txt
2023-10-14 00:05:12,655 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01169WI__Current__48E3E600F8D9F2D586256D7F006E8B09.txt
2023-10-14 00:05:12,656 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01170LA__Historical__F19037E27650BFDE86257959004F250D.txt
2023-10-14 00:05:12,664 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01191AT__Current__65A9020148E11259862575B600478CA5.txt
2023-10-14 00:05:12,712 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01242SE__Current__49151FB02958C78B862579A6005D9E4D.txt
2023-10-14 00:05:12,720 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01250AT__Current__6F8FC260B542B308862575B6004C6661.txt
2023-10-14 00:05:12,725 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01253WI-D__Historical__780F736AAB8036FF862572BF00507A4F.txt
2023-10-14 00:05:12,744 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01276AT__Current__DF1EF71509C62EDA862577840043CE79.txt
2023-10-14 00:05:12,763 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01303WI__Current__E9FAFB1FC7687212862585B5003EF5E4.txt
2023-10-14 00:05:12,772 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01319AT__Historical__3692A5352795D7A6862585C8004A5AC7.txt
2023-10-14 00:05:12,777 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01328WI__Historical__2631E1CDE5751B85862574C80046939B.txt
2023-10-14 00:05:12,778 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01330LA__Current__CF34CBCFCB6533618625826E004A5D2A.txt
2023-10-14 00:05:12,785 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01338WI__Current__7D79EFCD8E0655A286257E2600700EE0.txt
2023-10-14 00:05:12,785 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01338WI__Historical__6B8491D57A1FB37F862574C800469443.txt
2023-10-14 00:05:12,791 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01350SE__Current__D37F55D36C826E1B862579A600640297.txt
2023-10-14 00:05:12,795 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01356SE__Current__2E7B0AE11C81C10B862576E10061CA8E.txt
2023-10-14 00:05:12,836 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01418WI-D__Historical__F805B92AC1298940862573A6008357BA.txt
2023-10-14 00:05:12,857 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01435WI__Current__66D08C743FC3720686257E2600705FDC.txt
2023-10-14 00:05:12,857 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01435WI__Historical__1376A9840AEBE8E5862574C800469488.txt
2023-10-14 00:05:12,857 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01435WI__Historical__4AC69EAB727D21AB8625758900742F69.txt
2023-10-14 00:05:12,906 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01487SE (1 OF 5__Current__7A27D25E389EC12686256F89007A9259.txt
2023-10-14 00:05:12,906 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01487SE (2 OF 5)__Current__91FB80B44BD7ACB986256F89007A92AE.txt
2023-10-14 00:05:12,906 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01487SE (3 OF 5)__Current__8EA5F83AB885CAFA86256F89007A930D.txt
2023-10-14 00:05:12,906 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01487SE (4 OF 5)__Current__26CEEB95552365CF86256F89007A935E.txt
2023-10-14 00:05:12,906 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01487SE (5 OF 5__Current__ED8D5D641B0267C4862570830050C1A9.txt
2023-10-14 00:05:12,916 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01518AT__Current__8E52D8D31489537A8625771900507092.txt
2023-10-14 00:05:12,940 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01542SE__Current__2103D42C3517F2F1862585D90055F071.txt
2023-10-14 00:05:12,942 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01548CH__Current__EA0226C449EE88248625792D00421134.txt
2023-10-14 00:05:12,942 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01548CH__Historical__7EFF9C55C69899228625786B005CFA5D.txt
2023-10-14 00:05:12,964 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01581AT__Current__C8EBA3C855371AFC8625773D005FA838.txt
2023-10-14 00:05:12,970 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01586SE__Current__F1D9C2EFBB34103086257D540066D6C5.txt
2023-10-14 00:05:12,971 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01588LA__Historical__51E918FC84DF8E3886256E7E00600FCA.txt
2023-10-14 00:05:12,985 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01602SE-D__Current__92BC1F5E859EF139862578AE004AF668.txt
2023-10-14 00:05:12,985 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01602SE__Historical__2DEDC1F949E235B3862572E20049F6A8.txt
2023-10-14 00:05:13,014 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01640CH__Historical__323AA225D75E62878625755A006BE383.txt
2023-10-14 00:05:13,066 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01688WI__Current__8633B654EEFE7EBC862584B600551D51.txt
2023-10-14 00:05:13,067 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01688WI__Historical__F4F2F3880CBEAAE786257A8D006972F7.txt
2023-10-14 00:05:13,067 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01688WI__Historical__FC85366CEEE2110386257CB50052F84B.txt
2023-10-14 00:05:13,123 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01725WI__Current__14EBF7BB35CDD6AC862584B600551C4E.txt
2023-10-14 00:05:13,123 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01725WI__Historical__861AB61E51DA3B5E86257BE1006AAFC8.txt
2023-10-14 00:05:13,184 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01784WI__Current__A91A499896B1272286258218004DE9AA.txt
2023-10-14 00:05:13,189 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01790SE__Current__3B7A9FBFA4552E008625770B00551E7B.txt
2023-10-14 00:05:13,207 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01805SE__Current__1241527AB71904FE8625805A00724AE8.txt
2023-10-14 00:05:13,214 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01807NY__Current__D15430123501865D86258114005B5225.txt
2023-10-14 00:05:13,216 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01810LA__Historical__4A3BCFEB0F0E9C318625733F004BCBCB.txt
2023-10-14 00:05:13,248 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01843CH__Current__1522648993304EF7862585A4003E1BEE.txt
2023-10-14 00:05:13,252 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01844WI__Historical__126E2DB5583D7304862584F70076F435.txt
2023-10-14 00:05:13,253 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01844WI__Historical__54BD3405D0413CE68625829F00447A8D.txt
2023-10-14 00:05:13,255 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01846SE__Current__48A1B5526AF3800E8625748F005AB8D1.txt
2023-10-14 00:05:13,257 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01847SE__Current__7036D1FDA2729C918625748F005AB8FA.txt
2023-10-14 00:05:13,265 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01855WI__Historical__B0E923ED8BC5A6D9862581DE00605CDE.txt
2023-10-14 00:05:13,271 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01860WI__Historical__06887648A8B5F1918625826E004F566A.txt
2023-10-14 00:05:13,275 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01861SE (PAGE 3)__Historical__89168609A46961DB8625755200564460.txt
2023-10-14 00:05:13,281 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01865WI__Historical__FFCD499351EB9BF58625826E004F5688.txt
2023-10-14 00:05:13,281 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01866WI__Historical__684204F67C525FE78625832400423151.txt
2023-10-14 00:05:13,282 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01866WI__Historical__7AFE1A066DA610D5862582DB00573D62.txt
2023-10-14 00:05:13,282 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01866WI__Historical__7CBDDE70294BEAC2862584EF005AEADA.txt
2023-10-14 00:05:13,284 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01866WI__Historical__C4C48317209A242D862585B20050409B.txt
2023-10-14 00:05:13,284 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01866WI__Historical__D8549F6E8C82674A862585AE00427850.txt
2023-10-14 00:05:13,298 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01878SE__Current__65A3B575BFB10297862585D90055F157.txt
2023-10-14 00:05:13,298 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01878SE__Historical__EAA34989078B40E386257504007B9E01.txt
2023-10-14 00:05:13,298 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01879WI__Historical__C871DFB14191B835862583010051E688.txt
2023-10-14 00:05:13,311 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01904WI__Historical__64943758B4EB7CE8862584470048B399.txt
2023-10-14 00:05:13,329 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01933LA (1 OF 5)__Historical__88D485158E96CA0A8625746C00746094.txt
2023-10-14 00:05:13,329 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01933LA (2 OF 5)__Historical__45FED7C9503064BB8625746C007460C2.txt
2023-10-14 00:05:13,329 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01933LA (3 OF 5)__Historical__198A4349C8BC5F538625746C007460EA.txt
2023-10-14 00:05:13,329 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01933LA (4 OF 5)__Historical__7A17C5E942AB6BEE8625746C00746118.txt
2023-10-14 00:05:13,329 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA01933LA (5 OF 5)__Historical__BB01633554498A238625746C0074614D.txt
2023-10-14 00:05:13,390 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02009NY__Current__F7309B7D9B008C588625734F00730144.txt
2023-10-14 00:05:13,390 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02009NY__Historical__FAAEB9DD6C170263862570EE0075D483.txt
2023-10-14 00:05:13,412 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02029AT-D__Historical__FA32F7330F4162BA86257D9E006ABC10.txt
2023-10-14 00:05:13,450 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02072NY__Current__3253F44EDCF0EE4786256FF80066640C.txt
2023-10-14 00:05:13,450 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02075SE__Current__5737C5FFCC82453D862586B8006D13BE.txt
2023-10-14 00:05:13,452 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02075SE__Historical__EA2DD4C552044A2A86257B280073CAAE.txt
2023-10-14 00:05:13,454 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02076CH-D__Historical__F9997BD7D5E9A9BB86257443007C6822.txt
2023-10-14 00:05:13,457 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02092SE__Historical__3350BCF059E2E6F8862577E300833D2C.txt
2023-10-14 00:05:13,460 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02098SE__Current__C215170D8A06A53D862579E500515315.txt
2023-10-14 00:05:13,480 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02125AT-D__Historical__A834AC8313A6DAF886257F7000779AD1.txt
2023-10-14 00:05:13,482 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02128AK__Historical__C9C2DC2682ADDF4486257870006E6B4A.txt
2023-10-14 00:05:13,508 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02153LA-D (Page 1)__Historical__D4F6978EA368A6FF86257848006B6B91.txt
2023-10-14 00:05:13,509 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02153LA-D (Page 2)__Historical__95F3A32A5043C91686257848006B6BD3.txt
2023-10-14 00:05:13,510 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02153LA-D Page 1__Historical__5AE3A9D5E666ACB886257E2E00668364.txt
2023-10-14 00:05:13,513 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02153LA-D Page 2__Historical__F6CBD46E19E0686286257E2E00670B77.txt
2023-10-14 00:05:13,520 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02168AK (PG 1)__Current__9E0A571C4BAD5C0386257913006CDDD6.txt
2023-10-14 00:05:13,523 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02171AK__Current__46FC92347D4E7B93862573D8005C0759.txt
2023-10-14 00:05:13,525 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02175AK__Current__F4E95E420134B82286257AF50070355F.txt
2023-10-14 00:05:13,558 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02212AK (PG 2)__Historical__99AA5F021234ACFB86257894007874EC.txt
2023-10-14 00:05:13,564 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02216AK__Historical__22F3967A0C3AAAF086257186005A0565.txt
2023-10-14 00:05:13,569 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02220AK__Current__4458F645F2111E0F862588BD0047046C.txt
2023-10-14 00:05:13,583 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02236AK__Current__C913BA641AB2227586256FE90057CD06.txt
2023-10-14 00:05:13,588 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02241AK__Current__E3C05133014461F0862582CC0050A6D4.txt
2023-10-14 00:05:13,592 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02245CH__Historical__9DDA638E17A0E6D286257D4A006D6D9F.txt
2023-10-14 00:05:13,592 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02245CH__Historical__EB3148EB45067D9F8625749D0055D254.txt
2023-10-14 00:05:13,610 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02255NY__Current__E0A11F2B538F22B4862575C80079C6ED.txt
2023-10-14 00:05:13,620 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02264NY__Current__6562B74C1C56A2EF862571B200538FCA.txt
2023-10-14 00:05:13,693 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02298AK__Current__D2F4F766D9A579D0862573A60074E349.txt
2023-10-14 00:05:13,744 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02343NY__Current__D2CBB1FBB8DACE7B862573540070C73D.txt
2023-10-14 00:05:13,744 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02347LA__Current__96625E5F149F57628625785500678D36.txt
2023-10-14 00:05:13,747 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02350AK__Current__71EF40FEC3BE2E73862585D90055F744.txt
2023-10-14 00:05:13,751 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02357LA__Current__5F7B6FAD7E63AF6C86257DF9005599F1.txt
2023-10-14 00:05:13,751 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02357LA__Historical__1EAD56ADD786F3E0862579E9005E5FDC.txt
2023-10-14 00:05:13,755 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02360AK__Historical__0CFC9A15EAF5D14A86257BAC004D32B1.txt
2023-10-14 00:05:13,756 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02360AK__Historical__D5A25431C617586186257C3F005757C1.txt
2023-10-14 00:05:13,803 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02396AK__Current__88B56536E9528BC386257DE3006FCDE9.txt
2023-10-14 00:05:13,803 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02396AK__Historical__7B40C28565423A1086257A1A0065542A.txt
2023-10-14 00:05:13,814 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02411AK__Current__265A35938A79B7DC86257B7A00495FE9.txt
2023-10-14 00:05:13,833 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02423AT-D__Historical__D26E2EFBAD0512D086257D9E006D656A.txt
2023-10-14 00:05:13,834 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02424AK__Current__337BE77F290E58C086257C7E005F05F4.txt
2023-10-14 00:05:13,836 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02425NY__Current__B836364BBD8E61D2862573540059CADB.txt
2023-10-14 00:05:13,842 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02427CH-D__Historical__875837CE71F48DFB862572DB006881D2.txt
2023-10-14 00:05:13,845 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02430LA__Current__CF77D8F31063A0EA86257DE7007648C8.txt
2023-10-14 00:05:13,859 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02441AK__Current__78FC7A3C3BA6C04386257DE400591525.txt
2023-10-14 00:05:13,861 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02442LA__Current__35F7D87804F28CCB86257E700053E51C.txt
2023-10-14 00:05:13,906 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02486LA__Current__B507B852AFA6D232862585A4003E1AF0.txt
2023-10-14 00:05:13,906 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02486LA__Historical__E492D062263DCA8086257C45006372DF.txt
2023-10-14 00:05:13,926 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02500LA__Current__C18603F0520B088286257C9400575107.txt
2023-10-14 00:05:13,949 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02523LA__Current__FBBF6D8D330CABAC86257D93005008AB.txt
2023-10-14 00:05:13,950 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02525LA__Current__361CA8BC87F043D38625807B00738324.txt
2023-10-14 00:05:13,951 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02525LA__Historical__7BEBCA2C9CC0BB9086257DDC00798DF6.txt
2023-10-14 00:05:13,954 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02529LA__Historical__9ABEE0972A7FACB086257DE20073163C.txt
2023-10-14 00:05:14,003 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02570AT-D__Historical__5BD31B83D9B40E9C86257D9E005E9EC3.txt
2023-10-14 00:05:14,084 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02718SE__Historical__03EA02274E614B998625875200593B83.txt
2023-10-14 00:05:14,138 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02821CH__Current__42CBD4C42444E65C86257F6800721906.txt
2023-10-14 00:05:14,140 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02828CH__Historical__D55968E38ECD7C948625774500682BF9.txt
2023-10-14 00:05:14,145 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02846NY__Current__B9D8AA85FA28386F862578370046F857.txt
2023-10-14 00:05:14,171 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA02906CH__Current__BD2D9089430EDE5386257817005AC590.txt
2023-10-14 00:05:14,215 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03009CE__Historical__FA5F947671EE2E788625857C00433881.txt
2023-10-14 00:05:14,259 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03113AT__Current__E60BACB2ED4A30708625703B006670F5.txt
2023-10-14 00:05:14,261 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03118NY__Historical__6861BDED4E0C84A786257A4C00731744.txt
2023-10-14 00:05:14,284 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03153NY__Historical__4CBDD5F40E21AC0886257AB6006214CB.txt
2023-10-14 00:05:14,292 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03209AT__Current__D32837E681258CE78625710800561B99.txt
2023-10-14 00:05:14,313 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03275NY__Current__59B7B550843E81AD8625818400690962.txt
2023-10-14 00:05:14,326 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03303AT__Current__DF6684D8E87E651B8625826E004A5DEE.txt
2023-10-14 00:05:14,329 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03315NY__Current__C3A51B92638741AB86257BEC006F1918.txt
2023-10-14 00:05:14,346 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03346NY__Current__F29F987D9479C52386257CEE006ED8B1.txt
2023-10-14 00:05:14,355 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03357NY__Current__22910894A8A4EDC586257CEF00500461.txt
2023-10-14 00:05:14,368 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03368NY__Current__3A889348D5390E1686257CF30059A9D6.txt
2023-10-14 00:05:14,375 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03389NY__Historical__9AB59D304182723586257D0E0073FF3F.txt
2023-10-14 00:05:14,399 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03501NY__Current__46ABAA0C04EEEBF286257DCD0059CDBD.txt
2023-10-14 00:05:14,403 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03518AT__Current__E23DF29E51A4FF1E862586A10004612F.txt
2023-10-14 00:05:14,404 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03518AT__Historical__84F5BAF37B07C8E786257FD4006E89B4.txt
2023-10-14 00:05:14,414 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03608AT__Current__C0F0CED151167189862574CE00556085.txt
2023-10-14 00:05:14,420 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03642AT__Historical__EF8BE30D1B586D5C862576F6004E6FCD.txt
2023-10-14 00:05:14,453 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03842NY__Historical__50E1280CD9AAA12C8625826E004A5E4E.txt
2023-10-14 00:05:14,453 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03842NY__Historical__67FACB411566FBE286258097007160EF.txt
2023-10-14 00:05:14,453 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03842NY__Historical__70EFC3A2CCFFF97B862581EC005C5B9A.txt
2023-10-14 00:05:14,453 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03842NY__Historical__8BDF426F7CD09A3D8625858B003F5899.txt
2023-10-14 00:05:14,453 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03842NY__Historical__F03F0CDF6325922C8625822C004DADE3.txt
2023-10-14 00:05:14,454 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03850NY__Current__86373EEEF07A3EA9862580A700610708.txt
2023-10-14 00:05:14,475 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA03959NY__Historical__A4D0AC798054B8E1862581B000467AC5.txt
2023-10-14 00:05:14,507 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA04121CH__Historical__814E9F3907174AD1862581640046DE89.txt
2023-10-14 00:05:14,527 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA04175NY__Current__5C4D5536EF06292986258322005134C0.txt
2023-10-14 00:05:14,532 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA04182NY__Current__5113A8A77BF5E27D862587B8005F36CA.txt
2023-10-14 00:05:14,543 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA04200CH__Current__E5FEE5AE10BAE68D86258218004DE9C7.txt
2023-10-14 00:05:14,543 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA04200CH__Historical__3D0226D3D44628C88625811500420AF1.txt
2023-10-14 00:05:14,556 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA04251AT__Current__85815E7DAA2F93F586257F690050F3A8.txt
2023-10-14 00:05:14,574 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA04320CH__Historical__664310D24447C467862582D5004EB478.txt
2023-10-14 00:05:14,604 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA04409AT__Current__EAD89F496F2B8ADC862585DD004A749C.txt
2023-10-14 00:05:14,610 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA04440CH__Current__75736F7484ACC8B1862584E80051B46D.txt
2023-10-14 00:05:14,612 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA04452NY__Current__DA424EA4DEA2C8D486258782003D9575.txt
2023-10-14 00:05:14,616 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA04460NY__Current__B57065877A5D1F21862586BF00555AF5.txt
2023-10-14 00:05:14,621 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA04472NY__Current__976396D4940307388625860900496C35.txt
2023-10-14 00:05:14,626 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA04482CH__Current__DRSDOCID124899456520221130063416.txt
2023-10-14 00:05:14,655 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA04633NY__Current__249E3A5DB6F6BAF1862586CA006051AC.txt
2023-10-14 00:05:14,675 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA09003AC-D__Current__81DFB1A4777B9FA985256CC1007F3994.txt
2023-10-14 00:05:14,677 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA09007AC-D__Current__54909E98421C210B85256CC1007F3999.txt
2023-10-14 00:05:14,702 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA09126AC-D__Current__D9B1D78CB543B8AB85256CC1007F39CB.txt
2023-10-14 00:05:14,742 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA09208AC-D__Current__61865A42DD832F9F85256CC1007F3A15.txt
2023-10-14 00:05:14,748 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA09218SC__Historical__4390CD15C70D60208625792C007045FE.txt
2023-10-14 00:05:14,798 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA09299AC-D__Current__2DE5AF1DC1C1027285256CC1007F3A75.txt
2023-10-14 00:05:14,842 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA09382SC__Current__AF61BCD9DF2C6A7C862585C70052F147.txt
2023-10-14 00:05:14,897 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA09537AC-D__Current__47C02E22DDF45CE386257092006C6F3A.txt
2023-10-14 00:05:14,897 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA09538AC-D__Current__9B34A6116463ACD086257092006C6E72.txt
2023-10-14 00:05:14,898 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA09539AC-D__Historical__873592CFC27D687D862571570069D8DE.txt
2023-10-14 00:05:14,924 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA09650SC__Current__EBFE06A026CE1AAF8625702800648327.txt
2023-10-14 00:05:14,929 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA09695AC__Current__3D4B7BCBE01B72FA86257D0A005E0697.txt
2023-10-14 00:05:14,929 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA09695AC__Historical__0D077C64CB2C84418625767E00566733.txt
2023-10-14 00:05:14,949 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA09839SC__Current__34B56AA5D89E576085256CC1007F3B5E.txt
2023-10-14 00:05:14,952 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA09852SC__Current__432E3740DEF550D386257067004C5CBA.txt
2023-10-14 00:05:15,007 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1-368__Current__85FC5647FE3614BF862578F80043400F.txt
2023-10-14 00:05:15,008 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1-373__Current__C90C4684ACC10D3E8625714800712ED9.txt
2023-10-14 00:05:15,037 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1003NE__Historical__1202FFF8C20AE3C4862575F50046CA34.txt
2023-10-14 00:05:15,066 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA100RM__Historical__222D4A10141C8D8F86257F720075F47F.txt
2023-10-14 00:05:15,087 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1016WE__Current__53E0C9C085BB8347862570C8005A77E3.txt
2023-10-14 00:05:15,114 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA10236SC (1 OF 4)__Historical__9F0AB497FD593397862570A70067D7C4.txt
2023-10-14 00:05:15,114 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA10236SC (1 OF 4)__Historical__AEBBC220D5FE76F2862572A30066BB33.txt
2023-10-14 00:05:15,116 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA10236SC (2 OF 4)__Historical__2105C74B73D4F00B862570A70067D835.txt
2023-10-14 00:05:15,116 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA10236SC (2 OF 4)__Historical__E72ADFE3EC77CFB4862572A30066BB84.txt
2023-10-14 00:05:15,117 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA10236SC (3 OF 4)__Historical__6816EBA53DEA5E26862570A70067D8A0.txt
2023-10-14 00:05:15,117 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA10236SC (3 OF 4)__Historical__95BB474E5E14956D862572A30066BBCE.txt
2023-10-14 00:05:15,119 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA10236SC (4 OF 4)__Historical__17F3743798E327E4862572A30066BC0F.txt
2023-10-14 00:05:15,139 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1028NW__Current__D53147BCEA82B9E185256CC10080DC81.txt
2023-10-14 00:05:15,245 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA10615SC__Historical__2B22FDE467DE8E6B8625737D006D8B0D.txt
2023-10-14 00:05:15,246 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA10616SC__Historical__D23301D994C0071886257888006CB808.txt
2023-10-14 00:05:15,249 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1063SO__Current__80F057185807D7B78625778900738F8A.txt
2023-10-14 00:05:15,251 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1064SW__Current__431AEE6B38F2500586257D40005B723D.txt
2023-10-14 00:05:15,276 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1070CE__Current__E96A786D5B637F32862571C70061B679.txt
2023-10-14 00:05:15,324 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1088SO__Current__FD35EE45DBE4E1BF862577890073E063.txt
2023-10-14 00:05:15,325 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1089NW__Historical__3DB29B2C8BB2054386257196006DB2A1.txt
2023-10-14 00:05:15,347 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1096NW__Historical__67936D0DA74D40E48625719A005059FE.txt
2023-10-14 00:05:15,351 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1097NW__Historical__9609AC66F16E246286257449004DA578.txt
2023-10-14 00:05:15,352 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1098WE__Current__AA0CAD580DF6343C86258273004D72E7.txt
2023-10-14 00:05:15,428 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1119NW__Historical__D5F8241D26B4DE0785256CC10080DE49.txt
2023-10-14 00:05:15,495 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1143WE__Current__F811FF0BD703AF208625773D0065D517.txt
2023-10-14 00:05:15,513 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1151SO__Historical__C742967AEB54D9558625784E007679EA.txt
2023-10-14 00:05:15,527 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1161SW__Current__D899C5F1C76FC9E7862580B4007041CF.txt
2023-10-14 00:05:15,528 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1161SW__Historical__0D9AAD365FE5848986257F4800679171.txt
2023-10-14 00:05:15,528 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1161SW__Historical__2FEEC129EBD0451F8625804A00586DF3.txt
2023-10-14 00:05:15,528 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1161SW__Historical__8085F67651FCB3CB86257E830054DC45.txt
2023-10-14 00:05:15,572 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1184NW__Current__78A3179C6794FFBF8625703C0065D6ED.txt
2023-10-14 00:05:15,610 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1201SW__Historical__7E5EA9ED04B2672386257512007B09D0.txt
2023-10-14 00:05:15,626 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA120WE__Current__2BCEEE8D8E0A3D3C862570BA00532C93.txt
2023-10-14 00:05:15,633 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1213NW__Current__A5C3B83907DC85A886257328006536A1.txt
2023-10-14 00:05:15,656 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1225NW__Current__AECA47249CD10AE886257A3A006D4199.txt
2023-10-14 00:05:15,657 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1226NW__Current__4AE72F562E2B0A3E86257A3A006D6BD4.txt
2023-10-14 00:05:15,668 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1231EA__Current__88AFED5E5B645ADB85256CC10080E06E.txt
2023-10-14 00:05:15,736 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1264EA__Current__F4CBF85641F57EAA85256CC10080E0FE.txt
2023-10-14 00:05:15,741 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1267EA__Current__F1CF8772C8FE6EAF85256CC10080E10D.txt
2023-10-14 00:05:15,742 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1268EA__Current__4F49A8197950B03185256CC10080E111.txt
2023-10-14 00:05:15,756 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1274GL__Current__1C7E988E202971828625811D00696754.txt
2023-10-14 00:05:15,756 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1274SW__Current__6506AD9B90A9B5AA86257D430047720A.txt
2023-10-14 00:05:15,803 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1305SW__Historical__1879E21DF6213A2986257EC10068F245.txt
2023-10-14 00:05:15,808 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1308NM__Current__E4D68EA2B639E372862572C6004E4356.txt
2023-10-14 00:05:15,813 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1310NM__Historical__38F1B788FCBCBBCD8625719A005219A6.txt
2023-10-14 00:05:15,817 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1311GL__Historical__B989FDA7220F016786257A3700657EAA.txt
2023-10-14 00:05:15,829 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1321SW__Current__99A170393124CCBA85256CC100820ED4.txt
2023-10-14 00:05:15,830 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1323SW__Current__4BE554CF8574A80F85256CC100820EDB.txt
2023-10-14 00:05:15,841 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1333CE__Current__942D2DEF8EFBF4FB862579A600640244.txt
2023-10-14 00:05:15,841 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1333NM__Current__FCA50EB0CC3B757386257FEE00655910.txt
2023-10-14 00:05:15,842 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1333NM__Historical__4DDF9EEAFB23DAF78625719A00523C9C.txt
2023-10-14 00:05:15,864 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1348SW__Current__5BDAC094E8736C6285256CC100820F51.txt
2023-10-14 00:05:15,868 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1351SW__Current__A8386EB58BE1ABA385256CC100820F62.txt
2023-10-14 00:05:15,874 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1358SO__Current__59FBF6E7592795E586256EE500655F73.txt
2023-10-14 00:05:15,877 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA135CE__Current__256EC1728EF3AF1C862578EF005281A5.txt
2023-10-14 00:05:15,880 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1360NM__Current__395FBCFA27A598CB86257FEE006634C0.txt
2023-10-14 00:05:15,880 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1360NM__Historical__08E32244C2D3ECC48625719A0052B555.txt
2023-10-14 00:05:15,880 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1360SW__Current__A2FD8C562A83D4E785256CC100820F92.txt
2023-10-14 00:05:15,885 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1366CE__Current__11E90334C0551F8F862579A6006402EB.txt
2023-10-14 00:05:15,885 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1366SW__Current__397947CE1CDFB11485256CC100820FAA.txt
2023-10-14 00:05:15,902 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1375NM__Current__489BE006EA94D4A886257FEE00668ADD.txt
2023-10-14 00:05:15,902 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1375NM__Historical__603CAED41327897D8625719A0052DB0D.txt
2023-10-14 00:05:15,905 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1377NM__Current__6BFD946C6E49A38986257FEE0066EE44.txt
2023-10-14 00:05:15,905 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1377NM__Historical__B1A59BFCAD1745FB8625719A00531874.txt
2023-10-14 00:05:15,906 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1378NM__Current__0F1786B31BEB47AA86257FEE00676ED9.txt
2023-10-14 00:05:15,908 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1379NM__Current__47DCA2A65030E9EC8625711C0066D964.txt
2023-10-14 00:05:15,912 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1382WE__Current__4A176065226B9D628625871F0008FF3E.txt
2023-10-14 00:05:15,920 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1387NM__Current__C929F5182F88B29B86257449004DA4F1.txt
2023-10-14 00:05:15,933 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1394SW__Current__E446377418ED18CB85256CC100821031.txt
2023-10-14 00:05:15,960 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1403SW__Current__9EBD9EDB033E938D85256CC100821065.txt
2023-10-14 00:05:15,967 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1409SW__Current__C69E4FBD97BF4E9285256CC10082107A.txt
2023-10-14 00:05:15,968 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1410NM__Current__8CC5FF2D5AE08EE686257A1400673561.txt
2023-10-14 00:05:16,004 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1431NM__Current__1C54B185514C64CF862586E80048DB12.txt
2023-10-14 00:05:16,010 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1433WE__Current__614BA4A881FBBBF6862580B50059CB5B.txt
2023-10-14 00:05:16,016 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1435WE__Current__135EE1668B993A3E8625871F0009780F.txt
2023-10-14 00:05:16,016 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1435WE__Historical__F60C86EE47BE0080862570540062BEB4.txt
2023-10-14 00:05:16,021 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1440NM__Current__B0C291E23B0C421D86257A15005401F5.txt
2023-10-14 00:05:16,023 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1441SW__Current__7BF001E75A4B5EA285256CC1008210FD.txt
2023-10-14 00:05:16,024 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1441WE__Current__DBA5D8FE93998C9F8625871F0009AD4D.txt
2023-10-14 00:05:16,038 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1448CE__Current__DA34C1271A2942FB8625792C006BE1DD.txt
2023-10-14 00:05:16,047 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1454SW__Current__9A41E10BFA0FE1D885256CC100821137.txt
2023-10-14 00:05:16,050 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1455SO__Current__EC1C24A9C10A462F862574B900696096.txt
2023-10-14 00:05:16,050 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1456SW__Current__2D842C04F39179F885256CC100821141.txt
2023-10-14 00:05:16,052 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1457SW__Current__65D2B5AD796C1E8986257D43006FD4FE.txt
2023-10-14 00:05:16,056 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1460SW__Current__889050BF84D4E41C85256CC100821156.txt
2023-10-14 00:05:16,077 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA146SW__Current__3152B3D2EF4CAD0B86257D43005D6C81.txt
2023-10-14 00:05:16,091 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1474SO__Historical__FB246F78B61D194486256D0B0072A2F9.txt
2023-10-14 00:05:16,109 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1484SW__Current__0460895194E0EFF085256CC1008211C8.txt
2023-10-14 00:05:16,112 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1486CE__Current__3DE6162D7BB482E98625817D00510FB3.txt
2023-10-14 00:05:16,112 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1486CE__Historical__567AAF5272B10C7286257A7F00655A7A.txt
2023-10-14 00:05:16,149 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1502SW__Current__349B31511C4A271285256CC10082122A.txt
2023-10-14 00:05:16,160 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1510SW__Current__DE999C27AFDD2DD585256CC100821254.txt
2023-10-14 00:05:16,170 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1513SW__Current__5D917D82833E121486257D470051155B.txt
2023-10-14 00:05:16,171 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1513WE__Historical__539CAD74C8B2A07986257054006EB98B.txt
2023-10-14 00:05:16,181 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1518SO__Current__D46B8028AF1B6FFF86257B1700707789.txt
2023-10-14 00:05:16,185 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA151SW__Current__CFEF0515FFADA1CB86257D43005DE2D5.txt
2023-10-14 00:05:16,205 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1525WE__Historical__3D6CAFDC969D03D386257054006EF95E.txt
2023-10-14 00:05:16,209 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1527WE__Current__029913CC42EC3B2186257B1100517075.txt
2023-10-14 00:05:16,210 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1527WE__Historical__F2F87635E0FC08988625726E004F2965.txt
2023-10-14 00:05:16,230 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1536SW__Historical__B82DDDC854A3EBD686257D470053DFB4.txt
2023-10-14 00:05:16,234 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1538SW__Current__DAC873EEF376C5E185256CC1008212E7.txt
2023-10-14 00:05:16,257 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA154NW__Current__7A08D5FAC94435088625871E0051FAE7.txt
2023-10-14 00:05:16,257 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA154NW__Historical__35D5A38E4617018C862570A60063B968.txt
2023-10-14 00:05:16,264 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1553SW__Current__951435D8D9745D7A86257D47005B1B31.txt
2023-10-14 00:05:16,267 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1554SW__Current__B2A1B8E4309770C085256CC100821334.txt
2023-10-14 00:05:16,272 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1556SW__Current__3172E7C909E9F9FA85256CC10082133D.txt
2023-10-14 00:05:16,299 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1564SW__Current__389AEA5D5E931A5185256CC100821368.txt
2023-10-14 00:05:16,321 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1571SW__Current__89707F48A78DCF3885256CC10082138F.txt
2023-10-14 00:05:16,334 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1580SW__Current__76B91A9134AC914085256CC1008213BB.txt
2023-10-14 00:05:16,347 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1587SW__Current__7BECECD8DBE506B385256CC1008213E2.txt
2023-10-14 00:05:16,356 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA158NE__Current__79150A6F576BCA5086257FE00075ABEB.txt
2023-10-14 00:05:16,356 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA158NE__Historical__33C3ED04037CE797862571950070C6A3.txt
2023-10-14 00:05:16,376 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA15GL__Current__3D27854758E091CE85256CC100821429.txt
2023-10-14 00:05:16,378 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1600SO__Current__F33060426C13384A862574A500572FA2.txt
2023-10-14 00:05:16,398 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1610WE__Current__E3EB076FD515D9CE86257997006DA936.txt
2023-10-14 00:05:16,406 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1614SO__Current__5CDD510D3018F914862574BE006483E0.txt
2023-10-14 00:05:16,407 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1614WE__Current__E78024980ABE6F23862572A300688048.txt
2023-10-14 00:05:16,413 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1617SW__Current__EA3722E12031E35E86257D51006CA8F4.txt
2023-10-14 00:05:16,431 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1627WE__Current__5FF6C17E660EC4708625871F0048B8F3.txt
2023-10-14 00:05:16,431 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1627WE__Historical__8EC5FE2AB4E61AF6862570A60063F20B.txt
2023-10-14 00:05:16,442 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1636WE__Current__DRSDOCID162913289320230228190641.txt
2023-10-14 00:05:16,456 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1648NM__Current__4DE4BBFB14448FCD862579FE006E4171.txt
2023-10-14 00:05:16,463 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1650NM__Current__DRSDOCID101822143520230223154938.txt
2023-10-14 00:05:16,478 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1662NM__Historical__850D3CD59750234C86258637006D6B56.txt
2023-10-14 00:05:16,491 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1667SW__Current__8B14C25FEEF30D5085256CC10083CE88.txt
2023-10-14 00:05:16,502 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1672SW__Current__1F1456AF4329291185256CC10083CE9C.txt
2023-10-14 00:05:16,504 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1673NM__Current__FF189EA0FA0AEA7385256CC10083CE9F.txt
2023-10-14 00:05:16,520 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1686SO__Current__6401183A9F92F5E2862574A50057301D.txt
2023-10-14 00:05:16,523 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1687WE__Current__99CE511C0531F7A08625799E00684818.txt
2023-10-14 00:05:16,525 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1689WE__Current__4DE448E2D8FF2FBD8625871F0049A464.txt
2023-10-14 00:05:16,525 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1689WE__Historical__D2F467E6B50EC36486257054006F277E.txt
2023-10-14 00:05:16,529 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1691GL__Current__C854D067EAEF892B8625792C00573273.txt
2023-10-14 00:05:16,529 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1691GL__Historical__E9E9B6D64192FE148625786B005F1C26.txt
2023-10-14 00:05:16,530 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1692SO__Current__39D3505E8DF37E52862574A50057305A.txt
2023-10-14 00:05:16,532 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1693SW__Current__F442D2273E7B397A85256CC10083CEEC.txt
2023-10-14 00:05:16,550 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1703SW__Current__2A70A1D45613985185256CC10083CF13.txt
2023-10-14 00:05:16,555 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1705WE__Current__844767D74FCCC3E38625727600677EDC.txt
2023-10-14 00:05:16,586 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1727CE__Current__08CCD8151A91F5DB862571C70061B6C4.txt
2023-10-14 00:05:16,589 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1728SW__Current__E4AFA5C6904A19D186257D5500437B65.txt
2023-10-14 00:05:16,611 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1742SW__Current__46C0AE9D80925B0686257D550045E595.txt
2023-10-14 00:05:16,611 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1743SW__Current__71B68F9C422B8AD885256CC10083CFC1.txt
2023-10-14 00:05:16,627 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1752SW__Current__2D6752492897E1BA85256CC10083CFE0.txt
2023-10-14 00:05:16,632 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1754WE__Current__B712900ACF12D62086256F340072B844.txt
2023-10-14 00:05:16,638 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1758WE__Current__FFB1224BC583450186257AA70057089A.txt
2023-10-14 00:05:16,638 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1758WE__Historical__537D93708BF00C8E8625727600688B2A.txt
2023-10-14 00:05:16,642 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1761GL__Current__41268BC2B73BA81686257B79005E3CDE.txt
2023-10-14 00:05:16,648 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1765SW__Current__A9E81A1996D96AF885256CC10083D017.txt
2023-10-14 00:05:16,678 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1775NM__Current__AFB368F57CAD8CE3862579FE0057BC6E.txt
2023-10-14 00:05:16,708 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1784SW__Current__CEB8F08F3006EA0E85256CC10083D072.txt
2023-10-14 00:05:16,709 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1785GL__Current__34CFCE09FB16B3D2862574B1006B8C90.txt
2023-10-14 00:05:16,713 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1786SW__Current__B9E823669934844E85256CC10083D07C.txt
2023-10-14 00:05:16,734 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1794NM__Current__84663CFE6602A936862579DF0071DC0A.txt
2023-10-14 00:05:16,737 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1796GL__Current__B1772D2A8CC29620862582B900518552.txt
2023-10-14 00:05:16,738 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1797NM__Current__9A9580ADA476905A862580D5005F60F9.txt
2023-10-14 00:05:16,739 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1797NM__Historical__10F25BC0CCC9AC4A862579E9005AC4DC.txt
2023-10-14 00:05:16,739 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1797NM__Historical__BC4013160E4BDF1B86257A07005258CD.txt
2023-10-14 00:05:16,739 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1797NM__Historical__D64B319083C38D0D8625709A005385E2.txt
2023-10-14 00:05:16,751 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1802WE__Current__C8F7816264B4B4A98625799E006983EC.txt
2023-10-14 00:05:16,759 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1808SW__Current__BAE7072B26A47B5F85256CC10083D0E5.txt
2023-10-14 00:05:16,759 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1809WE__Current__BDAC935BD4E891DA862572C6004F9277.txt
2023-10-14 00:05:16,775 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1819NM__Current__C68CD7D3088C45C485256CC10083D119.txt
2023-10-14 00:05:16,779 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA181SO__Historical__AB177960A449F108862571A80071385A.txt
2023-10-14 00:05:16,791 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1827CE__Current__E406E58634E1416285256CC10083D140.txt
2023-10-14 00:05:16,792 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1827SW__Current__5D0588C6E1576F0685256CC10083D142.txt
2023-10-14 00:05:16,807 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1838SW__Current__9CE71B890A7E68ED85256CC10083D16D.txt
2023-10-14 00:05:16,823 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1845SW__Current__94E90AFE3C75414785256CC10083D187.txt
2023-10-14 00:05:16,826 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1846SW__Current__DB549C675C838A0485256CC10083D18C.txt
2023-10-14 00:05:16,839 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1859SW__Current__9BB694634A7F914385256CC10083D1BF.txt
2023-10-14 00:05:16,841 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1861SW__Current__49CA452F3F92EF4D86257D5700651632.txt
2023-10-14 00:05:16,841 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1863SO__Current__04CA1CD6381A3637862577420073C04B.txt
2023-10-14 00:05:16,849 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA186NW__Current__9CB1CC752A93C99986257D5600548EC9.txt
2023-10-14 00:05:16,851 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1872SW__Current__9ED0E263B674A3AD85256CC10083D1EF.txt
2023-10-14 00:05:16,858 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1880SO__Current__D0BD69BCED72F606862574BE006C368C.txt
2023-10-14 00:05:16,860 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1882SW__Current__9E254784C8B74BB685256CC10083D21C.txt
2023-10-14 00:05:16,879 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1896SW__Current__70DA6F4C537719C8862574A5005675F2.txt
2023-10-14 00:05:16,888 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1902CE__Historical__EED5BD468330CE2C862572C8004F1E04.txt
2023-10-14 00:05:16,901 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1915SW__Current__ED786E071981FF9C86257D7A0054841C.txt
2023-10-14 00:05:16,911 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1923SW__Historical__95E1BDE3C66FD15386257D7A0055674F.txt
2023-10-14 00:05:16,919 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1928SW__Current__600F24FE46B976F885256CC10083D2D8.txt
2023-10-14 00:05:16,921 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1929SW__Current__F282A2D53B2B15B985256CC10083D2DD.txt
2023-10-14 00:05:16,931 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1934SW__Current__6FA9316A0D526F26862574A50056771F.txt
2023-10-14 00:05:16,946 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1940SW__Current__9EAD27716400D3D385256CC10083D312.txt
2023-10-14 00:05:16,948 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1941SW__Current__B6C42C20B42FE65F85256CC10083D315.txt
2023-10-14 00:05:16,964 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA194SW__Current__E195BDD747AD9D8086257D790069F78D.txt
2023-10-14 00:05:16,974 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1956WE__Current__8E4B1834424EB13F862570BA0054FC8E.txt
2023-10-14 00:05:16,995 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1972SO__Current__B8F2554B1609427785256CC10083D38D.txt
2023-10-14 00:05:17,006 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1983NM__Current__76F8710495E3A5588625711E005270D7.txt
2023-10-14 00:05:17,014 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1991NM__Current__A32AD486D2D25CE9862579E300785D4A.txt
2023-10-14 00:05:17,018 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1993SO__Current__D301230408E328C88625778F0045E306.txt
2023-10-14 00:05:17,018 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1993SO__Historical__0FE4B308C04B2DCF86256FE3005E72F3.txt
2023-10-14 00:05:17,019 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1994NM__Current__5C08C24C1701F7E186257FEE006A6BC3.txt
2023-10-14 00:05:17,020 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1995NM__Current__B2C8BB75775E2C0B86257FEA006B22D4.txt
2023-10-14 00:05:17,030 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA1999NM__Current__8B022954616440BE86257D960068F739.txt
2023-10-14 00:05:17,032 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA199GL__Current__59A65F561AF4D7F8862572AE006EA554.txt
2023-10-14 00:05:17,042 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-100__Current__F1C7D65EC63103DD85256CC10083D40E.txt
2023-10-14 00:05:17,045 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-102__Current__9BD54157E2F65FB085256CC10083D411.txt
2023-10-14 00:05:17,045 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-103__Current__F71E56D89B61580185256CC10083D414.txt
2023-10-14 00:05:17,050 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-109__Current__41C9232E777D46F385256CC10083D41A.txt
2023-10-14 00:05:17,051 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-1127__Current__341B52117E78CAE385256CC10083D41D.txt
2023-10-14 00:05:17,055 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-1157__Current__7B38BA241E1DAECB85256CC10083D425.txt
2023-10-14 00:05:17,055 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-1158__Current__DEC5E80F3C00EA5085256CC10083D426.txt
2023-10-14 00:05:17,059 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-1167__Current__6C53618C2C3998CD86257D7900579B6F.txt
2023-10-14 00:05:17,066 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-148__Current__006A512D5B0511C585256CC10083D43D.txt
2023-10-14 00:05:17,066 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-14__Current__6D4C0D9AD732E46A85256CC10083D43B.txt
2023-10-14 00:05:17,068 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-1521__Current__7EAE27D33BD320B486257D7900589BD9.txt
2023-10-14 00:05:17,070 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-1531__Current__168F4A28F405F8A986257D790059E174.txt
2023-10-14 00:05:17,070 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-1532__Current__A9DB6A5C559C9BDD86257D7900627613.txt
2023-10-14 00:05:17,070 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-1538__Current__58563C2929C70BE586257D7900632F84.txt
2023-10-14 00:05:17,072 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-1558__Current__6E7F414F5E72BE4585256CC10083D44A.txt
2023-10-14 00:05:17,072 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-1571__Current__7DF98ABB50106CD486257D790063CDEE.txt
2023-10-14 00:05:17,073 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-163__Current__D4D30C18D979938B85256CC10083D44D.txt
2023-10-14 00:05:17,073 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-164__Current__3AEB75680863F31685256CC10083D44E.txt
2023-10-14 00:05:17,073 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-17__Current__D0F9215C355CF95B85256CC10083D44F.txt
2023-10-14 00:05:17,074 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-193__Current__F4AE33A50126B11A85256CC10083D451.txt
2023-10-14 00:05:17,079 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-222__Current__3C28059C9774843985256CC10083D459.txt
2023-10-14 00:05:17,083 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-238__Current__07B3CB287B62024F85256CC10083D461.txt
2023-10-14 00:05:17,085 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-251__Current__D16E19D4B5F2CDBE85256CC10083D465.txt
2023-10-14 00:05:17,086 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-26__Current__4FB006325AF9C85C85256CC10083D466.txt
2023-10-14 00:05:17,086 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-271__Current__F35CB288E976A63985256CC10083D468.txt
2023-10-14 00:05:17,087 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-27__Current__C1FA7E71338F60F985256CC10083D467.txt
2023-10-14 00:05:17,088 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-282__Current__1CCAA26F70128FB485256CC10083D46C.txt
2023-10-14 00:05:17,088 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-286__Current__7C7ABA9138C5BA0E85256CC10083D46D.txt
2023-10-14 00:05:17,089 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-303__Current__476DD151B3B1EF2585256CC10083D470.txt
2023-10-14 00:05:17,092 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-316__Current__C8BF50017FA55E0A85256CC10083D475.txt
2023-10-14 00:05:17,092 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-318__Current__29290A7D8F9C0BFF85256CC10083D476.txt
2023-10-14 00:05:17,095 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-346__Current__08A37F7FB3EDB74685256CC10083D47C.txt
2023-10-14 00:05:17,096 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-347__Historical__D638289DF28132E086258028005E5298.txt
2023-10-14 00:05:17,097 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-357__Current__BB39C763B697933885256CC10083D47F.txt
2023-10-14 00:05:17,098 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-382__Current__5CFEF848EE904EDC85256CC10083D481.txt
2023-10-14 00:05:17,103 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-433__Historical__02D53A279FA30D1D86257F2B005DAA2B.txt
2023-10-14 00:05:17,105 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-43__Current__8F38B6C38D9C9C3885256CC10083D487.txt
2023-10-14 00:05:17,107 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-447__Current__68060AC1E979CEB385256CC10083D48C.txt
2023-10-14 00:05:17,112 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-500__Current__8C37776425E17EDC85256CC10083D497.txt
2023-10-14 00:05:17,112 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-511__Current__01F2FF70F57C621B85256CC10083D499.txt
2023-10-14 00:05:17,114 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-515__Current__F143B63E5BEE21DE85256CC10083D49D.txt
2023-10-14 00:05:17,117 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-519__Current__1B11923EC1E87F5785256CC10083D4A1.txt
2023-10-14 00:05:17,117 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-51__Current__41E55504AF27776685256CC10083D498.txt
2023-10-14 00:05:17,118 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-524__Current__B415741FDC86091B85256CC10083D4A5.txt
2023-10-14 00:05:17,119 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-52__Current__3C19A2CBE719581785256CC10083D4A2.txt
2023-10-14 00:05:17,122 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-560__Current__C224C2B2BFF7131E85256CC10083D4AD.txt
2023-10-14 00:05:17,131 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-614__Current__35E124AD8D29B9F285256CC10083D4B9.txt
2023-10-14 00:05:17,134 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-636__Current__9242B6BB43C1D9F785256CC10083D4BF.txt
2023-10-14 00:05:17,136 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-645__Historical__E6D3A01E29099CF186258028005EBD9B.txt
2023-10-14 00:05:17,140 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-691__Current__B44F10723E05927585256CC10083D4C7.txt
2023-10-14 00:05:17,142 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-6__Current__427212D86CC3EB1785256CC10083D4B6.txt
2023-10-14 00:05:17,146 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-72__Current__FCBC7D113C7ECDBA85256CC10083D4D0.txt
2023-10-14 00:05:17,147 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-73__Current__B847FC938D6D912485256CC10083D4D2.txt
2023-10-14 00:05:17,147 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-75__Current__CA92E9E71B85D7D585256CC10083D4D7.txt
2023-10-14 00:05:17,149 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-767__Current__C997A0C920DB73B285256CC10083D4DA.txt
2023-10-14 00:05:17,150 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-771__Current__0F99C320CFA0F08C85256CC10083D4DC.txt
2023-10-14 00:05:17,154 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-80__Current__EE7759540ACFC5E085256CC10083D4E0.txt
2023-10-14 00:05:17,154 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-812__Current__D3C83B5E4E4BC14585256CC10083D4E4.txt
2023-10-14 00:05:17,158 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-843__Current__AD0D02CD25B8593985256CC10083D4EB.txt
2023-10-14 00:05:17,159 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-867__Current__C09C7C80CE4B2BAD85256CC10083D4ED.txt
2023-10-14 00:05:17,159 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-868__Current__9782C724D603883E85256CC10083D4EE.txt
2023-10-14 00:05:17,165 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-89__Current__2B81CEE427C43F9485256CC10083D4F7.txt
2023-10-14 00:05:17,166 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-907__Current__CBD35CD7DCCC938C85256CC10083D4FA.txt
2023-10-14 00:05:17,167 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-918__Current__55C715A38041AFD285256CC10083D4FE.txt
2023-10-14 00:05:17,167 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2-926__Current__E876B7F983F6781C85256CC10083D4FF.txt
2023-10-14 00:05:17,176 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2000NM__Current__F34730BE6566C46986257D96006A8285.txt
2023-10-14 00:05:17,194 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2012NM__Current__2289129B45DD04F886257FEE006ACAA9.txt
2023-10-14 00:05:17,201 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2019NM__Current__E9638205CB9A05308625711C00678A67.txt
2023-10-14 00:05:17,206 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2029NM__Current__0833732E1687AE8D862579E4007B4525.txt
2023-10-14 00:05:17,214 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2035NM__Historical__6F872B34EB551FBE862571A20053DAC0.txt
2023-10-14 00:05:17,226 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2049NM__Current__C768AAB4C55D64428625711E0052C43E.txt
2023-10-14 00:05:17,247 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2057SO__Current__952C3C10094BA0F1862582CC005B49A6.txt
2023-10-14 00:05:17,254 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA205SW__Current__3118E74F1233868F86257D7900723A45.txt
2023-10-14 00:05:17,347 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2111SO__Historical__6FCC0B4DFF41BB8E86257623005E877D.txt
2023-10-14 00:05:17,347 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2111SO__Historical__CD94729C5AD92F24862571F4006AC498.txt
2023-10-14 00:05:17,347 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2111SO__Historical__DD2D237B938AD8AC862570980064B5B2.txt
2023-10-14 00:05:17,402 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2136SW-AC__Current__FA8B51B0A0C6FA2585256CC200015A17.txt
2023-10-14 00:05:17,421 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2147NM__Current__2B9CD75E48E01FB2862580D5005FD16E.txt
2023-10-14 00:05:17,422 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2147NM__Historical__2CBB6B91BD938F0386257386007B04B0.txt
2023-10-14 00:05:17,427 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2149CE__Current__3E6B565C8E0D18D78625792C00702CA8.txt
2023-10-14 00:05:17,472 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2179WE__Current__F5B4E4CEE5E344848625871F004C5ED0.txt
2023-10-14 00:05:17,478 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2182WE__Current__E26F44A92B05062F8625799E0063DFD1.txt
2023-10-14 00:05:17,494 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2191WE__Current__4CAC5020E53CDA678625871F004CDD17.txt
2023-10-14 00:05:17,499 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2193NM__Current__D6F686630163B4F7862579DF00698C02.txt
2023-10-14 00:05:17,533 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2206WE__Current__C484976D1738F2A48625799700575D31.txt
2023-10-14 00:05:17,546 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA220SW__Current__4E79E96C1EB2810186257D7A005081C2.txt
2023-10-14 00:05:17,547 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2210SW__Current__6CAABB133E2B542386257D7B004BF10B.txt
2023-10-14 00:05:17,559 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2217WE__Current__06D1297C8773555D8625871F004D9671.txt
2023-10-14 00:05:17,583 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2226NM__Current__E75CC602872DD85D862586B6004C546C.txt
2023-10-14 00:05:17,609 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2239CE__Historical__3561EC78F3F18EAE862576EA007122A7.txt
2023-10-14 00:05:17,610 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2239CE__Historical__B92A53A8A4904038862572BF00602386.txt
2023-10-14 00:05:17,610 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2239CE__Historical__C3518F21776DF9AB862574C8004694CE.txt
2023-10-14 00:05:17,614 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2242NM__Historical__8808E9F23F16DAAB862575460056A30E.txt
2023-10-14 00:05:17,641 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2256WE__Historical__1445F27F6C1EAD93862576B8004AD5BB.txt
2023-10-14 00:05:17,665 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2270WE__Historical__C12C0F9A883C465A862571AA00502489.txt
2023-10-14 00:05:17,708 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2299WE__Current__8712EA272DCFF2258625799600571300.txt
2023-10-14 00:05:17,708 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA229GL__Current__9D9488F8600080B785256CC200015C3A.txt
2023-10-14 00:05:17,737 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2312WE__Historical__9F3C5DD0E328BF41862570A60066916D.txt
2023-10-14 00:05:17,764 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2320SO__Current__D4A3BB64F57C58FE86257B79005E7505.txt
2023-10-14 00:05:17,770 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2323SO__Current__B7F300DB6BDA5689862574890064158A.txt
2023-10-14 00:05:17,810 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2340WE__Current__0020E570F339FD51862570540072D405.txt
2023-10-14 00:05:17,818 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2348CE__Current__2682A08C9D3687168625808400701FD8.txt
2023-10-14 00:05:17,835 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2353NM__Historical__862FDD9F3192BE23862577C0006A8F3D.txt
2023-10-14 00:05:17,875 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2367CE__Current__10DAFD96CD95EB9686257E26006CF017.txt
2023-10-14 00:05:17,875 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2367CE__Historical__45F5AEA6896E2CB3862574C80046953F.txt
2023-10-14 00:05:17,906 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2377WE__Current__9258E2DDBA16A863862579980067F060.txt
2023-10-14 00:05:17,919 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2383WE__Historical__5E2A52A0A125DD81862571AA0050F6D2.txt
2023-10-14 00:05:17,932 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2392WE__Current__C861A3186DBCE42F8625799800662510.txt
2023-10-14 00:05:17,962 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2407NM__Current__D7720893D33EDF488625861C00630AD9.txt
2023-10-14 00:05:17,969 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA240NW__Current__ECDFA7A938E2C575862585CE0046E1AF.txt
2023-10-14 00:05:17,970 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2410NM__Current__D262454BE5AA85C886257FEA006C79E1.txt
2023-10-14 00:05:17,971 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2410NM__Historical__46D9F5827A38F5C0862571A200541F4E.txt
2023-10-14 00:05:17,974 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2414WE__Current__D892C496278D3251862570C9006B39BA.txt
2023-10-14 00:05:17,981 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2420NM__Current__4452B2B5244340DB86257FEA006CE72D.txt
2023-10-14 00:05:17,981 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2420NM__Historical__179FDBD374CD3303862571A200544119.txt
2023-10-14 00:05:17,982 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2424NM__Current__A522060492AFAB2A862576DA00749ACE.txt
2023-10-14 00:05:17,984 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2428CE__Historical__5FA6AAFCB7E8E0E386257FE300630FCB.txt
2023-10-14 00:05:18,000 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2437WE__Current__56BCCA36155FFBCC862572180055691A.txt
2023-10-14 00:05:18,000 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2437WE__Historical__104BD9955EB46E65862570C90056C0CC.txt
2023-10-14 00:05:18,002 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2439SW__Current__3D8F277A736E121786257D95005CD74F.txt
2023-10-14 00:05:18,009 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2443NM__Historical__391D362E439D735A86257575004DD911.txt
2023-10-14 00:05:18,014 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2445WE__Current__C823197EC3798D4886258720005222A1.txt
2023-10-14 00:05:18,014 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2445WE__Historical__D0351A30F80F7C7B862570A600672040.txt
2023-10-14 00:05:18,017 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2448WE__Current__CC6555A5067AFF57862577DC00727355.txt
2023-10-14 00:05:18,035 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2455SW__Current__A799BC39E948A17486257D95005D6AB9.txt
2023-10-14 00:05:18,041 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2457SW__Current__E3D20AD98FE497B486257D95006836B4.txt
2023-10-14 00:05:18,044 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2459NM__Current__A04215E99200F0788625801B0054C4DA.txt
2023-10-14 00:05:18,057 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2464NM__Current__FF9CAD9B4D107AA886257448007DA2BD.txt
2023-10-14 00:05:18,065 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2468NM__Current__D9F16CCAFBB7C4C686257E9D005FDB78.txt
2023-10-14 00:05:18,065 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2468NM__Historical__2D4E306AD83C500F86256FF00055C031.txt
2023-10-14 00:05:18,065 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2468NM__Historical__8612124B9C4B4CDD86257E430073B47D.txt
2023-10-14 00:05:18,066 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2468SO__Current__615B2AADCFB2470B862574BA006CE1F3.txt
2023-10-14 00:05:18,066 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2468SW__Current__E9D845D8AD36F83B86257D95006B1BC0.txt
2023-10-14 00:05:18,068 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA246NW__Current__7FB26B1CAE5B5B0B86257ADA006D9A34.txt
2023-10-14 00:05:18,070 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2470SO__Current__CA04A4A130CFA610862574BA006BB487.txt
2023-10-14 00:05:18,073 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2471SW__Current__9A2AFF5D3241A03E86257D95006BC87E.txt
2023-10-14 00:05:18,075 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2473NM__Current__DD696FBBA78DC9268625711C006850D0.txt
2023-10-14 00:05:18,129 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2498NM__Current__B89F9964B32CABE986257448007D561D.txt
2023-10-14 00:05:18,131 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2499NM__Current__192FDAD541A9FB798625711C00691B4B.txt
2023-10-14 00:05:18,190 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2518CE__Current__0A8428D17A45DA3B85256CC200015F3D.txt
2023-10-14 00:05:18,203 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2528NM__Current__E7B7AD5540224C408625845E00450007.txt
2023-10-14 00:05:18,206 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2529WE__Current__DF18C7F7A11F8F1F8625789B00667A13.txt
2023-10-14 00:05:18,212 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2533WE__Current__175313AEF0D5F78D86257999006B80FD.txt
2023-10-14 00:05:18,223 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA253NW__Current__C407BE09628D87C38625783A00558CDA.txt
2023-10-14 00:05:18,249 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2558WE__Current__99C48751CAB0F92786257999006BBA34.txt
2023-10-14 00:05:18,259 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2561SO__Current__A79EEE92DB71BDA186257F47005CC5E5.txt
2023-10-14 00:05:18,280 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2576CE__Historical__ECE1AEF4373C337985256CC200015FFC.txt
2023-10-14 00:05:18,319 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2597SO__Current__B083BE44D9AE73658625778F00744937.txt
2023-10-14 00:05:18,320 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2598CE__Current__6A3CBFF422343AF185256CC20008C63D.txt
2023-10-14 00:05:18,320 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2598NM__Current__BA1FC4517135AA3D8625845E00455654.txt
2023-10-14 00:05:18,324 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA25CH__Current__482CF3098F6DF930862582B900518578.txt
2023-10-14 00:05:18,385 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA262NW__Current__00D9BCDCE23AAA23862585CE0046E30D.txt
2023-10-14 00:05:18,393 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2633WE__Current__4B5CD43CA1D33CA286257AD200716FD9.txt
2023-10-14 00:05:18,394 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2634NM__Current__FD2FD0D01C29129386257A4700593A78.txt
2023-10-14 00:05:18,462 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA266AL__Current__74328DBC5EAB301F86257EC0006440F5.txt
2023-10-14 00:05:18,506 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2686SW__Current__A406751B1DE35AC0862574BE006F57DE.txt
2023-10-14 00:05:18,572 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA270CH__Current__70EA086878BE819386257FF7006A553E.txt
2023-10-14 00:05:18,572 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA270CH__Historical__2ECB1D8B5C42DEC286257CEC00601A15.txt
2023-10-14 00:05:18,587 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2712SW__Current__77E945EEC1343F6B86257DA200751855.txt
2023-10-14 00:05:18,607 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2719CE__Historical__D7CB9713CE701C6A862572C800542C57.txt
2023-10-14 00:05:18,648 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2733WE__Current__B72530ABFD7ECB6185256CC20008C835.txt
2023-10-14 00:05:18,651 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2734WE__Current__E6B59F2A90A7F84D862574CD004D138D.txt
2023-10-14 00:05:18,704 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA274SW__Current__8B14EFE3FD4B24BF86257D9A0076CB38.txt
2023-10-14 00:05:18,719 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2755SW__Current__1122478DA28E22ED862574CD006B5198.txt
2023-10-14 00:05:18,720 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2756NM-D__Current__87D2C277BE05D32B862577DC00734DD8.txt
2023-10-14 00:05:18,774 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2781CE__Historical__932D81F97276968285256CC20008C8F8.txt
2023-10-14 00:05:18,780 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2783SO__Current__FE478353DEE6360C862574CD006B525B.txt
2023-10-14 00:05:18,799 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA278NE__Current__EFD28B2DF0836DB086257FE0007440FB.txt
2023-10-14 00:05:18,799 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA278NE__Historical__41F6396E880727D186257196004C5EEC.txt
2023-10-14 00:05:18,838 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2801WE__Current__6F4371A91024204686257E9D0063CCA4.txt
2023-10-14 00:05:18,839 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2801WE__Historical__45607C1581B723D686257E430076E35F.txt
2023-10-14 00:05:18,852 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2813SW__Current__5CCE4E0F69B43BFC862574B900695F2C.txt
2023-10-14 00:05:18,951 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA286NW__Current__7A88B5FDAB24F5EE8625871E00532D5D.txt
2023-10-14 00:05:18,951 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA286NW__Historical__24B31CB69AF83CF0862570A600680D2C.txt
2023-10-14 00:05:19,033 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA292SW__Current__B58AA9F6B4CCD7E486257D7E0059C8E0.txt
2023-10-14 00:05:19,048 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA293NW__Current__3357E216328076C88625787D004AF4DB.txt
2023-10-14 00:05:19,099 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2970SO__Current__A2ABAD94A231158F8625803E006BBD5F.txt
2023-10-14 00:05:19,122 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA2981SW__Current__92EE70608AD69E7886257D81005251B2.txt
2023-10-14 00:05:19,160 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3-111__Current__0083ED516ADB9F5E86257CBA00645515.txt
2023-10-14 00:05:19,321 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3020WE__Current__49F1DCC3317F15C6862578EF0055E302.txt
2023-10-14 00:05:19,321 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3020WE__Historical__7070A01912A1F45386257871005B2158.txt
2023-10-14 00:05:19,370 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3050SW-D__Current__653F9A914F88DD2485256CC2000A932D.txt
2023-10-14 00:05:19,385 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA305EA__Current__0D1A5BE5566057CC86257997004D2D25.txt
2023-10-14 00:05:19,411 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3078NM__Current__7390F9AC692A871A86257D96006AC53C.txt
2023-10-14 00:05:19,418 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3091WE__Current__AF41BF9E58320E8085256CC2000A93B4.txt
2023-10-14 00:05:19,420 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3094NM__Current__D388F75A7054666286257D9B0072D5D2.txt
2023-10-14 00:05:19,421 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3095NM__Historical__83A3F33DEF12040E86256FF0005C73CA.txt
2023-10-14 00:05:19,445 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3107WE__Current__A21231947BC52C3B862578EF00561509.txt
2023-10-14 00:05:19,445 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3107WE__Historical__BB874A6782271E6A86257871005ABB5D.txt
2023-10-14 00:05:19,467 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA311NW__Current__B77AD0EC91415C3F8625871E0053DBAE.txt
2023-10-14 00:05:19,489 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3130WE__Current__13D5259465B6245086257FA2006BA680.txt
2023-10-14 00:05:19,527 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3156NM__Current__0C8194C34F2C76208625711C0069F684.txt
2023-10-14 00:05:19,531 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3159NM__Current__F96600C53C77943886257D32006767B4.txt
2023-10-14 00:05:19,548 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3168NM__Current__1E9B6A56749FFD39862579E50075E8F1.txt
2023-10-14 00:05:19,553 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA316CE__Current__F3C0BBBF08C9933A862586CA00620057.txt
2023-10-14 00:05:19,557 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3171NM__Current__5A152B9B241037198625711F007179EE.txt
2023-10-14 00:05:19,572 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3180SO__Current__4D856E2F1123B45A862581E70056EA84.txt
2023-10-14 00:05:19,579 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3185WE__Current__48E3D70B5FD88C0185256CC2000A94F3.txt
2023-10-14 00:05:19,588 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3189WE__Current__35648C4DCAF1867186257991006FC0EA.txt
2023-10-14 00:05:19,654 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3232NM__Historical__2F5A3FE6F3A1DA69862576040060D76A.txt
2023-10-14 00:05:19,659 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3235M__Current__2F0AE937992B4A38862575460056A36B.txt
2023-10-14 00:05:19,704 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3263SW-D__Current__91604F745DFFA38686257DA8006E140A.txt
2023-10-14 00:05:19,737 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3290SW-D__Current__65D9C190AF7ACF2386257DB30077F4F0.txt
2023-10-14 00:05:19,779 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3315WE__Current__A0E15496D39C10C48625711F007199DF.txt
2023-10-14 00:05:19,779 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3316WE__Current__4085137B2C21821E8625711E00532C56.txt
2023-10-14 00:05:19,780 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3317WE__Current__0703B766509804028625711C006A3756.txt
2023-10-14 00:05:19,786 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3322NM__Current__245CB1119D75B975862585DD003FC3A6.txt
2023-10-14 00:05:19,786 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3322NM__Historical__A8296BBC4EF0FD0986256FE0006A35C3.txt
2023-10-14 00:05:19,812 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3344WE__Current__F980DC42C472E0E786257FA2006C4AE3.txt
2023-10-14 00:05:19,848 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3376NM__Current__5AC4E75F3F9A8C5A8625872000541AB8.txt
2023-10-14 00:05:19,851 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA337SW__Current__56B62D3C944DCA7186257DB60059E829.txt
2023-10-14 00:05:19,852 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3381WE__Current__C62F48FB9BAC1F3186257FC400557160.txt
2023-10-14 00:05:19,853 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3385WE__Current__DEC0746A488FAC50862571960055A4D6.txt
2023-10-14 00:05:19,885 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3415NM__Current__3848EF7F60445984862579E50075E838.txt
2023-10-14 00:05:19,892 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3421NM__Current__8131BAE7CACA81548625801B0059C36A.txt
2023-10-14 00:05:19,893 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3422NM__Current__E321A2AC0498B1B78625711E00536ED6.txt
2023-10-14 00:05:19,894 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3424NM__Current__1ED407039715C8798625799E00663B01.txt
2023-10-14 00:05:19,894 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3424NM__Historical__78854DB1B243D01186256FF1004A08F1.txt
2023-10-14 00:05:19,900 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3425NM__Historical__9D77971D3CF1263786256FF1004A5C9D.txt
2023-10-14 00:05:19,906 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3428NM__Current__15663A51E7D5645F86256E7E00660312.txt
2023-10-14 00:05:19,922 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3439WE__Current__4E071A828F670B9086257FA20064879A.txt
2023-10-14 00:05:19,936 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3447NM__Current__1AA1AE89F0D56EA3862576DC0073A06F.txt
2023-10-14 00:05:19,949 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3453NM__Current__BB49DC6F7340982586257F6B006159CF.txt
2023-10-14 00:05:19,949 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3453NM__Historical__89F2337CB2D9183186257E1B0047979D.txt
2023-10-14 00:05:19,955 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3457NM__Current__5B35ACC7BE3290108625711E0053F8B2.txt
2023-10-14 00:05:19,960 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3459NM__Historical__A8FACFBA280D62B18625816E006EE8AF.txt
2023-10-14 00:05:19,969 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3464NM__Current__3A67C1FDD7ECCB058625711F0071DC06.txt
2023-10-14 00:05:19,987 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3471WE__Current__3C59E684E2535227862570C9006E87D7.txt
2023-10-14 00:05:19,992 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3474WE__Current__D7D6E02EFE4AA8578625801B00642800.txt
2023-10-14 00:05:19,993 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3476NM__Current__644D472743A476308625801B00645BED.txt
2023-10-14 00:05:20,002 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3481NM__Current__7107A6E2F99ED6F38625711F0071F6B5.txt
2023-10-14 00:05:20,006 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3483NM__Current__372B0414B6B68E448625801B0064C583.txt
2023-10-14 00:05:20,014 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3487NM__Historical__1EA6CB2CEAC3377D862575460056A3E4.txt
2023-10-14 00:05:20,045 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA34WE__Current__AC88082E89162B36862570D1006B2690.txt
2023-10-14 00:05:20,048 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3501SW__Current__ACE93998C745423086257DC4006E3F63.txt
2023-10-14 00:05:20,054 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3503SW__Current__21940431A8A4F51B86257DC4006FABA5.txt
2023-10-14 00:05:20,088 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3523NM__Historical__C06DB80ABBA9CEC5862580B8005DF5CD.txt
2023-10-14 00:05:20,089 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3523WE__Current__04B7792AD8C5FD248625821800555903.txt
2023-10-14 00:05:20,108 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA353WE__Current__5842C3F83A13CC9E86257997006F0DE0.txt
2023-10-14 00:05:20,110 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3540NM__Historical__79EC279586D6F8F886257BD000520999.txt
2023-10-14 00:05:20,110 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3540NM__Historical__DFFD4CCB87B8F1FA86257B7C0042CF67.txt
2023-10-14 00:05:20,116 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3546SW__Current__B1E3D25DEB4D96E386257DC4007596D4.txt
2023-10-14 00:05:20,143 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3569NM__Current__51BCFD1A07817990862580B20063038C.txt
2023-10-14 00:05:20,160 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA357AL__Current__3752754BFC562C60862579D600500C7C.txt
2023-10-14 00:05:20,192 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3593NM__Historical__9DA00D9C7B2BB5B9862579CE00761970.txt
2023-10-14 00:05:20,228 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA360SW__Current__CE9BA674A15ADC9B86257DC1006D80F3.txt
2023-10-14 00:05:20,234 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3616SW__Current__5E5F52B838961B4D85256CC2000A99D8.txt
2023-10-14 00:05:20,234 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3616WE__Current__684745F56798BC4F86257FA1006D42A5.txt
2023-10-14 00:05:20,241 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3629SW__Current__73860E983512C53486257DD9005BEC03.txt
2023-10-14 00:05:20,241 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3629WE__Current__25A62AAE5D7EE72486257FA1006D9C86.txt
2023-10-14 00:05:20,242 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA362SW__Current__D958735797B217FA8625794F004BFF10.txt
2023-10-14 00:05:20,245 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3634SW__Current__3472A3F2560BA771862587200054CB24.txt
2023-10-14 00:05:20,245 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3634SW__Historical__8C13DE4256EA74BF8625718C0066E871.txt
2023-10-14 00:05:20,245 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3634SW__Historical__AE1ACAF1E1BD0A2386257705004B4E58.txt
2023-10-14 00:05:20,281 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3659WE__Current__5BE3309CEEC81C6B86257FA2006E552E.txt
2023-10-14 00:05:20,301 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3677NM__Historical__6806F620D1B174CE86257A24006CB4A1.txt
2023-10-14 00:05:20,302 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3678WE__Current__96F7D25625FC78FC8625821800555938.txt
2023-10-14 00:05:20,318 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3688WE__Current__BA2A605D08556D2D862582180055DBCF.txt
2023-10-14 00:05:20,358 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA371SW__Current__040C2BB4EF68FAC285256CC2000C59FC.txt
2023-10-14 00:05:20,368 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3740WE__Current__E9C0BCD981D9124F86257E9D00662F5B.txt
2023-10-14 00:05:20,368 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3740WE__Historical__31EAC409F57A316586256FF1004B03CF.txt
2023-10-14 00:05:20,369 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3740WE__Historical__E70AFFB9CFEB919586257E430077B401.txt
2023-10-14 00:05:20,402 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3769NM__Current__1D0B3817DF4CD17B86257F6B00622861.txt
2023-10-14 00:05:20,402 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3769NM__Historical__362DCC2A9A7B48FE86257E1B0047C7C9.txt
2023-10-14 00:05:20,415 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3786WE__Current__934AA125F23D611386257D32004E6CFD.txt
2023-10-14 00:05:20,452 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3815WE__Current__201C60BD37A53F92862580B2005A6D28.txt
2023-10-14 00:05:20,458 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3820SW__Current__2A7A46697491E8DB8625871A005BCD5A.txt
2023-10-14 00:05:20,480 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3839NM__Current__36D0F24CAA3FE89C862579F40049AD49.txt
2023-10-14 00:05:20,485 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3840WE__Current__1B8612A9A6D5364A862582180055DC37.txt
2023-10-14 00:05:20,605 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA392NE__Current__02FEEBDAF4594A3C8625760F0041F11C.txt
2023-10-14 00:05:20,608 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3930NM__Historical__52DD28E497DCE0E3862575460056A40E.txt
2023-10-14 00:05:20,616 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3934NM__Historical__F0A35F0D6B1B0980862570D1006C2158.txt
2023-10-14 00:05:20,618 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3936NM__Current__35011518ACB198EB86257D9B0073E859.txt
2023-10-14 00:05:20,632 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3946NM__Current__089C56C2579CD257862579E50076E81D.txt
2023-10-14 00:05:20,635 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3948SW-D__Current__BBF7A12D352EA19085256CC2000C5BEB.txt
2023-10-14 00:05:20,639 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA394SW__Current__CF485748843C5D9386257DF00053C4DD.txt
2023-10-14 00:05:20,641 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3952NM__Current__BE9836ECC8F9AFB98625711E0054F05A.txt
2023-10-14 00:05:20,653 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA395SW__Current__099D57AE21BCB9AF86257DF00053E372.txt
2023-10-14 00:05:20,668 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3972NM__Historical__1E50B9D10EB1BEC98625728A00536F77.txt
2023-10-14 00:05:20,668 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3972NM__Historical__80BEE11246097AB2862570C900574D61.txt
2023-10-14 00:05:20,669 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3972NM__Historical__C61E4ACFF5E2DCDA86257490006DF4E2.txt
2023-10-14 00:05:20,680 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3982NM__Historical__BBEF8012AE4B63F6862575460056A54B.txt
2023-10-14 00:05:20,702 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3994NM__Historical__9CDAB84FBB23E94086257AFC00784569.txt
2023-10-14 00:05:20,705 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3997NM__Current__CE65334F0A68240A86257D2400720D53.txt
2023-10-14 00:05:20,706 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA3998NM__Current__157EFA9F1CA25EB286257D2400723525.txt
2023-10-14 00:05:20,739 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4-1052__Current__77F9E60D8645899586257DCB0067A10F.txt
2023-10-14 00:05:20,760 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4-1219__Current__38A37698F6392A3B86257356005CFD1B.txt
2023-10-14 00:05:20,806 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4-1536__Current__371931D05B394FDE862570CE0077A8C2.txt
2023-10-14 00:05:20,838 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4-228__Current__7E825F9B2205C52E86257F64007A3ED5.txt
2023-10-14 00:05:20,844 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4-287__Current__C9D08CE430D5B3298625776E00511070.txt
2023-10-14 00:05:20,844 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4-287__Historical__83BB08582B900CD286256E900053AA97.txt
2023-10-14 00:05:20,844 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4-287__Historical__FF9C84E2964B670C862576A4004B7BFF.txt
2023-10-14 00:05:20,857 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4-385__Current__ED1314ACD6B428AD86257356005CFB4C.txt
2023-10-14 00:05:20,890 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4-577__Current__5E5AAC750AD22194862579E400670DF6.txt
2023-10-14 00:05:20,958 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4-958__Historical__2E7313695CE4521086256E6F0069058F.txt
2023-10-14 00:05:20,966 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4-961__Current__BA120E3BD04A8E2086257774005F7AC4.txt
2023-10-14 00:05:20,981 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4-970__Historical__70F413C558F4EF6F86256E75004C1875.txt
2023-10-14 00:05:21,001 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4008NM__Current__03A248773F6458D4862570A7004B6C4B.txt
2023-10-14 00:05:21,001 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4008NM__Historical__25C3A547C601EA608625705200569A87.txt
2023-10-14 00:05:21,049 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4045SW__Current__AE304ADCC5F0DAA586257DF20075700F.txt
2023-10-14 00:05:21,084 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4070NM__Current__B6A743B597A9D70885256CC2000C6093.txt
2023-10-14 00:05:21,087 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4072WE__Current__2C7EA9A72E2F447B862580B20063762E.txt
2023-10-14 00:05:21,093 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA407CE__Current__5ACB36841010BC7F8625793E005D8188.txt
2023-10-14 00:05:21,181 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA411EA-D__Current__0A03FA848613B0B8862579C3005C9BA4.txt
2023-10-14 00:05:21,213 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4143WE__Historical__303F46F0ED040459862575460056A58D.txt
2023-10-14 00:05:21,218 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4147WE__Current__BD828188A74FF19F86257E2A00604E69.txt
2023-10-14 00:05:21,220 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4148WE__Current__725A06AF0735AAC386257E2A0060CECD.txt
2023-10-14 00:05:21,248 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4161WE__Current__8B21A32031E8B503862573D8005C7C2A.txt
2023-10-14 00:05:21,248 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4162NM__Current__861B8DCC8EC03DBB862579C200572221.txt
2023-10-14 00:05:21,253 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA416CE__Current__8D1A611FA2B95B658625793E005D81C5.txt
2023-10-14 00:05:21,269 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4177WE__Current__A5C4E97B49D9D70A862588400068C345.txt
2023-10-14 00:05:21,282 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4183NM-D__Historical__5F5494AAD93D7C24862572F3005DEE69.txt
2023-10-14 00:05:21,309 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4201NM-D__Current__2EA10B7EA010322786257608006C5ED2.txt
2023-10-14 00:05:21,313 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4205NM-D__Current__75837AD9EB8FB26086257D4100726033.txt
2023-10-14 00:05:21,328 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4210NM-D__Current__886259B6A58CE3E986257D4100727660.txt
2023-10-14 00:05:21,337 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4215NM-D__Current__F38406542EC4BA8686257608006C6017.txt
2023-10-14 00:05:21,339 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4216NM-D__Current__7526A0249FC3B0FC862575F300691E56.txt
2023-10-14 00:05:21,341 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4218NM-D__Current__DCA5A0B4221778EE8625760F006BABCB.txt
2023-10-14 00:05:21,342 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4218NM-D__Historical__4577F23A77FEF04D862570E5006C30D7.txt
2023-10-14 00:05:21,344 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4219NM-D__Current__89E73A1043E43B4E862575EC0067C159.txt
2023-10-14 00:05:21,344 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4219NM-D__Historical__5FD04831AD98D07F862572090064EB8B.txt
2023-10-14 00:05:21,355 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4222WE__Historical__5E45D991B8C0AC068625816E006EE8CD.txt
2023-10-14 00:05:21,356 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4223NM-D__Current__6D1370C8BEFFC6D3862575EC0067C1D3.txt
2023-10-14 00:05:21,356 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4223NM-D__Historical__0F3C045D130AEAF98625730100647C5D.txt
2023-10-14 00:05:21,358 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4225WE__Current__0CA36CFEFE17933D862574480077744C.txt
2023-10-14 00:05:21,366 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4229NM-D__Historical__5AD4A4F7277AE66E862570CF005A0140.txt
2023-10-14 00:05:21,391 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4263WE__Current__9B33EFF73F3FD7518625821800565CFE.txt
2023-10-14 00:05:21,412 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4289WE__Current__D3E46FC382B0D3F8862586A2007466A3.txt
2023-10-14 00:05:21,430 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4302WE__Current__EBEFCECD52C8D00C86257F93005D9F40.txt
2023-10-14 00:05:21,430 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4302WE__Historical__CE63105E253AE07886257F25005D0F07.txt
2023-10-14 00:05:21,434 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4303WE__Historical__6C3ACA4D1AED47788625745C00757BA0.txt
2023-10-14 00:05:21,457 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4319NM__Current__77630E3DD1492A1985256CC2000E3B8D.txt
2023-10-14 00:05:21,519 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4365SW__Current__1BE8D29091783E3D86257E00005CC1CF.txt
2023-10-14 00:05:21,521 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4366WE__Current__8D0B65227367DC42862573ED004E4CF5.txt
2023-10-14 00:05:21,538 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4377SW__Current__3F9EA758DA2D1C7D86257E030050F7C8.txt
2023-10-14 00:05:21,542 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4379NM__Current__3D5BD081C4A7988B862579C2004730D6.txt
2023-10-14 00:05:21,553 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4385SW__Current__528CA071CB4F119585256CC2000E3C16.txt
2023-10-14 00:05:21,587 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4406NM__Current__458291BDDCFD56D286258721004C31FE.txt
2023-10-14 00:05:21,587 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4406NM__Historical__558348BC8C07DF2B86257054005809C5.txt
2023-10-14 00:05:21,592 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4410NM__Historical__258FD9B3452FA60A862575460056A7FE.txt
2023-10-14 00:05:21,596 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4414SW__Current__EE8BA319C05FAF4486257E03006BBBBB.txt
2023-10-14 00:05:21,606 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4425NM__Current__3C326CCA7931C3CF8625821800565D13.txt
2023-10-14 00:05:21,618 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4438NM__Current__8BF182E0EE45E7AA86257C9B006D147F.txt
2023-10-14 00:05:21,630 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA444NW__Current__0650116133C8CE7F862570A6006972E2.txt
2023-10-14 00:05:21,641 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4460SW__Current__F9A05128262E757D862574CE0071FCB4.txt
2023-10-14 00:05:21,647 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4467NM__Current__CEA5D855479C9850862571EF006B75C2.txt
2023-10-14 00:05:21,647 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4467NM__Historical__B7DC94DBF8C5519B862570CF005B10DC.txt
2023-10-14 00:05:21,673 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4486NM__Current__36B1A300CC92DB0386256E6E006D53D6.txt
2023-10-14 00:05:21,674 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4487NM__Current__EDADD788BF856F4B86256E6E006D8462.txt
2023-10-14 00:05:21,674 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4488NM__Current__79311CFBEBC4473B86256E6F00669E2E.txt
2023-10-14 00:05:21,693 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4502NM__Current__E48722AF5B5887FC862585DE0046ACC2.txt
2023-10-14 00:05:21,706 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4511NM__Current__DC00CD5F65C2C42486258616006901A3.txt
2023-10-14 00:05:21,722 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4535NM__Current__6FF473DEC004CC28862585DE0046ABB7.txt
2023-10-14 00:05:21,734 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4553NM__Current__D3A53BEA4917FDE0862585DD0046C7F5.txt
2023-10-14 00:05:21,742 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4561NM__Current__13CC82EAE4F9037B86257D2400726636.txt
2023-10-14 00:05:21,755 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4571NM__Current__EEE0371C643BB989862579E30074BBE3.txt
2023-10-14 00:05:21,771 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA458WE__Current__186D9773968F10E28625799500739E5D.txt
2023-10-14 00:05:21,794 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA460NW__Current__75B486A8133B36E286258083007137BC.txt
2023-10-14 00:05:21,794 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA460SW__Current__D75E61D336BBDB82862579A5006FDBE4.txt
2023-10-14 00:05:21,837 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4667SW__Current__CCE9536C70F953E985256CC2000E3DE6.txt
2023-10-14 00:05:21,844 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA467EA__Historical__2EDA8581E987C871862571960052545D.txt
2023-10-14 00:05:21,874 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4712SW__Current__9A45434FAE96401E85256CC2000E3E21.txt
2023-10-14 00:05:21,889 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4723SW__Current__82DE9C252AFDC78E862574B80074F602.txt
2023-10-14 00:05:21,896 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA472CE__Current__924370D4548F31298625793E005D82B7.txt
2023-10-14 00:05:21,982 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4787SW__Current__634E1D7F3F031D0A85256CC2000E3E9A.txt
2023-10-14 00:05:22,021 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4817NM__Historical__5CC99A3866B9913A86257575004DD8CB.txt
2023-10-14 00:05:22,024 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4822NM__Current__AAFF8E302459317D8625711E00550FF6.txt
2023-10-14 00:05:22,026 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4828NM__Current__705D73F9AC07D61D86257D41007294BD.txt
2023-10-14 00:05:22,028 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4831NM__Current__1FF663AA01EC2ECF8625711F0072B53C.txt
2023-10-14 00:05:22,035 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4837SW__Current__2FBE0E10BF20F5BB862574C6004967B8.txt
2023-10-14 00:05:22,038 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA483AL__Current__DAAD6ADB31B7998E862573F4007D1C00.txt
2023-10-14 00:05:22,039 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4840NM__Current__59C1655C98FBF15386257AD20075930B.txt
2023-10-14 00:05:22,044 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4843NM__Current__40606EC8CA8B5E6C862579890065C532.txt
2023-10-14 00:05:22,045 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4843NM__Historical__D2D292BB6B3A034D862572B90061E647.txt
2023-10-14 00:05:22,057 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4850NM__Historical__A8CE9AEBD4D92ECB86257A1E006CE978.txt
2023-10-14 00:05:22,061 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4858SW__Current__D2BCBC89EE496CD7862574C6004965D6.txt
2023-10-14 00:05:22,066 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4862NM__Current__9BC663BC15486526862580B2006006A0.txt
2023-10-14 00:05:22,072 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4868SW__Current__240B7FAAF5CFFD3D862574C600496502.txt
2023-10-14 00:05:22,074 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4871NM__Current__187A5B01C897BCFF86257D240072C11D.txt
2023-10-14 00:05:22,075 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4873NM__Current__81EABB4BAC21142C862580B2005B256B.txt
2023-10-14 00:05:22,087 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4895NM__Current__E09EB2120F8B6CEB862580B200604F17.txt
2023-10-14 00:05:22,087 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4895NM__Historical__0AC59DA3AAD2B1F58625798900662F57.txt
2023-10-14 00:05:22,099 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA48NW__Current__4CC7250D197C2C9E8625871B004A0644.txt
2023-10-14 00:05:22,137 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4923SW__Current__915A47B68E1640C585256CC2000E3FAE.txt
2023-10-14 00:05:22,151 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4935SW__Current__7586A968B820B8BB862574C6004963F4.txt
2023-10-14 00:05:22,151 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4936SW__Current__0C8EE9A9D10355F1862574C6004963A1.txt
2023-10-14 00:05:22,169 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4947NM__Current__F24DB487BA21F32685256CC2000E3FDA.txt
2023-10-14 00:05:22,204 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA496NE__Current__9C915681972F88E28625760F0043C465.txt
2023-10-14 00:05:22,205 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA496NW__Current__45FDA8D36C053FEA86257A45004C189A.txt
2023-10-14 00:05:22,217 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA497EA__Current__FC64F05ECA2142BF862579950073E5AF.txt
2023-10-14 00:05:22,243 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA4999SW__Current__EBEEB3787E90FB89862574C60044209E.txt
2023-10-14 00:05:22,264 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5000NM__Current__45EF4739A5B326AF86257D250046F202.txt
2023-10-14 00:05:22,264 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5002NM__Current__4AB0FAF53C33C1C286257A3700664D8E.txt
2023-10-14 00:05:22,264 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5002NM__Historical__FE834FEDC156C83D862579A500721BF0.txt
2023-10-14 00:05:22,269 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5008NM__Historical__4F83B13CBE24E45F86257448007773F7.txt
2023-10-14 00:05:22,285 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA501AL__Current__8E7CA932961839F386257639005D2FA0.txt
2023-10-14 00:05:22,290 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5021NM__Current__94FCCB7258F1F7AE86257D25004731ED.txt
2023-10-14 00:05:22,311 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5036NM__Current__8BB982F7FA3FA4EE862580B2005B4375.txt
2023-10-14 00:05:22,317 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA503NW__Current__CE4107075268D3AC8625871E005806CF.txt
2023-10-14 00:05:22,321 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5045NM__Current__396F57997A3A6D048625711F0073619F.txt
2023-10-14 00:05:22,326 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5048NM__Current__9DA3C10D35AEF95C8625711F0073A216.txt
2023-10-14 00:05:22,334 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5059NM__Historical__49BC8653D5B9FC6C862579E30074BB07.txt
2023-10-14 00:05:22,336 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5065NM__Current__6F052CDE4B8AF59A8625711F0073C16D.txt
2023-10-14 00:05:22,336 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5067NM__Current__7D7CA8D1968A8E688625711F0073DFA6.txt
2023-10-14 00:05:22,339 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5071NM__Current__E782B1DFAE56D50F8625711F007400EC.txt
2023-10-14 00:05:22,348 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5084NM__Current__A0252E4CBE7018B2862571F4006F9CA4.txt
2023-10-14 00:05:22,354 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5098NM__Current__0F74DB6A91118C8F86257FDA006A0E76.txt
2023-10-14 00:05:22,369 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5108NM__Current__5E5F8EBE5234C9358625876400531252.txt
2023-10-14 00:05:22,369 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5108NM__Historical__0B3165CE11CEFEC386258637005DF8AF.txt
2023-10-14 00:05:22,369 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5108NM__Historical__41F008A3F90FD71A862579CE0076376F.txt
2023-10-14 00:05:22,408 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA512SW__Current__91BD9255BDAC141D86258018006D8760.txt
2023-10-14 00:05:22,589 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5229NM__Current__1F4E49D628B4508D85256CC2001227AD.txt
2023-10-14 00:05:22,609 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5240SW-D__Current__91A9427994D8890285256CC2001227C9.txt
2023-10-14 00:05:22,632 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA525NW__Current__F2AEF41E5E5A9BD7862585CE00548B2F.txt
2023-10-14 00:05:22,649 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5270SW-D__Current__A5F48BB9040A1FA985256CC200122800.txt
2023-10-14 00:05:22,734 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA534NW__Current__35F34DC9DB894F488625871E00589A80.txt
2023-10-14 00:05:22,760 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA537AL__Current__57C080032A03E49986257639005D6B23.txt
2023-10-14 00:05:22,840 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5462NM__Historical__61BA23365D31474686258010006C13F9.txt
2023-10-14 00:05:22,840 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5462NM__Historical__A4C1E134669D0CDB862585F3003FF0C7.txt
2023-10-14 00:05:22,840 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5462NM__Historical__B221A0DDA1823BE386257E370067818E.txt
2023-10-14 00:05:22,842 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5466NM__Current__79EE98B3D10DAD0E86257E9D00666F3F.txt
2023-10-14 00:05:22,842 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5466NM__Historical__34312CD3CB86ACF386256FF1004C3160.txt
2023-10-14 00:05:22,842 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5466NM__Historical__BFCC32A3BA6FA9B786257E430077F8C7.txt
2023-10-14 00:05:22,908 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA551AL__Current__38E82BB5CD8EB5AD86257639005E828B.txt
2023-10-14 00:05:22,923 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5531NM__Historical__3CDE0041212B171F862579E30074BAAD.txt
2023-10-14 00:05:22,923 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5531SW__Current__71AC11B9AABBC42086257CFA006CCA0E.txt
2023-10-14 00:05:22,928 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5538SW__Current__93B4BC9474B33D3386257EDF006F7B94.txt
2023-10-14 00:05:22,934 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5544NM__Current__5F48A80FBAB59EFA862574CF007B77FC.txt
2023-10-14 00:05:22,946 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA554WE__Current__C5D6019666A07ADD86257196006C959F.txt
2023-10-14 00:05:22,946 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA554WE__Historical__E5CD193199262AC58625713000634C67.txt
2023-10-14 00:05:22,948 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5553SW__Current__0D11B92AAA38425986257EE30061BF16.txt
2023-10-14 00:05:22,987 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA55SW__Current__4BF73340BED5BB7F86257EE0005FC778.txt
2023-10-14 00:05:23,010 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA562AL__Historical__05E0CB095D0E377785256CC200122A48.txt
2023-10-14 00:05:23,078 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5669SW__Current__BE7DB492BE65667286257EE7007100D1.txt
2023-10-14 00:05:23,138 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5711NM__Current__5B04CC275EDB344886258273004F4D9D.txt
2023-10-14 00:05:23,138 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5711NM__Historical__791CB869BCE894668625826E004A5F49.txt
2023-10-14 00:05:23,205 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA574SW__Current__99446AED2199D85486257EE7006DF0EE.txt
2023-10-14 00:05:23,275 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5790SW__Current__DE48AD2113736B8385256CC200122B7D.txt
2023-10-14 00:05:23,352 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5837NM__Current__70CEB1E7491F1F098625711F00750CB1.txt
2023-10-14 00:05:23,370 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5850NM__Current__46A741FFA0F5FC368625711E00554DF7.txt
2023-10-14 00:05:23,400 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA587GL__Current__C4F8D5E22B1CEEDA86256EBB0069BD34.txt
2023-10-14 00:05:23,403 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5883NM__Current__FCDA52E83909C2408625711E005595E7.txt
2023-10-14 00:05:23,403 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5883SW__Current__8D3B5A8773202D93862574C500774D98.txt
2023-10-14 00:05:23,415 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5897NM__Current__7DE6554E1C4B50C28625711E0055B8F4.txt
2023-10-14 00:05:23,437 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA590NW__Historical__B1F2EE411133BE7085256CC200122C65.txt
2023-10-14 00:05:23,446 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA5914NM-D__Current__25483DE0F5952217862579A6004C8B5A.txt
2023-10-14 00:05:23,472 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA592NW__Current__5F4092A2ECBE8B4D8625871E0058D3A3.txt
2023-10-14 00:05:23,600 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA598WE__Current__4837A2610724A87B862579910075A77D.txt
2023-10-14 00:05:23,626 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA6003NM-D__Current__47A0E597E1247D1486258314005DA9FE.txt
2023-10-14 00:05:23,671 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA6046NM__Historical__3CFEDF156DF757C8862575750049A7DD.txt
2023-10-14 00:05:23,681 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA6052NM__Historical__DCD69F9C7595882186257D3B0067BF20.txt
2023-10-14 00:05:23,687 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA6057NM__Historical__F695EAFB897F5A63862575750049A8A9.txt
2023-10-14 00:05:23,689 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA6059NM__Current__A332C179B39A98FE862580B20060EAF7.txt
2023-10-14 00:05:23,741 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA6091NM__Current__8639A92D07D0588786257D3C004DF9EE.txt
2023-10-14 00:05:23,765 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA615EA (PAGE 1)__Current__2C58ED63DB7F5A8D862584D60051DBB4.txt
2023-10-14 00:05:23,768 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA615EA (PAGE 1)__Historical__5EC9CD869044FECE8625828300463031.txt
2023-10-14 00:05:23,769 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA615EA (PAGE 2)__Current__E9BF59B5B02BA59A862584D60051DD95.txt
2023-10-14 00:05:23,773 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA615EA (PAGE 2)__Historical__D65283BCA6371AAD8625828300463059.txt
2023-10-14 00:05:23,936 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA668SW__Current__7A5DD300530F753585256CC200569FE5.txt
2023-10-14 00:05:24,002 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA699WE__Current__5E556456981AC756862579950062602E.txt
2023-10-14 00:05:24,081 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7053NM__Historical__65A7AD1A3D797A1086257305004F706A.txt
2023-10-14 00:05:24,090 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7060SW-D__Current__B2E228BE1FA223D985256CC20056A10B.txt
2023-10-14 00:05:24,092 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7061NM__Current__281FC57F9EB30FB286257E6C005A9CAC.txt
2023-10-14 00:05:24,092 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7061NM__Historical__3435417F3EBE11E286257D3B00686B5F.txt
2023-10-14 00:05:24,096 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7065NM__Current__1FC24EAE49DA553886257D3B00695EEB.txt
2023-10-14 00:05:24,099 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7067NM__Current__C093380C2616046986257D3B0069B0DF.txt
2023-10-14 00:05:24,117 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7079NM__Current__82485CFEE887F9CB8625711E0055F103.txt
2023-10-14 00:05:24,126 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7085NM__Current__1128A369F716FF51862585DE00493F07.txt
2023-10-14 00:05:24,126 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7085NM__Historical__2355ACFC80E9E03A862579E50079AD17.txt
2023-10-14 00:05:24,129 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7088NM__Historical__1281B254A47CA10D86257D32004EC2DD.txt
2023-10-14 00:05:24,129 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7088NM__Historical__C4856BFE6FCC523B86257B27004A1BBF.txt
2023-10-14 00:05:24,140 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7094NM__Current__31C613C1982A4A17862580B200643818.txt
2023-10-14 00:05:24,141 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7095NM__Current__F44E41AE97D62EA386257D5000551F86.txt
2023-10-14 00:05:24,141 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7096NM__Current__A0843975D1510A6B86257D500055E24B.txt
2023-10-14 00:05:24,187 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7137SW-D__Current__3DE45707AFD3430A85256CC20056A19D.txt
2023-10-14 00:05:24,319 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA726SW__Current__C5854ACCD929355486257FD50074038C.txt
2023-10-14 00:05:24,339 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7285SW-D__Current__8AE5AF5FBADCF27E85256CC20056A283.txt
2023-10-14 00:05:24,405 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7391SW__Current__D1240C5695536E5D86257FEE0072AAAD.txt
2023-10-14 00:05:24,418 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7402SW__Current__3447FB73189F69B686257CFA006D7589.txt
2023-10-14 00:05:24,442 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA742NW__Current__01263F156A1E99C5862585CE00549425.txt
2023-10-14 00:05:24,447 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA743NW__Historical__ECEFB776EE5DFAF285256CC20056A329.txt
2023-10-14 00:05:24,454 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7451SW__Historical__394374C0F7A1C18E85256CC20056A334.txt
2023-10-14 00:05:24,534 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7529SW__Historical__2472A457D072C9F885256CC20056A38F.txt
2023-10-14 00:05:24,556 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7554SW__Current__291D80F4E8BF097286257FF1006C72A0.txt
2023-10-14 00:05:24,574 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA756NW__Current__B7BCEE0D3F623EBF8625871F0005E96F.txt
2023-10-14 00:05:24,574 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA756NW__Historical__090A91AF729BB48F862570540058938B.txt
2023-10-14 00:05:24,578 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA757CE__Current__0235100C058F2B59862581450060AC26.txt
2023-10-14 00:05:24,605 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA759CE__Historical__3AB3E46313194290862572C700554296.txt
2023-10-14 00:05:24,623 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7617SW__Historical__0412B5F54293F22F85256CC20056A3EE.txt
2023-10-14 00:05:24,639 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA762CE__Historical__467B4A4B94C5E283862572C7005614A8.txt
2023-10-14 00:05:24,650 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA763CE__Historical__D9648D6C08A32E7F862572C700563D8B.txt
2023-10-14 00:05:24,686 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA768CE__Historical__8AABF7A5E1FCECC8862572C7005716EC.txt
2023-10-14 00:05:24,690 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA769CE__Historical__2EE3CCC8383DA262862572C7005770C7.txt
2023-10-14 00:05:24,692 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA770CE__Historical__E57E40DD260BAC0E862572C700587085.txt
2023-10-14 00:05:24,744 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA7792SW-D__Current__44C0AEC329FACB5985256CC20056A497.txt
2023-10-14 00:05:24,816 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA785SW__Current__8EB10A1D9EDE05D986257FF8006FEA0F.txt
2023-10-14 00:05:24,857 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA788NW__Current__17638F4602D030F586257A3E0062D8EF.txt
2023-10-14 00:05:24,861 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA789CE__Current__4885646F57F338B585256CC20056A526.txt
2023-10-14 00:05:24,951 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA79SW__Current__D32B21C9E38A723786258003005EA0D8.txt
2023-10-14 00:05:24,978 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8010NM__Current__D3149750B032ED5E86257D50005772D5.txt
2023-10-14 00:05:24,998 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8026NM__Historical__63D4695D25C9DAE286257305004F8E89.txt
2023-10-14 00:05:25,000 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8030NM__Current__9DCAB1E99C0DECB2862579A50071EA79.txt
2023-10-14 00:05:25,137 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8104NM-D__Current__2366B114C320FA8F862581840069FFF5.txt
2023-10-14 00:05:25,142 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8107NM-D__Current__F8EA9378D39C8A74862583150066FE9B.txt
2023-10-14 00:05:25,144 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8108NM-D__Current__7CDDFF940092B7E286258315006C003A.txt
2023-10-14 00:05:25,148 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8115NM-D__Current__94A73795965E46CB8625844900621271.txt
2023-10-14 00:05:25,155 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8117NM-D__Current__E99D2C418AF0345786258449006B40A4.txt
2023-10-14 00:05:25,155 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8117NM-D__Historical__07F8B6D1126F98C58625844900668B7D.txt
2023-10-14 00:05:25,156 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8118NM-D__Current__4C64AFCE7B2098758625844900683F48.txt
2023-10-14 00:05:25,165 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8122NM-D__Current__E90EA437C99CA0C886258449006BF180.txt
2023-10-14 00:05:25,166 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8124NM-D__Current__568E73D557215C1286258449006F8C94.txt
2023-10-14 00:05:25,166 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8125NM-D__Current__66BE77EB459F6091862584490072513E.txt
2023-10-14 00:05:25,192 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8141NM-D__Current__2429AC385F315DDF86258450005095B8.txt
2023-10-14 00:05:25,193 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8142NM-D__Current__6A4F43537B72A5EE862584500051143C.txt
2023-10-14 00:05:25,196 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8144NM-D__Current__8F1F7B002138EE09862584960055ECAE.txt
2023-10-14 00:05:25,197 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8145NM-D__Current__8DD69802EB10796F8625832300497BA3.txt
2023-10-14 00:05:25,197 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8146NM-D__Current__202B4194517294028625832300497C9B.txt
2023-10-14 00:05:25,198 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8147NM-D__Current__3E3860AC89A8D4AC8625832300497D9C.txt
2023-10-14 00:05:25,200 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8149NM-D__Current__16C1E85A2793B9A28625832300497E9E.txt
2023-10-14 00:05:25,205 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8150NM-D__Current__69B15D50FD2EAA5B8625832300497FB7.txt
2023-10-14 00:05:25,208 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8151NM-D__Current__F00BB77B211D06C386258323004980B8.txt
2023-10-14 00:05:25,211 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8156NM-D__Current__3F2D767DF9FC2AF886258323004985E7.txt
2023-10-14 00:05:25,211 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8157NM-D__Current__14F8276FDE69565A86258323004986F4.txt
2023-10-14 00:05:25,211 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8158NM-D__Current__5D95BA1AA9C8015F8625832400492864.txt
2023-10-14 00:05:25,229 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8173NM-D__Current__CB632ECBC27667808625832300452BCF.txt
2023-10-14 00:05:25,230 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8175NM-D__Current__84432E1EDF6E222E8625832300452DCD.txt
2023-10-14 00:05:25,230 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8176NM-D__Current__C44DDB433DAD507D8625832300452EDA.txt
2023-10-14 00:05:25,232 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8177NM-D__Current__18E888131F6D23D78625832300452FD6.txt
2023-10-14 00:05:25,243 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8183NM-D__Current__A037EC497AB174E38625832400492A9A.txt
2023-10-14 00:05:25,250 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8190NM-D__Current__84AAE44762A38135862583240045ADCB.txt
2023-10-14 00:05:25,267 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA81SW__Current__B54CB39103E242368625800A007125C2.txt
2023-10-14 00:05:25,326 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA826NW__Current__CECC8732226861BC86257A3E006F8650.txt
2023-10-14 00:05:25,385 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA833WE__Current__888221D6FE4724248625799500634AC6.txt
2023-10-14 00:05:25,394 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA8348SW__Historical__7B38FB6CB48766EE8625801100757B91.txt
2023-10-14 00:05:25,473 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA840WE__Current__3D28795F28CE023186258273004F4E06.txt
2023-10-14 00:05:25,537 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA852NW__Current__F2F9B2790C53A6328625808300758FCF.txt
2023-10-14 00:05:25,654 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA876CE__Historical__4F1FF5651365ACE58625736300717FD6.txt
2023-10-14 00:05:25,654 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA876CE__Historical__6CC6EAA6F7EFC2A086257BF100554FBA.txt
2023-10-14 00:05:25,668 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA879CE__Historical__BCFA521A8456FB77862572C70059BFF2.txt
2023-10-14 00:05:25,680 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA881NW__Current__C7B36347570FD72986257A3E0050DC82.txt
2023-10-14 00:05:25,722 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA886CE__Current__68703984E9D4E416862579A60059D4FF.txt
2023-10-14 00:05:25,805 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA900NW__Current__87D05739E7CF75DE8625783A005637C4.txt
2023-10-14 00:05:25,876 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA914NE__Current__D134550FDAD54C0A86257FE300684208.txt
2023-10-14 00:05:25,916 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA9210SC-D__Current__3389D1CF0D3A5BE2862577FF007B19EB.txt
2023-10-14 00:05:25,918 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA9210SC-D__Historical__ED6ED87E294BE7A18625744300768667.txt
2023-10-14 00:05:25,963 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA933CE__Historical__0DB80559ED7B7BD2862572C700650E53.txt
2023-10-14 00:05:26,039 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA970NE__Current__4E586D75784E1BC686256F86006A77FD.txt
2023-10-14 00:05:26,101 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA993NW__Current__D4CE6D491754F07C86257A08004CAAAB.txt
2023-10-14 00:05:26,118 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SA99NW__Historical__AB1D5FD041D7DA3586256E7B00648915.txt
2023-10-14 00:05:26,146 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SB01508AT__Historical__15605E323392CFF5862571F4007162F3.txt
2023-10-14 00:05:26,165 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SB02133LA__Current__9099310F37F6C2CC862574AD005058D8.txt
2023-10-14 00:05:26,366 Failed: c:\Users\victor\Documents\DeepLearning\FAA NLP Project\database\data\stc\text-from-pdf-alternate\SB04009CH__Current__F730904950FEEC1F86257E98005A2342.txt