BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
byeh2017
Quartz | Level 8

Hello,

 

I have a dataset with an ID (id), a discharge date (dcdeathdate), screening (hcvscreening), screening result (hcvresult), and where they were screened (_organizationtax). The variable hcvscreening has three possible values: Yes, No, or a blank entry. The variable hcvresult has three possible values: Positive, Negative, or a blank entry.

 

I would like to create a table that lists anyone with discrepant entries of hcvresult if they were screened more than once. I imagine the query logic to be this. For an associated id, if hcvresult=’Yes’ more than once, find those instances where there is a discrepancy of hcvresult. Meaning that there is at least 1 discrepancy of hcvresult (hcvresult from one entry is positive, whereas hcvresult from another entry is negative) from entries that only have hcvscreening as ‘Yes’. I would like it to be listed out like this. So essentially its own dataset sorted by dcdeathdate first and then by national ID.

 

Dcdeathdate

ID

HCVScreening

HCVresult

_organizationtax

01JAN17:00:00:00

1

Yes

Negative

A

15JAN17:00:00:00

1

Yes

Positive

B

20JAN17:00:00:00

1

Yes

Negative

A

29JAN17:00:00:00

1

Yes

Positive

B

 

Here is a sample dataset. Thank you very much for all your help!

 

data JANFEB.MULTIVISITS;
  infile datalines dsd truncover;
  input dcdeathdate:DATETIME16. id:$24. HCVScreening:$9. HCVresult:$27. _OrganizationTax:$9.;
