-
Notifications
You must be signed in to change notification settings - Fork 104
/
loopInput.r
1099 lines (1095 loc) · 56.4 KB
/
loopInput.r
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
# Find best prediction
stockVector = list()
BestPrediction = vector()
stockVector2 = list(read.table("./input/A.csv", sep=",", header=TRUE),
read.table("./input/AA.csv", sep=",", header=TRUE),
read.table("./input/AAN.csv", sep=",", header=TRUE),
read.table("./input/AB.csv", sep=",", header=TRUE),
read.table("./input/ABC.csv", sep=",", header=TRUE),
read.table("./input/ABM.csv", sep=",", header=TRUE),
read.table("./input/ABT.csv", sep=",", header=TRUE),
read.table("./input/ABV.csv", sep=",", header=TRUE),
read.table("./input/ABX.csv", sep=",", header=TRUE),
read.table("./input/ACE.csv", sep=",", header=TRUE),
read.table("./input/ACI.csv", sep=",", header=TRUE),
read.table("./input/ACO.csv", sep=",", header=TRUE),
read.table("./input/ACT.csv", sep=",", header=TRUE),
read.table("./input/ADC.csv", sep=",", header=TRUE),
read.table("./input/ADM.csv", sep=",", header=TRUE),
read.table("./input/ADX.csv", sep=",", header=TRUE),
read.table("./input/AEC.csv", sep=",", header=TRUE),
read.table("./input/AEE.csv", sep=",", header=TRUE),
read.table("./input/AEG.csv", sep=",", header=TRUE),
read.table("./input/AEM.csv", sep=",", header=TRUE),
read.table("./input/AEO.csv", sep=",", header=TRUE),
read.table("./input/AEP.csv", sep=",", header=TRUE),
read.table("./input/AES.csv", sep=",", header=TRUE),
read.table("./input/AET.csv", sep=",", header=TRUE),
read.table("./input/AF.csv", sep=",", header=TRUE),
read.table("./input/AFG.csv", sep=",", header=TRUE),
read.table("./input/AFL.csv", sep=",", header=TRUE),
read.table("./input/AGCO.csv", sep=",", header=TRUE),
read.table("./input/AGM.A.csv", sep=",", header=TRUE),
read.table("./input/AGM.csv", sep=",", header=TRUE),
read.table("./input/AGM-A.csv", sep=",", header=TRUE),
read.table("./input/AGN.csv", sep=",", header=TRUE),
read.table("./input/AGU.csv", sep=",", header=TRUE),
read.table("./input/AI.csv", sep=",", header=TRUE),
read.table("./input/AIG.csv", sep=",", header=TRUE),
read.table("./input/AIN.csv", sep=",", header=TRUE),
read.table("./input/AIR.csv", sep=",", header=TRUE),
read.table("./input/AIT.csv", sep=",", header=TRUE),
read.table("./input/AIV.csv", sep=",", header=TRUE),
read.table("./input/AJG.csv", sep=",", header=TRUE),
read.table("./input/AKO.A.csv", sep=",", header=TRUE),
read.table("./input/AKO.B.csv", sep=",", header=TRUE),
read.table("./input/AKR.csv", sep=",", header=TRUE),
read.table("./input/AKS.csv", sep=",", header=TRUE),
read.table("./input/ALB.csv", sep=",", header=TRUE),
read.table("./input/ALE.csv", sep=",", header=TRUE),
read.table("./input/ALG.csv", sep=",", header=TRUE),
read.table("./input/ALK.csv", sep=",", header=TRUE),
read.table("./input/ALL.csv", sep=",", header=TRUE),
read.table("./input/ALR.csv", sep=",", header=TRUE),
read.table("./input/ALU.csv", sep=",", header=TRUE),
read.table("./input/ALV.csv", sep=",", header=TRUE),
read.table("./input/ALX.csv", sep=",", header=TRUE),
read.table("./input/AM.csv", sep=",", header=TRUE),
read.table("./input/AMD.csv", sep=",", header=TRUE),
read.table("./input/AME.csv", sep=",", header=TRUE),
read.table("./input/AMG.csv", sep=",", header=TRUE),
read.table("./input/AMT.csv", sep=",", header=TRUE),
read.table("./input/AMTD.csv", sep=",", header=TRUE),
read.table("./input/AMX.csv", sep=",", header=TRUE),
read.table("./input/AN.csv", sep=",", header=TRUE),
read.table("./input/ANF.csv", sep=",", header=TRUE),
read.table("./input/ANN.csv", sep=",", header=TRUE),
read.table("./input/AON.csv", sep=",", header=TRUE),
read.table("./input/AOS.csv", sep=",", header=TRUE),
read.table("./input/AP.csv", sep=",", header=TRUE),
read.table("./input/APA.csv", sep=",", header=TRUE),
read.table("./input/APB.csv", sep=",", header=TRUE),
read.table("./input/APC.csv", sep=",", header=TRUE),
read.table("./input/APD.csv", sep=",", header=TRUE),
read.table("./input/APF.csv", sep=",", header=TRUE),
read.table("./input/APH.csv", sep=",", header=TRUE),
read.table("./input/APL.csv", sep=",", header=TRUE),
read.table("./input/APU.csv", sep=",", header=TRUE),
read.table("./input/ARE.csv", sep=",", header=TRUE),
read.table("./input/ARG.csv", sep=",", header=TRUE),
read.table("./input/ARW.csv", sep=",", header=TRUE),
read.table("./input/ASA.csv", sep=",", header=TRUE),
read.table("./input/ASGN.csv", sep=",", header=TRUE),
read.table("./input/ASH.csv", sep=",", header=TRUE),
read.table("./input/ASI.csv", sep=",", header=TRUE),
read.table("./input/ASP.csv", sep=",", header=TRUE),
read.table("./input/ASR.csv", sep=",", header=TRUE),
read.table("./input/ATI.csv", sep=",", header=TRUE),
read.table("./input/ATK.csv", sep=",", header=TRUE),
read.table("./input/ATO.csv", sep=",", header=TRUE),
read.table("./input/ATR.csv", sep=",", header=TRUE),
read.table("./input/ATU.csv", sep=",", header=TRUE),
read.table("./input/ATW.csv", sep=",", header=TRUE),
read.table("./input/AU.csv", sep=",", header=TRUE),
read.table("./input/AVA.csv", sep=",", header=TRUE),
read.table("./input/AVB.csv", sep=",", header=TRUE),
read.table("./input/AVD.csv", sep=",", header=TRUE),
read.table("./input/AVP.csv", sep=",", header=TRUE),
read.table("./input/AVT.csv", sep=",", header=TRUE),
read.table("./input/AVX.csv", sep=",", header=TRUE),
read.table("./input/AVY.csv", sep=",", header=TRUE),
read.table("./input/AWC.csv", sep=",", header=TRUE),
read.table("./input/AWF.csv", sep=",", header=TRUE),
read.table("./input/AWR.csv", sep=",", header=TRUE),
read.table("./input/AXE.csv", sep=",", header=TRUE),
read.table("./input/AXL.csv", sep=",", header=TRUE),
read.table("./input/AXLL.csv", sep=",", header=TRUE),
read.table("./input/AXP.csv", sep=",", header=TRUE),
read.table("./input/AZN.csv", sep=",", header=TRUE),
read.table("./input/AZO.csv", sep=",", header=TRUE),
read.table("./input/AZZ.csv", sep=",", header=TRUE),
read.table("./input/B.csv", sep=",", header=TRUE),
read.table("./input/BA.csv", sep=",", header=TRUE),
read.table("./input/BAC.csv", sep=",", header=TRUE),
read.table("./input/BAK.csv", sep=",", header=TRUE),
read.table("./input/BAM.csv", sep=",", header=TRUE),
read.table("./input/BAP.csv", sep=",", header=TRUE),
read.table("./input/BAX.csv", sep=",", header=TRUE),
read.table("./input/BBT.csv", sep=",", header=TRUE),
read.table("./input/BBVA.csv", sep=",", header=TRUE),
read.table("./input/BBY.csv", sep=",", header=TRUE),
read.table("./input/BC.csv", sep=",", header=TRUE),
read.table("./input/BCE.csv", sep=",", header=TRUE),
read.table("./input/BCO.csv", sep=",", header=TRUE),
read.table("./input/BCR.csv", sep=",", header=TRUE),
read.table("./input/BCS.csv", sep=",", header=TRUE),
read.table("./input/BDC.csv", sep=",", header=TRUE),
read.table("./input/BDN.csv", sep=",", header=TRUE),
read.table("./input/BDX.csv", sep=",", header=TRUE),
read.table("./input/BEAM.csv", sep=",", header=TRUE),
read.table("./input/BEN.csv", sep=",", header=TRUE),
read.table("./input/BF.B.csv", sep=",", header=TRUE),
read.table("./input/BGC.csv", sep=",", header=TRUE),
read.table("./input/BGG.csv", sep=",", header=TRUE),
read.table("./input/BH.csv", sep=",", header=TRUE),
read.table("./input/BHE.csv", sep=",", header=TRUE),
read.table("./input/BHI.csv", sep=",", header=TRUE),
read.table("./input/BHLB.csv", sep=",", header=TRUE),
read.table("./input/BHP.csv", sep=",", header=TRUE),
read.table("./input/BID.csv", sep=",", header=TRUE),
read.table("./input/BIG.csv", sep=",", header=TRUE),
read.table("./input/BK.csv", sep=",", header=TRUE),
read.table("./input/BKE.csv", sep=",", header=TRUE),
read.table("./input/BKH.csv", sep=",", header=TRUE),
read.table("./input/BKI.csv", sep=",", header=TRUE),
read.table("./input/BKN.csv", sep=",", header=TRUE),
read.table("./input/BLK.csv", sep=",", header=TRUE),
read.table("./input/BLL.csv", sep=",", header=TRUE),
read.table("./input/BLT.csv", sep=",", header=TRUE),
read.table("./input/BLX.csv", sep=",", header=TRUE),
read.table("./input/BMI.csv", sep=",", header=TRUE),
read.table("./input/BMO.csv", sep=",", header=TRUE),
read.table("./input/BMS.csv", sep=",", header=TRUE),
read.table("./input/BMY.csv", sep=",", header=TRUE),
read.table("./input/BNA.csv", sep=",", header=TRUE),
read.table("./input/BOH.csv", sep=",", header=TRUE),
read.table("./input/BP.csv", sep=",", header=TRUE),
read.table("./input/BPL.csv", sep=",", header=TRUE),
read.table("./input/BPO.csv", sep=",", header=TRUE),
read.table("./input/BPT.csv", sep=",", header=TRUE),
read.table("./input/BRC.csv", sep=",", header=TRUE),
read.table("./input/BRE.csv", sep=",", header=TRUE),
read.table("./input/BRK.A.csv", sep=",", header=TRUE),
read.table("./input/BRK.B.csv", sep=",", header=TRUE),
read.table("./input/BRO.csv", sep=",", header=TRUE),
read.table("./input/BRS.csv", sep=",", header=TRUE),
read.table("./input/BRY.csv", sep=",", header=TRUE),
read.table("./input/BSAC.csv", sep=",", header=TRUE),
read.table("./input/BSD.csv", sep=",", header=TRUE),
read.table("./input/BSP.csv", sep=",", header=TRUE),
read.table("./input/BSX.csv", sep=",", header=TRUE),
read.table("./input/BT.csv", sep=",", header=TRUE),
read.table("./input/BTF.csv", sep=",", header=TRUE),
read.table("./input/BTH.csv", sep=",", header=TRUE),
read.table("./input/BTO.csv", sep=",", header=TRUE),
read.table("./input/BVN.csv", sep=",", header=TRUE),
read.table("./input/BWS.csv", sep=",", header=TRUE),
read.table("./input/BXP.csv", sep=",", header=TRUE),
read.table("./input/BXS.csv", sep=",", header=TRUE),
read.table("./input/BYD.csv", sep=",", header=TRUE),
read.table("./input/BYI.csv", sep=",", header=TRUE),
read.table("./input/BZH.csv", sep=",", header=TRUE),
read.table("./input/C.csv", sep=",", header=TRUE),
read.table("./input/CACI.csv", sep=",", header=TRUE),
read.table("./input/CAG.csv", sep=",", header=TRUE),
read.table("./input/CAH.csv", sep=",", header=TRUE),
read.table("./input/CAJ.csv", sep=",", header=TRUE),
read.table("./input/CAM.csv", sep=",", header=TRUE),
read.table("./input/CAS.csv", sep=",", header=TRUE),
read.table("./input/CAT.csv", sep=",", header=TRUE),
read.table("./input/CATO.csv", sep=",", header=TRUE),
read.table("./input/CB.csv", sep=",", header=TRUE),
read.table("./input/CBD.csv", sep=",", header=TRUE),
read.table("./input/CBI.csv", sep=",", header=TRUE),
read.table("./input/CBK.csv", sep=",", header=TRUE),
read.table("./input/CBL.csv", sep=",", header=TRUE),
read.table("./input/CBM.csv", sep=",", header=TRUE),
read.table("./input/CBT.csv", sep=",", header=TRUE),
read.table("./input/CBU.csv", sep=",", header=TRUE),
read.table("./input/CCC.csv", sep=",", header=TRUE),
read.table("./input/CCE.csv", sep=",", header=TRUE),
read.table("./input/CCI.csv", sep=",", header=TRUE),
read.table("./input/CCJ.csv", sep=",", header=TRUE),
read.table("./input/CCK.csv", sep=",", header=TRUE),
read.table("./input/CCL.csv", sep=",", header=TRUE),
read.table("./input/CCU.csv", sep=",", header=TRUE),
read.table("./input/CCZ.csv", sep=",", header=TRUE),
read.table("./input/CDE.csv", sep=",", header=TRUE),
read.table("./input/CDI.csv", sep=",", header=TRUE),
read.table("./input/CEA.csv", sep=",", header=TRUE),
read.table("./input/CEB.csv", sep=",", header=TRUE),
read.table("./input/CEC.csv", sep=",", header=TRUE),
read.table("./input/CEE.csv", sep=",", header=TRUE),
read.table("./input/CEO.csv", sep=",", header=TRUE),
read.table("./input/CFR.csv", sep=",", header=TRUE),
read.table("./input/CGG.csv", sep=",", header=TRUE),
read.table("./input/CGI.csv", sep=",", header=TRUE),
read.table("./input/CGX.csv", sep=",", header=TRUE),
read.table("./input/CHD.csv", sep=",", header=TRUE),
read.table("./input/CHE.csv", sep=",", header=TRUE),
read.table("./input/CHG.csv", sep=",", header=TRUE),
read.table("./input/CHH.csv", sep=",", header=TRUE),
read.table("./input/CHK.csv", sep=",", header=TRUE),
read.table("./input/CHL.csv", sep=",", header=TRUE),
read.table("./input/CHN.csv", sep=",", header=TRUE),
read.table("./input/CHS.csv", sep=",", header=TRUE),
read.table("./input/CHU.csv", sep=",", header=TRUE),
read.table("./input/CI.csv", sep=",", header=TRUE),
read.table("./input/CIB.csv", sep=",", header=TRUE),
read.table("./input/CIG.csv", sep=",", header=TRUE),
read.table("./input/CIR.csv", sep=",", header=TRUE),
read.table("./input/CKH.csv", sep=",", header=TRUE),
read.table("./input/CKP.csv", sep=",", header=TRUE),
read.table("./input/CL.csv", sep=",", header=TRUE),
read.table("./input/CLB.csv", sep=",", header=TRUE),
read.table("./input/CLC.csv", sep=",", header=TRUE),
read.table("./input/CLF.csv", sep=",", header=TRUE),
read.table("./input/CLGX.csv", sep=",", header=TRUE),
read.table("./input/CLH.csv", sep=",", header=TRUE),
read.table("./input/CLI.csv", sep=",", header=TRUE),
read.table("./input/CLS.csv", sep=",", header=TRUE),
read.table("./input/CLX.csv", sep=",", header=TRUE),
read.table("./input/CM.csv", sep=",", header=TRUE),
read.table("./input/CMA.csv", sep=",", header=TRUE),
read.table("./input/CMC.csv", sep=",", header=TRUE),
read.table("./input/CMI.csv", sep=",", header=TRUE),
read.table("./input/CMN.csv", sep=",", header=TRUE),
read.table("./input/CMO.csv", sep=",", header=TRUE),
read.table("./input/CMS.csv", sep=",", header=TRUE),
read.table("./input/CNA.csv", sep=",", header=TRUE),
read.table("./input/CNH.csv", sep=",", header=TRUE),
read.table("./input/CNI.csv", sep=",", header=TRUE),
read.table("./input/CNL.csv", sep=",", header=TRUE),
read.table("./input/CNP.csv", sep=",", header=TRUE),
read.table("./input/CNQ.csv", sep=",", header=TRUE),
read.table("./input/CNW.csv", sep=",", header=TRUE),
read.table("./input/CNX.csv", sep=",", header=TRUE),
read.table("./input/COF.csv", sep=",", header=TRUE),
read.table("./input/COG.csv", sep=",", header=TRUE),
read.table("./input/COH.csv", sep=",", header=TRUE),
read.table("./input/COO.csv", sep=",", header=TRUE),
read.table("./input/COP.csv", sep=",", header=TRUE),
read.table("./input/COT.csv", sep=",", header=TRUE),
read.table("./input/CP.csv", sep=",", header=TRUE),
read.table("./input/CPB.csv", sep=",", header=TRUE),
read.table("./input/CPE.csv", sep=",", header=TRUE),
read.table("./input/CPF.csv", sep=",", header=TRUE),
read.table("./input/CPK.csv", sep=",", header=TRUE),
read.table("./input/CPT.csv", sep=",", header=TRUE),
read.table("./input/CQB.csv", sep=",", header=TRUE),
read.table("./input/CR.csv", sep=",", header=TRUE),
read.table("./input/CRH.csv", sep=",", header=TRUE),
read.table("./input/CRK.csv", sep=",", header=TRUE),
read.table("./input/CRL.csv", sep=",", header=TRUE),
read.table("./input/CRR.csv", sep=",", header=TRUE),
read.table("./input/CRS.csv", sep=",", header=TRUE),
read.table("./input/CRT.csv", sep=",", header=TRUE),
read.table("./input/CS.csv", sep=",", header=TRUE),
read.table("./input/CSC.csv", sep=",", header=TRUE),
read.table("./input/CSH.csv", sep=",", header=TRUE),
read.table("./input/CSI.csv", sep=",", header=TRUE),
read.table("./input/CSL.csv", sep=",", header=TRUE),
read.table("./input/CSP.csv", sep=",", header=TRUE),
read.table("./input/CSS.csv", sep=",", header=TRUE),
read.table("./input/CSX.csv", sep=",", header=TRUE),
read.table("./input/CTB.csv", sep=",", header=TRUE),
read.table("./input/CTL.csv", sep=",", header=TRUE),
read.table("./input/CTS.csv", sep=",", header=TRUE),
read.table("./input/CUB.csv", sep=",", header=TRUE),
read.table("./input/CUZ.csv", sep=",", header=TRUE),
read.table("./input/CVA.csv", sep=",", header=TRUE),
read.table("./input/CVC.csv", sep=",", header=TRUE),
read.table("./input/CVD.csv", sep=",", header=TRUE),
read.table("./input/CVG.csv", sep=",", header=TRUE),
read.table("./input/CVH.csv", sep=",", header=TRUE),
read.table("./input/CVS.csv", sep=",", header=TRUE),
read.table("./input/CVX.csv", sep=",", header=TRUE),
read.table("./input/CW.csv", sep=",", header=TRUE),
read.table("./input/CWH.csv", sep=",", header=TRUE),
read.table("./input/CWT.csv", sep=",", header=TRUE),
read.table("./input/CX.csv", sep=",", header=TRUE),
read.table("./input/CXW.csv", sep=",", header=TRUE),
read.table("./input/CYD.csv", sep=",", header=TRUE),
read.table("./input/CYH.csv", sep=",", header=TRUE),
read.table("./input/CYN.csv", sep=",", header=TRUE),
read.table("./input/CYT.csv", sep=",", header=TRUE),
read.table("./input/D.csv", sep=",", header=TRUE),
read.table("./input/DB.csv", sep=",", header=TRUE),
read.table("./input/DBD.csv", sep=",", header=TRUE),
read.table("./input/DCI.csv", sep=",", header=TRUE),
read.table("./input/DCO.csv", sep=",", header=TRUE),
read.table("./input/DD.csv", sep=",", header=TRUE),
read.table("./input/DDC.csv", sep=",", header=TRUE),
read.table("./input/DDS.csv", sep=",", header=TRUE),
read.table("./input/DDT.csv", sep=",", header=TRUE),
read.table("./input/DE.csv", sep=",", header=TRUE),
read.table("./input/DEL.csv", sep=",", header=TRUE),
read.table("./input/DEO.csv", sep=",", header=TRUE),
read.table("./input/DGX.csv", sep=",", header=TRUE),
read.table("./input/DHI.csv", sep=",", header=TRUE),
read.table("./input/DHR.csv", sep=",", header=TRUE),
read.table("./input/DIN.csv", sep=",", header=TRUE),
read.table("./input/DIS.csv", sep=",", header=TRUE),
read.table("./input/DLX.csv", sep=",", header=TRUE),
read.table("./input/DNB.csv", sep=",", header=TRUE),
read.table("./input/DNP.csv", sep=",", header=TRUE),
read.table("./input/DNR.csv", sep=",", header=TRUE),
read.table("./input/DO.csv", sep=",", header=TRUE),
read.table("./input/DOM.csv", sep=",", header=TRUE),
read.table("./input/DOV.csv", sep=",", header=TRUE),
read.table("./input/DOW.csv", sep=",", header=TRUE),
read.table("./input/DOX.csv", sep=",", header=TRUE),
read.table("./input/DRI.csv", sep=",", header=TRUE),
read.table("./input/DRL.csv", sep=",", header=TRUE),
read.table("./input/DRQ.csv", sep=",", header=TRUE),
read.table("./input/DST.csv", sep=",", header=TRUE),
read.table("./input/DTE.csv", sep=",", header=TRUE),
read.table("./input/DTF.csv", sep=",", header=TRUE),
read.table("./input/DUC.csv", sep=",", header=TRUE),
read.table("./input/DUK.csv", sep=",", header=TRUE),
read.table("./input/DV.csv", sep=",", header=TRUE),
read.table("./input/DVA.csv", sep=",", header=TRUE),
read.table("./input/DVN.csv", sep=",", header=TRUE),
read.table("./input/DW.csv", sep=",", header=TRUE),
read.table("./input/DY.csv", sep=",", header=TRUE),
read.table("./input/EAT.csv", sep=",", header=TRUE),
read.table("./input/EBF.csv", sep=",", header=TRUE),
read.table("./input/EBR.B.csv", sep=",", header=TRUE),
read.table("./input/ECL.csv", sep=",", header=TRUE),
read.table("./input/ED.csv", sep=",", header=TRUE),
read.table("./input/EDE.csv", sep=",", header=TRUE),
read.table("./input/EE.csv", sep=",", header=TRUE),
read.table("./input/EEP.csv", sep=",", header=TRUE),
read.table("./input/EFX.csv", sep=",", header=TRUE),
read.table("./input/EGN.csv", sep=",", header=TRUE),
read.table("./input/EGP.csv", sep=",", header=TRUE),
read.table("./input/EIX.csv", sep=",", header=TRUE),
read.table("./input/EL.csv", sep=",", header=TRUE),
read.table("./input/ELN.csv", sep=",", header=TRUE),
read.table("./input/ELP.csv", sep=",", header=TRUE),
read.table("./input/ELS.csv", sep=",", header=TRUE),
read.table("./input/ELX.csv", sep=",", header=TRUE),
read.table("./input/ELY.csv", sep=",", header=TRUE),
read.table("./input/EMC.csv", sep=",", header=TRUE),
read.table("./input/EME.csv", sep=",", header=TRUE),
read.table("./input/EMF.csv", sep=",", header=TRUE),
read.table("./input/EMN.csv", sep=",", header=TRUE),
read.table("./input/EMR.csv", sep=",", header=TRUE),
read.table("./input/ENB.csv", sep=",", header=TRUE),
read.table("./input/ENI.csv", sep=",", header=TRUE),
read.table("./input/ENR.csv", sep=",", header=TRUE),
read.table("./input/ENZ.csv", sep=",", header=TRUE),
read.table("./input/EOC.csv", sep=",", header=TRUE),
read.table("./input/EOG.csv", sep=",", header=TRUE),
read.table("./input/EPD.csv", sep=",", header=TRUE),
read.table("./input/EPR.csv", sep=",", header=TRUE),
read.table("./input/EQR.csv", sep=",", header=TRUE),
read.table("./input/EQT.csv", sep=",", header=TRUE),
read.table("./input/EQY.csv", sep=",", header=TRUE),
read.table("./input/ERF.csv", sep=",", header=TRUE),
read.table("./input/ERJ.csv", sep=",", header=TRUE),
read.table("./input/ESC.csv", sep=",", header=TRUE),
read.table("./input/ESE.csv", sep=",", header=TRUE),
read.table("./input/ESI.csv", sep=",", header=TRUE),
read.table("./input/ESL.csv", sep=",", header=TRUE),
read.table("./input/ESS.csv", sep=",", header=TRUE),
read.table("./input/ESV.csv", sep=",", header=TRUE),
read.table("./input/ETH.csv", sep=",", header=TRUE),
read.table("./input/ETM.csv", sep=",", header=TRUE),
read.table("./input/ETN.csv", sep=",", header=TRUE),
read.table("./input/ETP.csv", sep=",", header=TRUE),
read.table("./input/ETR.csv", sep=",", header=TRUE),
read.table("./input/EV.csv", sep=",", header=TRUE),
read.table("./input/EVN.csv", sep=",", header=TRUE),
read.table("./input/EW.csv", sep=",", header=TRUE),
read.table("./input/EXC.csv", sep=",", header=TRUE),
read.table("./input/EXP.csv", sep=",", header=TRUE),
read.table("./input/F.csv", sep=",", header=TRUE),
read.table("./input/FBN.csv", sep=",", header=TRUE),
read.table("./input/FBP.csv", sep=",", header=TRUE),
read.table("./input/FBR.csv", sep=",", header=TRUE),
read.table("./input/FCE.A.csv", sep=",", header=TRUE),
read.table("./input/FCE.B.csv", sep=",", header=TRUE),
read.table("./input/FCF.csv", sep=",", header=TRUE),
read.table("./input/FCH.csv", sep=",", header=TRUE),
read.table("./input/FCN.csv", sep=",", header=TRUE),
read.table("./input/FCS.csv", sep=",", header=TRUE),
read.table("./input/FCX.csv", sep=",", header=TRUE),
read.table("./input/FDI.csv", sep=",", header=TRUE),
read.table("./input/FDO.csv", sep=",", header=TRUE),
read.table("./input/FDP.csv", sep=",", header=TRUE),
read.table("./input/FDS.csv", sep=",", header=TRUE),
read.table("./input/FDX.csv", sep=",", header=TRUE),
read.table("./input/FE.csv", sep=",", header=TRUE),
read.table("./input/FFG.csv", sep=",", header=TRUE),
read.table("./input/FGP.csv", sep=",", header=TRUE),
read.table("./input/FHN.csv", sep=",", header=TRUE),
read.table("./input/FICO.csv", sep=",", header=TRUE),
read.table("./input/FII.csv", sep=",", header=TRUE),
read.table("./input/FIX.csv", sep=",", header=TRUE),
read.table("./input/FL.csv", sep=",", header=TRUE),
read.table("./input/FLO.csv", sep=",", header=TRUE),
read.table("./input/FLR.csv", sep=",", header=TRUE),
read.table("./input/FLS.csv", sep=",", header=TRUE),
read.table("./input/FMC.csv", sep=",", header=TRUE),
read.table("./input/FMS.csv", sep=",", header=TRUE),
read.table("./input/FMX.csv", sep=",", header=TRUE),
read.table("./input/FNB.csv", sep=",", header=TRUE),
read.table("./input/FNP.csv", sep=",", header=TRUE),
read.table("./input/FOE.csv", sep=",", header=TRUE),
read.table("./input/FRT.csv", sep=",", header=TRUE),
read.table("./input/FRX.csv", sep=",", header=TRUE),
read.table("./input/FSS.csv", sep=",", header=TRUE),
read.table("./input/FST.csv", sep=",", header=TRUE),
read.table("./input/FTE.csv", sep=",", header=TRUE),
read.table("./input/FUL.csv", sep=",", header=TRUE),
read.table("./input/FUN.csv", sep=",", header=TRUE),
read.table("./input/GAM.csv", sep=",", header=TRUE),
read.table("./input/GAS.csv", sep=",", header=TRUE),
read.table("./input/GB.csv", sep=",", header=TRUE),
read.table("./input/GBL.csv", sep=",", header=TRUE),
read.table("./input/GBX.csv", sep=",", header=TRUE),
read.table("./input/GCH.csv", sep=",", header=TRUE),
read.table("./input/GCI.csv", sep=",", header=TRUE),
read.table("./input/GCO.csv", sep=",", header=TRUE),
read.table("./input/GD.csv", sep=",", header=TRUE),
read.table("./input/GDF.csv", sep=",", header=TRUE),
read.table("./input/GDI.csv", sep=",", header=TRUE),
read.table("./input/GDP.csv", sep=",", header=TRUE),
read.table("./input/GE.csv", sep=",", header=TRUE),
read.table("./input/GEF.csv", sep=",", header=TRUE),
read.table("./input/GEL.csv", sep=",", header=TRUE),
read.table("./input/GEO.csv", sep=",", header=TRUE),
read.table("./input/GES.csv", sep=",", header=TRUE),
read.table("./input/getStock.sh", sep=",", header=TRUE),
read.table("./input/GF.csv", sep=",", header=TRUE),
read.table("./input/GFF.csv", sep=",", header=TRUE),
read.table("./input/GFI.csv", sep=",", header=TRUE),
read.table("./input/GG.csv", sep=",", header=TRUE),
read.table("./input/GGB.csv", sep=",", header=TRUE),
read.table("./input/GGG.csv", sep=",", header=TRUE),
read.table("./input/GHI.csv", sep=",", header=TRUE),
read.table("./input/GIB.csv", sep=",", header=TRUE),
read.table("./input/GIL.csv", sep=",", header=TRUE),
read.table("./input/GIS.csv", sep=",", header=TRUE),
read.table("./input/GLF.csv", sep=",", header=TRUE),
read.table("./input/GLT.csv", sep=",", header=TRUE),
read.table("./input/GLW.csv", sep=",", header=TRUE),
read.table("./input/GMT.csv", sep=",", header=TRUE),
read.table("./input/GNI.csv", sep=",", header=TRUE),
read.table("./input/GPC.csv", sep=",", header=TRUE),
read.table("./input/GPI.csv", sep=",", header=TRUE),
read.table("./input/GPS.csv", sep=",", header=TRUE),
read.table("./input/GRA.csv", sep=",", header=TRUE),
read.table("./input/GRR.csv", sep=",", header=TRUE),
read.table("./input/GRT.csv", sep=",", header=TRUE),
read.table("./input/GS.csv", sep=",", header=TRUE),
read.table("./input/GSH.csv", sep=",", header=TRUE),
read.table("./input/GSK.csv", sep=",", header=TRUE),
read.table("./input/GTI.csv", sep=",", header=TRUE),
read.table("./input/GTY.csv", sep=",", header=TRUE),
read.table("./input/GVA.csv", sep=",", header=TRUE),
read.table("./input/GWR.csv", sep=",", header=TRUE),
read.table("./input/GWW.csv", sep=",", header=TRUE),
read.table("./input/GXP.csv", sep=",", header=TRUE),
read.table("./input/GY.csv", sep=",", header=TRUE),
read.table("./input/HAE.csv", sep=",", header=TRUE),
read.table("./input/HAL.csv", sep=",", header=TRUE),
read.table("./input/HAR.csv", sep=",", header=TRUE),
read.table("./input/HBC.csv", sep=",", header=TRUE),
read.table("./input/HBC.P.csv", sep=",", header=TRUE),
read.table("./input/HCC.csv", sep=",", header=TRUE),
read.table("./input/HCN.csv", sep=",", header=TRUE),
read.table("./input/HCP.csv", sep=",", header=TRUE),
read.table("./input/HD.csv", sep=",", header=TRUE),
read.table("./input/HE.csv", sep=",", header=TRUE),
read.table("./input/HEI.A.csv", sep=",", header=TRUE),
read.table("./input/HEI.csv", sep=",", header=TRUE),
read.table("./input/HES.csv", sep=",", header=TRUE),
read.table("./input/HFC.csv", sep=",", header=TRUE),
read.table("./input/HGR.csv", sep=",", header=TRUE),
read.table("./input/HGT.csv", sep=",", header=TRUE),
read.table("./input/HHS.csv", sep=",", header=TRUE),
read.table("./input/HIG.csv", sep=",", header=TRUE),
read.table("./input/HIW.csv", sep=",", header=TRUE),
read.table("./input/HIX.csv", sep=",", header=TRUE),
read.table("./input/HLS.csv", sep=",", header=TRUE),
read.table("./input/HLX.csv", sep=",", header=TRUE),
read.table("./input/HMA.csv", sep=",", header=TRUE),
read.table("./input/HMC.csv", sep=",", header=TRUE),
read.table("./input/HME.csv", sep=",", header=TRUE),
read.table("./input/HMN.csv", sep=",", header=TRUE),
read.table("./input/HMY.csv", sep=",", header=TRUE),
read.table("./input/HNI.csv", sep=",", header=TRUE),
read.table("./input/HNP.csv", sep=",", header=TRUE),
read.table("./input/HNR.csv", sep=",", header=TRUE),
read.table("./input/HNT.csv", sep=",", header=TRUE),
read.table("./input/HNZ.csv", sep=",", header=TRUE),
read.table("./input/HOG.csv", sep=",", header=TRUE),
read.table("./input/HON.csv", sep=",", header=TRUE),
read.table("./input/HOT.csv", sep=",", header=TRUE),
read.table("./input/HOV.csv", sep=",", header=TRUE),
read.table("./input/HP.csv", sep=",", header=TRUE),
read.table("./input/HPQ.csv", sep=",", header=TRUE),
read.table("./input/HPT.csv", sep=",", header=TRUE),
read.table("./input/HQH.csv", sep=",", header=TRUE),
read.table("./input/HQL.csv", sep=",", header=TRUE),
read.table("./input/HR.csv", sep=",", header=TRUE),
read.table("./input/HRB.csv", sep=",", header=TRUE),
read.table("./input/HRC.csv", sep=",", header=TRUE),
read.table("./input/HRL.csv", sep=",", header=TRUE),
read.table("./input/HRS.csv", sep=",", header=TRUE),
read.table("./input/HSC.csv", sep=",", header=TRUE),
read.table("./input/HSH.csv", sep=",", header=TRUE),
read.table("./input/HST.csv", sep=",", header=TRUE),
read.table("./input/HSY.csv", sep=",", header=TRUE),
read.table("./input/HTSI.csv", sep=",", header=TRUE),
read.table("./input/HUB.A.csv", sep=",", header=TRUE),
read.table("./input/HUM.csv", sep=",", header=TRUE),
read.table("./input/HVB.csv", sep=",", header=TRUE),
read.table("./input/HVT.A.csv", sep=",", header=TRUE),
read.table("./input/HVT.csv", sep=",", header=TRUE),
read.table("./input/HXL.csv", sep=",", header=TRUE),
read.table("./input/HZO.csv", sep=",", header=TRUE),
read.table("./input/IBA.csv", sep=",", header=TRUE),
read.table("./input/IBM.csv", sep=",", header=TRUE),
read.table("./input/IBN.csv", sep=",", header=TRUE),
read.table("./input/ICB.csv", sep=",", header=TRUE),
read.table("./input/IDA.csv", sep=",", header=TRUE),
read.table("./input/IEX.csv", sep=",", header=TRUE),
read.table("./input/IFN.csv", sep=",", header=TRUE),
read.table("./input/IGT.csv", sep=",", header=TRUE),
read.table("./input/IHC.csv", sep=",", header=TRUE),
read.table("./input/IIF.csv", sep=",", header=TRUE),
read.table("./input/IIT.csv", sep=",", header=TRUE),
read.table("./input/IM.csv", sep=",", header=TRUE),
read.table("./input/IMAX.csv", sep=",", header=TRUE),
read.table("./input/IMN.csv", sep=",", header=TRUE),
read.table("./input/IN.csv", sep=",", header=TRUE),
read.table("./input/ING.csv", sep=",", header=TRUE),
read.table("./input/INT.csv", sep=",", header=TRUE),
read.table("./input/IP.csv", sep=",", header=TRUE),
read.table("./input/IPG.csv", sep=",", header=TRUE),
read.table("./input/IR.csv", sep=",", header=TRUE),
read.table("./input/IRE.csv", sep=",", header=TRUE),
read.table("./input/IRF.csv", sep=",", header=TRUE),
read.table("./input/ISH.csv", sep=",", header=TRUE),
read.table("./input/ITT.csv", sep=",", header=TRUE),
read.table("./input/IVC.csv", sep=",", header=TRUE),
read.table("./input/IX.csv", sep=",", header=TRUE),
read.table("./input/JAH.csv", sep=",", header=TRUE),
read.table("./input/JBL.csv", sep=",", header=TRUE),
read.table("./input/JCI.csv", sep=",", header=TRUE),
read.table("./input/JCP.csv", sep=",", header=TRUE),
read.table("./input/JEC.csv", sep=",", header=TRUE),
read.table("./input/JFC.csv", sep=",", header=TRUE),
read.table("./input/JHI.csv", sep=",", header=TRUE),
read.table("./input/JHS.csv", sep=",", header=TRUE),
read.table("./input/JNPR.csv", sep=",", header=TRUE),
read.table("./input/JNY.csv", sep=",", header=TRUE),
read.table("./input/JOE.csv", sep=",", header=TRUE),
read.table("./input/JPM.csv", sep=",", header=TRUE),
read.table("./input/JW.A.csv", sep=",", header=TRUE),
read.table("./input/JW.B.csv", sep=",", header=TRUE),
read.table("./input/KAI.csv", sep=",", header=TRUE),
read.table("./input/KAMN.csv", sep=",", header=TRUE),
read.table("./input/KBH.csv", sep=",", header=TRUE),
read.table("./input/KCG.csv", sep=",", header=TRUE),
read.table("./input/KDN.csv", sep=",", header=TRUE),
read.table("./input/KEG.csv", sep=",", header=TRUE),
read.table("./input/KEP.csv", sep=",", header=TRUE),
read.table("./input/KEX.csv", sep=",", header=TRUE),
read.table("./input/KF.csv", sep=",", header=TRUE),
read.table("./input/KFY.csv", sep=",", header=TRUE),
read.table("./input/KGC.csv", sep=",", header=TRUE),
read.table("./input/KID.csv", sep=",", header=TRUE),
read.table("./input/KKD.csv", sep=",", header=TRUE),
read.table("./input/KMB.csv", sep=",", header=TRUE),
read.table("./input/KMP.csv", sep=",", header=TRUE),
read.table("./input/KMPR.csv", sep=",", header=TRUE),
read.table("./input/KMT.csv", sep=",", header=TRUE),
read.table("./input/KMX.csv", sep=",", header=TRUE),
read.table("./input/KNX.csv", sep=",", header=TRUE),
read.table("./input/KR.csv", sep=",", header=TRUE),
read.table("./input/KRC.csv", sep=",", header=TRUE),
read.table("./input/KSM.csv", sep=",", header=TRUE),
read.table("./input/KSS.csv", sep=",", header=TRUE),
read.table("./input/KST.csv", sep=",", header=TRUE),
read.table("./input/KSU.P.csv", sep=",", header=TRUE),
read.table("./input/KT.csv", sep=",", header=TRUE),
read.table("./input/KTF.csv", sep=",", header=TRUE),
read.table("./input/KTP.csv", sep=",", header=TRUE),
read.table("./input/KWK.csv", sep=",", header=TRUE),
read.table("./input/KWR.csv", sep=",", header=TRUE),
read.table("./input/KYO.csv", sep=",", header=TRUE),
read.table("./input/L.csv", sep=",", header=TRUE),
read.table("./input/LDF.csv", sep=",", header=TRUE),
read.table("./input/LEE.csv", sep=",", header=TRUE),
read.table("./input/LEG.csv", sep=",", header=TRUE),
read.table("./input/LEN.csv", sep=",", header=TRUE),
read.table("./input/LFL.csv", sep=",", header=TRUE),
read.table("./input/LG.csv", sep=",", header=TRUE),
read.table("./input/LH.csv", sep=",", header=TRUE),
read.table("./input/LHO.csv", sep=",", header=TRUE),
read.table("./input/LLL.csv", sep=",", header=TRUE),
read.table("./input/LLY.csv", sep=",", header=TRUE),
read.table("./input/LMT.csv", sep=",", header=TRUE),
read.table("./input/LNN.csv", sep=",", header=TRUE),
read.table("./input/LRY.csv", sep=",", header=TRUE),
read.table("./input/LTD.csv", sep=",", header=TRUE),
read.table("./input/LUK.csv", sep=",", header=TRUE),
read.table("./input/LVLT.csv", sep=",", header=TRUE),
read.table("./input/LXK.csv", sep=",", header=TRUE),
read.table("./input/LXP.csv", sep=",", header=TRUE),
read.table("./input/LZB.csv", sep=",", header=TRUE),
read.table("./input/M.csv", sep=",", header=TRUE),
read.table("./input/MAC.csv", sep=",", header=TRUE),
read.table("./input/MAN.csv", sep=",", header=TRUE),
read.table("./input/MAR.csv", sep=",", header=TRUE),
read.table("./input/MAS.csv", sep=",", header=TRUE),
read.table("./input/MBT.csv", sep=",", header=TRUE),
read.table("./input/MCI.csv", sep=",", header=TRUE),
read.table("./input/MCK.csv", sep=",", header=TRUE),
read.table("./input/MD.csv", sep=",", header=TRUE),
read.table("./input/MDC.csv", sep=",", header=TRUE),
read.table("./input/MDP.csv", sep=",", header=TRUE),
read.table("./input/MDR.csv", sep=",", header=TRUE),
read.table("./input/MDT.csv", sep=",", header=TRUE),
read.table("./input/MEI.csv", sep=",", header=TRUE),
read.table("./input/MEN.csv", sep=",", header=TRUE),
read.table("./input/MET.csv", sep=",", header=TRUE),
read.table("./input/MFC.csv", sep=",", header=TRUE),
read.table("./input/MFT.csv", sep=",", header=TRUE),
read.table("./input/MGM.csv", sep=",", header=TRUE),
read.table("./input/MHK.csv", sep=",", header=TRUE),
read.table("./input/MHN.csv", sep=",", header=TRUE),
read.table("./input/MKC.csv", sep=",", header=TRUE),
read.table("./input/MLI.csv", sep=",", header=TRUE),
read.table("./input/MLM.csv", sep=",", header=TRUE),
read.table("./input/MLP.csv", sep=",", header=TRUE),
read.table("./input/MLR.csv", sep=",", header=TRUE),
read.table("./input/MMC.csv", sep=",", header=TRUE),
read.table("./input/MMM.csv", sep=",", header=TRUE),
read.table("./input/MMS.csv", sep=",", header=TRUE),
read.table("./input/MMU.csv", sep=",", header=TRUE),
read.table("./input/MNI.csv", sep=",", header=TRUE),
read.table("./input/MNP.csv", sep=",", header=TRUE),
read.table("./input/MOD.csv", sep=",", header=TRUE),
read.table("./input/MOG.A.csv", sep=",", header=TRUE),
read.table("./input/MON.csv", sep=",", header=TRUE),
read.table("./input/MOV.csv", sep=",", header=TRUE),
read.table("./input/MPR.csv", sep=",", header=TRUE),
read.table("./input/MPV.csv", sep=",", header=TRUE),
read.table("./input/MQY.csv", sep=",", header=TRUE),
read.table("./input/MRK.csv", sep=",", header=TRUE),
read.table("./input/MRO.csv", sep=",", header=TRUE),
read.table("./input/MS.csv", sep=",", header=TRUE),
read.table("./input/MSB.csv", sep=",", header=TRUE),
read.table("./input/MSF.csv", sep=",", header=TRUE),
read.table("./input/MSM.csv", sep=",", header=TRUE),
read.table("./input/MSO.csv", sep=",", header=TRUE),
read.table("./input/MTB.csv", sep=",", header=TRUE),
read.table("./input/MTD.csv", sep=",", header=TRUE),
read.table("./input/MTG.csv", sep=",", header=TRUE),
read.table("./input/MTN.csv", sep=",", header=TRUE),
read.table("./input/MTRN.csv", sep=",", header=TRUE),
read.table("./input/MTS.csv", sep=",", header=TRUE),
read.table("./input/MTX.csv", sep=",", header=TRUE),
read.table("./input/MTZ.csv", sep=",", header=TRUE),
read.table("./input/MUC.csv", sep=",", header=TRUE),
read.table("./input/MUE.csv", sep=",", header=TRUE),
read.table("./input/MUJ.csv", sep=",", header=TRUE),
read.table("./input/MUR.csv", sep=",", header=TRUE),
read.table("./input/MUS.csv", sep=",", header=TRUE),
read.table("./input/MW.csv", sep=",", header=TRUE),
read.table("./input/MWV.csv", sep=",", header=TRUE),
read.table("./input/MXF.csv", sep=",", header=TRUE),
read.table("./input/MYD.csv", sep=",", header=TRUE),
read.table("./input/MYE.csv", sep=",", header=TRUE),
read.table("./input/MYF.csv", sep=",", header=TRUE),
read.table("./input/MYI.csv", sep=",", header=TRUE),
read.table("./input/MYJ.csv", sep=",", header=TRUE),
read.table("./input/MYM.csv", sep=",", header=TRUE),
read.table("./input/MYN.csv", sep=",", header=TRUE),
read.table("./input/NAC.csv", sep=",", header=TRUE),
read.table("./input/NAD.csv", sep=",", header=TRUE),
read.table("./input/NAN.csv", sep=",", header=TRUE),
read.table("./input/NAT.csv", sep=",", header=TRUE),
read.table("./input/NAV.csv", sep=",", header=TRUE),
read.table("./input/NAZ.csv", sep=",", header=TRUE),
read.table("./input/NBL.csv", sep=",", header=TRUE),
read.table("./input/NBR.csv", sep=",", header=TRUE),
read.table("./input/NC.csv", sep=",", header=TRUE),
read.table("./input/NCI.csv", sep=",", header=TRUE),
read.table("./input/NCO.csv", sep=",", header=TRUE),
read.table("./input/NCP.csv", sep=",", header=TRUE),
read.table("./input/NCR.csv", sep=",", header=TRUE),
read.table("./input/NCS.csv", sep=",", header=TRUE),
read.table("./input/NE.csv", sep=",", header=TRUE),
read.table("./input/NEE.csv", sep=",", header=TRUE),
read.table("./input/NEM.csv", sep=",", header=TRUE),
read.table("./input/NEU.csv", sep=",", header=TRUE),
read.table("./input/NFG.csv", sep=",", header=TRUE),
read.table("./input/NFX.csv", sep=",", header=TRUE),
read.table("./input/NGT.csv", sep=",", header=TRUE),
read.table("./input/NI.csv", sep=",", header=TRUE),
read.table("./input/NIF.csv", sep=",", header=TRUE),
read.table("./input/NIO.csv", sep=",", header=TRUE),
read.table("./input/NJR.csv", sep=",", header=TRUE),
read.table("./input/NKE.csv", sep=",", header=TRUE),
read.table("./input/NLS.csv", sep=",", header=TRUE),
read.table("./input/NLY.csv", sep=",", header=TRUE),
read.table("./input/NMO.csv", sep=",", header=TRUE),
read.table("./input/NMY.csv", sep=",", header=TRUE),
read.table("./input/NNC.csv", sep=",", header=TRUE),
read.table("./input/NNJ.csv", sep=",", header=TRUE),
read.table("./input/NNN.csv", sep=",", header=TRUE),
read.table("./input/NOV.csv", sep=",", header=TRUE),
read.table("./input/NPI.csv", sep=",", header=TRUE),
read.table("./input/NPK.csv", sep=",", header=TRUE),
read.table("./input/NPM.csv", sep=",", header=TRUE),
read.table("./input/NPP.csv", sep=",", header=TRUE),
read.table("./input/NPT.csv", sep=",", header=TRUE),
read.table("./input/NPV.csv", sep=",", header=TRUE),
read.table("./input/NPX.csv", sep=",", header=TRUE),
read.table("./input/NPY.csv", sep=",", header=TRUE),
read.table("./input/NQC.csv", sep=",", header=TRUE),
read.table("./input/NQI.csv", sep=",", header=TRUE),
read.table("./input/NQP.csv", sep=",", header=TRUE),
read.table("./input/NQS.csv", sep=",", header=TRUE),
read.table("./input/NQU.csv", sep=",", header=TRUE),
read.table("./input/NSC.csv", sep=",", header=TRUE),
read.table("./input/NSP.csv", sep=",", header=TRUE),
read.table("./input/NTC.csv", sep=",", header=TRUE),
read.table("./input/NTE.csv", sep=",", header=TRUE),
read.table("./input/NTL.csv", sep=",", header=TRUE),
read.table("./input/NTT.csv", sep=",", header=TRUE),
read.table("./input/NTX.csv", sep=",", header=TRUE),
read.table("./input/NU.csv", sep=",", header=TRUE),
read.table("./input/NUC.csv", sep=",", header=TRUE),
read.table("./input/NUE.csv", sep=",", header=TRUE),
read.table("./input/NUM.csv", sep=",", header=TRUE),
read.table("./input/NUO.csv", sep=",", header=TRUE),
read.table("./input/NUS.csv", sep=",", header=TRUE),
read.table("./input/NVC.csv", sep=",", header=TRUE),
read.table("./input/NVE.csv", sep=",", header=TRUE),
read.table("./input/NVO.csv", sep=",", header=TRUE),
read.table("./input/NVR.csv", sep=",", header=TRUE),
read.table("./input/NWL.csv", sep=",", header=TRUE),
read.table("./input/NWN.csv", sep=",", header=TRUE),
read.table("./input/NXC.csv", sep=",", header=TRUE),
read.table("./input/NXP.csv", sep=",", header=TRUE),
read.table("./input/NXQ.csv", sep=",", header=TRUE),
read.table("./input/NXR.csv", sep=",", header=TRUE),
read.table("./input/NYCB.csv", sep=",", header=TRUE),
read.table("./input/O.csv", sep=",", header=TRUE),
read.table("./input/OCN.csv", sep=",", header=TRUE),
read.table("./input/OCR.csv", sep=",", header=TRUE),
read.table("./input/ODC.csv", sep=",", header=TRUE),
read.table("./input/ODP.csv", sep=",", header=TRUE),
read.table("./input/OEH.csv", sep=",", header=TRUE),
read.table("./input/OFC.csv", sep=",", header=TRUE),
read.table("./input/OFG.csv", sep=",", header=TRUE),
read.table("./input/OGE.csv", sep=",", header=TRUE),
read.table("./input/OI.csv", sep=",", header=TRUE),
read.table("./input/OII.csv", sep=",", header=TRUE),
read.table("./input/OKE.csv", sep=",", header=TRUE),
read.table("./input/OLP.csv", sep=",", header=TRUE),
read.table("./input/OMC.csv", sep=",", header=TRUE),
read.table("./input/OMG.csv", sep=",", header=TRUE),
read.table("./input/ONB.csv", sep=",", header=TRUE),
read.table("./input/OPY.csv", sep=",", header=TRUE),
read.table("./input/ORB.csv", sep=",", header=TRUE),
read.table("./input/ORI.csv", sep=",", header=TRUE),
read.table("./input/OSK.csv", sep=",", header=TRUE),
read.table("./input/OXM.csv", sep=",", header=TRUE),
read.table("./input/PAA.csv", sep=",", header=TRUE),
read.table("./input/PAG.csv", sep=",", header=TRUE),
read.table("./input/PAI.csv", sep=",", header=TRUE),
read.table("./input/PBR.csv", sep=",", header=TRUE),
read.table("./input/PBY.csv", sep=",", header=TRUE),
read.table("./input/PCG.csv", sep=",", header=TRUE),
read.table("./input/PCL.csv", sep=",", header=TRUE),
read.table("./input/PCP.csv", sep=",", header=TRUE),
read.table("./input/PDS.csv", sep=",", header=TRUE),
read.table("./input/PDT.csv", sep=",", header=TRUE),
read.table("./input/PEI.csv", sep=",", header=TRUE),
read.table("./input/PEP.csv", sep=",", header=TRUE),
read.table("./input/PFE.csv", sep=",", header=TRUE),
read.table("./input/PFH.csv", sep=",", header=TRUE),
read.table("./input/PG.csv", sep=",", header=TRUE),
read.table("./input/PGR.csv", sep=",", header=TRUE),
read.table("./input/PH.csv", sep=",", header=TRUE),
read.table("./input/PHI.csv", sep=",", header=TRUE),
read.table("./input/PHM.csv", sep=",", header=TRUE),
read.table("./input/PHX.csv", sep=",", header=TRUE),
read.table("./input/PII.csv", sep=",", header=TRUE),
read.table("./input/PIR.csv", sep=",", header=TRUE),
read.table("./input/PKE.csv", sep=",", header=TRUE),
read.table("./input/PKG.csv", sep=",", header=TRUE),
read.table("./input/PKI.csv", sep=",", header=TRUE),
read.table("./input/PKX.csv", sep=",", header=TRUE),
read.table("./input/PKY.csv", sep=",", header=TRUE),
read.table("./input/PL.csv", sep=",", header=TRUE),
read.table("./input/PLD.csv", sep=",", header=TRUE),
read.table("./input/PLL.csv", sep=",", header=TRUE),
read.table("./input/PMO.csv", sep=",", header=TRUE),
read.table("./input/PNC.csv", sep=",", header=TRUE),
read.table("./input/PNK.csv", sep=",", header=TRUE),
read.table("./input/PNR.csv", sep=",", header=TRUE),
read.table("./input/PNW.csv", sep=",", header=TRUE),
read.table("./input/PNY.csv", sep=",", header=TRUE),
read.table("./input/POM.csv", sep=",", header=TRUE),
read.table("./input/POT.csv", sep=",", header=TRUE),
read.table("./input/PPL.csv", sep=",", header=TRUE),
read.table("./input/PSA.csv", sep=",", header=TRUE),
read.table("./input/PSB.csv", sep=",", header=TRUE),
read.table("./input/PTR.csv", sep=",", header=TRUE),
read.table("./input/PULS.csv", sep=",", header=TRUE),
read.table("./input/PVA.csv", sep=",", header=TRUE),
read.table("./input/PVD.csv", sep=",", header=TRUE),
read.table("./input/PVH.csv", sep=",", header=TRUE),
read.table("./input/PWR.csv", sep=",", header=TRUE),
read.table("./input/PXD.csv", sep=",", header=TRUE),
read.table("./input/PZE.csv", sep=",", header=TRUE),
read.table("./input/R.csv", sep=",", header=TRUE),
read.table("./input/RAI.csv", sep=",", header=TRUE),
read.table("./input/RBA.csv", sep=",", header=TRUE),
read.table("./input/RBC.csv", sep=",", header=TRUE),
read.table("./input/RCI.csv", sep=",", header=TRUE),
read.table("./input/RCL.csv", sep=",", header=TRUE),
read.table("./input/RCS.csv", sep=",", header=TRUE),
read.table("./input/RDC.csv", sep=",", header=TRUE),
read.table("./input/RDN.csv", sep=",", header=TRUE),
read.table("./input/RDS.B.csv", sep=",", header=TRUE),
read.table("./input/RE.csv", sep=",", header=TRUE),
read.table("./input/REG.csv", sep=",", header=TRUE),
read.table("./input/REX.csv", sep=",", header=TRUE),
read.table("./input/RF.csv", sep=",", header=TRUE),
read.table("./input/RFI.csv", sep=",", header=TRUE),
read.table("./input/RGR.csv", sep=",", header=TRUE),
read.table("./input/RHP.csv", sep=",", header=TRUE),
read.table("./input/RHT.csv", sep=",", header=TRUE),
read.table("./input/RIG.csv", sep=",", header=TRUE),
read.table("./input/RIO.csv", sep=",", header=TRUE),
read.table("./input/RKT.csv", sep=",", header=TRUE),
read.table("./input/RLI.csv", sep=",", header=TRUE),
read.table("./input/RMD.csv", sep=",", header=TRUE),
read.table("./input/RNE.csv", sep=",", header=TRUE),
read.table("./input/ROG.csv", sep=",", header=TRUE),
read.table("./input/ROL.csv", sep=",", header=TRUE),
read.table("./input/ROP.csv", sep=",", header=TRUE),
read.table("./input/RPM.csv", sep=",", header=TRUE),
read.table("./input/RS.csv", sep=",", header=TRUE),
read.table("./input/RSH.csv", sep=",", header=TRUE),
read.table("./input/RT.csv", sep=",", header=TRUE),
read.table("./input/RTI.csv", sep=",", header=TRUE),
read.table("./input/RTN.csv", sep=",", header=TRUE),
read.table("./input/RUK.csv", sep=",", header=TRUE),
read.table("./input/RWT.csv", sep=",", header=TRUE),
read.table("./input/RYL.csv", sep=",", header=TRUE),
read.table("./input/RYN.csv", sep=",", header=TRUE),
read.table("./input/S.csv", sep=",", header=TRUE),
read.table("./input/SAH.csv", sep=",", header=TRUE),
read.table("./input/SAN.csv", sep=",", header=TRUE),
read.table("./input/SAP.csv", sep=",", header=TRUE),
read.table("./input/SBR.csv", sep=",", header=TRUE),
read.table("./input/SCCO.csv", sep=",", header=TRUE),
read.table("./input/SCG.csv", sep=",", header=TRUE),
read.table("./input/SCHW.csv", sep=",", header=TRUE),
read.table("./input/SCI.csv", sep=",", header=TRUE),
read.table("./input/SCL.csv", sep=",", header=TRUE),
read.table("./input/SCS.csv", sep=",", header=TRUE),
read.table("./input/SF.csv", sep=",", header=TRUE),
read.table("./input/SFD.csv", sep=",", header=TRUE),
read.table("./input/SFE.csv", sep=",", header=TRUE),
read.table("./input/SFG.csv", sep=",", header=TRUE),
read.table("./input/SFI.csv", sep=",", header=TRUE),
read.table("./input/SFY.csv", sep=",", header=TRUE),
read.table("./input/SGK.csv", sep=",", header=TRUE),
read.table("./input/SGY.csv", sep=",", header=TRUE),
read.table("./input/SHI.csv", sep=",", header=TRUE),
read.table("./input/SHW.csv", sep=",", header=TRUE),
read.table("./input/SI.csv", sep=",", header=TRUE),
read.table("./input/SIG.csv", sep=",", header=TRUE),
read.table("./input/SJI.csv", sep=",", header=TRUE),
read.table("./input/SJM.csv", sep=",", header=TRUE),
read.table("./input/SJT.csv", sep=",", header=TRUE),
read.table("./input/SJW.csv", sep=",", header=TRUE),
read.table("./input/SKM.csv", sep=",", header=TRUE),
read.table("./input/SKS.csv", sep=",", header=TRUE),
read.table("./input/SLB.csv", sep=",", header=TRUE),
read.table("./input/SLG.csv", sep=",", header=TRUE),
read.table("./input/SM.csv", sep=",", header=TRUE),
read.table("./input/SMG.csv", sep=",", header=TRUE),
read.table("./input/SMP.csv", sep=",", header=TRUE),
read.table("./input/SNA.csv", sep=",", header=TRUE),
read.table("./input/SNH.csv", sep=",", header=TRUE),
read.table("./input/SNN.csv", sep=",", header=TRUE),
read.table("./input/SNP.csv", sep=",", header=TRUE),
read.table("./input/SO.csv", sep=",", header=TRUE),
read.table("./input/SOR.csv", sep=",", header=TRUE),
read.table("./input/SPE.csv", sep=",", header=TRUE),
read.table("./input/SPF.csv", sep=",", header=TRUE),
read.table("./input/SPH.csv", sep=",", header=TRUE),
read.table("./input/SPP.csv", sep=",", header=TRUE),
read.table("./input/SPW.csv", sep=",", header=TRUE),
read.table("./input/SR.csv", sep=",", header=TRUE),
read.table("./input/SRE.csv", sep=",", header=TRUE),
read.table("./input/SRI.csv", sep=",", header=TRUE),
read.table("./input/SRT.csv", sep=",", header=TRUE),
read.table("./input/SSL.csv", sep=",", header=TRUE),
read.table("./input/SSP.csv", sep=",", header=TRUE),
read.table("./input/SSS.csv", sep=",", header=TRUE),
read.table("./input/STE.csv", sep=",", header=TRUE),
read.table("./input/STI.csv", sep=",", header=TRUE),
read.table("./input/STJ.csv", sep=",", header=TRUE),
read.table("./input/STL.csv", sep=",", header=TRUE),
read.table("./input/STM.csv", sep=",", header=TRUE),
read.table("./input/STR.csv", sep=",", header=TRUE),
read.table("./input/STT.csv", sep=",", header=TRUE),
read.table("./input/SU.csv", sep=",", header=TRUE),
read.table("./input/SVU.csv", sep=",", header=TRUE),
read.table("./input/SWK.csv", sep=",", header=TRUE),
read.table("./input/SWM.csv", sep=",", header=TRUE),
read.table("./input/SWS.csv", sep=",", header=TRUE),
read.table("./input/SWY.csv", sep=",", header=TRUE),
read.table("./input/SWZ.csv", sep=",", header=TRUE),
read.table("./input/SXI.csv", sep=",", header=TRUE),
read.table("./input/SXT.csv", sep=",", header=TRUE),
read.table("./input/SYT.csv", sep=",", header=TRUE),
read.table("./input/SYY.csv", sep=",", header=TRUE),
read.table("./input/T.csv", sep=",", header=TRUE),
read.table("./input/TAP.csv", sep=",", header=TRUE),
read.table("./input/TBI.csv", sep=",", header=TRUE),
read.table("./input/TD.csv", sep=",", header=TRUE),
read.table("./input/TDF.csv", sep=",", header=TRUE),
read.table("./input/TDW.csv", sep=",", header=TRUE),
read.table("./input/TDY.csv", sep=",", header=TRUE),
read.table("./input/TEF.csv", sep=",", header=TRUE),
read.table("./input/TEG.csv", sep=",", header=TRUE),
read.table("./input/TEN.csv", sep=",", header=TRUE),
read.table("./input/TER.csv", sep=",", header=TRUE),
read.table("./input/TEX.csv", sep=",", header=TRUE),
read.table("./input/TG.csv", sep=",", header=TRUE),
read.table("./input/TGT.csv", sep=",", header=TRUE),
read.table("./input/THG.csv", sep=",", header=TRUE),
read.table("./input/THO.csv", sep=",", header=TRUE),
read.table("./input/TIF.csv", sep=",", header=TRUE),
read.table("./input/TISI.csv", sep=",", header=TRUE),
read.table("./input/TJX.csv", sep=",", header=TRUE),
read.table("./input/TK.csv", sep=",", header=TRUE),
read.table("./input/TKF.csv", sep=",", header=TRUE),
read.table("./input/TKR.csv", sep=",", header=TRUE),
read.table("./input/TLI.csv", sep=",", header=TRUE),
read.table("./input/TLK.csv", sep=",", header=TRUE),
read.table("./input/TM.csv", sep=",", header=TRUE),
read.table("./input/TMK.csv", sep=",", header=TRUE),
read.table("./input/TMO.csv", sep=",", header=TRUE),
read.table("./input/TNC.csv", sep=",", header=TRUE),
read.table("./input/TNH.csv", sep=",", header=TRUE),
read.table("./input/TOT.csv", sep=",", header=TRUE),
read.table("./input/TPC.csv", sep=",", header=TRUE),
read.table("./input/TPL.csv", sep=",", header=TRUE),
read.table("./input/TR.csv", sep=",", header=TRUE),
read.table("./input/TREX.csv", sep=",", header=TRUE),
read.table("./input/TRK.csv", sep=",", header=TRUE),
read.table("./input/TRN.csv", sep=",", header=TRUE),
read.table("./input/TRP.csv", sep=",", header=TRUE),
read.table("./input/TRV.csv", sep=",", header=TRUE),
read.table("./input/TSM.csv", sep=",", header=TRUE),
read.table("./input/TSO.csv", sep=",", header=TRUE),
read.table("./input/TSS.csv", sep=",", header=TRUE),
read.table("./input/TTC.csv", sep=",", header=TRUE),
read.table("./input/TUP.csv", sep=",", header=TRUE),
read.table("./input/TV.csv", sep=",", header=TRUE),
read.table("./input/TW.csv", sep=",", header=TRUE),
read.table("./input/TXI.csv", sep=",", header=TRUE),
read.table("./input/TXT.csv", sep=",", header=TRUE),