datalines4;
01JAN17:00:00:00,,Yes,Negative,204927543
01JAN17:00:00:00,,Yes,Negative,416289947
01JAN17:00:00:00,,No,,212153756
01JAN17:00:00:00,,Yes,Positive,202193544
03JAN17:00:00:00,,Yes,Negative,404866123
03JAN17:00:00:00,,Yes,Negative,211328703
03JAN17:00:00:00,,Yes,Negative,404865981
03JAN17:00:00:00,,Yes,Negative,404865981
03JAN17:00:00:00,,No,,202051689
03JAN17:00:00:00,,Yes,Negative,404865972
03JAN17:00:00:00,,Yes,Negative,206048533
03JAN17:00:00:00,,Yes,Negative,202193544
03JAN17:00:00:00,,No,,406131939
03JAN17:00:00:00,,No,,405069474
04JAN17:00:00:00,,Yes,Negative,404866123
04JAN17:00:00:00,,Yes,Negative,205210467
04JAN17:00:00:00,,No,,204871594
04JAN17:00:00:00,,Yes,Negative,204483380
04JAN17:00:00:00,,Yes,Negative,205250618
04JAN17:00:00:00,,Yes,Negative,205250618
04JAN17:00:00:00,,No,,245599758
04JAN17:00:00:00,,Yes,Negative,206048533
04JAN17:00:00:00,,Yes,Negative,404896644
04JAN17:00:00:00,,Yes,Negative,202442981
04JAN17:00:00:00,,No,,212153756
04JAN17:00:00:00,,No,,404978048
04JAN17:00:00:00,,Yes,Negative,404866123
04JAN17:00:00:00,,Yes,Negative,202193544
05JAN17:00:00:00,,Yes,Negative,205204615
05JAN17:00:00:00,,Yes,Negative,204931949
05JAN17:00:00:00,,No,Negative,201945271
05JAN17:00:00:00,,Yes,Negative,244969370
05JAN17:00:00:00,,Yes,Negative,206048533
05JAN17:00:00:00,,No,Negative,206048533
05JAN17:00:00:00,,Yes,Negative,202442981
05JAN17:00:00:00,,Yes,Negative,405049335
05JAN17:00:00:00,,Yes,Negative,405049335
05JAN17:00:00:00,,Yes,Negative,404476205
05JAN17:00:00:00,,No,,404945164
06JAN17:00:00:00,,Yes,Negative,205210467
06JAN17:00:00:00,,Yes,Negative,205210467
06JAN17:00:00:00,,Yes,Negative,205210467
06JAN17:00:00:00,,Yes,Negative,404865981
06JAN17:00:00:00,,Yes,Negative,404908043
06JAN17:00:00:00,,Yes,Negative,204927543
06JAN17:00:00:00,,No,,204871594
06JAN17:00:00:00,,Yes,Negative,245428434
06JAN17:00:00:00,,Yes,Negative,205250618
06JAN17:00:00:00,,No,Negative,201945271
06JAN17:00:00:00,,Yes,Negative,406048281
06JAN17:00:00:00,,Yes,Negative,202442981
06JAN17:00:00:00,,Yes,Negative,404978048
06JAN17:00:00:00,,Yes,Negative,204871781
06JAN17:00:00:00,,No,,202193544
06JAN17:00:00:00,,Yes,Negative,405049335
06JAN17:00:00:00,,Yes,Negative,405049335
07JAN17:00:00:00,,No,Negative,404854485
07JAN17:00:00:00,,No,,245599758
07JAN17:00:00:00,,Yes,Negative,404413005
07JAN17:00:00:00,,Yes,Negative,404879663
07JAN17:00:00:00,,Yes,Negative,202377178
07JAN17:00:00:00,,Yes,Negative,204871781
07JAN17:00:00:00,,Yes,Negative,406131939
07JAN17:00:00:00,,Yes,Negative,406131939
07JAN17:00:00:00,,Yes,Negative,405049335
08JAN17:00:00:00,,Yes,Negative,204927543
08JAN17:00:00:00,,No,,204871594
08JAN17:00:00:00,,Yes,Negative,248424307
08JAN17:00:00:00,,Yes,Negative,205005527
08JAN17:00:00:00,,Yes,Negative,200010022
08JAN17:00:00:00,,Yes,Negative,405064594
08JAN17:00:00:00,,No,,406131939
09JAN17:00:00:00,,No,,202462655
09JAN17:00:00:00,,Yes,Negative,205204615
09JAN17:00:00:00,,Yes,Negative,205204615
09JAN17:00:00:00,,Yes,Negative,200010674
09JAN17:00:00:00,,Yes,Negative,205250618
09JAN17:00:00:00,,No,,404865981
09JAN17:00:00:00,,Yes,Negative,216315690
09JAN17:00:00:00,,No,,404896644
09JAN17:00:00:00,,Yes,Negative,404865981
09JAN17:00:00:00,,Yes,Negative,404476205
09JAN17:00:00:00,,Yes,Negative,401945605
10JAN17:00:00:00,,Yes,Negative,205204615
10JAN17:00:00:00,,Yes,Negative,204955076
10JAN17:00:00:00,,Yes,Negative,204927543
10JAN17:00:00:00,,No,,212002580
10JAN17:00:00:00,,Yes,Negative,203827608
10JAN17:00:00:00,,Yes,Negative,203827608
10JAN17:00:00:00,,Yes,Negative,200010674
10JAN17:00:00:00,,Yes,Negative,404907730
10JAN17:00:00:00,,Yes,Negative,205250618
10JAN17:00:00:00,,Yes,Positive,205250618
10JAN17:00:00:00,,No,Negative,404945217
10JAN17:00:00:00,,Yes,Negative,216315690
10JAN17:00:00:00,,Yes,Negative,404879663
10JAN17:00:00:00,,Yes,Negative,202377178
10JAN17:00:00:00,,No,,212153756
10JAN17:00:00:00,,Yes,Negative,212153756
10JAN17:00:00:00,,No,,202193544
10JAN17:00:00:00,,Yes,Negative,202193544
10JAN17:00:00:00,,No,Negative,404905821
10JAN17:00:00:00,,Yes,Negative,406131939
10JAN17:00:00:00,,Yes,Positive,405069474
11JAN17:00:00:00,,Yes,Negative,202907970
11JAN17:00:00:00,,Yes,Negative,245428880
11JAN17:00:00:00,,Yes,Negative,203827608
11JAN17:00:00:00,,Yes,Negative,248424307
11JAN17:00:00:00,,Yes,Negative,248424307
11JAN17:00:00:00,,Yes,Negative,203826645
11JAN17:00:00:00,,Yes,Negative,404865972
11JAN17:00:00:00,,No,,209446900
11JAN17:00:00:00,,Yes,Negative,202442981
11JAN17:00:00:00,,Yes,Positive,400115362
11JAN17:00:00:00,,Yes,Negative,202193544
11JAN17:00:00:00,,Yes,Negative,405071773
12JAN17:00:00:00,,Yes,Negative,200199702
12JAN17:00:00:00,,Yes,Negative,404865981
12JAN17:00:00:00,,Yes,Negative,231184232
12JAN17:00:00:00,,No,,204871594
12JAN17:00:00:00,,No,,202051689
12JAN17:00:00:00,,No,,202051689
12JAN17:00:00:00,,No,,245428434
12JAN17:00:00:00,,No,,245428434
12JAN17:00:00:00,,No,,404865972
12JAN17:00:00:00,,Yes,Negative,412682501
12JAN17:00:00:00,,Yes,Negative,202442981
12JAN17:00:00:00,,Yes,Negative,404879663
12JAN17:00:00:00,,Yes,Negative,239403463
12JAN17:00:00:00,,No,,202193544
12JAN17:00:00:00,,No,,404922198
12JAN17:00:00:00,,Yes,Negative,405049335
13JAN17:00:00:00,,Yes,Negative,205231710
13JAN17:00:00:00,,Yes,Negative,205231710
13JAN17:00:00:00,,Yes,Negative,202051876
13JAN17:00:00:00,,Yes,Negative,204927543
13JAN17:00:00:00,,Yes,Negative,405032806
13JAN17:00:00:00,,Yes,Negative,245428434
13JAN17:00:00:00,,No,,204483380
13JAN17:00:00:00,,No,,245599758
13JAN17:00:00:00,,Yes,Negative,203826645
13JAN17:00:00:00,,Yes,Negative,206047712
13JAN17:00:00:00,,Yes,Negative,206048533
13JAN17:00:00:00,,Yes,Negative,416289947
13JAN17:00:00:00,,Yes,Negative,404896644
13JAN17:00:00:00,,No,Negative,202442981
13JAN17:00:00:00,,Yes,Negative,202442981
13JAN17:00:00:00,,No,Negative,404905821
13JAN17:00:00:00,,Yes,Negative,405049335
13JAN17:00:00:00,,Yes,Negative,404879663
13JAN17:00:00:00,,Yes,Negative,405069474
14JAN17:00:00:00,,Yes,Negative,404865981
14JAN17:00:00:00,,Yes,Negative,204927543
14JAN17:00:00:00,,Yes,Negative,203827608
14JAN17:00:00:00,,Yes,Negative,248424307
14JAN17:00:00:00,,Yes,Negative,404865981
14JAN17:00:00:00,,Yes,Negative,244969370
14JAN17:00:00:00,,Yes,Negative,212806766
14JAN17:00:00:00,,Yes,Negative,212806766
14JAN17:00:00:00,,Yes,Negative,206048533
14JAN17:00:00:00,,Yes,Negative,202377178
14JAN17:00:00:00,,Yes,Negative,205165453
14JAN17:00:00:00,,Yes,Negative,205284093
14JAN17:00:00:00,,No,,201990694
14JAN17:00:00:00,,No,Negative,404905821
14JAN17:00:00:00,,Yes,Negative,405069474
15JAN17:00:00:00,,Yes,Negative,205210467
15JAN17:00:00:00,,No,,204927543
15JAN17:00:00:00,,Yes,Negative,404865981
15JAN17:00:00:00,,No,,202193544
15JAN17:00:00:00,,Yes,Negative,202193544
16JAN17:00:00:00,,Yes,Negative,204923707
16JAN17:00:00:00,,Yes,Negative,211328703
16JAN17:00:00:00,,Yes,Negative,205210467
16JAN17:00:00:00,,Yes,Negative,245428880
16JAN17:00:00:00,,Yes,Negative,245428880
16JAN17:00:00:00,,No,,202051689
16JAN17:00:00:00,,Yes,Negative,205250618
16JAN17:00:00:00,,Yes,Negative,205250618
16JAN17:00:00:00,,Yes,Negative,203826645
16JAN17:00:00:00,,Yes,Negative,404907730
16JAN17:00:00:00,,Yes,Negative,216315690
16JAN17:00:00:00,,Yes,Negative,404896644
16JAN17:00:00:00,,No,,404896644
16JAN17:00:00:00,,Yes,Negative,202442981
16JAN17:00:00:00,,Yes,Negative,202442981
16JAN17:00:00:00,,Yes,Negative,202442981
16JAN17:00:00:00,,Yes,Negative,202172139
16JAN17:00:00:00,,No,,404907730
16JAN17:00:00:00,,Yes,Negative,202193544
16JAN17:00:00:00,,Yes,Negative,405049335
16JAN17:00:00:00,,Yes,Negative,202193544
16JAN17:00:00:00,,Yes,Negative,405069474
16JAN17:00:00:00,,No,,404945164
17JAN17:00:00:00,,Yes,Negative,202462708
17JAN17:00:00:00,,No,,204955076
17JAN17:00:00:00,,Yes,Negative,202051876
17JAN17:00:00:00,,Yes,Negative,204927543
17JAN17:00:00:00,,Yes,Negative,200010674
17JAN17:00:00:00,,No,,245428434
17JAN17:00:00:00,,Yes,Negative,204483380
17JAN17:00:00:00,,No,Negative,201945271
17JAN17:00:00:00,,Yes,Negative,404907730
17JAN17:00:00:00,,Yes,Negative,206048533
17JAN17:00:00:00,,No,,430024332
17JAN17:00:00:00,,Yes,Negative,202442981
17JAN17:00:00:00,,Yes,Negative,202442981
17JAN17:00:00:00,,No,,405064594
17JAN17:00:00:00,,Yes,Negative,206063383
17JAN17:00:00:00,,Yes,Negative,204871781
17JAN17:00:00:00,,Yes,Negative,202193544
17JAN17:00:00:00,,Yes,Negative,404865981
17JAN17:00:00:00,,No,Negative,404905821
17JAN17:00:00:00,,No,,406131939
17JAN17:00:00:00,,Yes,Negative,405069474
17JAN17:00:00:00,,Yes,Negative,216296639
18JAN17:00:00:00,,No,,204955076
18JAN17:00:00:00,,Yes,Negative,245428880
18JAN17:00:00:00,,Yes,Negative,202051876
18JAN17:00:00:00,,Yes,Negative,204927543
18JAN17:00:00:00,,No,,204927543
18JAN17:00:00:00,,Yes,Negative,212002580
18JAN17:00:00:00,,No,,204871594
18JAN17:00:00:00,,Yes,Negative,202940372
18JAN17:00:00:00,,Yes,Negative,211328703
18JAN17:00:00:00,,No,,212002580
18JAN17:00:00:00,,No,,209446900
18JAN17:00:00:00,,Yes,Negative,206048533
18JAN17:00:00:00,,Yes,Negative,206048533
18JAN17:00:00:00,,Yes,Negative,202442981
18JAN17:00:00:00,,Yes,Negative,202377178
18JAN17:00:00:00,,Yes,Negative,404941827
18JAN17:00:00:00,,Yes,Negative,216296639
19JAN17:00:00:00,,Yes,Negative,404865981
19JAN17:00:00:00,,No,,212002580
19JAN17:00:00:00,,No,,245428434
19JAN17:00:00:00,,Yes,Positive,248424307
19JAN17:00:00:00,,Yes,Negative,212002580
19JAN17:00:00:00,,Yes,Negative,406048281
19JAN17:00:00:00,,Yes,Negative,212806766
19JAN17:00:00:00,,Yes,Negative,202442981
19JAN17:00:00:00,,Yes,Negative,202377178
19JAN17:00:00:00,,Yes,Negative,404866123
19JAN17:00:00:00,,No,,404922198
20JAN17:00:00:00,,Yes,Negative,202907970
20JAN17:00:00:00,,Yes,Negative,204955076
20JAN17:00:00:00,,Yes,Negative,245428880
20JAN17:00:00:00,,Yes,Negative,202051876
20JAN17:00:00:00,,No,,212002580
20JAN17:00:00:00,,Yes,Negative,205218030
20JAN17:00:00:00,,Yes,Negative,404413005
20JAN17:00:00:00,,No,,404865981
20JAN17:00:00:00,,No,,404865981
20JAN17:00:00:00,,Yes,Negative,404896644
20JAN17:00:00:00,,Yes,Negative,202442981
20JAN17:00:00:00,,Yes,Negative,405064594
20JAN17:00:00:00,,No,,212153756
20JAN17:00:00:00,,No,,405169598
20JAN17:00:00:00,,No,Negative,245428372
20JAN17:00:00:00,,Yes,Negative,404866659
20JAN17:00:00:00,,Yes,Negative,404866123
20JAN17:00:00:00,,Yes,Negative,404866123
20JAN17:00:00:00,,Yes,Negative,404866123
20JAN17:00:00:00,,Yes,Negative,405069474
21JAN17:00:00:00,,Yes,Negative,404865981
21JAN17:00:00:00,,Yes,Negative,404865981
21JAN17:00:00:00,,Yes,Positive,202051876
21JAN17:00:00:00,,Yes,Negative,248424307
21JAN17:00:00:00,,Yes,Negative,404413005
21JAN17:00:00:00,,Yes,Negative,202442981
21JAN17:00:00:00,,No,,201990694
21JAN17:00:00:00,,No,,206063383
21JAN17:00:00:00,,Yes,Negative,206063383
21JAN17:00:00:00,,Yes,Negative,404866123
22JAN17:00:00:00,,Yes,Negative,404865981
22JAN17:00:00:00,,Yes,Negative,200241648
22JAN17:00:00:00,,Yes,Negative,404907730
22JAN17:00:00:00,,Yes,Negative,212002580
22JAN17:00:00:00,,No,,202051689
22JAN17:00:00:00,,Yes,Positive,245599758
22JAN17:00:00:00,,Yes,Positive,202453987
22JAN17:00:00:00,,Yes,Negative,404865981
22JAN17:00:00:00,,Yes,Negative,416289947
22JAN17:00:00:00,,No,,212153756
22JAN17:00:00:00,,No,,404945164
23JAN17:00:00:00,,Yes,Negative,406160755
23JAN17:00:00:00,,Yes,Negative,211327697
23JAN17:00:00:00,,Yes,Negative,203827608
23JAN17:00:00:00,,Yes,Negative,205005527
23JAN17:00:00:00,,No,,404865972
23JAN17:00:00:00,,Yes,Negative,206048533
23JAN17:00:00:00,,No,,412682501
23JAN17:00:00:00,,Yes,Positive,212153756
23JAN17:00:00:00,,Yes,Negative,202050840
23JAN17:00:00:00,,Yes,Negative,202193544
23JAN17:00:00:00,,Yes,Positive,202193544
23JAN17:00:00:00,,No,,404922198
23JAN17:00:00:00,,Yes,Negative,401945605
23JAN17:00:00:00,,No,,404945164
24JAN17:00:00:00,,Yes,Negative,202907970
24JAN17:00:00:00,,Yes,Negative,211328703
24JAN17:00:00:00,,Yes,Negative,202051876
24JAN17:00:00:00,,No,,212002580
24JAN17:00:00:00,,Yes,Negative,212002580
24JAN17:00:00:00,,No,,204871594
24JAN17:00:00:00,,Yes,Negative,404854485
24JAN17:00:00:00,,Yes,Negative,205250618
24JAN17:00:00:00,,Yes,Negative,211385767
24JAN17:00:00:00,,Yes,Negative,203826645
24JAN17:00:00:00,,Yes,Negative,404896644
24JAN17:00:00:00,,Yes,Negative,204871781
24JAN17:00:00:00,,Yes,Negative,204871781
24JAN17:00:00:00,,Yes,Negative,204871781
24JAN17:00:00:00,,Yes,Negative,204871781
24JAN17:00:00:00,,Yes,Negative,202193544
24JAN17:00:00:00,,No,,202193544
24JAN17:00:00:00,,Yes,Positive,202193544
24JAN17:00:00:00,,Yes,Negative,405049335
24JAN17:00:00:00,,No,,404945164
25JAN17:00:00:00,,Yes,Negative,200241648
25JAN17:00:00:00,,Yes,Negative,404865981
25JAN17:00:00:00,,Yes,Negative,202051876
25JAN17:00:00:00,,No,,404476205
25JAN17:00:00:00,,Yes,Negative,204927543
25JAN17:00:00:00,,Yes,Negative,204927543
25JAN17:00:00:00,,Yes,Negative,200010674
25JAN17:00:00:00,,Yes,Negative,404907730
25JAN17:00:00:00,,No,Negative,201945271
25JAN17:00:00:00,,No,,245599758
25JAN17:00:00:00,,Yes,Negative,200010022
25JAN17:00:00:00,,Yes,Negative,204871781
25JAN17:00:00:00,,Yes,Negative,404945164
25JAN17:00:00:00,,No,,404945164
26JAN17:00:00:00,,Yes,Negative,200199702
26JAN17:00:00:00,,Yes,Negative,205210467
26JAN17:00:00:00,,Yes,Negative,204927543
26JAN17:00:00:00,,Yes,Negative,204927543
26JAN17:00:00:00,,No,,212002580
26JAN17:00:00:00,,No,,212002580
26JAN17:00:00:00,,Yes,Negative,203827608
26JAN17:00:00:00,,No,,204871594
26JAN17:00:00:00,,Yes,Negative,206047712
26JAN17:00:00:00,,Yes,Negative,205005527
26JAN17:00:00:00,,Yes,Negative,404413005
26JAN17:00:00:00,,Yes,Negative,400133814
26JAN17:00:00:00,,Yes,Negative,212841424
26JAN17:00:00:00,,Yes,Negative,202442981
26JAN17:00:00:00,,Yes,Negative,202442981
26JAN17:00:00:00,,No,,405064594
26JAN17:00:00:00,,Yes,Negative,405049335
26JAN17:00:00:00,,Yes,Positive,405069474
27JAN17:00:00:00,,Yes,Negative,202907970
27JAN17:00:00:00,,Yes,Negative,204955076
27JAN17:00:00:00,,No,,205210467
27JAN17:00:00:00,,Yes,Negative,231184232
27JAN17:00:00:00,,Yes,Negative,405032806
27JAN17:00:00:00,,Yes,Negative,212002580
27JAN17:00:00:00,,No,,245599758
27JAN17:00:00:00,,Yes,Negative,206048533
27JAN17:00:00:00,,Yes,Negative,404896644
27JAN17:00:00:00,,Yes,Negative,202377178
27JAN17:00:00:00,,Yes,Positive,212153756
27JAN17:00:00:00,,No,,212153756
27JAN17:00:00:00,,Yes,Negative,205165453
27JAN17:00:00:00,,Yes,Negative,404866123
27JAN17:00:00:00,,Yes,Negative,404866123
27JAN17:00:00:00,,Yes,Positive,202193544
27JAN17:00:00:00,,Yes,Negative,405049335
27JAN17:00:00:00,,No,,405069474
27JAN17:00:00:00,,Yes,Negative,216296639
28JAN17:00:00:00,,No,,212002580
28JAN17:00:00:00,,Yes,Negative,404865981
28JAN17:00:00:00,,No,,430024332
28JAN17:00:00:00,,No,,212798070
28JAN17:00:00:00,,Yes,Negative,404866123
28JAN17:00:00:00,,No,,202193544
28JAN17:00:00:00,,No,,406131939
29JAN17:00:00:00,,No,,212002580
29JAN17:00:00:00,,Yes,Negative,203827608
29JAN17:00:00:00,,No,,248424307
29JAN17:00:00:00,,Yes,Negative,412682501
29JAN17:00:00:00,,Yes,Negative,412682501
29JAN17:00:00:00,,No,,402022253
29JAN17:00:00:00,,Yes,Negative,201990694
29JAN17:00:00:00,,Yes,Negative,404866123
29JAN17:00:00:00,,Yes,Negative,202193544
30JAN17:00:00:00,,No,,211328703
30JAN17:00:00:00,,Yes,Negative,204955076
30JAN17:00:00:00,,No,,204871594
30JAN17:00:00:00,,No,,404865972
30JAN17:00:00:00,,No,,202193544
30JAN17:00:00:00,,No,,202193544
30JAN17:00:00:00,,Yes,Negative,202193544
30JAN17:00:00:00,,Yes,Negative,202193544
30JAN17:00:00:00,,Yes,Negative,202193544
30JAN17:00:00:00,,Yes,Negative,216296639
31JAN17:00:00:00,,Yes,Negative,205231710
31JAN17:00:00:00,,Yes,Negative,404404042
31JAN17:00:00:00,,No,,211328703
31JAN17:00:00:00,,Yes,Negative,404908043
31JAN17:00:00:00,,Yes,Negative,401945838
31JAN17:00:00:00,,Yes,Negative,201945271
31JAN17:00:00:00,,Yes,Negative,404413005
31JAN17:00:00:00,,Yes,Negative,230070099
31JAN17:00:00:00,,No,,212153756
31JAN17:00:00:00,,Yes,Negative,212153756
31JAN17:00:00:00,,Yes,Negative,404866123
31JAN17:00:00:00,,Yes,Negative,404866123
31JAN17:00:00:00,,Yes,Negative,404866123
31JAN17:00:00:00,,Yes,Negative,202193544
31JAN17:00:00:00,,No,,202193544
31JAN17:00:00:00,,Yes,Negative,405049335
31JAN17:00:00:00,,Yes,Negative,212841424
31JAN17:00:00:00,,Yes,Negative,405069474
31JAN17:00:00:00,,Yes,Negative,216296639
01FEB17:00:00:00,,No,,212798070
01FEB17:00:00:00,,Yes,Negative,204927543
01FEB17:00:00:00,,Yes,Negative,206048533
01FEB17:00:00:00,,Yes,Negative,248424307
01FEB17:00:00:00,,Yes,Negative,404865981
01FEB17:00:00:00,,Yes,Negative,202442981
01FEB17:00:00:00,,Yes,Negative,202442981
01FEB17:00:00:00,,Yes,Negative,205250618
01FEB17:00:00:00,,Yes,Negative,205250618
01FEB17:00:00:00,,Yes,Negative,205250618
01FEB17:00:00:00,,Yes,Negative,404896644
01FEB17:00:00:00,,Yes,Negative,404896644
01FEB17:00:00:00,,Yes,Negative,212841424
01FEB17:00:00:00,,Yes,Negative,406131939
01FEB17:00:00:00,,No,,202193544
01FEB17:00:00:00,,Yes,Negative,204871781
02FEB17:00:00:00,,Yes,Negative,404866123
02FEB17:00:00:00,,No,,211328703
02FEB17:00:00:00,,Yes,Negative,205210467
02FEB17:00:00:00,,Yes,Negative,204927543
02FEB17:00:00:00,,Yes,Negative,203827608
02FEB17:00:00:00,,No,,202051689
02FEB17:00:00:00,,Yes,Negative,202051876
02FEB17:00:00:00,,Yes,Negative,401945838
02FEB17:00:00:00,,Yes,Negative,200010022
02FEB17:00:00:00,,Yes,Negative,202377178
02FEB17:00:00:00,,Yes,Negative,205165453
02FEB17:00:00:00,,Yes,Negative,201990694
02FEB17:00:00:00,,No,Negative,404905821
03FEB17:00:00:00,,Yes,Negative,202907970
03FEB17:00:00:00,,Yes,Negative,202462708
03FEB17:00:00:00,,Yes,Negative,216315690
03FEB17:00:00:00,,Yes,Negative,202442981
03FEB17:00:00:00,,Yes,Negative,404865972
03FEB17:00:00:00,,No,,212841424
03FEB17:00:00:00,,Yes,Negative,404879663
03FEB17:00:00:00,,Yes,Negative,405064594
03FEB17:00:00:00,,Yes,Negative,202193544
03FEB17:00:00:00,,No,,202193544
04FEB17:00:00:00,,Yes,Negative,404438033
04FEB17:00:00:00,,Yes,Negative,205210467
04FEB17:00:00:00,,Yes,Negative,404866123
04FEB17:00:00:00,,No,,204871594
04FEB17:00:00:00,,Yes,Negative,211328703
04FEB17:00:00:00,,Yes,Negative,211328703
04FEB17:00:00:00,,No,,202051689
04FEB17:00:00:00,,No,,245599758
04FEB17:00:00:00,,Yes,Negative,404865972
04FEB17:00:00:00,,Yes,Negative,206063383
04FEB17:00:00:00,,Yes,Negative,424067306
04FEB17:00:00:00,,Yes,Negative,212798070
04FEB17:00:00:00,,Yes,Negative,202377178
04FEB17:00:00:00,,Yes,Negative,202377178
04FEB17:00:00:00,,Yes,Negative,404879663
04FEB17:00:00:00,,No,,212002580
04FEB17:00:00:00,,Yes,Negative,405169598
04FEB17:00:00:00,,Yes,Negative,204871781
05FEB17:00:00:00,,Yes,Negative,204923707
05FEB17:00:00:00,,Yes,Negative,206048533
05FEB17:00:00:00,,Yes,Negative,404854485
05FEB17:00:00:00,,Yes,Negative,206063383
05FEB17:00:00:00,,Yes,Negative,404865963
05FEB17:00:00:00,,Yes,Negative,202193544
05FEB17:00:00:00,,Yes,Negative,202193544
05FEB17:00:00:00,,Yes,Negative,204871781
05FEB17:00:00:00,,Yes,Negative,405018831
06FEB17:00:00:00,,No,,245428434
06FEB17:00:00:00,,No,,211328703
06FEB17:00:00:00,,Yes,Negative,212002580
06FEB17:00:00:00,,Yes,Negative,206048533
06FEB17:00:00:00,,No,,202051689
06FEB17:00:00:00,,Yes,Negative,401956433
06FEB17:00:00:00,,No,,212153756
06FEB17:00:00:00,,Yes,Negative,206063383
06FEB17:00:00:00,,Yes,Negative,212841424
06FEB17:00:00:00,,Yes,Negative,404413005
06FEB17:00:00:00,,Yes,Negative,205165453
06FEB17:00:00:00,,No,,404907730
06FEB17:00:00:00,,Yes,Negative,202193544
07FEB17:00:00:00,,No,,206036216
07FEB17:00:00:00,,Yes,Positive,206047883
07FEB17:00:00:00,,Yes,Negative,202051876
07FEB17:00:00:00,,Yes,Positive,202051876
07FEB17:00:00:00,,Yes,Negative,401945838
07FEB17:00:00:00,,No,Negative,402044355
07FEB17:00:00:00,,Yes,Negative,205005527
07FEB17:00:00:00,,Yes,Negative,202442981
07FEB17:00:00:00,,Yes,Positive,212153756
07FEB17:00:00:00,,Yes,Positive,212153756
07FEB17:00:00:00,,Yes,Negative,231184232
07FEB17:00:00:00,,Yes,Negative,404907730
07FEB17:00:00:00,,Yes,Negative,204871781
08FEB17:00:00:00,,No,,245428434
08FEB17:00:00:00,,Yes,Negative,205250618
08FEB17:00:00:00,,Yes,Negative,205165453
08FEB17:00:00:00,,No,,406131939
08FEB17:00:00:00,,Yes,Negative,405069474
09FEB17:00:00:00,,Yes,Negative,205210467
09FEB17:00:00:00,,Yes,Negative,204955076
09FEB17:00:00:00,,Yes,Negative,216315690
09FEB17:00:00:00,,Yes,Negative,202442981
09FEB17:00:00:00,,Yes,Negative,202442981
09FEB17:00:00:00,,Yes,Negative,212806766
09FEB17:00:00:00,,Yes,Negative,204871781
09FEB17:00:00:00,,Yes,Negative,204871781
10FEB17:00:00:00,,Yes,Negative,205231710
10FEB17:00:00:00,,Yes,Negative,200099384
10FEB17:00:00:00,,Yes,Negative,400115362
10FEB17:00:00:00,,No,,202051689
10FEB17:00:00:00,,No,,245599758
10FEB17:00:00:00,,Yes,Negative,205005527
10FEB17:00:00:00,,Yes,Negative,205005527
10FEB17:00:00:00,,Yes,Negative,202442981
10FEB17:00:00:00,,No,,212153756
10FEB17:00:00:00,,Yes,Negative,205250618
10FEB17:00:00:00,,Yes,Negative,206063383
10FEB17:00:00:00,,Yes,Negative,404896644
10FEB17:00:00:00,,Yes,Negative,404896644
10FEB17:00:00:00,,Yes,Negative,212841424
10FEB17:00:00:00,,No,,212798070
10FEB17:00:00:00,,Yes,Negative,404879663
10FEB17:00:00:00,,Yes,Negative,205165453
10FEB17:00:00:00,,Yes,Negative,202948819
10FEB17:00:00:00,,Yes,Negative,201990694
10FEB17:00:00:00,,Yes,Negative,202193544
10FEB17:00:00:00,,Yes,Negative,204871781
11FEB17:00:00:00,,Yes,Negative,205210467
11FEB17:00:00:00,,Yes,Negative,204927543
11FEB17:00:00:00,,Yes,Negative,404866123
11FEB17:00:00:00,,Yes,Negative,248424307
11FEB17:00:00:00,,Yes,Negative,404865981
11FEB17:00:00:00,,Yes,Positive,402044355
11FEB17:00:00:00,,Yes,Negative,404865981
11FEB17:00:00:00,,No,,404896644
11FEB17:00:00:00,,No,Negative,404865972
12FEB17:00:00:00,,Yes,Negative,404865981
12FEB17:00:00:00,,Yes,Negative,205210467
12FEB17:00:00:00,,Yes,Negative,201990694
13FEB17:00:00:00,,Yes,Negative,200199702
13FEB17:00:00:00,,Yes,Negative,217879259
13FEB17:00:00:00,,Yes,Negative,206048533
13FEB17:00:00:00,,No,,404865972
13FEB17:00:00:00,,Yes,Negative,404896644
13FEB17:00:00:00,,Yes,Negative,404879663
13FEB17:00:00:00,,Yes,Negative,404907730
13FEB17:00:00:00,,Yes,Negative,202193544
13FEB17:00:00:00,,Yes,Negative,202193544
14FEB17:00:00:00,,Yes,Negative,204927543
14FEB17:00:00:00,,Yes,Negative,206048533
14FEB17:00:00:00,,No,,204483380
14FEB17:00:00:00,,Yes,Negative,202051876
14FEB17:00:00:00,,Yes,Negative,401956433
14FEB17:00:00:00,,Yes,Positive,205017505
14FEB17:00:00:00,,Yes,Negative,404907730
14FEB17:00:00:00,,Yes,Negative,404865981
14FEB17:00:00:00,,Yes,Negative,404896644
14FEB17:00:00:00,,Yes,Negative,404896644
14FEB17:00:00:00,,Yes,Negative,202377178
14FEB17:00:00:00,,Yes,Negative,205165453
14FEB17:00:00:00,,No,,406131939
14FEB17:00:00:00,,Yes,Negative,404941827
14FEB17:00:00:00,,Yes,Negative,202193544
15FEB17:00:00:00,,Yes,Negative,200199702
15FEB17:00:00:00,,No,,245428434
15FEB17:00:00:00,,Yes,Negative,206048533
15FEB17:00:00:00,,Yes,Negative,206048533
15FEB17:00:00:00,,Yes,Negative,205204615
15FEB17:00:00:00,,Yes,Negative,202453987
15FEB17:00:00:00,,Yes,Negative,202442981
15FEB17:00:00:00,,Yes,Negative,202442981
15FEB17:00:00:00,,No,,212153756
15FEB17:00:00:00,,No,,404896644
15FEB17:00:00:00,,No,,404896644
15FEB17:00:00:00,,No,,404896644
15FEB17:00:00:00,,Yes,Negative,202377178
15FEB17:00:00:00,,Yes,Negative,202377178
15FEB17:00:00:00,,No,,212002580
15FEB17:00:00:00,,No,,201990694
15FEB17:00:00:00,,No,,204871781
16FEB17:00:00:00,,No,,211328703
16FEB17:00:00:00,,Yes,Negative,204927543
16FEB17:00:00:00,,Yes,Positive,404865981
16FEB17:00:00:00,,Yes,Negative,401945838
16FEB17:00:00:00,,No,,216315690
16FEB17:00:00:00,,Yes,Negative,216315690
16FEB17:00:00:00,,Yes,Negative,202442981
16FEB17:00:00:00,,Yes,Negative,404896644
16FEB17:00:00:00,,No,,212002580
16FEB17:00:00:00,,Yes,Negative,212002580
16FEB17:00:00:00,,Yes,Negative,218064699
16FEB17:00:00:00,,Yes,Negative,201990694
16FEB17:00:00:00,,Yes,Negative,404941827
16FEB17:00:00:00,,Yes,Negative,202193544
16FEB17:00:00:00,,Yes,Negative,202193544
17FEB17:00:00:00,,Yes,Negative,404865981
17FEB17:00:00:00,,Yes,Negative,205210467
17FEB17:00:00:00,,Yes,Negative,206048533
17FEB17:00:00:00,,Yes,Negative,248424307
17FEB17:00:00:00,,Yes,Negative,211327697
17FEB17:00:00:00,,Yes,Negative,404865981
17FEB17:00:00:00,,Yes,Negative,404865981
17FEB17:00:00:00,,Yes,Negative,245599758
17FEB17:00:00:00,,Yes,Negative,401945838
17FEB17:00:00:00,,No,Negative,404945217
17FEB17:00:00:00,,Yes,Negative,202442981
17FEB17:00:00:00,,Yes,Negative,404896644
17FEB17:00:00:00,,Yes,Negative,206047712
17FEB17:00:00:00,,Yes,Positive,212002580
17FEB17:00:00:00,,Yes,Negative,205165453
17FEB17:00:00:00,,Yes,Negative,202193544
17FEB17:00:00:00,,Yes,Negative,202193544
17FEB17:00:00:00,,Yes,Negative,202193544
17FEB17:00:00:00,,Yes,Negative,204871781
17FEB17:00:00:00,,Yes,Negative,204871781
17FEB17:00:00:00,,Yes,Negative,405018831
18FEB17:00:00:00,,Yes,Negative,404866123
18FEB17:00:00:00,,No,,245428434
18FEB17:00:00:00,,Yes,Negative,211328703
18FEB17:00:00:00,,Yes,Negative,202051876
18FEB17:00:00:00,,No,,401956433
18FEB17:00:00:00,,Yes,Negative,405001466
18FEB17:00:00:00,,Yes,Positive,405001466
18FEB17:00:00:00,,Yes,Negative,404907730
18FEB17:00:00:00,,Yes,Negative,215119182
18FEB17:00:00:00,,Yes,Negative,205165453
18FEB17:00:00:00,,No,,201990694
19FEB17:00:00:00,,Yes,Negative,245428880
19FEB17:00:00:00,,Yes,Negative,245599758
19FEB17:00:00:00,,Yes,Negative,212002580
20FEB17:00:00:00,,Yes,Negative,202907970
20FEB17:00:00:00,,Yes,Negative,205271784
20FEB17:00:00:00,,Yes,Negative,206048533
20FEB17:00:00:00,,Yes,Negative,204871594
20FEB17:00:00:00,,Yes,Negative,202051876
20FEB17:00:00:00,,No,,209446900
20FEB17:00:00:00,,Yes,Negative,216315690
20FEB17:00:00:00,,Yes,Negative,405001466
20FEB17:00:00:00,,Yes,Negative,202442981
20FEB17:00:00:00,,No,,212153756
20FEB17:00:00:00,,Yes,Negative,416289947
20FEB17:00:00:00,,Yes,Negative,424067306
20FEB17:00:00:00,,Yes,Negative,212002580
20FEB17:00:00:00,,Yes,Negative,202193544
20FEB17:00:00:00,,Yes,Negative,204871781
21FEB17:00:00:00,,Yes,Negative,206120730
21FEB17:00:00:00,,Yes,Negative,204955076
21FEB17:00:00:00,,Yes,Negative,212002580
21FEB17:00:00:00,,Yes,Negative,204927543
21FEB17:00:00:00,,No,,204927543
21FEB17:00:00:00,,Yes,Negative,204927543
21FEB17:00:00:00,,Yes,Negative,204927543
21FEB17:00:00:00,,Yes,Negative,203827608
21FEB17:00:00:00,,Yes,Negative,216315690
21FEB17:00:00:00,,Yes,Negative,202442981
21FEB17:00:00:00,,Yes,Positive,212153756
21FEB17:00:00:00,,Yes,Negative,202377178
21FEB17:00:00:00,,No,,202193544
21FEB17:00:00:00,,Yes,Negative,202193544
21FEB17:00:00:00,,Yes,Negative,204871781
21FEB17:00:00:00,,Yes,Negative,204871781
22FEB17:00:00:00,,Yes,Negative,206047883
22FEB17:00:00:00,,Yes,Negative,205210467
22FEB17:00:00:00,,Yes,Negative,404498021
22FEB17:00:00:00,,Yes,Negative,204955076
22FEB17:00:00:00,,Yes,Negative,204927543
22FEB17:00:00:00,,No,,204927543
22FEB17:00:00:00,,Yes,Negative,206048533
22FEB17:00:00:00,,Yes,Negative,206048533
22FEB17:00:00:00,,Yes,Negative,245428880
22FEB17:00:00:00,,Yes,Negative,404866123
22FEB17:00:00:00,,No,,204871594
22FEB17:00:00:00,,No,,202051689
22FEB17:00:00:00,,Yes,Negative,202051876
22FEB17:00:00:00,,Yes,Negative,401945838
22FEB17:00:00:00,,Yes,Negative,202442981
22FEB17:00:00:00,,No,,212153756
22FEB17:00:00:00,,No,,212153756
22FEB17:00:00:00,,Yes,Negative,404865972
22FEB17:00:00:00,,No,,404865972
22FEB17:00:00:00,,Yes,Negative,202377178
22FEB17:00:00:00,,No,,212002580
22FEB17:00:00:00,,Yes,Positive,202193544
22FEB17:00:00:00,,Yes,Positive,202193544
22FEB17:00:00:00,,No,,405169598
22FEB17:00:00:00,,Yes,Negative,204871781
23FEB17:00:00:00,,Yes,Negative,206048533
23FEB17:00:00:00,,Yes,Negative,211328703
23FEB17:00:00:00,,Yes,Negative,202051876
23FEB17:00:00:00,,Yes,Negative,401956433
23FEB17:00:00:00,,Yes,Negative,404865981
23FEB17:00:00:00,,No,,245599758
23FEB17:00:00:00,,Yes,Negative,202442981
23FEB17:00:00:00,,Yes,Negative,404865981
23FEB17:00:00:00,,Yes,Negative,416289947
23FEB17:00:00:00,,Yes,Negative,212002580
23FEB17:00:00:00,,Yes,Negative,205165453
23FEB17:00:00:00,,Yes,Negative,404907730
23FEB17:00:00:00,,Yes,Negative,201990694
23FEB17:00:00:00,,No,,406131939
23FEB17:00:00:00,,Yes,Negative,404941827
23FEB17:00:00:00,,Yes,Negative,204871781
24FEB17:00:00:00,,No,,245428434
24FEB17:00:00:00,,Yes,Negative,204955076
24FEB17:00:00:00,,Yes,Negative,206048533
24FEB17:00:00:00,,Yes,Negative,206048533
24FEB17:00:00:00,,No,,245428880
24FEB17:00:00:00,,No,,212153756
24FEB17:00:00:00,,Yes,Negative,206063383
24FEB17:00:00:00,,Yes,Negative,202377178
25FEB17:00:00:00,,No,,204927543
25FEB17:00:00:00,,Yes,Negative,404866123
25FEB17:00:00:00,,Yes,Negative,245599758
25FEB17:00:00:00,,Yes,Negative,206063383
25FEB17:00:00:00,,No,,212002580
25FEB17:00:00:00,,Yes,Negative,202193544
25FEB17:00:00:00,,Yes,Negative,405018831
26FEB17:00:00:00,,Yes,Negative,404915268
26FEB17:00:00:00,,Yes,Negative,404978048
26FEB17:00:00:00,,Yes,Negative,212002580
26FEB17:00:00:00,,No,,212002580
26FEB17:00:00:00,,No,,405064594
26FEB17:00:00:00,,No,Negative,245428372
26FEB17:00:00:00,,Yes,Negative,405018831
27FEB17:00:00:00,,No,,202462655
27FEB17:00:00:00,,Yes,Negative,404865981
27FEB17:00:00:00,,Yes,Negative,404865981
27FEB17:00:00:00,,Yes,Negative,204955076
27FEB17:00:00:00,,Yes,Negative,206048533
27FEB17:00:00:00,,Yes,Negative,401945838
27FEB17:00:00:00,,Yes,Negative,202172139
27FEB17:00:00:00,,Yes,Negative,405001466
27FEB17:00:00:00,,Yes,Negative,404907730
27FEB17:00:00:00,,Yes,Negative,202442981
27FEB17:00:00:00,,No,,404865981
27FEB17:00:00:00,,No,,416289947
27FEB17:00:00:00,,Yes,Negative,202377178
27FEB17:00:00:00,,No,,212002580
27FEB17:00:00:00,,No,,212002580
27FEB17:00:00:00,,Yes,Negative,205165453
27FEB17:00:00:00,,No,,435892483
27FEB17:00:00:00,,Yes,Negative,201990694
27FEB17:00:00:00,,No,,201990694
27FEB17:00:00:00,,Yes,Negative,202193544
27FEB17:00:00:00,,Yes,Positive,202193544
27FEB17:00:00:00,,Yes,Negative,202193544
27FEB17:00:00:00,,Yes,Negative,202193544
27FEB17:00:00:00,,Yes,Negative,202193544
28FEB17:00:00:00,,Yes,Negative,206120730
28FEB17:00:00:00,,Yes,Negative,205231710
28FEB17:00:00:00,,No,,245428434
28FEB17:00:00:00,,Yes,Positive,404498021
28FEB17:00:00:00,,Yes,Negative,404498021
28FEB17:00:00:00,,Yes,Negative,404866123
28FEB17:00:00:00,,No,,204871594
28FEB17:00:00:00,,Yes,Negative,202051876
28FEB17:00:00:00,,No,,248424307
28FEB17:00:00:00,,Yes,Negative,244969370
28FEB17:00:00:00,,Yes,Negative,404907730
28FEB17:00:00:00,,No,,212002580
28FEB17:00:00:00,,Yes,Negative,205165453
17JAN17:00:00:00,0000000000,Yes,Negative,404514762
01FEB17:00:00:00,0000000000,No,,404514762
19JAN17:00:00:00,01001000070,No,,404922198
10JAN17:00:00:00,01001000357,Yes,Negative,206048533
20JAN17:00:00:00,01001000402,Yes,Negative,404404042
02FEB17:00:00:00,01001000799,Yes,Negative,202051876
18FEB17:00:00:00,01001000859,No,,212002580
11JAN17:00:00:00,01001000933,Yes,Negative,205210467
04FEB17:00:00:00,01001001114,Yes,Negative,200010674
28FEB17:00:00:00,01001001114,Yes,Negative,202051876
04JAN17:00:00:00,01001001377,Yes,Negative,202193544
02FEB17:00:00:00,01001001444,Yes,Negative,204871781
22FEB17:00:00:00,01001001534,Yes,Negative,200010674
12JAN17:00:00:00,01001001551,Yes,Negative,205165453
01FEB17:00:00:00,01001001551,Yes,Negative,205250618
20JAN17:00:00:00,01001001760,Yes,Negative,404865981
13FEB17:00:00:00,01001001899,Yes,Negative,202193544
17JAN17:00:00:00,01001001978,No,,404945164
19FEB17:00:00:00,01001001984,Yes,Negative,200010674
16FEB17:00:00:00,01001002062,Yes,Positive,212841424
28FEB17:00:00:00,01001002200,Yes,Negative,202051876
16FEB17:00:00:00,01001002223,Yes,Negative,404879663
01FEB17:00:00:00,01001002366,Yes,Negative,404854485
15JAN17:00:00:00,01001002368,Yes,Negative,206047400
22FEB17:00:00:00,01001002620,Yes,Negative,406160755
19JAN17:00:00:00,01001002795,Yes,Negative,212002580
15FEB17:00:00:00,01001002844,No,,202051689
26JAN17:00:00:00,01001002991,Yes,Negative,405169598
02FEB17:00:00:00,01001003054,Yes,Negative,206120730
25FEB17:00:00:00,01001003142,Yes,Negative,202051876
27FEB17:00:00:00,01001003142,No,,202051876
27JAN17:00:00:00,01001003192,No,,202051689
20FEB17:00:00:00,01001003236,Yes,Negative,404866123
07FEB17:00:00:00,01001003322,Yes,Negative,211385767
15FEB17:00:00:00,01001003708,Yes,Negative,202463752
04JAN17:00:00:00,01001003768,No,,206061795
12JAN17:00:00:00,01001003788,No,,202051689
18JAN17:00:00:00,01001003801,Yes,Negative,405018831
26FEB17:00:00:00,01001003904,Yes,Negative,204970022
10JAN17:00:00:00,01001004070,No,,202051689
29JAN17:00:00:00,01001004070,No,,202051689
16JAN17:00:00:00,01001004115,No,,202051689
17JAN17:00:00:00,01001004116,No,,400115362
10FEB17:00:00:00,01001004174,Yes,Negative,211328703
11JAN17:00:00:00,01001004241,Yes,Negative,405069474
28JAN17:00:00:00,01001004241,No,,405069474
11JAN17:00:00:00,01001004270,Yes,Negative,206048533
03FEB17:00:00:00,01001004433,No,,202051689
25JAN17:00:00:00,01001004497,Yes,Negative,202051876
27JAN17:00:00:00,01001004523,Yes,Negative,205218030
12JAN17:00:00:00,01001004524,Yes,Negative,402022253
26JAN17:00:00:00,01001004587,No,,402022253
15FEB17:00:00:00,01001004884,Yes,Negative,211385767
01FEB17:00:00:00,01001004982,Yes,Negative,404907730
16JAN17:00:00:00,01001005010,No,,202051689
11FEB17:00:00:00,01001005010,No,,202051689
04FEB17:00:00:00,01001005374,No,,202051689
07JAN17:00:00:00,01001005394,Yes,Negative,202051876
20JAN17:00:00:00,01001005434,No,,202249968
24JAN17:00:00:00,01001005580,Yes,Negative,405001466
13FEB17:00:00:00,01001005791,No,,202051689
18JAN17:00:00:00,01001005907,Yes,Negative,202051876
18JAN17:00:00:00,01001005953,Yes,Negative,202453987
03FEB17:00:00:00,01001005956,Yes,Negative,200010674
28FEB17:00:00:00,01001006233,Yes,Negative,211328703
10JAN17:00:00:00,01001006270,Yes,Negative,202051876
19JAN17:00:00:00,01001006270,Yes,Negative,202051876
14FEB17:00:00:00,01001006376,Yes,Negative,206120730
06FEB17:00:00:00,01001006443,Yes,Negative,205250618
12JAN17:00:00:00,01001006560,No,Negative,404905821
15FEB17:00:00:00,01001006566,No,,212002580
19FEB17:00:00:00,01001006630,Yes,Negative,211328703
15FEB17:00:00:00,01001006687,Yes,Negative,404941827
01FEB17:00:00:00,01001006734,Yes,Negative,404514762
23FEB17:00:00:00,01001006818,No,,202051876
31JAN17:00:00:00,01001006835,Yes,Negative,404467019
05FEB17:00:00:00,01001006869,Yes,Negative,400133814
17FEB17:00:00:00,01001006956,No,,202051689
06FEB17:00:00:00,01001006984,Yes,Negative,400133814
10JAN17:00:00:00,01001007063,Yes,Negative,211385767
20JAN17:00:00:00,01001007151,No,,202051689
01FEB17:00:00:00,01001007239,No,,201990694
15FEB17:00:00:00,01001007239,No,,201990694
19JAN17:00:00:00,01001007374,No,,204871594
21FEB17:00:00:00,01001007381,No,,202051689
28JAN17:00:00:00,01001007411,Yes,Negative,202051876
01FEB17:00:00:00,01001007431,Yes,Negative,206048533
28FEB17:00:00:00,01001007578,Yes,Negative,202051876
09JAN17:00:00:00,01001007704,Yes,Negative,404866659
16JAN17:00:00:00,01001007759,No,,202051689
20JAN17:00:00:00,01001007767,Yes,Negative,401945605
14FEB17:00:00:00,01001007807,Yes,Negative,404866123
25JAN17:00:00:00,01001007830,Yes,Negative,202051876
28JAN17:00:00:00,01001007830,Yes,Negative,202051876
10JAN17:00:00:00,01001007850,Yes,Negative,202051876
04FEB17:00:00:00,01001007865,Yes,Positive,202193544
17FEB17:00:00:00,01001007876,Yes,Negative,202051876
15JAN17:00:00:00,01001007954,No,,204483380
19FEB17:00:00:00,01001007956,Yes,Negative,202193544
11FEB17:00:00:00,01001007980,Yes,Negative,202193544
22FEB17:00:00:00,01001008094,Yes,Positive,211328703
13FEB17:00:00:00,01001008102,Yes,Positive,402022253
15JAN17:00:00:00,01001008235,No,,202051689
25JAN17:00:00:00,01001008329,Yes,Negative,205165453
06FEB17:00:00:00,01001008344,Yes,Negative,201945271
24FEB17:00:00:00,01001008523,Yes,Positive,202051876
12JAN17:00:00:00,01001008607,Yes,Negative,404879663
16JAN17:00:00:00,01001008737,No,,212153756
20FEB17:00:00:00,01001008878,Yes,Negative,404476205
18FEB17:00:00:00,01001008910,Yes,Negative,402022253
14FEB17:00:00:00,01001008923,No,,211327161
19JAN17:00:00:00,01001008932,Yes,Negative,205250618
24FEB17:00:00:00,01001009030,No,,209446900
24FEB17:00:00:00,01001009102,Yes,Negative,201945271
09JAN17:00:00:00,01001009125,No,,202051689
07FEB17:00:00:00,01001009232,Yes,Negative,204871781
30JAN17:00:00:00,01001009298,Yes,Negative,205218030
14JAN17:00:00:00,01001009398,Yes,Negative,404879663
27FEB17:00:00:00,01001009483,Yes,Negative,404413005
23FEB17:00:00:00,01001009580,Yes,Negative,205231710
14JAN17:00:00:00,01001009649,Yes,Negative,202051876
03FEB17:00:00:00,01001010089,Yes,Negative,202193544
12JAN17:00:00:00,01001010166,Yes,Negative,202193544
13JAN17:00:00:00,01001010355,Yes,Negative,204923707
08FEB17:00:00:00,01001010394,Yes,Negative,206047712
30JAN17:00:00:00,01001010396,Yes,Negative,200010674
11JAN17:00:00:00,01001010397,Yes,Negative,200010674
06FEB17:00:00:00,01001010514,Yes,Negative,204871594
15FEB17:00:00:00,01001010603,Yes,Negative,204923262
26JAN17:00:00:00,01001010745,Yes,Negative,201990694
05JAN17:00:00:00,01001010934,Yes,Negative,202051876
07JAN17:00:00:00,01001011037,Yes,Negative,402006592
03FEB17:00:00:00,01001011130,No,,202051689
31JAN17:00:00:00,01001011324,No,,202051689
13FEB17:00:00:00,01001011324,No,,202051689
31JAN17:00:00:00,01001011362,No,,202051689
31JAN17:00:00:00,01001011829,No,,209446900
11JAN17:00:00:00,01001011922,Yes,Negative,202051876
14FEB17:00:00:00,01001012455,No,,212153756
17FEB17:00:00:00,01001012484,No,,202051689
20JAN17:00:00:00,01001012690,Yes,Negative,202193544
10FEB17:00:00:00,01001012850,Yes,Negative,205250618
24FEB17:00:00:00,01001012975,Yes,Negative,203855532
21FEB17:00:00:00,01001013153,Yes,Negative,203827608
28JAN17:00:00:00,01001013160,No,,404922198
23FEB17:00:00:00,01001013294,Yes,Negative,211385767
10JAN17:00:00:00,01001013451,No,,202051689
10JAN17:00:00:00,01001013579,Yes,Negative,202940372
11FEB17:00:00:00,01001013741,Yes,Negative,211328703
04JAN17:00:00:00,01001013870,Yes,Negative,200010674
20FEB17:00:00:00,01001013885,Yes,Negative,405001466
27FEB17:00:00:00,01001013885,Yes,Negative,405001466
13JAN17:00:00:00,01001013917,Yes,Positive,204927543
15FEB17:00:00:00,01001013927,No,,404865981
03JAN17:00:00:00,01001013987,Yes,Negative,211328703
12FEB17:00:00:00,01001014109,Yes,Negative,202051876
21JAN17:00:00:00,01001014117,Yes,Negative,245428880
18FEB17:00:00:00,01001014268,Yes,Positive,202051689
16FEB17:00:00:00,01001014269,Yes,Negative,211385767
13FEB17:00:00:00,01001014273,Yes,Negative,402022253
20FEB17:00:00:00,01001014301,Yes,Negative,204871781
25JAN17:00:00:00,01001014580,Yes,Negative,206061795
24FEB17:00:00:00,01001014583,Yes,Negative,202051876
03FEB17:00:00:00,01001014652,Yes,Negative,202442981
20FEB17:00:00:00,01001014678,Yes,Negative,202051876
04JAN17:00:00:00,01001014758,Yes,Negative,211385767
18FEB17:00:00:00,01001014799,Yes,Negative,202463752
04JAN17:00:00:00,01001014839,Yes,Positive,404879663
10FEB17:00:00:00,01001014839,Yes,Positive,206335367
20FEB17:00:00:00,01001014969,Yes,Negative,201945271
29JAN17:00:00:00,01001015127,Yes,Negative,406055879
13FEB17:00:00:00,01001015309,Yes,Negative,202051876
21JAN17:00:00:00,01001015501,Yes,Negative,201945271
14JAN17:00:00:00,01001015539,Yes,Negative,211328703
12JAN17:00:00:00,01001015654,Yes,Negative,404907730
13JAN17:00:00:00,01001015654,No,,202051689
17JAN17:00:00:00,01001015742,Yes,Negative,405018831
27JAN17:00:00:00,01001015770,Yes,Negative,202051876
16FEB17:00:00:00,01001015770,Yes,Negative,202051876
20JAN17:00:00:00,01001016150,Yes,Positive,244969370
06JAN17:00:00:00,01001016188,No,,202051689
14FEB17:00:00:00,01001016256,Yes,Negative,200010674
21FEB17:00:00:00,01001016262,Yes,Negative,202051876
05JAN17:00:00:00,01001016342,Yes,Negative,202051876
29JAN17:00:00:00,01001016366,Yes,Negative,404860566
14FEB17:00:00:00,01001016453,Yes,Negative,202051876
15FEB17:00:00:00,01001016469,Yes,Positive,206120730
15JAN17:00:00:00,01001016932,Yes,Negative,205218030
11JAN17:00:00:00,01001016933,Yes,Negative,202051876
30JAN17:00:00:00,01001016933,Yes,Negative,202193544
24FEB17:00:00:00,01001017162,No,,206047464
02JAN17:00:00:00,01001017252,No,,202051689
14JAN17:00:00:00,01001017393,Yes,Negative,405018831
18FEB17:00:00:00,01001017423,Yes,Negative,202051876
13JAN17:00:00:00,01001017425,Yes,Negative,202193544
19JAN17:00:00:00,01001017493,Yes,Negative,205005527
04JAN17:00:00:00,01001017497,Yes,Negative,402022253
10JAN17:00:00:00,01001017546,Yes,Negative,205210467
09FEB17:00:00:00,01001017561,Yes,Negative,202463752
15FEB17:00:00:00,01001017584,Yes,Negative,206063383
22FEB17:00:00:00,01001017634,No,,202249968
15FEB17:00:00:00,01001017642,No,,202051689
26FEB17:00:00:00,01001017642,No,,209446900
10FEB17:00:00:00,01001018064,Yes,Negative,211327697
15FEB17:00:00:00,01001018085,Yes,Negative,202051876
19JAN17:00:00:00,01001018087,Yes,Negative,202051876
13FEB17:00:00:00,01001018087,Yes,Negative,202051876
13FEB17:00:00:00,01001018152,No,,404514762
23JAN17:00:00:00,01001018444,Yes,Negative,401945605
10FEB17:00:00:00,01001018698,Yes,Negative,202051876
26JAN17:00:00:00,01001018760,Yes,Positive,212153756
12JAN17:00:00:00,01001018963,Yes,Negative,211385767
09FEB17:00:00:00,01001019155,Yes,Negative,404865981
03JAN17:00:00:00,01001019260,Yes,Negative,200010674
09JAN17:00:00:00,01001019531,Yes,Negative,402022253
03JAN17:00:00:00,01001019567,Yes,Negative,404866123
16FEB17:00:00:00,01001019721,Yes,Negative,405032806
19FEB17:00:00:00,01001019759,Yes,Negative,202051876
04JAN17:00:00:00,01001019777,Yes,Negative,404879663
24JAN17:00:00:00,01001020049,Yes,Negative,200010674
25JAN17:00:00:00,01001020288,Yes,Negative,404866123
22FEB17:00:00:00,01001020455,No,,202193544
26JAN17:00:00:00,01001020463,Yes,Negative,206120730
26JAN17:00:00:00,01001020531,No,,206048533
11FEB17:00:00:00,01001020590,Yes,Positive,202051876
28JAN17:00:00:00,01001020611,Yes,Negative,205250618
19JAN17:00:00:00,01001020695,No,,212153756
28JAN17:00:00:00,01001020718,No,Negative,417876711
17JAN17:00:00:00,01001020720,No,,202051689
31JAN17:00:00:00,01001020720,Yes,Negative,405018831
30JAN17:00:00:00,01001020766,No,,202051689
18FEB17:00:00:00,01001020780,Yes,Positive,404866123
28FEB17:00:00:00,01001020780,Yes,Positive,404866123
16FEB17:00:00:00,01001020808,Yes,Negative,211328703
03FEB17:00:00:00,01001020826,Yes,Negative,206063383
14FEB17:00:00:00,01001020856,No,,202051689
22JAN17:00:00:00,01001020951,No,,202051689
30JAN17:00:00:00,01001020983,Yes,Positive,200010674
12FEB17:00:00:00,01001021082,Yes,Negative,202051876
04JAN17:00:00:00,01001021130,Yes,Negative,202051876
13FEB17:00:00:00,01001021173,No,,202051689
24JAN17:00:00:00,01001021215,Yes,Negative,203826645
09FEB17:00:00:00,01001021267,Yes,Negative,202377178
08FEB17:00:00:00,01001021349,Yes,Negative,404413005
06JAN17:00:00:00,01001021524,Yes,Negative,200010674
07FEB17:00:00:00,01001021613,Yes,Negative,202193544
09FEB17:00:00:00,01001021782,No,,202051689
17JAN17:00:00:00,01001021879,No,,202051689
10JAN17:00:00:00,01001021895,Yes,Negative,202463752
28FEB17:00:00:00,01001022015,Yes,Negative,211328703
09JAN17:00:00:00,01001022035,No,,202051689
12FEB17:00:00:00,01001022202,No,,202051689
24FEB17:00:00:00,01001022287,Yes,Negative,404404042
11JAN17:00:00:00,01001022305,Yes,Negative,404866659
20JAN17:00:00:00,01001022438,Yes,Negative,200010674
10FEB17:00:00:00,01001022438,No,,202051689
03JAN17:00:00:00,01001022509,Yes,Negative,200209103
12JAN17:00:00:00,01001022509,No,,200209103
16FEB17:00:00:00,01001022509,Yes,Negative,400153061
12FEB17:00:00:00,01001022620,Yes,Negative,202193544
11JAN17:00:00:00,01001022702,Yes,Negative,404866123
16JAN17:00:00:00,01001022737,Yes,Negative,202051876
22FEB17:00:00:00,01001022916,Yes,Negative,201945271
18FEB17:00:00:00,01001023221,Yes,Positive,206047712
15JAN17:00:00:00,01001023311,No,,400153061
11JAN17:00:00:00,01001023491,Yes,Negative,239403463
18FEB17:00:00:00,01001023580,Yes,Negative,200010674
30JAN17:00:00:00,01001023594,Yes,Negative,405169598
27JAN17:00:00:00,01001023607,No,,204927543
14FEB17:00:00:00,01001023632,Yes,Positive,200010674
14FEB17:00:00:00,01001023730,No,,202249968
02JAN17:00:00:00,01001023770,Yes,Negative,406055879
22FEB17:00:00:00,01001023866,No,,202051689
20FEB17:00:00:00,01001023929,Yes,Negative,206047883
13JAN17:00:00:00,01001024016,Yes,Negative,404879663
13JAN17:00:00:00,01001024044,Yes,Negative,212002580
20FEB17:00:00:00,01001024049,Yes,Negative,404879663
02FEB17:00:00:00,01001024163,Yes,Negative,202172139
05JAN17:00:00:00,01001024168,No,,202051689
16FEB17:00:00:00,01001024320,No,,202051689
11JAN17:00:00:00,01001024441,Yes,Negative,205250618
11FEB17:00:00:00,01001024441,No,,212002580
15FEB17:00:00:00,01001024477,Yes,Negative,206335367
08JAN17:00:00:00,01001024499,Yes,Negative,401945605
01FEB17:00:00:00,01001024499,Yes,Negative,206036216
08FEB17:00:00:00,01001024608,Yes,Negative,406131939
27JAN17:00:00:00,01001024775,Yes,Negative,216296639
17JAN17:00:00:00,01001024800,Yes,Negative,205165453
26JAN17:00:00:00,01001024911,Yes,Negative,404865981
08JAN17:00:00:00,01001025238,Yes,Negative,205250618
09JAN17:00:00:00,01001025373,No,,405064594
11JAN17:00:00:00,01001025373,Yes,Negative,405064594
07JAN17:00:00:00,01001025385,Yes,Negative,404404042
16JAN17:00:00:00,01001025498,No,,404476205
18JAN17:00:00:00,01001025573,Yes,Negative,205284093
14JAN17:00:00:00,01001025791,Yes,Negative,211385767
26JAN17:00:00:00,01001025822,Yes,Negative,211328703
06JAN17:00:00:00,01001026012,Yes,Negative,202193544
27FEB17:00:00:00,01001026095,Yes,Negative,211328703
24FEB17:00:00:00,01001026183,Yes,Negative,205210467
27FEB17:00:00:00,01001026302,Yes,Negative,206063383
25JAN17:00:00:00,01001026310,Yes,Negative,205284093
26JAN17:00:00:00,01001026370,No,,202051689
07JAN17:00:00:00,01001026403,No,,202249968
17FEB17:00:00:00,01001026589,No,,202249968
09JAN17:00:00:00,01001026695,Yes,Negative,205165453
12JAN17:00:00:00,01001026695,No,,212002580
14JAN17:00:00:00,01001026695,Yes,Negative,405018831
23JAN17:00:00:00,01001026695,No,,212002580
24JAN17:00:00:00,01001026697,Yes,Negative,404467019
17JAN17:00:00:00,01001026709,No,,202249968
09JAN17:00:00:00,01001026834,No,,202051689
05FEB17:00:00:00,01001027068,No,,202051876
23FEB17:00:00:00,01001027155,No,,202051689
20JAN17:00:00:00,01001027205,Yes,Negative,205210467
23JAN17:00:00:00,01001027319,Yes,Negative,401945605
13JAN17:00:00:00,01001027367,Yes,Negative,200010674
01JAN17:00:00:00,01001027580,Yes,Negative,202050840
23JAN17:00:00:00,01001027590,Yes,Negative,404404042
19JAN17:00:00:00,01001027689,Yes,Negative,204871781
30JAN17:00:00:00,01001027696,Yes,Negative,211328703
24FEB17:00:00:00,01001027764,Yes,Negative,202193544
26JAN17:00:00:00,01001027801,Yes,Negative,405049335
28FEB17:00:00:00,01001027825,No,,202051689
07JAN17:00:00:00,01001027835,No,,202051689
22FEB17:00:00:00,01001027840,Yes,Negative,203855532
11JAN17:00:00:00,01001027934,No,,202051689
17FEB17:00:00:00,01001027987,Yes,Negative,200010674
17JAN17:00:00:00,01001028085,Yes,Negative,231169507
19FEB17:00:00:00,01001028090,Yes,Negative,205218030
16JAN17:00:00:00,01001028288,Yes,Negative,202051876
14FEB17:00:00:00,01001028640,Yes,Negative,416289947
09FEB17:00:00:00,01001028734,Yes,Negative,202193544
23FEB17:00:00:00,01001028775,Yes,Negative,200010674
03JAN17:00:00:00,01001028809,No,,202051689
21FEB17:00:00:00,01001028809,No,,202051689
25FEB17:00:00:00,01001028879,Yes,Negative,202051876
01FEB17:00:00:00,01001028957,Yes,Negative,200010674
12FEB17:00:00:00,01001028960,No,,202051689
03JAN17:00:00:00,01001029173,Yes,Negative,212002580
17JAN17:00:00:00,01001029202,No,,202051689
09FEB17:00:00:00,01001029229,Yes,Positive,202051689
19FEB17:00:00:00,01001029233,No,Negative,404905821
10FEB17:00:00:00,01001029266,Yes,Negative,202051876
04FEB17:00:00:00,01001029417,Yes,Negative,205218030
22FEB17:00:00:00,01001029452,Yes,Negative,202463752
28JAN17:00:00:00,01001029453,Yes,Negative,204871781
10FEB17:00:00:00,01001029471,Yes,Negative,404865981
16JAN17:00:00:00,01001029490,Yes,Negative,404907730
31JAN17:00:00:00,01001029556,Yes,Negative,203827608
03FEB17:00:00:00,01001029959,Yes,Negative,202193544
23JAN17:00:00:00,01001030041,No,Positive,202051689
23JAN17:00:00:00,01001030176,Yes,Negative,205218030
08FEB17:00:00:00,01001030343,Yes,Negative,202051876
26JAN17:00:00:00,01001030357,Yes,Negative,205165453
24FEB17:00:00:00,01001030368,Yes,Positive,218064699
03FEB17:00:00:00,01001030474,Yes,Negative,204871781
08JAN17:00:00:00,01001030520,Yes,Negative,202193544
28JAN17:00:00:00,01001030520,No,,202193544
17FEB17:00:00:00,01001030520,Yes,Negative,202193544
08JAN17:00:00:00,01001030578,Yes,Negative,404514762
03FEB17:00:00:00,01001030742,Yes,Negative,202051876
16JAN17:00:00:00,01001030866,Yes,Negative,205165453
10JAN17:00:00:00,01001030914,Yes,Negative,202463752
06FEB17:00:00:00,01001030940,Yes,Negative,406055879
27JAN17:00:00:00,01001030963,Yes,Negative,404879663
03FEB17:00:00:00,01001030963,Yes,Negative,211328703
13JAN17:00:00:00,01001031075,Yes,Negative,202442981
17FEB17:00:00:00,01001031078,No,,202051689
20JAN17:00:00:00,01001031083,No,,202051689
26JAN17:00:00:00,01001031106,Yes,Negative,405018831
17JAN17:00:00:00,01001031107,Yes,Negative,239403463
06FEB17:00:00:00,01001031107,Yes,Negative,406055879
23JAN17:00:00:00,01001031116,No,,202051689
25JAN17:00:00:00,01001031201,Yes,Negative,200010674
18JAN17:00:00:00,01001031255,Yes,Negative,211328703
09FEB17:00:00:00,01001031262,Yes,Negative,218064699
25JAN17:00:00:00,01001031409,No,,402022253
24FEB17:00:00:00,01001031513,Yes,Negative,202442981
25FEB17:00:00:00,01001031535,Yes,Negative,206089169
18JAN17:00:00:00,01001031598,Yes,Negative,206120730
03JAN17:00:00:00,01001031609,Yes,Negative,206047464
23FEB17:00:00:00,01001031670,No,,202249968
25JAN17:00:00:00,01001031727,Yes,Negative,400153061
06FEB17:00:00:00,01001031847,No,,202051689
20JAN17:00:00:00,01001031898,Yes,Negative,202051876
05FEB17:00:00:00,01001032041,Yes,Negative,204871781
03JAN17:00:00:00,01001032080,Yes,Negative,202193544
20FEB17:00:00:00,01001032146,No,,202051689
03JAN17:00:00:00,01001032188,Yes,Negative,206048533
06FEB17:00:00:00,01001032425,No,,202051689
09FEB17:00:00:00,01001032479,Yes,Negative,202051876
28FEB17:00:00:00,01001032804,No,,202051689
04FEB17:00:00:00,01001032886,Yes,Negative,206335367
17FEB17:00:00:00,01001032886,Yes,Negative,206335367
06JAN17:00:00:00,01001032972,No,,202051689
06FEB17:00:00:00,01001032990,Yes,Negative,206047464
11FEB17:00:00:00,01001032990,Yes,Negative,406160755
19FEB17:00:00:00,01001033021,Yes,Negative,404404042
13JAN17:00:00:00,01001033042,No,,205210467
10FEB17:00:00:00,01001033373,Yes,Positive,202172139
15FEB17:00:00:00,01001033374,No,,202051689
01FEB17:00:00:00,01001033514,No,,202051689
03FEB17:00:00:00,01001033608,Yes,Negative,202051876
24FEB17:00:00:00,01001033912,No,,202051689
22FEB17:00:00:00,01001033914,Yes,Negative,202051876
12FEB17:00:00:00,01001034190,No,,202051689
24FEB17:00:00:00,01001034237,Yes,Negative,202051876
27JAN17:00:00:00,01001034269,Yes,Negative,404404042
21FEB17:00:00:00,01001034291,Yes,Negative,202051876
24JAN17:00:00:00,01001034301,No,,202249968
21JAN17:00:00:00,01001034438,Yes,Negative,202051876
08JAN17:00:00:00,01001034583,Yes,Negative,200010674
15JAN17:00:00:00,01001034583,Yes,Negative,400123647
05JAN17:00:00:00,01001034635,No,,202193544
23JAN17:00:00:00,01001034747,No,,202051689
15FEB17:00:00:00,01001034763,No,,209446900
11JAN17:00:00:00,01001034796,Yes,Negative,206048533
21JAN17:00:00:00,01001034819,Yes,Negative,202193544
09FEB17:00:00:00,01001034856,Yes,Negative,202193544
10JAN17:00:00:00,01001034865,No,,202051689
13JAN17:00:00:00,01001034940,Yes,Negative,404514762
17JAN17:00:00:00,01001035119,No,,202051689
09JAN17:00:00:00,01001035156,No,,202051689
10JAN17:00:00:00,01001035157,Yes,Negative,202051876
17JAN17:00:00:00,01001035157,No,,404879663
27FEB17:00:00:00,01001035158,No,,202051689
15FEB17:00:00:00,01001035181,Yes,Negative,404941827
18JAN17:00:00:00,01001035276,No,,202051689
02JAN17:00:00:00,01001035373,No,Negative,200007143
01JAN17:00:00:00,01001035414,Yes,Negative,402022253
22FEB17:00:00:00,01001035419,Yes,Negative,200209103
11FEB17:00:00:00,01001035550,No,,202051689
17FEB17:00:00:00,01001035560,No,Negative,404905821
19JAN17:00:00:00,01001035651,Yes,Positive,202051876
11JAN17:00:00:00,01001035665,Yes,Negative,202051876
07JAN17:00:00:00,01001035698,No,,202051689
16FEB17:00:00:00,01001035851,Yes,Negative,202051876
09JAN17:00:00:00,01001035958,No,,202249968
14JAN17:00:00:00,01001036007,No,,202051689
13FEB17:00:00:00,01001036070,Yes,Negative,404865981
25JAN17:00:00:00,01001036131,Yes,Negative,211385767
14JAN17:00:00:00,01001036259,Yes,Negative,202193544
06FEB17:00:00:00,01001036331,No,,204483380
11JAN17:00:00:00,01001036438,No,,202051689
26JAN17:00:00:00,01001036438,No,,202051689
16JAN17:00:00:00,01001036446,Yes,Negative,404907730
05FEB17:00:00:00,01001036556,No,,212153756
09JAN17:00:00:00,01001036768,Yes,Negative,402022253
08FEB17:00:00:00,01001036793,No,Negative,404945217
17FEB17:00:00:00,01001036875,Yes,Negative,200010674
27FEB17:00:00:00,01001036880,Yes,Negative,205218030
11JAN17:00:00:00,01001036885,Yes,Negative,211385767
17FEB17:00:00:00,01001036896,Yes,Negative,404879663
04JAN17:00:00:00,01001036900,Yes,Negative,400123647
08FEB17:00:00:00,01001036981,Yes,Negative,404941827
01JAN17:00:00:00,01001037127,Yes,Negative,201945271
03FEB17:00:00:00,01001037169,Yes,Negative,204923262
15JAN17:00:00:00,01001037174,Yes,Negative,211328703
12JAN17:00:00:00,01001037218,Yes,Negative,404866123
13FEB17:00:00:00,01001037218,Yes,Negative,404866123
04FEB17:00:00:00,01001037303,No,,202051689
03JAN17:00:00:00,01001037326,Yes,Negative,404879663
31JAN17:00:00:00,01001037391,Yes,Negative,404854485
05FEB17:00:00:00,01001037507,No,,202051689
10FEB17:00:00:00,01001037568,No,,202051689
01FEB17:00:00:00,01001037605,No,Negative,404945217
05JAN17:00:00:00,01001037671,Yes,Negative,201945271
11JAN17:00:00:00,01001037678,Yes,Negative,200010674
10JAN17:00:00:00,01001037687,No,,202051689
20FEB17:00:00:00,01001037687,No,,202051689
12JAN17:00:00:00,01001037697,Yes,Negative,202051876
23FEB17:00:00:00,01001037826,Yes,Negative,405032806
16JAN17:00:00:00,01001037833,Yes,Negative,400153061
24FEB17:00:00:00,01001037873,No,,202051689
03FEB17:00:00:00,01001038031,No,,202051689
27JAN17:00:00:00,01001038201,Yes,Negative,206047400
08FEB17:00:00:00,01001038232,No,,202051689
23JAN17:00:00:00,01001038310,Yes,Negative,202193544
11FEB17:00:00:00,01001038401,Yes,Negative,202051689
24FEB17:00:00:00,01001038499,Yes,Negative,202051876
08FEB17:00:00:00,01001038586,Yes,Negative,404854485
08FEB17:00:00:00,01001038766,No,,211328703
13JAN17:00:00:00,01001038789,Yes,Negative,405049335
17JAN17:00:00:00,01001039094,Yes,Negative,406055879
23JAN17:00:00:00,01001039190,Yes,Negative,404879663
03FEB17:00:00:00,01001039292,Yes,Positive,202193544
27FEB17:00:00:00,01001039506,No,,202051689
26JAN17:00:00:00,01001039539,No,,202051689
06FEB17:00:00:00,01001039539,Yes,Negative,400133814
27JAN17:00:00:00,01001039638,Yes,Negative,405071773
15FEB17:00:00:00,01001039803,Yes,Negative,202051876
04JAN17:00:00:00,01001039884,No,,211328703
23JAN17:00:00:00,01001039930,No,,202051689
06FEB17:00:00:00,01001039930,Yes,Negative,404879663
15JAN17:00:00:00,01001039948,No,,202051689
14JAN17:00:00:00,01001039998,Yes,Negative,201945271
01JAN17:00:00:00,01001040046,Yes,Negative,211328703
07JAN17:00:00:00,01001040071,No,,202193544
17FEB17:00:00:00,01001040299,Yes,Negative,211385767
16JAN17:00:00:00,01001040388,Yes,Negative,404866659
13JAN17:00:00:00,01001040455,Yes,Negative,202051876
18JAN17:00:00:00,01001040650,Yes,Negative,201945271
29JAN17:00:00:00,01001040654,Yes,Negative,200010674
07FEB17:00:00:00,01001040660,Yes,Negative,202463752
24FEB17:00:00:00,01001040727,Yes,Positive,201990694
13JAN17:00:00:00,01001040759,Yes,Negative,202463752
16FEB17:00:00:00,01001040815,Yes,Negative,202193544
01FEB17:00:00:00,01001040857,Yes,Negative,211328703
22FEB17:00:00:00,01001040983,Yes,Negative,200010674
15FEB17:00:00:00,01001041013,Yes,Negative,400153061
09JAN17:00:00:00,01001041017,Yes,Negative,211328703
09JAN17:00:00:00,01001041172,Yes,Negative,203827608
22JAN17:00:00:00,01001041176,Yes,Negative,404413005
27JAN17:00:00:00,01001041189,Yes,Negative,404404042
28JAN17:00:00:00,01001041192,Yes,Negative,204927543
20FEB17:00:00:00,01001041228,No,,202051689
07FEB17:00:00:00,01001041491,Yes,Negative,404865981
04JAN17:00:00:00,01001041494,Yes,Negative,203855532
17JAN17:00:00:00,01001041527,Yes,Negative,416289947
04JAN17:00:00:00,01001041693,No,,211328703
02FEB17:00:00:00,01001041803,Yes,Negative,202051876
24JAN17:00:00:00,01001041875,Yes,Negative,201990694
23JAN17:00:00:00,01001041898,No,,202051689
25FEB17:00:00:00,01001041988,Yes,Negative,211328703
10FEB17:00:00:00,01001042028,No,,202051689
18JAN17:00:00:00,01001042063,Yes,Negative,402006592
16FEB17:00:00:00,01001042080,Yes,Negative,218064699
06JAN17:00:00:00,01001042097,Yes,Negative,400153061
26JAN17:00:00:00,01001042248,Yes,Negative,206048533
30JAN17:00:00:00,01001042271,No,,204483380
24FEB17:00:00:00,01001042284,Yes,Negative,406055879
13FEB17:00:00:00,01001042303,Yes,Negative,202051876
18JAN17:00:00:00,01001042818,Yes,Negative,202193544
09JAN17:00:00:00,01001042922,Yes,Negative,404879663
11FEB17:00:00:00,01001043005,No,,202051689
22FEB17:00:00:00,01001043022,Yes,Negative,404941827
03FEB17:00:00:00,01001043067,No,,202051689
11FEB17:00:00:00,01001043067,No,,202051689
05FEB17:00:00:00,01001043068,Yes,Negative,201990694
27JAN17:00:00:00,01001043106,Yes,Negative,202463752
03FEB17:00:00:00,01001043144,No,,202051689
03FEB17:00:00:00,01001043177,Yes,Positive,212153756
24FEB17:00:00:00,01001043266,Yes,Positive,202172139
23JAN17:00:00:00,01001043292,Yes,Negative,202051876
27JAN17:00:00:00,01001043317,No,,202051689
20JAN17:00:00:00,01001043320,Yes,Negative,401945605
20FEB17:00:00:00,01001043336,Yes,Negative,202453987
13JAN17:00:00:00,01001043338,Yes,Negative,205250618
25FEB17:00:00:00,01001043358,Yes,Negative,435892483
09FEB17:00:00:00,01001043546,Yes,Negative,202051876
14FEB17:00:00:00,01001043860,Yes,Negative,404879663
26FEB17:00:00:00,01001043882,Yes,Negative,200010674
12FEB17:00:00:00,01001043990,No,,202051689
21FEB17:00:00:00,01001044144,Yes,Negative,402006592
25FEB17:00:00:00,01001044154,Yes,Negative,200010674
26JAN17:00:00:00,01001044187,Yes,Negative,231169810
23FEB17:00:00:00,01001044187,Yes,Negative,231169810
26JAN17:00:00:00,01001044230,No,,202051689
13JAN17:00:00:00,01001044292,Yes,Negative,205250618
26JAN17:00:00:00,01001044305,No,Negative,404945217
05JAN17:00:00:00,01001044309,Yes,Negative,200010674
04JAN17:00:00:00,01001044310,No,,202051689
14JAN17:00:00:00,01001044543,Yes,Negative,212002580
21FEB17:00:00:00,01001044546,Yes,Positive,205210467
10JAN17:00:00:00,01001044597,Yes,Negative,202051876
08JAN17:00:00:00,01001044626,No,,202051689
29JAN17:00:00:00,01001044626,No,,202051689
20FEB17:00:00:00,01001044626,No,,202051689
11JAN17:00:00:00,01001044732,Yes,Negative,202463752
28FEB17:00:00:00,01001044916,Yes,Negative,200209103
20JAN17:00:00:00,01001045331,Yes,Negative,202051876
13JAN17:00:00:00,01001045479,Yes,Negative,203827608
09FEB17:00:00:00,01001045555,No,,202051689
20FEB17:00:00:00,01001045579,Yes,Negative,202193544
17FEB17:00:00:00,01001045803,Yes,Negative,402022253
13FEB17:00:00:00,01001045845,Yes,Negative,202051876
15FEB17:00:00:00,01001045879,Yes,Negative,205005527
14FEB17:00:00:00,01001046007,Yes,Negative,212002580
20JAN17:00:00:00,01001046102,Yes,Negative,202193544
23FEB17:00:00:00,01001046157,Yes,Negative,200010674
23JAN17:00:00:00,01001046191,Yes,Negative,405032806
17FEB17:00:00:00,01001046275,No,,202051689
17FEB17:00:00:00,01001046533,Yes,Negative,200010674
17JAN17:00:00:00,01001046534,No,,202051689
17FEB17:00:00:00,01001046798,Yes,Negative,202463752
17JAN17:00:00:00,01001046869,Yes,Negative,202051876
16JAN17:00:00:00,01001046883,Yes,Negative,404413005
14JAN17:00:00:00,01001046954,No,,202051689
11JAN17:00:00:00,01001046969,Yes,Negative,204923262
18JAN17:00:00:00,01001047146,Yes,Negative,206120730
25FEB17:00:00:00,01001047354,Yes,Negative,405169598
31JAN17:00:00:00,01001047382,Yes,Negative,404879663
11JAN17:00:00:00,01001047420,No,,202051689
28JAN17:00:00:00,01001047708,Yes,Negative,205284093
09FEB17:00:00:00,01001047830,No,,202051689
10JAN17:00:00:00,01001047901,Yes,Negative,406131939
09FEB17:00:00:00,01001047904,Yes,Negative,202051876
15FEB17:00:00:00,01001047950,Yes,Negative,401946784
21FEB17:00:00:00,01001048144,Yes,Negative,404907730
09JAN17:00:00:00,01001048182,Yes,Negative,211385767
28FEB17:00:00:00,01001048906,Yes,Negative,206120730
16JAN17:00:00:00,01001048993,No,Negative,417876711
08FEB17:00:00:00,01001048996,Yes,Negative,200010674
12FEB17:00:00:00,01001049007,Yes,Negative,211328703
31JAN17:00:00:00,01001049010,No,,202051689
17JAN17:00:00:00,01001049112,Yes,Negative,401945605
12FEB17:00:00:00,01001049211,Yes,Negative,202051876
03FEB17:00:00:00,01001049216,Yes,Negative,404866123
26FEB17:00:00:00,01001049242,Yes,Negative,202172139
24JAN17:00:00:00,01001049353,No,,202051689
24JAN17:00:00:00,01001049591,Yes,Negative,202051876
21FEB17:00:00:00,01001049591,Yes,Negative,202051876
27FEB17:00:00:00,01001049591,Yes,Negative,404879663
02FEB17:00:00:00,01001049642,Yes,Negative,200010674
25JAN17:00:00:00,01001049668,No,,206048533
27JAN17:00:00:00,01001049672,Yes,Negative,202193544
10FEB17:00:00:00,01001049672,Yes,Negative,202193544
30JAN17:00:00:00,01001049747,Yes,Negative,212002580
20FEB17:00:00:00,01001049780,Yes,Negative,404908043
17JAN17:00:00:00,01001049962,No,,405064594
12JAN17:00:00:00,01001050009,Yes,Negative,204871781
14FEB17:00:00:00,01001050013,Yes,Negative,202463752
14JAN17:00:00:00,01001050019,No,,202051689
14FEB17:00:00:00,01001050144,Yes,Negative,404879663
24FEB17:00:00:00,01001050180,Yes,Negative,404908043
03JAN17:00:00:00,01001050246,Yes,Negative,202051876
15FEB17:00:00:00,01001050355,Yes,Negative,406055879
26JAN17:00:00:00,01001050410,No,,202051689
20FEB17:00:00:00,01001050419,No,,202051689
02FEB17:00:00:00,01001050521,Yes,Negative,211385767
11FEB17:00:00:00,01001050533,Yes,Negative,400115362
03FEB17:00:00:00,01001050536,No,,202051689
06JAN17:00:00:00,01001050712,No,,202193544
10FEB17:00:00:00,01001050712,No,,209446900
20FEB17:00:00:00,01001050763,Yes,Negative,206047883
24FEB17:00:00:00,01001050765,No,,202051689
11JAN17:00:00:00,01001050802,No,,202051689
13JAN17:00:00:00,01001050912,Yes,Negative,212685423
25JAN17:00:00:00,01001051027,Yes,Negative,404514762
27JAN17:00:00:00,01001051027,Yes,Negative,404514762
23FEB17:00:00:00,01001051059,Yes,Negative,206089169
27JAN17:00:00:00,01001051066,No,,202051689
04JAN17:00:00:00,01001051095,No,,202051689
01FEB17:00:00:00,01001051124,Yes,Negative,212002580
09JAN17:00:00:00,01001051135,Yes,Negative,202051876
08FEB17:00:00:00,01001051191,Yes,Negative,202051876
22JAN17:00:00:00,01001051262,Yes,Negative,400115362
10FEB17:00:00:00,01001051424,Yes,Negative,202051689
16FEB17:00:00:00,01001051565,No,,212002580
10FEB17:00:00:00,01001051956,Yes,Negative,404908043
13JAN17:00:00:00,01001051999,No,,202051689
20FEB17:00:00:00,01001051999,No,,202051689
07JAN17:00:00:00,01001052014,Yes,Negative,400123647
24JAN17:00:00:00,01001052041,No,,204871594
07FEB17:00:00:00,01001052041,No,,204871594
19FEB17:00:00:00,01001052180,No,,202051689
23FEB17:00:00:00,01001052230,Yes,Negative,404879663
09FEB17:00:00:00,01001052334,Yes,Negative,417876711
22JAN17:00:00:00,01001052341,Yes,Negative,202193544
23JAN17:00:00:00,01001052375,Yes,Negative,404879663
21JAN17:00:00:00,01001052386,No,Negative,417876711
30JAN17:00:00:00,01001052401,No,,202051689
23JAN17:00:00:00,01001052418,Yes,Positive,400027163
06FEB17:00:00:00,01001052565,Yes,Negative,404879663
14FEB17:00:00:00,01001052592,No,,202051689
23FEB17:00:00:00,01001052651,Yes,Negative,204871781
27JAN17:00:00:00,01001052653,Yes,Negative,202051876
19JAN17:00:00:00,01001052680,Yes,Negative,202442981
17JAN17:00:00:00,01001052774,Yes,Negative,404404042
02JAN17:00:00:00,01001052806,No,,202249968
12JAN17:00:00:00,01001052846,Yes,Negative,200010674
13JAN17:00:00:00,01001052865,Yes,Negative,405069474
27FEB17:00:00:00,01001052951,Yes,Negative,200010674
01FEB17:00:00:00,01001052957,Yes,Negative,400153061
18JAN17:00:00:00,01001052971,Yes,Negative,202193544
25FEB17:00:00:00,01001053148,Yes,Negative,404866123
29JAN17:00:00:00,01001053171,No,,405169598
12JAN17:00:00:00,01001053196,No,,202051689
14JAN17:00:00:00,01001053250,Yes,Negative,202050840
21JAN17:00:00:00,01001053285,No,,202051689
18FEB17:00:00:00,01001053337,Yes,Negative,205005527
27JAN17:00:00:00,01001053385,Yes,Negative,202051876
06FEB17:00:00:00,01001053444,No,,202051689
01FEB17:00:00:00,01001053456,Yes,Negative,400153061
07FEB17:00:00:00,01001053530,No,,209446900
20JAN17:00:00:00,01001053566,Yes,Negative,202051876
08FEB17:00:00:00,01001053626,Yes,Negative,206047400
08JAN17:00:00:00,01001053659,Yes,Negative,404866123
27JAN17:00:00:00,01001053679,No,,202051689
21JAN17:00:00:00,01001053717,Yes,Negative,201945271
27JAN17:00:00:00,01001053766,Yes,Negative,406055879
16JAN17:00:00:00,01001053768,Yes,Positive,202051876
14FEB17:00:00:00,01001053819,Yes,Negative,204927543
25JAN17:00:00:00,01001053824,Yes,Negative,405049335
15FEB17:00:00:00,01001053841,No,,202051689
02FEB17:00:00:00,01001053926,No,,202249968
16FEB17:00:00:00,01001053927,Yes,Negative,205218030
08FEB17:00:00:00,01001053996,Yes,Negative,404467019
21JAN17:00:00:00,01001054014,No,,202051689
18JAN17:00:00:00,01001054017,Yes,Negative,205284093
27JAN17:00:00:00,01001054276,Yes,Negative,404866123
29JAN17:00:00:00,01001054386,Yes,Negative,200010674
16JAN17:00:00:00,01001054459,Yes,Negative,205165453
25JAN17:00:00:00,01001054459,No,Negative,417876711
22FEB17:00:00:00,01001054459,Yes,Negative,211385767
16FEB17:00:00:00,01001054563,Yes,Negative,202051876
25FEB17:00:00:00,01001054717,Yes,Negative,404854485
05JAN17:00:00:00,01001054812,Yes,Negative,205210467
07FEB17:00:00:00,01001054930,Yes,Negative,211328703
26FEB17:00:00:00,01001054930,Yes,Negative,211328703
03JAN17:00:00:00,01001054989,Yes,Negative,204970022
02FEB17:00:00:00,01001054992,No,,202051689
19JAN17:00:00:00,01001055134,Yes,Negative,203826645
01FEB17:00:00:00,01001055167,Yes,Negative,202051876
29JAN17:00:00:00,01001055203,Yes,Negative,404908043
17JAN17:00:00:00,01001055253,Yes,Negative,202193544
16FEB17:00:00:00,01001055253,Yes,Negative,405018831
15JAN17:00:00:00,01001055257,Yes,Negative,404404042
19FEB17:00:00:00,01001055292,Yes,Negative,417876711
28FEB17:00:00:00,01001055402,No,,202051689
22FEB17:00:00:00,01001055408,Yes,Negative,202051876
25JAN17:00:00:00,01001055472,Yes,Negative,401945605
15FEB17:00:00:00,01001055564,Yes,Negative,404854485
25FEB17:00:00:00,01001055567,No,,202249968
23FEB17:00:00:00,01001055725,Yes,Negative,404467019
15FEB17:00:00:00,01001055742,Yes,Negative,202463752
31JAN17:00:00:00,01001055796,Yes,Negative,204927543
31JAN17:00:00:00,01001055811,Yes,Negative,200010674
12JAN17:00:00:00,01001055819,Yes,Negative,206089169
06JAN17:00:00:00,01001055855,Yes,Negative,400123647
03FEB17:00:00:00,01001055869,No,,202051689
22FEB17:00:00:00,01001055890,Yes,Negative,206120730
11FEB17:00:00:00,01001055907,No,Negative,404905821
24JAN17:00:00:00,01001055955,Yes,Negative,202463752
14FEB17:00:00:00,01001056190,No,,202051689
21FEB17:00:00:00,01001056209,No,,209446900
23FEB17:00:00:00,01001056353,Yes,Negative,203827608
31JAN17:00:00:00,01001056364,Yes,Negative,404866123
20JAN17:00:00:00,01001056380,Yes,Negative,400153061
19FEB17:00:00:00,01001056518,No,,202051689
04FEB17:00:00:00,01001056530,Yes,Negative,202193544
09JAN17:00:00:00,01001056627,Yes,Negative,202193544
16JAN17:00:00:00,01001056677,Yes,Negative,211385767
01FEB17:00:00:00,01001056802,No,,201990694
17FEB17:00:00:00,01001056802,Yes,Negative,212002580
18JAN17:00:00:00,01001056856,Yes,Negative,400133814
21JAN17:00:00:00,01001057044,Yes,Negative,205005527
18JAN17:00:00:00,01001057105,Yes,Negative,203827608
18JAN17:00:00:00,01001057112,Yes,Negative,216315690
16FEB17:00:00:00,01001057155,Yes,Negative,202051689
03FEB17:00:00:00,01001057285,Yes,Negative,204923262
10FEB17:00:00:00,01001057319,Yes,Negative,404879663
10FEB17:00:00:00,01001057334,Yes,Negative,200010674
27JAN17:00:00:00,01001057360,Yes,Negative,404879663
15FEB17:00:00:00,01001057362,No,,202051689
20JAN17:00:00:00,01001057369,Yes,Negative,404866123
03FEB17:00:00:00,01001057500,No,,245599758
04JAN17:00:00:00,01001057501,No,,404908043
23JAN17:00:00:00,01001057534,Yes,Negative,404514762
17FEB17:00:00:00,01001057614,Yes,Negative,211328703
24JAN17:00:00:00,01001057622,Yes,Negative,201945271
24FEB17:00:00:00,01001057670,Yes,Negative,204420493
14JAN17:00:00:00,01001057780,Yes,Negative,205284093
07FEB17:00:00:00,01001057784,Yes,Negative,212002580
06FEB17:00:00:00,01001057878,Yes,Negative,212002580
27JAN17:00:00:00,01001058012,Yes,Negative,201945271
16JAN17:00:00:00,01001058065,Yes,Negative,404869567
09FEB17:00:00:00,01001058125,No,,202051689
05JAN17:00:00:00,01001058247,Yes,Negative,202907970
24FEB17:00:00:00,01001058284,Yes,Negative,202051876
13JAN17:00:00:00,01001058295,Yes,Negative,202172139
18FEB17:00:00:00,01001058311,Yes,Negative,211357663
10FEB17:00:00:00,01001058338,Yes,Negative,405018831
16JAN17:00:00:00,01001058395,Yes,Negative,404467019
01FEB17:00:00:00,01001058590,Yes,Negative,201945271
13FEB17:00:00:00,01001058650,No,,202051689
21JAN17:00:00:00,01001058713,Yes,Negative,400153061
25JAN17:00:00:00,01001058745,No,,405064594
23JAN17:00:00:00,01001058833,Yes,Negative,203826645
04JAN17:00:00:00,01001059022,Yes,Negative,206048533
07FEB17:00:00:00,01001059070,No,,204420493
25FEB17:00:00:00,01001059172,Yes,Positive,202051689
09FEB17:00:00:00,01001059240,Yes,Negative,204923707
20JAN17:00:00:00,01001059258,No,,202051689
15FEB17:00:00:00,01001059335,Yes,Negative,201945271
08JAN17:00:00:00,01001059356,Yes,Negative,202050840
07JAN17:00:00:00,01001059376,Yes,Negative,400123647
21FEB17:00:00:00,01001059377,Yes,Negative,202051876
20FEB17:00:00:00,01001059402,Yes,Negative,202193544
15FEB17:00:00:00,01001059506,Yes,Negative,417876711
22FEB17:00:00:00,01001059506,Yes,Negative,211385767
22FEB17:00:00:00,01001059769,Yes,Negative,211328703
10JAN17:00:00:00,01001059785,Yes,Negative,400153061
08FEB17:00:00:00,01001059809,Yes,Negative,201945271
24FEB17:00:00:00,01001059844,Yes,Negative,202463752
16FEB17:00:00:00,01001059900,Yes,Negative,404879663
17JAN17:00:00:00,01001060010,Yes,Negative,231169874
17FEB17:00:00:00,01001060088,Yes,Negative,211385767
01FEB17:00:00:00,01001060105,No,,405064594
10JAN17:00:00:00,01001060186,No,,202051689
04JAN17:00:00:00,01001060200,Yes,Negative,405032806
28JAN17:00:00:00,01001060200,Yes,Positive,405032806
17JAN17:00:00:00,01001060267,Yes,Negative,204970022
24FEB17:00:00:00,01001060513,Yes,Negative,404866123
09FEB17:00:00:00,01001060665,No,,212002580
20FEB17:00:00:00,01001060674,Yes,Negative,218064699
16FEB17:00:00:00,01001060686,Yes,Negative,205005527
18FEB17:00:00:00,01001060888,Yes,Negative,211385767
17JAN17:00:00:00,01001060891,Yes,Negative,404879663
20JAN17:00:00:00,01001060970,Yes,Negative,200010674
31JAN17:00:00:00,01001060996,No,,202051689
14JAN17:00:00:00,01001061202,Yes,Negative,202062132
18JAN17:00:00:00,01001061283,No,,402022253
22JAN17:00:00:00,01001061283,Yes,Negative,402022253
27JAN17:00:00:00,01001061405,No,,212153756
17FEB17:00:00:00,01001061468,Yes,Negative,206048533
26JAN17:00:00:00,01001061547,No,,212002580
02FEB17:00:00:00,01001061601,No,,202051689
28JAN17:00:00:00,01001061679,Yes,Negative,404866659
07FEB17:00:00:00,01001061717,Yes,Negative,204871781
07FEB17:00:00:00,01001061949,Yes,Negative,202463752
23FEB17:00:00:00,01001061966,Yes,Negative,404879663
28JAN17:00:00:00,01001062110,Yes,Positive,405049335
23JAN17:00:00:00,01001062200,Yes,Negative,401945605
21FEB17:00:00:00,01001062296,Yes,Negative,206120730
07JAN17:00:00:00,01001062298,Yes,Negative,202193544
18FEB17:00:00:00,01001062436,Yes,Positive,206063383
03JAN17:00:00:00,01001062468,No,,402022253
21JAN17:00:00:00,01001062483,Yes,Negative,404865981
18JAN17:00:00:00,01001062498,Yes,Negative,401945605
13FEB17:00:00:00,01001062567,Yes,Negative,204483380
16FEB17:00:00:00,01001062591,Yes,Negative,202051876
14FEB17:00:00:00,01001062828,Yes,Negative,404860566
17FEB17:00:00:00,01001062859,Yes,Negative,201990694
06FEB17:00:00:00,01001063034,No,,202051689
15JAN17:00:00:00,01001063049,No,,202051689
06JAN17:00:00:00,01001063115,Yes,Negative,211328703
11JAN17:00:00:00,01001063117,Yes,Negative,202051876
12JAN17:00:00:00,01001063147,Yes,Negative,201945271
19JAN17:00:00:00,01001063162,No,,202051689
11JAN17:00:00:00,01001063257,No,,202051689
16FEB17:00:00:00,01001063323,No,,202051689
28FEB17:00:00:00,01001063364,No,,202051689
28FEB17:00:00:00,01001063377,Yes,Negative,202193544
25FEB17:00:00:00,01001063378,Yes,Negative,202051876
01FEB17:00:00:00,01001063401,Yes,Negative,400153061
13JAN17:00:00:00,01001063544,Yes,Positive,200010674
28JAN17:00:00:00,01001063641,Yes,Negative,202463752
22FEB17:00:00:00,01001063648,No,,209446900
21JAN17:00:00:00,01001063704,Yes,Negative,202463752
20FEB17:00:00:00,01001063759,Yes,Negative,202193544
24FEB17:00:00:00,01001063775,No,,202051689
18FEB17:00:00:00,01001063839,No,,202051689
04FEB17:00:00:00,01001063853,Yes,Negative,204871781
20FEB17:00:00:00,01001064096,Yes,Negative,205218030
19JAN17:00:00:00,01001064105,Yes,Negative,202051876
20FEB17:00:00:00,01001064105,No,,202051689
21JAN17:00:00:00,01001064155,No,,204871594
27FEB17:00:00:00,01001064325,Yes,Negative,202051876
06FEB17:00:00:00,01001064339,Yes,Negative,200010674
25JAN17:00:00:00,01001064351,Yes,Negative,202193544
05JAN17:00:00:00,01001064453,No,,404896644
09FEB17:00:00:00,01001064458,Yes,Negative,204871594
14JAN17:00:00:00,01001064558,Yes,Negative,202051876
02FEB17:00:00:00,01001064559,Yes,Negative,404865981
31JAN17:00:00:00,01001064662,No,,202051689
19JAN17:00:00:00,01001064802,Yes,Negative,404941827
19JAN17:00:00:00,01001064914,Yes,Negative,202051876
31JAN17:00:00:00,01001064914,Yes,Negative,202051876
25JAN17:00:00:00,01001065098,Yes,Negative,402022253
23FEB17:00:00:00,01001065151,No,,204966858
16JAN17:00:00:00,01001065247,Yes,Negative,404879663
17JAN17:00:00:00,01001065247,No,,404945164
28JAN17:00:00:00,01001065289,No,,202051689
18FEB17:00:00:00,01001065471,Yes,Negative,202463752
20JAN17:00:00:00,01001065476,Yes,Negative,404866659
28JAN17:00:00:00,01001065525,Yes,Negative,202050840
15FEB17:00:00:00,01001065596,Yes,Negative,406131939
13JAN17:00:00:00,01001065732,Yes,Negative,211328703
17FEB17:00:00:00,01001065752,Yes,Negative,202463752
03FEB17:00:00:00,01001065769,Yes,Negative,201945271
22FEB17:00:00:00,01001065781,Yes,Negative,400153061
28JAN17:00:00:00,01001065794,Yes,Negative,205210467
04JAN17:00:00:00,01001065890,Yes,Negative,200010674
13JAN17:00:00:00,01001065927,Yes,Negative,404865981
27FEB17:00:00:00,01001065948,Yes,Negative,211385767
06FEB17:00:00:00,01001065966,Yes,Negative,202193544
10JAN17:00:00:00,01001065972,Yes,Negative,404866123
08JAN17:00:00:00,01001066037,No,,202051689
22JAN17:00:00:00,01001066059,Yes,Negative,201945271
31JAN17:00:00:00,01001066232,Yes,Negative,206063383
01FEB17:00:00:00,01001066484,Yes,Negative,202463752
01JAN17:00:00:00,01001066530,Yes,Negative,202051876
17FEB17:00:00:00,01001066663,Yes,Negative,204871594
08FEB17:00:00:00,01001066878,Yes,Negative,405032806
20FEB17:00:00:00,01001066900,No,,202051689
07FEB17:00:00:00,01001066958,Yes,Negative,404879663
05JAN17:00:00:00,01001066967,No,,404908043
31JAN17:00:00:00,01001067060,Yes,Negative,200010674
27JAN17:00:00:00,01001067075,Yes,Negative,206063383
27JAN17:00:00:00,01001067159,Yes,Negative,205218030
11FEB17:00:00:00,01001067219,Yes,Negative,417876711
17JAN17:00:00:00,01001067275,Yes,Negative,202193544
02JAN17:00:00:00,01001067281,Yes,Negative,401945605
24FEB17:00:00:00,01001067354,Yes,Negative,400115362
20FEB17:00:00:00,01001067426,Yes,Negative,205165453
27FEB17:00:00:00,01001067631,Yes,Positive,205210467
08FEB17:00:00:00,01001067644,Yes,Negative,203827608
14JAN17:00:00:00,01001067660,Yes,Negative,202463752
18FEB17:00:00:00,01001067709,Yes,Negative,205218030
24FEB17:00:00:00,01001067764,Yes,Negative,212153756
10FEB17:00:00:00,01001067785,Yes,Negative,405018831
05FEB17:00:00:00,01001067876,Yes,Negative,203827608
12FEB17:00:00:00,01001067938,No,,212002580
23FEB17:00:00:00,01001068100,Yes,Negative,203827608
01JAN17:00:00:00,01001068199,Yes,Negative,404866123
20FEB17:00:00:00,01001068260,Yes,Negative,404404042
05JAN17:00:00:00,01001068387,No,,202051689
05FEB17:00:00:00,01001068422,Yes,Negative,205165453
07JAN17:00:00:00,01001068546,Yes,Negative,400115362
24JAN17:00:00:00,01001068556,Yes,Negative,404866123
22FEB17:00:00:00,01001068570,Yes,Negative,211328703
10FEB17:00:00:00,01001068961,No,,212153756
24JAN17:00:00:00,01001069081,Yes,Negative,205218030
13JAN17:00:00:00,01001069149,Yes,Negative,204483380
27JAN17:00:00:00,01001069202,Yes,Negative,202463752
13JAN17:00:00:00,01001069220,Yes,Negative,202463752
03FEB17:00:00:00,01001069224,Yes,Negative,204955076
11JAN17:00:00:00,01001069242,Yes,Negative,212841424
27JAN17:00:00:00,01001069353,Yes,Negative,404854485
05JAN17:00:00:00,01001069423,Yes,Negative,401946784
28FEB17:00:00:00,01001069423,Yes,Positive,205210467
25JAN17:00:00:00,01001069508,Yes,Negative,202463752
14FEB17:00:00:00,01001069622,Yes,Negative,201945271
24JAN17:00:00:00,01001069665,Yes,Negative,404865981
17FEB17:00:00:00,01001069665,Yes,Negative,405018831
13JAN17:00:00:00,01001069680,Yes,Negative,202051876
14FEB17:00:00:00,01001069941,Yes,Negative,203827608
21JAN17:00:00:00,01001070055,Yes,Positive,205250618
27FEB17:00:00:00,01001070094,Yes,Negative,404865981
12JAN17:00:00:00,01001070237,No,,202051689
27JAN17:00:00:00,01001070370,Yes,Negative,202453987
25JAN17:00:00:00,01001070398,Yes,Negative,200010674
08FEB17:00:00:00,01001070558,Yes,Negative,211328703
17FEB17:00:00:00,01001070597,Yes,Negative,206120730
27JAN17:00:00:00,01001070604,Yes,Negative,202463752
29JAN17:00:00:00,01001070809,No,,202051689
26FEB17:00:00:00,01001070854,Yes,Negative,202051876
16JAN17:00:00:00,01001070919,Yes,Negative,211328703
14FEB17:00:00:00,01001070993,Yes,Negative,202463752
29JAN17:00:00:00,01001071497,Yes,Negative,202453987
28FEB17:00:00:00,01001071552,No,,202051689
28FEB17:00:00:00,01001071620,No,,202051689
16FEB17:00:00:00,01001071623,Yes,Negative,211385767
10JAN17:00:00:00,01001072228,Yes,Negative,404879663
03JAN17:00:00:00,01001072311,Yes,Negative,202051876
18FEB17:00:00:00,01001072321,No,,202051689
28FEB17:00:00:00,01001072441,No,,202051689
06JAN17:00:00:00,01001072586,Yes,Negative,405069474
19FEB17:00:00:00,01001072588,No,,211328703
20FEB17:00:00:00,01001072603,No,,202051689
23FEB17:00:00:00,01001072758,No,,202051689
11JAN17:00:00:00,01001072815,Yes,Negative,202172139
30JAN17:00:00:00,01001072815,Yes,Negative,202050840
20JAN17:00:00:00,01001072878,Yes,Negative,211385767
27JAN17:00:00:00,01001072889,Yes,Negative,404866123
21JAN17:00:00:00,01001072977,Yes,Negative,405032806
03FEB17:00:00:00,01001073008,Yes,Negative,202463752
27JAN17:00:00:00,01001073033,Yes,Negative,404879663
26JAN17:00:00:00,01001073036,Yes,Negative,212002580
23FEB17:00:00:00,01001073042,Yes,Negative,203827608
27FEB17:00:00:00,01001073042,Yes,Negative,202193544
06JAN17:00:00:00,01001073195,Yes,Negative,211385767
10JAN17:00:00:00,01001073197,No,,212153756
17FEB17:00:00:00,01001073221,No,,209446900
03FEB17:00:00:00,01001073250,Yes,Negative,202051876
13FEB17:00:00:00,01001073335,No,,402022253
12JAN17:00:00:00,01001073351,Yes,Negative,203827608
26JAN17:00:00:00,01001073430,Yes,Negative,404866123
13FEB17:00:00:00,01001073441,No,,202051689
24JAN17:00:00:00,01001073482,Yes,Positive,400153061
08JAN17:00:00:00,01001073504,No,,202051689
15JAN17:00:00:00,01001073708,Yes,Negative,400153061
22FEB17:00:00:00,01001073708,No,,400153061
15FEB17:00:00:00,01001073940,Yes,Negative,211385767
27JAN17:00:00:00,01001073961,Yes,Negative,206063383
28JAN17:00:00:00,01001074136,Yes,Negative,202051876
24FEB17:00:00:00,01001074276,Yes,Negative,201945271
24JAN17:00:00:00,01001074291,Yes,Negative,201945271
07FEB17:00:00:00,01001074373,Yes,Negative,404869567
22FEB17:00:00:00,01001074424,No,,202051689
26JAN17:00:00:00,01001074504,Yes,Negative,211328703
03JAN17:00:00:00,01001074584,Yes,Negative,205218030
12JAN17:00:00:00,01001074756,Yes,Negative,404404042
22JAN17:00:00:00,01001074774,No,,202051689
24JAN17:00:00:00,01001074880,Yes,Negative,201945271
18JAN17:00:00:00,01001074933,Yes,Negative,202463752
22FEB17:00:00:00,01001074937,Yes,Negative,200209103
03JAN17:00:00:00,01001075122,Yes,Negative,211385767
28FEB17:00:00:00,01001075231,Yes,Negative,203855532
12FEB17:00:00:00,01001075536,Yes,Negative,404413005
01FEB17:00:00:00,01001075633,No,,202051689
13FEB17:00:00:00,01001075702,No,,402022253
27JAN17:00:00:00,01001075734,Yes,Negative,202463752
19JAN17:00:00:00,01001076128,Yes,Negative,404941827
24JAN17:00:00:00,01001076209,Yes,Negative,405049335
28JAN17:00:00:00,01001076458,Yes,Negative,405018831
13FEB17:00:00:00,01001076458,Yes,Positive,212153756
12JAN17:00:00:00,01001076602,Yes,Negative,202172139
28JAN17:00:00:00,01001076861,Yes,Negative,404404042
04FEB17:00:00:00,01001076936,Yes,Negative,205165453
07FEB17:00:00:00,01001077066,Yes,Negative,206063383
15FEB17:00:00:00,01001077070,Yes,Negative,406131939
31JAN17:00:00:00,01001077180,Yes,Negative,405049335
18FEB17:00:00:00,01001077202,No,,212153756
26JAN17:00:00:00,01001077228,Yes,Negative,206120730
20JAN17:00:00:00,01001077267,Yes,Negative,200010022
10FEB17:00:00:00,01001077307,Yes,Negative,202463752
25JAN17:00:00:00,01001077384,Yes,Negative,201945271
05JAN17:00:00:00,01001077513,Yes,Negative,205218030
24JAN17:00:00:00,01001077532,Yes,Negative,202051876
31JAN17:00:00:00,01001077532,Yes,Negative,205250618
01JAN17:00:00:00,01001077754,Yes,Negative,400153061
22FEB17:00:00:00,01001077784,Yes,Negative,404866123
13FEB17:00:00:00,01001078041,Yes,Negative,404865981
17JAN17:00:00:00,01001078135,Yes,Negative,202463752
19FEB17:00:00:00,01001078258,Yes,Negative,200010674
08FEB17:00:00:00,01001078446,Yes,Negative,205218030
30JAN17:00:00:00,01001078453,No,,202051689
20JAN17:00:00:00,01001078466,No,,202051689
11JAN17:00:00:00,01001078472,Yes,Negative,202453987
04FEB17:00:00:00,01001078478,Yes,Negative,205210467
07FEB17:00:00:00,01001078478,Yes,Negative,205210467
24FEB17:00:00:00,01001078513,Yes,Negative,202907970
20JAN17:00:00:00,01001078517,Yes,Negative,202193544
09FEB17:00:00:00,01001078539,Yes,Negative,404467019
01JAN17:00:00:00,01001078630,Yes,Negative,203827608
23JAN17:00:00:00,01001078801,Yes,Negative,202050840
12JAN17:00:00:00,01001078994,Yes,Negative,200010674
25FEB17:00:00:00,01001079033,Yes,Negative,404866123
09FEB17:00:00:00,01001079332,Yes,Negative,218071681
09FEB17:00:00:00,01001079465,Yes,Negative,211328703
04FEB17:00:00:00,01001079506,Yes,Negative,416289947
13FEB17:00:00:00,01001079929,Yes,Negative,218064699
12FEB17:00:00:00,01001079964,Yes,Negative,204871594
27JAN17:00:00:00,01001079978,Yes,Negative,201945271
11FEB17:00:00:00,01001079998,Yes,Negative,202193544
24JAN17:00:00:00,01001080003,Yes,Negative,404854485
27JAN17:00:00:00,01001080429,Yes,Negative,204923262
15FEB17:00:00:00,01001080499,Yes,Negative,202193544
06JAN17:00:00:00,01001080557,Yes,Negative,212693487
25FEB17:00:00:00,01001080670,Yes,Negative,405018831
26FEB17:00:00:00,01001080779,Yes,Negative,404866123
05JAN17:00:00:00,01001080885,Yes,Negative,202193544
23JAN17:00:00:00,01001080885,Yes,Negative,404981622
20FEB17:00:00:00,01001081000,Yes,Negative,205165453
09FEB17:00:00:00,01001081002,No,,404896644
10JAN17:00:00:00,01001081200,Yes,Negative,211385767
10FEB17:00:00:00,01001081284,Yes,Negative,404866123
23JAN17:00:00:00,01001081552,Yes,Negative,202193544
21JAN17:00:00:00,01001081624,Yes,Negative,202193544
11FEB17:00:00:00,01001081722,Yes,Negative,404896644
07JAN17:00:00:00,01001081746,Yes,Negative,405064594
13FEB17:00:00:00,01001081796,Yes,Negative,201945271
09FEB17:00:00:00,01001081801,Yes,Negative,404896644
10FEB17:00:00:00,01001081948,Yes,Negative,404854485
17JAN17:00:00:00,01001081998,Yes,Negative,203827608
01FEB17:00:00:00,01001082065,Yes,Negative,404866123
02JAN17:00:00:00,01001082219,Yes,Negative,404865981
12FEB17:00:00:00,01001082267,Yes,Negative,404879663
05FEB17:00:00:00,01001082294,Yes,Negative,404404042
19JAN17:00:00:00,01001082424,Yes,Negative,404865981
17JAN17:00:00:00,01001082484,Yes,Negative,212002580
18FEB17:00:00:00,01001082890,No,,404896644
13JAN17:00:00:00,01001082974,Yes,Negative,203827608
25JAN17:00:00:00,01001083061,Yes,Negative,225368330
16JAN17:00:00:00,01001083173,Yes,Negative,404907730
10FEB17:00:00:00,01001083196,Yes,Negative,202463752
20JAN17:00:00:00,01001083394,Yes,Negative,211385767
30JAN17:00:00:00,01001083466,Yes,Negative,404866123
28JAN17:00:00:00,01001083546,Yes,Negative,211385767
23JAN17:00:00:00,01001083565,No,,202051689
01FEB17:00:00:00,01001084063,Yes,Negative,400115362
18JAN17:00:00:00,01001084143,Yes,Negative,200006536
13JAN17:00:00:00,01001084178,Yes,Negative,205218030
14FEB17:00:00:00,01001084330,Yes,Negative,202193544
17FEB17:00:00:00,01001084332,Yes,Negative,404467019
07FEB17:00:00:00,01001084472,Yes,Negative,404514762
16FEB17:00:00:00,01001084496,Yes,Negative,404896644
20JAN17:00:00:00,01001084607,Yes,Negative,212841424
13JAN17:00:00:00,01001084666,Yes,Negative,200010674
12JAN17:00:00:00,01001084693,Yes,Negative,202463752
27JAN17:00:00:00,01001084737,Yes,Negative,200010674
10JAN17:00:00:00,01001084790,Yes,Negative,204420493
05FEB17:00:00:00,01001084863,Yes,Negative,217879259
31JAN17:00:00:00,01001084995,Yes,Negative,404866123
02FEB17:00:00:00,01001085034,Yes,Negative,202051876
18FEB17:00:00:00,01001085053,Yes,Negative,404404042
21JAN17:00:00:00,01001085188,Yes,Negative,204483380
11FEB17:00:00:00,01001085188,No,,204483380
25FEB17:00:00:00,01001085190,Yes,Negative,404865981
01FEB17:00:00:00,01001085191,Yes,Negative,404866123
15FEB17:00:00:00,01001085227,No,,202051689
28JAN17:00:00:00,01001085310,Yes,Negative,202463752
10FEB17:00:00:00,01001085360,Yes,Negative,406131939
10JAN17:00:00:00,01001085368,No,,209446900
09FEB17:00:00:00,01001085475,No,,404865981
08JAN17:00:00:00,01001085587,Yes,Negative,211385767
17FEB17:00:00:00,01001085662,Yes,Negative,211328703
27JAN17:00:00:00,01001085780,Yes,Negative,404866123
15JAN17:00:00:00,01001085951,Yes,Negative,404896644
04FEB17:00:00:00,01001085977,Yes,Negative,404866123
14FEB17:00:00:00,01001086206,Yes,Negative,404854485
22FEB17:00:00:00,01001086386,Yes,Negative,404866123
20FEB17:00:00:00,01001086466,Yes,Negative,202193544
15JAN17:00:00:00,01001086522,No,,204871594
10FEB17:00:00:00,01001086551,No,,212153756
10FEB17:00:00:00,01001086602,Yes,Negative,212798070
25FEB17:00:00:00,01001086654,Yes,Negative,404879663
11FEB17:00:00:00,01001086676,No,,202051689
21FEB17:00:00:00,01001086686,No,,204420493
17JAN17:00:00:00,01001086843,Yes,Negative,202463752
23JAN17:00:00:00,01001086878,Yes,Negative,202193544
04FEB17:00:00:00,01001087057,Yes,Negative,202463752
24JAN17:00:00:00,01001087157,Yes,Negative,200010022
24FEB17:00:00:00,01001087192,Yes,Negative,202377178
09JAN17:00:00:00,01001087280,No,,405064594
11JAN17:00:00:00,01001087290,Yes,Negative,405064594
17FEB17:00:00:00,01001087516,Yes,Negative,404866123
07FEB17:00:00:00,01001087517,Yes,Negative,404908043
27FEB17:00:00:00,01001088179,Yes,Negative,201945271
09JAN17:00:00:00,01001088295,Yes,Negative,218064699
12FEB17:00:00:00,01001088451,Yes,Negative,200010022
09JAN17:00:00:00,01001088568,No,,202051689
03FEB17:00:00:00,01001088606,Yes,Negative,404896644
09FEB17:00:00:00,01001088623,Yes,Negative,404467019
19JAN17:00:00:00,01001088868,Yes,Negative,202193544
24JAN17:00:00:00,01001088868,Yes,Negative,202193544
10FEB17:00:00:00,01001088896,Yes,Negative,401956433
20JAN17:00:00:00,01001088903,No,,402022253
18FEB17:00:00:00,01001088933,Yes,Negative,202377178
10FEB17:00:00:00,01001088944,Yes,Negative,404866123
31JAN17:00:00:00,01001089019,Yes,Negative,201945271
14FEB17:00:00:00,01001089049,Yes,Negative,211328703
28FEB17:00:00:00,01001089211,No,Negative,404866123
18FEB17:00:00:00,01001089241,Yes,Negative,204871781
25FEB17:00:00:00,01001089265,Yes,Negative,205210467
01FEB17:00:00:00,01001089270,Yes,Negative,204927543
03FEB17:00:00:00,01001089277,Yes,Negative,202463752
13FEB17:00:00:00,01001089348,Yes,Negative,211328703
03FEB17:00:00:00,01001089518,Yes,Negative,404413005
27JAN17:00:00:00,01001089527,Yes,Negative,203827608
05JAN17:00:00:00,01001089553,No,,202051689
21JAN17:00:00:00,01001089677,No,,202051689
23FEB17:00:00:00,01001089701,No,,202051689
16FEB17:00:00:00,01001089803,Yes,Negative,203827608
13FEB17:00:00:00,01001089901,No,,209446900
19FEB17:00:00:00,01001089908,Yes,Negative,202193544
04FEB17:00:00:00,01001089930,Yes,Negative,404404042
26JAN17:00:00:00,01001089955,Yes,Negative,201945271
19FEB17:00:00:00,01001089968,No,,202051689
11FEB17:00:00:00,01001090054,Yes,Negative,204923262
12FEB17:00:00:00,01001090089,Yes,Negative,204923262
20FEB17:00:00:00,01001090186,No,,202051689
22FEB17:00:00:00,01001090186,No,,202051689
24FEB17:00:00:00,01001090280,Yes,Negative,404941827
15FEB17:00:00:00,01001090350,Yes,Negative,404865981
05JAN17:00:00:00,01001090357,Yes,Negative,204923262
06JAN17:00:00:00,01001090560,Yes,Negative,204483380
27FEB17:00:00:00,01001090695,Yes,Negative,404865981
22FEB17:00:00:00,01001090702,Yes,Negative,211385767
04FEB17:00:00:00,01001090743,Yes,Negative,202463752
01FEB17:00:00:00,01001090826,Yes,Negative,404896644
18JAN17:00:00:00,01001090888,No,,404896644
14JAN17:00:00:00,01001090926,No,,212153756
26JAN17:00:00:00,01001091105,Yes,Negative,244969370
14JAN17:00:00:00,01001091346,Yes,Negative,202463752
23FEB17:00:00:00,01001091406,Yes,Negative,200010022
28FEB17:00:00:00,01001091460,Yes,Negative,400153061
21JAN17:00:00:00,01001091636,Yes,Negative,216315690
25JAN17:00:00:00,01001091654,Yes,Negative,205210467
02FEB17:00:00:00,01001091654,No,,205210467
22FEB17:00:00:00,01001091675,Yes,Negative,204927543
02JAN17:00:00:00,01001091733,Yes,Negative,200010674
12JAN17:00:00:00,01001091772,No,,404896644
14FEB17:00:00:00,01001091809,No,,202051689
11FEB17:00:00:00,01001091913,Yes,Negative,202193544
26FEB17:00:00:00,01001092057,Yes,Negative,201945271
13FEB17:00:00:00,01001092074,Yes,Negative,218064699
08JAN17:00:00:00,01001092213,Yes,Negative,200010674
31JAN17:00:00:00,01001092265,No,,404896644
05FEB17:00:00:00,01001092332,No,,212002580
10JAN17:00:00:00,01001092415,Yes,Negative,202463752
06JAN17:00:00:00,01001092868,Yes,Negative,404866123
21FEB17:00:00:00,01001092994,Yes,Negative,200010674
11FEB17:00:00:00,01001093036,Yes,Negative,404866123
12JAN17:00:00:00,01001093042,No,,401956433
27FEB17:00:00:00,01001093395,Yes,Negative,205210467
28JAN17:00:00:00,01001093414,No,Negative,404945217
16JAN17:00:00:00,01001093689,Yes,Negative,201945271
18JAN17:00:00:00,01001093926,No,Negative,200007143
25JAN17:00:00:00,01001094086,Yes,Negative,202050840
14JAN17:00:00:00,01001094258,No,,404945164
14JAN17:00:00:00,01001094490,Yes,Negative,205210467
27JAN17:00:00:00,01001094490,Yes,Negative,404514762
06JAN17:00:00:00,01001094508,Yes,Negative,211328703
18FEB17:00:00:00,01001094509,Yes,Negative,404413005
27FEB17:00:00:00,01001094544,Yes,Negative,204970022
18JAN17:00:00:00,01001094886,Yes,Negative,404879663
01FEB17:00:00:00,01001094901,Yes,Negative,202463752
12FEB17:00:00:00,01001095005,Yes,Positive,211328703
27JAN17:00:00:00,01001095059,Yes,Negative,404866123
30JAN17:00:00:00,01001095103,Yes,Negative,205218030
20JAN17:00:00:00,01001095120,No,,404896644
05FEB17:00:00:00,01001095369,Yes,Negative,404854485
18JAN17:00:00:00,01001095390,Yes,Negative,206120730
24FEB17:00:00:00,01001095481,Yes,Negative,404865981
03FEB17:00:00:00,01001095496,No,,202051689
10JAN17:00:00:00,01001095841,Yes,Negative,200010022
02FEB17:00:00:00,01001095908,Yes,Negative,201945271
09JAN17:00:00:00,01001095911,Yes,Negative,202193544
18FEB17:00:00:00,01001096025,Yes,Negative,200010022
24JAN17:00:00:00,01001096419,Yes,Negative,200010674
10FEB17:00:00:00,01001096459,Yes,Negative,202172139
;;;;

 

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

As @KurtBremser points out, it does not make sense to have id missing, so I look away from these.

 

proc sql;
	create table want as 
	select *
	from JANFEB.Multivisits
	where id NE '' and HCVresult NE ''
	group by id
	having count(distinct HCVresult) > 1
	order by id, dcdeathdate;
quit;

 

View solution in original post

4 REPLIES 4
byeh2017
Quartz | Level 8

Sorry, try this instead.

 

data JANFEB.MULTIVISITS;
  infile datalines dsd truncover;
  input dcdeathdate:DATETIME16. id:$24. HCVScreening:$9. HCVresult:$27. _OrganizationTax:$9.;
datalines4;
06FEB17:00:00:00,ც01347652,Yes,Negative,211385767
20JAN17:00:00:00,უ11602098,Yes,Negative,211385767
20FEB17:00:00:00,პ 1960105,Yes,Negative,211385767
16FEB17:00:00:00,ესპანეთი,Yes,Negative,211385767
30JAN17:00:00:00,აზერ4647829,Yes,Negative,406055879
06JAN17:00:00:00,ucxoeli,Yes,Negative,211385767
26FEB17:00:00:00,ucxoeli,Yes,Negative,211385767
24FEB17:00:00:00,ucnobi,Yes,Negative,211385767
14JAN17:00:00:00,arisucxoeli,Yes,Negative,211385767
28JAN17:00:00:00,arisucxoeli,Yes,Negative,211385767
28FEB17:00:00:00,arisucxoeli,Yes,Negative,211385767
09FEB17:00:00:00,"ar aris saq ,moqalqe",Yes,Negative,211385767
21JAN17:00:00:00,afxazeTismoqalaqe,Yes,Negative,211385767
27JAN17:00:00:00,P4689991,Yes,Negative,211385767
26FEB17:00:00:00,P4689991,Yes,Negative,211385767
13JAN17:00:00:00,P4171238,Yes,Negative,211385767
11FEB17:00:00:00,P4124336,Yes,Negative,211385767
24FEB17:00:00:00,P3724548,Yes,Negative,211385767
16FEB17:00:00:00,P3185235,Yes,Negative,211385767
17JAN17:00:00:00,C13607977,Yes,Negative,211385767
02FEB17:00:00:00,BA1266488,Yes,Negative,211385767
10FEB17:00:00:00,BA1266488,Yes,Negative,211385767
26JAN17:00:00:00,AP0665798,Yes,Negative,211385767
19JAN17:00:00:00,AN0558236,Yes,Negative,211385767
16JAN17:00:00:00,AN0518392,Yes,Negative,211385767
16JAN17:00:00:00,AN0254322,Yes,Negative,211385767
23FEB17:00:00:00,AN0244976,Yes,Negative,211385767
19JAN17:00:00:00,AM0840796,Yes,Negative,211385767
14JAN17:00:00:00,AM0734343,Yes,Negative,211385767
19JAN17:00:00:00,AM0667830,Yes,Negative,211385767
23JAN17:00:00:00,AM0649811,Yes,Negative,211385767
09FEB17:00:00:00,AM0467067,Yes,Negative,211385767
25JAN17:00:00:00,AK0688038,Yes,Negative,406055879
26JAN17:00:00:00,AH0691827,Yes,Negative,211385767
14JAN17:00:00:00,AH0483893,Yes,Negative,211385767
03FEB17:00:00:00,AF0735629,Yes,Negative,211385767
20JAN17:00:00:00,AF0411892,Yes,Negative,211385767
06FEB17:00:00:00,9015162946,Yes,Negative,201945271
27FEB17:00:00:00,75738000083,Yes,Negative,217879259
11FEB17:00:00:00,75711000023,Yes,Negative,404866123
04FEB17:00:00:00,75611000011,Yes,Negative,412682501
22JAN17:00:00:00,75341000001,Yes,Negative,400115362
28JAN17:00:00:00,75147000020,Yes,Negative,404907730
19JAN17:00:00:00,75137000004,Yes,Negative,245441552
13JAN17:00:00:00,75122000461,Yes,Negative,201954242
23JAN17:00:00:00,75122000461,No,,211328703
16JAN17:00:00:00,75111000020,No,,404896644
21JAN17:00:00:00,73 0505895,Yes,Negative,404514762
02FEB17:00:00:00,73 0505895,Yes,Negative,404514762
27FEB17:00:00:00,65955000228,Yes,Negative,231184232
18FEB17:00:00:00,65941001098,Yes,Negative,202463752
12JAN17:00:00:00,65908002543,Yes,Negative,202463752
23JAN17:00:00:00,65902014049,Yes,Negative,404879663
10JAN17:00:00:00,65901002274,No,,404865981
25JAN17:00:00:00,65809000131,Yes,Negative,216296639
20JAN17:00:00:00,65808002231,No,,404865963
18JAN17:00:00:00,65741000816,Yes,Negative,404865981
20JAN17:00:00:00,65714003280,Yes,Negative,206063383
25JAN17:00:00:00,65714003229,Yes,Negative,205210467
20JAN17:00:00:00,65714002992,No,,212153756
01FEB17:00:00:00,65708002618,No,,412682501
17FEB17:00:00:00,65609000206,No,,406055879
16FEB17:00:00:00,65541000842,Yes,Negative,205288295
01JAN17:00:00:00,65523000742,Yes,Negative,400115362
15FEB17:00:00:00,65509000224,Yes,Negative,404866123
14FEB17:00:00:00,65452000001,No,,412682501
24JAN17:00:00:00,65441001267,Yes,Negative,211328703
14FEB17:00:00:00,65441000999,Yes,Negative,412682501
06JAN17:00:00:00,65414003333,Yes,Negative,231169874
24FEB17:00:00:00,65408002382,No,,212841424
06FEB17:00:00:00,65314003181,Yes,Negative,211385767
04JAN17:00:00:00,65241001403,No,,406055879
08JAN17:00:00:00,65128000061,No,,204871594
11JAN17:00:00:00,65103001069,Yes,Negative,200010674
18JAN17:00:00:00,65103001069,Yes,Negative,202249968
21FEB17:00:00:00,65041000563,Yes,Negative,412682066
03JAN17:00:00:00,65041000414,Yes,Negative,404866123
07FEB17:00:00:00,65041000247,Yes,Negative,416289947
24FEB17:00:00:00,65023000292,Yes,Negative,416289947
07JAN17:00:00:00,65023000177,No,,404865963
19FEB17:00:00:00,65014002810,Yes,Positive,202948819
23FEB17:00:00:00,65014002333,No,,202948819
24FEB17:00:00:00,65014001733,Yes,Negative,401956433
12JAN17:00:00:00,65014001333,Yes,Negative,200010674
31JAN17:00:00:00,65014001109,Yes,Positive,404476205
10JAN17:00:00:00,65008002099,No,,412682501
17FEB17:00:00:00,65008002070,Yes,Negative,204871781
28JAN17:00:00:00,65008002009,Yes,Negative,205210467
10JAN17:00:00:00,65008001909,No,,412682501
28FEB17:00:00:00,65008001778,Yes,Negative,211385767
21FEB17:00:00:00,65008001385,Yes,Negative,202463752
03FEB17:00:00:00,65008001072,Yes,Negative,406131939
25FEB17:00:00:00,65008000855,Yes,Negative,203827608
24JAN17:00:00:00,65008000380,Yes,Negative,206047712
03FEB17:00:00:00,65008000368,No,,400115362
03FEB17:00:00:00,65008000212,No,Negative,404907730
01FEB17:00:00:00,65008000202,Yes,Negative,405032806
19JAN17:00:00:00,65008000008,Yes,Negative,201945271
25FEB17:00:00:00,65004000338,Yes,Negative,404854485
14FEB17:00:00:00,65002013151,No,,402022253
18FEB17:00:00:00,65002013151,Yes,Negative,402022253
10JAN17:00:00:00,65002012912,Yes,Negative,202050840
21JAN17:00:00:00,65002012697,No,,204871594
03FEB17:00:00:00,65002012697,No,,404896644
19JAN17:00:00:00,65002012584,Yes,Negative,203827608
29JAN17:00:00:00,65002012136,Yes,Negative,412682066
09JAN17:00:00:00,65002012059,Yes,Negative,203827608
05JAN17:00:00:00,65002011739,Yes,Negative,404476205
12FEB17:00:00:00,65002011532,Yes,Negative,212685414
25JAN17:00:00:00,65002011151,Yes,Negative,405069474
03JAN17:00:00:00,65002010872,Yes,Negative,212691354
08JAN17:00:00:00,65002010783,No,,202051689
06JAN17:00:00:00,65002010544,Yes,Negative,400123647
17FEB17:00:00:00,65002010459,Yes,Negative,212806766
25JAN17:00:00:00,65002010232,No,,212153756
10FEB17:00:00:00,65002010232,Yes,Positive,405018831
24JAN17:00:00:00,65002009866,Yes,Negative,212672080
20FEB17:00:00:00,65002009449,Yes,Negative,211385767
23FEB17:00:00:00,65002009335,Yes,Positive,404869567
04JAN17:00:00:00,65002008923,Yes,Negative,404879663
20JAN17:00:00:00,65002008744,Yes,Positive,202193544
12JAN17:00:00:00,65002008542,No,,202051689
16JAN17:00:00:00,65002008495,Yes,Negative,212841424
06JAN17:00:00:00,65002008122,Yes,Negative,231169507
10FEB17:00:00:00,65002008014,Yes,Negative,211385767
04FEB17:00:00:00,65002007581,Yes,Negative,402006592
21FEB17:00:00:00,65002007520,Yes,Negative,406131939
10FEB17:00:00:00,65002007511,Yes,Negative,206120730
21FEB17:00:00:00,65002006633,Yes,Negative,202051689
05FEB17:00:00:00,65002006208,Yes,Positive,404476205
20FEB17:00:00:00,65002005336,Yes,Negative,211385767
09FEB17:00:00:00,65002005109,Yes,Negative,203827608
11JAN17:00:00:00,65002005018,Yes,Negative,405049335
06FEB17:00:00:00,65002004855,Yes,Negative,204970022
03FEB17:00:00:00,65002004782,Yes,Negative,212672080
20FEB17:00:00:00,65002004015,Yes,Negative,202051876
25JAN17:00:00:00,65002003037,Yes,Negative,404941827
15JAN17:00:00:00,65002002630,Yes,Positive,404907730
19JAN17:00:00:00,65002002423,Yes,Negative,404514762
25FEB17:00:00:00,65002002111,Yes,Negative,205250618
10JAN17:00:00:00,65002001819,Yes,Negative,202442981
16JAN17:00:00:00,65002001616,No,,202051689
31JAN17:00:00:00,65002001247,Yes,Negative,206047464
21FEB17:00:00:00,65002001193,Yes,Negative,202051876
16JAN17:00:00:00,65002001180,Yes,Negative,212685423
18JAN17:00:00:00,65002000404,Yes,Negative,212002580
20JAN17:00:00:00,65002000360,Yes,Negative,404866123
26JAN17:00:00:00,65001001052,Yes,Negative,202463752
27JAN17:00:00:00,65001000908,No,,404896644
17JAN17:00:00:00,62909014878,Yes,Negative,212841424
10JAN17:00:00:00,62909014828,Yes,Negative,205218030
24JAN17:00:00:00,62909011945,Yes,Negative,203827608
23JAN17:00:00:00,62909010597,No,,245428434
28JAN17:00:00:00,62909009733,Yes,Negative,404476205
20FEB17:00:00:00,62909009263,Yes,Negative,405001466
06FEB17:00:00:00,62909008385,Yes,Negative,404908043
07FEB17:00:00:00,62909008385,Yes,Negative,202193544
30JAN17:00:00:00,62902023816,Yes,Positive,212153756
03FEB17:00:00:00,62902023816,Yes,Positive,202193544
14FEB17:00:00:00,62902023816,Yes,Positive,212153756
20JAN17:00:00:00,62902022968,No,,412682501
30JAN17:00:00:00,62902021941,No,,404896644
01FEB17:00:00:00,62902020223,No,,212002580
28FEB17:00:00:00,62902019998,No,,404896644
17JAN17:00:00:00,62902019218,No,,204871594
24JAN17:00:00:00,62902015217,No,,404896644
30JAN17:00:00:00,62902014720,Yes,Negative,404865981
21JAN17:00:00:00,62902014489,Yes,Negative,402022253
30JAN17:00:00:00,62902013462,Yes,Negative,211328703
01FEB17:00:00:00,62902013322,Yes,Negative,211385767
10JAN17:00:00:00,62902013152,Yes,Negative,400115362
29JAN17:00:00:00,62902012694,No,Negative,417876711
23JAN17:00:00:00,62902012594,Yes,Negative,404896644
15JAN17:00:00:00,62902011266,No,,239866542
09JAN17:00:00:00,62902009614,Yes,Negative,404865981
08FEB17:00:00:00,62902009344,Yes,Negative,404476205
21JAN17:00:00:00,62902008766,Yes,Negative,412682066
19JAN17:00:00:00,6287090,Yes,Negative,201945271
17JAN17:00:00:00,62809013908,Yes,Negative,404866123
06JAN17:00:00:00,62809013388,Yes,Negative,405064594
02JAN17:00:00:00,62809012991,No,,204871594
13FEB17:00:00:00,62809011603,Yes,Negative,404476205
01FEB17:00:00:00,62809009791,No,,212708239
01JAN17:00:00:00,62802023174,Yes,Positive,412682501
01FEB17:00:00:00,62802020171,Yes,Negative,405001466
02FEB17:00:00:00,62802018858,Yes,Negative,211328703
04JAN17:00:00:00,62802018108,Yes,Negative,404865981
24FEB17:00:00:00,62802010046,No,,404896644
18JAN17:00:00:00,62802008134,Yes,Negative,404865981
16FEB17:00:00:00,62780000293,No,Negative,205017505
08FEB17:00:00:00,62709012018,Yes,Negative,404467019
15FEB17:00:00:00,62709010953,Yes,Positive,215119182
18JAN17:00:00:00,62709010323,Yes,Negative,202463752
13JAN17:00:00:00,62702023572,Yes,Negative,400115362
20JAN17:00:00:00,62702023112,No,,209446900
14JAN17:00:00:00,62702022314,No,,412682501
10FEB17:00:00:00,62702018456,Yes,Negative,200010022
14FEB17:00:00:00,62702017318,Yes,Negative,202463752
26FEB17:00:00:00,62702016941,Yes,Negative,215119182
13FEB17:00:00:00,62702016681,Yes,Negative,404869567
;;;;
PeterClemmensen
Tourmaline | Level 20

As @KurtBremser points out, it does not make sense to have id missing, so I look away from these.

 

proc sql;
	create table want as 
	select *
	from JANFEB.Multivisits
	where id NE '' and HCVresult NE ''
	group by id
	having count(distinct HCVresult) > 1
	order by id, dcdeathdate;
quit;

 

byeh2017
Quartz | Level 8

Is there a way I can create an additional column called "Discreptype" that looks in the newly created dataset for the following:

 

For the associated ID

If the earliest entry of HCVresult is Negative and the last entry is Positive, discreptype ='1'

If the earliest entry of HCVresult is Positive and the last entry is Negative, discreptype='2'

If anything else, discreptype='3'

 

Thank you!

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 856 views
  • 1 like
  • 3 in conversation