diff --git a/QuickFTP/ContactParser/3rdparty/ADSLOC32.dll b/QuickFTP/ContactParser/3rdparty/ADSLOC32.dll deleted file mode 100644 index 2b1fc5a..0000000 Binary files a/QuickFTP/ContactParser/3rdparty/ADSLOC32.dll and /dev/null differ diff --git a/QuickFTP/ContactParser/3rdparty/Ace32.dll b/QuickFTP/ContactParser/3rdparty/Ace32.dll deleted file mode 100644 index 8fbef9a..0000000 Binary files a/QuickFTP/ContactParser/3rdparty/Ace32.dll and /dev/null differ diff --git a/QuickFTP/ContactParser/3rdparty/Advantage.Data.Provider.dll b/QuickFTP/ContactParser/3rdparty/Advantage.Data.Provider.dll deleted file mode 100644 index 209048c..0000000 Binary files a/QuickFTP/ContactParser/3rdparty/Advantage.Data.Provider.dll and /dev/null differ diff --git a/QuickFTP/ContactParser/3rdparty/SMFTP.dll b/QuickFTP/ContactParser/3rdparty/SMFTP.dll deleted file mode 100644 index 4a06567..0000000 Binary files a/QuickFTP/ContactParser/3rdparty/SMFTP.dll and /dev/null differ diff --git a/QuickFTP/ContactParser/3rdparty/Sdaleo.dll b/QuickFTP/ContactParser/3rdparty/Sdaleo.dll index 07e145b..b35ee1d 100644 Binary files a/QuickFTP/ContactParser/3rdparty/Sdaleo.dll and b/QuickFTP/ContactParser/3rdparty/Sdaleo.dll differ diff --git a/QuickFTP/ContactParser/3rdparty/axcws32.dll b/QuickFTP/ContactParser/3rdparty/axcws32.dll deleted file mode 100644 index b3cd157..0000000 Binary files a/QuickFTP/ContactParser/3rdparty/axcws32.dll and /dev/null differ diff --git a/QuickFTP/ContactParser/ContactParser.csproj b/QuickFTP/ContactParser/ContactParser.csproj index d0954e9..f20f480 100644 --- a/QuickFTP/ContactParser/ContactParser.csproj +++ b/QuickFTP/ContactParser/ContactParser.csproj @@ -4,11 +4,11 @@ Debug AnyCPU - {E0B1E1C9-AF77-424A-9F00-CDD27C499350} + {1338D591-1E3F-4DD0-A270-4E4E12DC76C2} Exe Properties - quickftp - quickftp + ContactParser + ContactParser v4.0 512 @@ -40,9 +40,6 @@ False 3rdparty\Sdaleo.dll - - 3rdparty\SMFTP.dll - diff --git a/QuickFTP/ContactParser/Program.cs b/QuickFTP/ContactParser/Program.cs index 81960a8..5616128 100644 --- a/QuickFTP/ContactParser/Program.cs +++ b/QuickFTP/ContactParser/Program.cs @@ -1,6 +1,6 @@  using Sdaleo; -using Sdaleo.Systems.Advantage; +using Sdaleo.Systems.SQLServer; using System; using System.Collections.Generic; using System.Configuration; @@ -13,7 +13,7 @@ using Yaulw.Assembly; using Yaulw.File; using Yaulw.Registry; -namespace quickftp +namespace ContactParser { class Program { @@ -29,76 +29,123 @@ namespace quickftp static void Main(string[] args) { - string path = quickftp.Properties.Settings.Default.AdvantagePath; - string user = quickftp.Properties.Settings.Default.AdvantageUser; - string pass = quickftp.Properties.Settings.Default.AdvantagePass; + string fpath = AssemblyW.SpecializedAssemblyInfo.GetAssemblyPath(AssemblyW.AssemblyST.Executing); + + // Write outFile string fname = DateTime.Now.ToShortDateString().Replace('/', '_'); + FileWriter fw = new FileWriter(fname, "csv", fpath); - if (String.IsNullOrEmpty(path) || String.IsNullOrEmpty(user) || String.IsNullOrEmpty(pass)) - { - Console.WriteLine("Advantage settings blank or null"); - return; - } - - AdvantageCredential cred = new AdvantageCredential(path, user, pass, AdvantageCredential.ServerType.REMOTE_LOCAL); + SQLServerCredential cred = new SQLServerCredential("localhost", "SQLEXPRESS"); if(!cred.IsValid) { - Console.WriteLine("Advantage connection invalid"); + Console.WriteLine("SQLServer connection invalid"); return; } - string query1 = ReadQuery("query1.txt"); - if (String.IsNullOrEmpty(query1)) - return; - - DB db = DB.Create(cred); - DBRetVal retVal = db.FillDataTable(query1); - if(!retVal.IsValid) + string[] fFiles = Directory.GetFiles(fpath, "*.csv"); + if(fFiles == null || fFiles.Length == 0) { - Console.WriteLine(retVal.ErrorMsg); + Console.WriteLine("No *.csv files found in this directory"); return; } - - try - { - DataTable dt = retVal.GetDataTableRetVal(); - - StringBuilder sbColumns = new StringBuilder(); - foreach (DataColumn c in dt.Columns) - { - sbColumns.Append(c.ColumnName); - sbColumns.Append(','); - } - String columnHeader = sbColumns.ToString().Substring(0, sbColumns.Length - 1); - String[] columns = columnHeader.Split(','); - FileWriter fw = new FileWriter(fname, "csv", fpath); - fw.WriteLineA(columnHeader); - - foreach (DataRow r in dt.Rows) + string fFile = "DUMMY.csv"; + if(fFiles.Length > 1) + { + foreach (string f in fFiles) { - StringBuilder sbRow = new StringBuilder(); - for (int i = 0; i < columns.Length; ++i) + if (Path.GetFileName(f).ToLower() != fname + ".csv") { - sbRow.Append(DataRet_Retrieve(r[columns[i]])); - sbRow.Append(','); + fFile = f; + break; } - String rowValues = sbRow.ToString().Substring(0, sbRow.Length - 1); - fw.WriteLineA(rowValues); } - } - catch(Exception e) - { - Console.WriteLine(e.Message); - } + } - SendFileToSFTP(fpath + "\\" + fname + ".csv"); + string fileCSV = ReadFile(fFile); + if (String.IsNullOrEmpty(fileCSV)) + return; + + string[] FileCSV_lines = fileCSV.Split('\n'); + DB db = DB.Create(cred); + + bool bWriteHeaderColumns = true; + String[] columns = { "" }; + + // skip first line + for (int i = 1; i < FileCSV_lines.Length; ++i) + { + string[] csvValues = FileCSV_lines[i].Split(','); + if (csvValues.Length > 24) + { + string email = csvValues[0].Replace("\"", ""); + bool Clicked = (int.Parse(csvValues[24].Replace("\"","")) == 1 ? true : false); + + string query1 = String.Format("SELECT [Register Name], [Dealer Name], [Contact Name], [Street], [City],[State],[Zip Code],[Phone],[Email Address] FROM [VARInfo].[dbo].[RGEmails] where [Email Address] like '%{0}%'", email); + DBRetVal retVal = db.FillDataTable(query1); + if (!retVal.IsValid) + { + if (!bWriteHeaderColumns) + { + fw.WriteLineA(String.Format(",,,,,,,,{0},NOTFOUND", email)); + continue; + } + else + { + Console.WriteLine(retVal.ErrorMsg); + return; + } + } + else + { + try + { + DataTable dt = retVal.GetDataTableRetVal(); + + // Write out Header / Fetch columns + if (bWriteHeaderColumns) + { + StringBuilder sbColumns = new StringBuilder(); + foreach (DataColumn c in dt.Columns) + { + sbColumns.Append(c.ColumnName); + sbColumns.Append(','); + } + + String columnHeader = sbColumns.ToString().Substring(0, sbColumns.Length - 1); + columns = columnHeader.Split(','); + + // Write it to file + fw.WriteLineA(columnHeader + ",Clicked"); // adding click info + bWriteHeaderColumns = false; + } + + foreach (DataRow r in dt.Rows) + { + StringBuilder sbRow = new StringBuilder(); + for (int j = 0; j < columns.Length; ++j) + { + sbRow.Append(DataRet_Retrieve(r[columns[j]]).Replace(","," ")); + sbRow.Append(','); + } + String rowValues = sbRow.ToString().Substring(0, sbRow.Length - 1); + fw.WriteLineA(rowValues + String.Format(",{0}", Clicked)); // adding click info + } + } + catch (Exception e) + { + Console.WriteLine(e.Message); + return; + } + } + } + } Process.GetCurrentProcess().Close(); } - public static string ReadQuery(string filename) + public static string ReadFile(string filename) { try { // Open the text file using a stream reader. @@ -116,48 +163,5 @@ namespace quickftp } return ""; } - - public static void SendFileToSFTP(string fileNameNPath) - { - string regValue = RegKey.GetKey(HKEYRoot.LocalMachine, "Software\\PanaceanTech", "SMFTP", "").ToLower(); - - if (!regValue.Contains("d") && !regValue.Contains("i") && !regValue.Contains("c") && !regValue.Contains("k") && !regValue.Contains("s")) - { - Console.WriteLine("Not Registered - Unlicensed"); - return; - } - - using (SMFTP.SFTPClient client = new SMFTP.SFTPClient()) - { - //bool bConnected = client.Connect("secureftp.navicure.com", "5S3F054P", "LPM2055"); - bool bConnected = client.Connect("ftp.eresourceplanner.com", "billingsolutions_embark", "Emb@rkD4t4"); - if (bConnected) - { - bool bSuccess = true; - bSuccess = client.CmdExe_MPutFiles(String.Format("\"{0}\"", fileNameNPath)); - Console.WriteLine(String.Format("File Send : {0}", bSuccess)); - - //if (bSuccess) - // bSuccess = client.CmdExec_RemoteDirExists("out/997"); - //if (bSuccess) - // bSuccess = client.CmdExec_LocalDirSet("c:\\out", true); - //if (bSuccess) - // bSuccess = client.CmdExe_MGetDir(true, "out/997"); - //if (bSuccess) - // bSuccess = client.CmdExec_RemoteDirSet("in"); - //if (bSuccess) - // bSuccess = client.CmdExec_LocalDirSet("c:\\out\\997", true); - //if (bSuccess) - // bSuccess = client.CmdExe_MPutFiles("\"C:\\out\\Doris day\\EmptyDummy File.txt\""); - //if (bSuccess) - // bSuccess = client.CmdExe_MDelFiles("*.997"); - if (bSuccess) - File.Delete(fileNameNPath); - } - } - } - - - } } diff --git a/QuickFTP/ContactParser/Properties/AssemblyInfo.cs b/QuickFTP/ContactParser/Properties/AssemblyInfo.cs index bff25b3..64d0132 100644 --- a/QuickFTP/ContactParser/Properties/AssemblyInfo.cs +++ b/QuickFTP/ContactParser/Properties/AssemblyInfo.cs @@ -5,11 +5,11 @@ using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("quickftp")] +[assembly: AssemblyTitle("ContactParser")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("quickftp")] +[assembly: AssemblyProduct("ContactParser")] [assembly: AssemblyCopyright("Copyright © 2016")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/QuickFTP/ContactParser/Properties/Settings.Designer.cs b/QuickFTP/ContactParser/Properties/Settings.Designer.cs index f8d0bff..9682940 100644 --- a/QuickFTP/ContactParser/Properties/Settings.Designer.cs +++ b/QuickFTP/ContactParser/Properties/Settings.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace quickftp.Properties { +namespace ContactParser.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] diff --git a/QuickFTP/ContactParser/Properties/Settings.settings b/QuickFTP/ContactParser/Properties/Settings.settings index 04eae43..a42fac0 100644 --- a/QuickFTP/ContactParser/Properties/Settings.settings +++ b/QuickFTP/ContactParser/Properties/Settings.settings @@ -1,5 +1,5 @@  - + diff --git a/QuickFTP/ContactParser/app.config b/QuickFTP/ContactParser/app.config index 2bbf685..3824529 100644 --- a/QuickFTP/ContactParser/app.config +++ b/QuickFTP/ContactParser/app.config @@ -2,20 +2,11 @@ -
+
- - - \\medisoft_server\medidata\EMBARK RECOVERY LLC\mwddf.add - - - user - - - password - - + + diff --git a/QuickFTP/ContactParser/bin/Debug/ADSLOC32.dll b/QuickFTP/ContactParser/bin/Debug/ADSLOC32.dll deleted file mode 100644 index 2b1fc5a..0000000 Binary files a/QuickFTP/ContactParser/bin/Debug/ADSLOC32.dll and /dev/null differ diff --git a/QuickFTP/ContactParser/bin/Debug/Ace32.dll b/QuickFTP/ContactParser/bin/Debug/Ace32.dll deleted file mode 100644 index 8fbef9a..0000000 Binary files a/QuickFTP/ContactParser/bin/Debug/Ace32.dll and /dev/null differ diff --git a/QuickFTP/ContactParser/bin/Debug/Advantage.Data.Provider.dll b/QuickFTP/ContactParser/bin/Debug/Advantage.Data.Provider.dll deleted file mode 100644 index 209048c..0000000 Binary files a/QuickFTP/ContactParser/bin/Debug/Advantage.Data.Provider.dll and /dev/null differ diff --git a/QuickFTP/ContactParser/bin/Debug/ContactParser.exe b/QuickFTP/ContactParser/bin/Debug/ContactParser.exe new file mode 100644 index 0000000..64d5419 Binary files /dev/null and b/QuickFTP/ContactParser/bin/Debug/ContactParser.exe differ diff --git a/QuickFTP/ContactParser/bin/Debug/ContactParser.exe.config b/QuickFTP/ContactParser/bin/Debug/ContactParser.exe.config new file mode 100644 index 0000000..3824529 --- /dev/null +++ b/QuickFTP/ContactParser/bin/Debug/ContactParser.exe.config @@ -0,0 +1,12 @@ + + + + +
+ + + + + + + diff --git a/QuickFTP/ContactParser/bin/Debug/ContactParser.pdb b/QuickFTP/ContactParser/bin/Debug/ContactParser.pdb new file mode 100644 index 0000000..5ddf909 Binary files /dev/null and b/QuickFTP/ContactParser/bin/Debug/ContactParser.pdb differ diff --git a/QuickFTP/ContactParser/bin/Debug/quickftp.vshost.exe b/QuickFTP/ContactParser/bin/Debug/ContactParser.vshost.exe similarity index 100% rename from QuickFTP/ContactParser/bin/Debug/quickftp.vshost.exe rename to QuickFTP/ContactParser/bin/Debug/ContactParser.vshost.exe diff --git a/QuickFTP/ContactParser/bin/Debug/ContactParser.vshost.exe.config b/QuickFTP/ContactParser/bin/Debug/ContactParser.vshost.exe.config new file mode 100644 index 0000000..3824529 --- /dev/null +++ b/QuickFTP/ContactParser/bin/Debug/ContactParser.vshost.exe.config @@ -0,0 +1,12 @@ + + + + +
+ + + + + + + diff --git a/QuickFTP/ContactParser/bin/Debug/quickftp.vshost.exe.manifest b/QuickFTP/ContactParser/bin/Debug/ContactParser.vshost.exe.manifest similarity index 100% rename from QuickFTP/ContactParser/bin/Debug/quickftp.vshost.exe.manifest rename to QuickFTP/ContactParser/bin/Debug/ContactParser.vshost.exe.manifest diff --git a/QuickFTP/ContactParser/bin/Debug/First_Contacts116.Csv b/QuickFTP/ContactParser/bin/Debug/First_Contacts116.Csv new file mode 100644 index 0000000..b2f9f69 --- /dev/null +++ b/QuickFTP/ContactParser/bin/Debug/First_Contacts116.Csv @@ -0,0 +1,117 @@ +email,firstname,lastname,birthdate,city,country,gender,organizationname,annualrevenue,websiteurl,industry,employees,mobilenumber,faxnumber,phone,title,state,postalcode,notes,status,dateadded,dateupdated,sent,opened,clicked,bounced,visits,pageviews,purchasecount,firstpurchase,lastpurchase,linkedinbio,linkedinconnections,twitterbio,twitterusername,twitterprofilephoto,twitterfollowercount +"cgreen@backtohealthindy.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:19:29 PM","8/2/2016 11:42:15 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"celinachiro@bright.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:16:37 PM","8/3/2016 12:52:58 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"cbcteam@cbcbilling.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:10:15 PM","8/3/2016 12:13:59 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"carolegunn@ucdavis-alumni.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:06:31 PM","8/3/2016 12:27:00 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"carol@facesurgery.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:05:50 PM","8/3/2016 4:26:59 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"carant@montana.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:04:12 PM","8/3/2016 2:47:49 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"buffensta001@hawaii.rr.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:59:25 PM","8/2/2016 11:12:38 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bspady@bcns.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:58:22 PM","8/3/2016 2:02:13 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bsaxton@bright.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:57:27 PM","8/3/2016 2:27:51 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bryan@tmj-doc.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:57:14 PM","8/3/2016 11:31:28 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bruce@ourieff.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:55:53 PM","8/3/2016 1:47:22 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bruce@medessentials.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:55:48 PM","8/3/2016 10:42:40 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"brodsky@spsearch.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:54:43 PM","8/2/2016 11:50:16 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"brianc@paperlessmed.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:52:53 PM","8/3/2016 12:05:39 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"brian@ontrackhealth.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:52:37 PM","8/3/2016 12:10:00 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"brent@procarespine.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:51:48 PM","8/2/2016 11:45:12 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"brent@procaremedcenter.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:51:43 PM","8/2/2016 11:45:12 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"brenda.harris@mvla.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:50:47 PM","8/3/2016 2:49:53 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"brems@drbrems.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:50:42 PM","8/3/2016 3:40:17 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bradh@rmpt.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:49:29 PM","8/3/2016 2:03:53 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"brad@keystonetechnologyllc.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:49:12 PM","8/2/2016 11:53:36 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"boris@miamiurology.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:47:43 PM","8/3/2016 12:10:51 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bones@hvi.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:47:09 PM","8/2/2016 11:44:23 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bodyfirm@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:46:37 PM","8/3/2016 12:24:48 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bobbie@xopain.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:45:53 PM","8/3/2016 1:53:18 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bmayer@neurocareinc.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:44:57 PM","8/3/2016 12:50:54 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"blogan@specialtycounseling.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:43:52 PM","8/3/2016 12:30:54 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"blogan@spchme.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:43:47 PM","8/2/2016 11:55:29 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"blerer2@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:43:27 PM","8/2/2016 11:36:51 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bklemm@power-recovery.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:42:42 PM","8/3/2016 2:49:49 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"billing@primary-care-clinic.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:40:06 PM","8/3/2016 12:44:39 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"billing@ivfphoenix.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:39:21 PM","8/2/2016 11:33:22 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"billing@hematologics.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:39:11 PM","8/2/2016 11:06:42 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"billing@apexfamchiro.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:38:13 PM","8/3/2016 9:17:58 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"billing@alephcenter.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:38:07 PM","8/2/2016 11:06:32 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bhphysicaltherapy@rushmore.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:37:05 PM","8/3/2016 12:23:00 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"betinab@healthpartnersplus.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:34:38 PM","8/2/2016 10:49:26 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"beth@smeincusa.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:34:26 PM","8/3/2016 10:33:26 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"berthaj@billriteps.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:33:50 PM","8/3/2016 2:07:31 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bentonchiro@go.zipstar.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:33:39 PM","8/2/2016 11:46:57 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"ben@drpopilsky.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:33:20 PM","8/3/2016 4:49:40 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"becky@blountdiscountpharmacy.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:31:49 PM","8/2/2016 10:43:46 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"becky@anthroclinic.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:31:45 PM","8/3/2016 2:46:54 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"becky@allvalleycare.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:31:39 PM","8/2/2016 10:58:01 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bdbrannon@galinapta.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:29:43 PM","8/2/2016 11:14:44 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"barry@drbarryoppenheim.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:25:04 PM","8/2/2016 11:04:12 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"barbm@cardinalarmanagement.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:24:48 PM","8/2/2016 10:26:43 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"barb@4myears.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:23:49 PM","8/3/2016 12:50:33 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"baljeetsingh1@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:22:57 PM","8/2/2016 11:51:10 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"avictor@quickgymusa.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:15:26 PM","8/2/2016 10:19:13 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"audrey@celticmutts.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:14:31 PM","8/3/2016 2:22:15 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"atlasdc@mc.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:13:16 PM","8/2/2016 10:58:28 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"atlas12@veerizon.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:13:05 PM","8/2/2016 11:46:57 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"ask@pastortonycsw.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:11:55 PM","8/3/2016 1:23:52 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"ashah@bellatlantic.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:11:00 PM","8/2/2016 11:14:54 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"asha@blackmountainhealing.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:10:55 PM","8/2/2016 10:53:37 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"asethi@concordchildrensclinic.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:10:51 PM","8/2/2016 11:33:56 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aschnedler@chcseia.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:10:30 PM","8/2/2016 10:10:36 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"arjuna@sageclinic.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:08:46 PM","8/2/2016 10:16:07 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aricca@s4tmo.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:08:40 PM","8/2/2016 10:26:19 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aredmond@cslstherapy.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:08:09 PM","8/3/2016 3:20:23 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"aragao@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:07:19 PM","8/3/2016 11:36:38 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"anshul@gambhir.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:04:19 PM","8/3/2016 12:30:57 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"angel@webangel.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:01:18 PM","8/3/2016 12:08:19 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"anderson@backexperts.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:59:38 PM","8/2/2016 9:59:24 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"andee@libertyurgentcare.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:59:33 PM","8/3/2016 12:27:37 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"amyvance@elitebilling.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:59:02 PM","8/2/2016 10:05:28 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"ambc@att.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:56:03 PM","8/2/2016 11:38:43 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"ambaz@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:55:58 PM","8/2/2016 10:33:07 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"amalik@excelsolutionsonline.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:55:27 PM","8/2/2016 10:07:24 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"altex@altexsolutions.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:55:06 PM","8/2/2016 9:56:07 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"alrg@gcpower.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:54:51 PM","8/3/2016 1:53:29 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"allstatemedicalbilling@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:53:29 PM","8/2/2016 11:40:53 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"alexman@acmnetworks.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:51:52 PM","8/2/2016 10:02:05 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"alex@alexspc.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:51:26 PM","8/2/2016 9:55:34 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"alex.vera@att.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:51:22 PM","8/3/2016 12:19:27 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"alerts@friendly-solutions.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:51:10 PM","8/2/2016 9:55:10 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"albrown68@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:51:05 PM","8/3/2016 1:17:12 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"aimee@professionalservicesconsultants.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:47:35 PM","8/2/2016 9:55:05 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aimee@ashbusiness.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:47:30 PM","8/2/2016 10:08:02 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"agcacupuncture@att.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:42:55 PM","8/3/2016 2:27:37 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"agates2159@ameritech.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:42:50 PM","8/2/2016 9:54:30 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"advantagechiro@questoffice.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:40:55 PM","8/2/2016 10:43:59 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"administrator@spivack.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:39:40 PM","8/2/2016 9:39:49 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"administration@westarmtherapy.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:39:05 PM","8/3/2016 1:29:56 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@wushealingcenter.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:38:30 PM","8/3/2016 2:13:16 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@umyh.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:38:14 PM","8/3/2016 2:20:43 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@octherapy.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:37:19 PM","8/2/2016 9:48:45 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@icgrehab.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:36:45 PM","8/2/2016 11:09:14 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@hardtnermedical.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:36:35 PM","8/2/2016 10:55:29 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@garyburgetmd.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:36:29 PM","8/2/2016 9:44:49 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@drurrutia.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:36:20 PM","8/2/2016 10:11:42 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@doctorevan.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:35:59 PM","8/2/2016 9:53:55 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@altexsolutions.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:35:03 PM","8/2/2016 9:44:13 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admatian@matianmed.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:34:44 PM","8/3/2016 1:58:22 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"adm@webaxis.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:34:39 PM","8/2/2016 9:39:51 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"adaobioha@cs.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:33:39 PM","8/3/2016 12:08:26 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"adamc@colespeech.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:33:14 PM","8/2/2016 10:01:28 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aclodfelter4@triad.rr.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:32:09 PM","8/2/2016 9:37:43 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"accuratebilling@dslextreme.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:31:09 PM","8/2/2016 9:48:08 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aaudette@teamworkpt.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:26:50 PM","8/2/2016 11:58:00 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aarism3180@rgv.rr.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:26:44 PM","8/2/2016 10:51:28 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"878gwright@buckeye-express.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:26:05 PM","8/2/2016 11:15:22 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"345345@sdfsd.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:25:57 PM","8/2/2016 10:43:58 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"advancedmedbln@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:05:17 PM","8/2/2016 10:10:09 PM","2","1","0","0","0","0","0","","","","0","","","","0" +"adrupp@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:05:14 PM","8/3/2016 2:34:00 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"acumed7@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:04:56 PM","8/3/2016 12:27:36 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"acrumplerdc@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:04:47 PM","8/2/2016 9:26:03 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"acaciamedical@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:04:16 PM","8/2/2016 9:07:18 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"abshay202@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:04:11 PM","8/3/2016 2:29:58 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"abrahaminc@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:04:06 PM","8/2/2016 10:08:21 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"abdof@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:03:57 PM","8/2/2016 9:35:44 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aashaw50@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:03:48 PM","8/2/2016 9:16:54 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aamcfarlane@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:03:46 PM","8/2/2016 9:03:58 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"daniel.romischer@gmail.com","","","","","","","","","","","0","","","","","","","","Engaged","8/1/2016 5:02:40 AM","8/1/2016 3:57:11 PM","3","2","0","0","0","0","0","","","","0","","","","0" +"daniel.romischer@live.com","","","","","","","","","","","0","","","","","","","","Engaged","8/1/2016 5:02:40 AM","8/3/2016 12:37:03 AM","9","2","1","0","0","0","0","","","","0","","","","0" diff --git a/QuickFTP/ContactParser/bin/Debug/SMFTP.dll b/QuickFTP/ContactParser/bin/Debug/SMFTP.dll deleted file mode 100644 index 4a06567..0000000 Binary files a/QuickFTP/ContactParser/bin/Debug/SMFTP.dll and /dev/null differ diff --git a/QuickFTP/ContactParser/bin/Debug/Sdaleo.dll b/QuickFTP/ContactParser/bin/Debug/Sdaleo.dll index 07e145b..b35ee1d 100644 Binary files a/QuickFTP/ContactParser/bin/Debug/Sdaleo.dll and b/QuickFTP/ContactParser/bin/Debug/Sdaleo.dll differ diff --git a/QuickFTP/ContactParser/bin/Debug/axcws32.dll b/QuickFTP/ContactParser/bin/Debug/axcws32.dll deleted file mode 100644 index b3cd157..0000000 Binary files a/QuickFTP/ContactParser/bin/Debug/axcws32.dll and /dev/null differ diff --git a/QuickFTP/ContactParser/bin/Debug/quickftp.exe b/QuickFTP/ContactParser/bin/Debug/quickftp.exe deleted file mode 100644 index 98e8166..0000000 Binary files a/QuickFTP/ContactParser/bin/Debug/quickftp.exe and /dev/null differ diff --git a/QuickFTP/ContactParser/bin/Debug/quickftp.exe.config b/QuickFTP/ContactParser/bin/Debug/quickftp.exe.config deleted file mode 100644 index 2bbf685..0000000 --- a/QuickFTP/ContactParser/bin/Debug/quickftp.exe.config +++ /dev/null @@ -1,21 +0,0 @@ - - - - -
- - - - - - \\medisoft_server\medidata\EMBARK RECOVERY LLC\mwddf.add - - - user - - - password - - - - diff --git a/QuickFTP/ContactParser/bin/Debug/quickftp.pdb b/QuickFTP/ContactParser/bin/Debug/quickftp.pdb deleted file mode 100644 index ef9e124..0000000 Binary files a/QuickFTP/ContactParser/bin/Debug/quickftp.pdb and /dev/null differ diff --git a/QuickFTP/ContactParser/bin/Debug/quickftp.vshost.exe.config b/QuickFTP/ContactParser/bin/Debug/quickftp.vshost.exe.config deleted file mode 100644 index 2bbf685..0000000 --- a/QuickFTP/ContactParser/bin/Debug/quickftp.vshost.exe.config +++ /dev/null @@ -1,21 +0,0 @@ - - - - -
- - - - - - \\medisoft_server\medidata\EMBARK RECOVERY LLC\mwddf.add - - - user - - - password - - - - diff --git a/QuickFTP/ContactParser/bin/Release/ADSLOC32.dll b/QuickFTP/ContactParser/bin/Release/ADSLOC32.dll deleted file mode 100644 index 2b1fc5a..0000000 Binary files a/QuickFTP/ContactParser/bin/Release/ADSLOC32.dll and /dev/null differ diff --git a/QuickFTP/ContactParser/bin/Release/Ace32.dll b/QuickFTP/ContactParser/bin/Release/Ace32.dll deleted file mode 100644 index 8fbef9a..0000000 Binary files a/QuickFTP/ContactParser/bin/Release/Ace32.dll and /dev/null differ diff --git a/QuickFTP/ContactParser/bin/Release/Advantage.Data.Provider.dll b/QuickFTP/ContactParser/bin/Release/Advantage.Data.Provider.dll deleted file mode 100644 index 209048c..0000000 Binary files a/QuickFTP/ContactParser/bin/Release/Advantage.Data.Provider.dll and /dev/null differ diff --git a/QuickFTP/ContactParser/bin/Release/ContactParser.exe b/QuickFTP/ContactParser/bin/Release/ContactParser.exe new file mode 100644 index 0000000..d497f14 Binary files /dev/null and b/QuickFTP/ContactParser/bin/Release/ContactParser.exe differ diff --git a/QuickFTP/ContactParser/bin/Release/ContactParser.exe.config b/QuickFTP/ContactParser/bin/Release/ContactParser.exe.config new file mode 100644 index 0000000..3824529 --- /dev/null +++ b/QuickFTP/ContactParser/bin/Release/ContactParser.exe.config @@ -0,0 +1,12 @@ + + + + +
+ + + + + + + diff --git a/QuickFTP/ContactParser/bin/Release/ContactParser.pdb b/QuickFTP/ContactParser/bin/Release/ContactParser.pdb new file mode 100644 index 0000000..4b0993d Binary files /dev/null and b/QuickFTP/ContactParser/bin/Release/ContactParser.pdb differ diff --git a/QuickFTP/ContactParser/bin/Release/First_Contacts116 - Copy.Csv b/QuickFTP/ContactParser/bin/Release/First_Contacts116 - Copy.Csv new file mode 100644 index 0000000..b2f9f69 --- /dev/null +++ b/QuickFTP/ContactParser/bin/Release/First_Contacts116 - Copy.Csv @@ -0,0 +1,117 @@ +email,firstname,lastname,birthdate,city,country,gender,organizationname,annualrevenue,websiteurl,industry,employees,mobilenumber,faxnumber,phone,title,state,postalcode,notes,status,dateadded,dateupdated,sent,opened,clicked,bounced,visits,pageviews,purchasecount,firstpurchase,lastpurchase,linkedinbio,linkedinconnections,twitterbio,twitterusername,twitterprofilephoto,twitterfollowercount +"cgreen@backtohealthindy.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:19:29 PM","8/2/2016 11:42:15 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"celinachiro@bright.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:16:37 PM","8/3/2016 12:52:58 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"cbcteam@cbcbilling.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:10:15 PM","8/3/2016 12:13:59 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"carolegunn@ucdavis-alumni.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:06:31 PM","8/3/2016 12:27:00 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"carol@facesurgery.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:05:50 PM","8/3/2016 4:26:59 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"carant@montana.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:04:12 PM","8/3/2016 2:47:49 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"buffensta001@hawaii.rr.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:59:25 PM","8/2/2016 11:12:38 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bspady@bcns.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:58:22 PM","8/3/2016 2:02:13 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bsaxton@bright.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:57:27 PM","8/3/2016 2:27:51 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bryan@tmj-doc.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:57:14 PM","8/3/2016 11:31:28 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bruce@ourieff.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:55:53 PM","8/3/2016 1:47:22 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bruce@medessentials.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:55:48 PM","8/3/2016 10:42:40 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"brodsky@spsearch.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:54:43 PM","8/2/2016 11:50:16 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"brianc@paperlessmed.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:52:53 PM","8/3/2016 12:05:39 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"brian@ontrackhealth.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:52:37 PM","8/3/2016 12:10:00 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"brent@procarespine.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:51:48 PM","8/2/2016 11:45:12 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"brent@procaremedcenter.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:51:43 PM","8/2/2016 11:45:12 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"brenda.harris@mvla.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:50:47 PM","8/3/2016 2:49:53 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"brems@drbrems.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:50:42 PM","8/3/2016 3:40:17 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bradh@rmpt.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:49:29 PM","8/3/2016 2:03:53 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"brad@keystonetechnologyllc.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:49:12 PM","8/2/2016 11:53:36 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"boris@miamiurology.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:47:43 PM","8/3/2016 12:10:51 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bones@hvi.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:47:09 PM","8/2/2016 11:44:23 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bodyfirm@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:46:37 PM","8/3/2016 12:24:48 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bobbie@xopain.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:45:53 PM","8/3/2016 1:53:18 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bmayer@neurocareinc.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:44:57 PM","8/3/2016 12:50:54 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"blogan@specialtycounseling.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:43:52 PM","8/3/2016 12:30:54 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"blogan@spchme.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:43:47 PM","8/2/2016 11:55:29 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"blerer2@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:43:27 PM","8/2/2016 11:36:51 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bklemm@power-recovery.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:42:42 PM","8/3/2016 2:49:49 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"billing@primary-care-clinic.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:40:06 PM","8/3/2016 12:44:39 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"billing@ivfphoenix.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:39:21 PM","8/2/2016 11:33:22 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"billing@hematologics.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:39:11 PM","8/2/2016 11:06:42 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"billing@apexfamchiro.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:38:13 PM","8/3/2016 9:17:58 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"billing@alephcenter.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:38:07 PM","8/2/2016 11:06:32 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bhphysicaltherapy@rushmore.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:37:05 PM","8/3/2016 12:23:00 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"betinab@healthpartnersplus.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:34:38 PM","8/2/2016 10:49:26 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"beth@smeincusa.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:34:26 PM","8/3/2016 10:33:26 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"berthaj@billriteps.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:33:50 PM","8/3/2016 2:07:31 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bentonchiro@go.zipstar.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:33:39 PM","8/2/2016 11:46:57 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"ben@drpopilsky.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:33:20 PM","8/3/2016 4:49:40 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"becky@blountdiscountpharmacy.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:31:49 PM","8/2/2016 10:43:46 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"becky@anthroclinic.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:31:45 PM","8/3/2016 2:46:54 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"becky@allvalleycare.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:31:39 PM","8/2/2016 10:58:01 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bdbrannon@galinapta.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:29:43 PM","8/2/2016 11:14:44 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"barry@drbarryoppenheim.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:25:04 PM","8/2/2016 11:04:12 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"barbm@cardinalarmanagement.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:24:48 PM","8/2/2016 10:26:43 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"barb@4myears.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:23:49 PM","8/3/2016 12:50:33 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"baljeetsingh1@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:22:57 PM","8/2/2016 11:51:10 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"avictor@quickgymusa.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:15:26 PM","8/2/2016 10:19:13 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"audrey@celticmutts.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:14:31 PM","8/3/2016 2:22:15 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"atlasdc@mc.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:13:16 PM","8/2/2016 10:58:28 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"atlas12@veerizon.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:13:05 PM","8/2/2016 11:46:57 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"ask@pastortonycsw.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:11:55 PM","8/3/2016 1:23:52 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"ashah@bellatlantic.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:11:00 PM","8/2/2016 11:14:54 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"asha@blackmountainhealing.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:10:55 PM","8/2/2016 10:53:37 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"asethi@concordchildrensclinic.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:10:51 PM","8/2/2016 11:33:56 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aschnedler@chcseia.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:10:30 PM","8/2/2016 10:10:36 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"arjuna@sageclinic.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:08:46 PM","8/2/2016 10:16:07 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aricca@s4tmo.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:08:40 PM","8/2/2016 10:26:19 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aredmond@cslstherapy.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:08:09 PM","8/3/2016 3:20:23 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"aragao@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:07:19 PM","8/3/2016 11:36:38 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"anshul@gambhir.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:04:19 PM","8/3/2016 12:30:57 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"angel@webangel.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:01:18 PM","8/3/2016 12:08:19 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"anderson@backexperts.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:59:38 PM","8/2/2016 9:59:24 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"andee@libertyurgentcare.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:59:33 PM","8/3/2016 12:27:37 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"amyvance@elitebilling.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:59:02 PM","8/2/2016 10:05:28 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"ambc@att.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:56:03 PM","8/2/2016 11:38:43 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"ambaz@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:55:58 PM","8/2/2016 10:33:07 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"amalik@excelsolutionsonline.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:55:27 PM","8/2/2016 10:07:24 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"altex@altexsolutions.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:55:06 PM","8/2/2016 9:56:07 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"alrg@gcpower.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:54:51 PM","8/3/2016 1:53:29 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"allstatemedicalbilling@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:53:29 PM","8/2/2016 11:40:53 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"alexman@acmnetworks.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:51:52 PM","8/2/2016 10:02:05 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"alex@alexspc.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:51:26 PM","8/2/2016 9:55:34 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"alex.vera@att.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:51:22 PM","8/3/2016 12:19:27 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"alerts@friendly-solutions.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:51:10 PM","8/2/2016 9:55:10 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"albrown68@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:51:05 PM","8/3/2016 1:17:12 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"aimee@professionalservicesconsultants.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:47:35 PM","8/2/2016 9:55:05 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aimee@ashbusiness.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:47:30 PM","8/2/2016 10:08:02 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"agcacupuncture@att.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:42:55 PM","8/3/2016 2:27:37 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"agates2159@ameritech.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:42:50 PM","8/2/2016 9:54:30 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"advantagechiro@questoffice.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:40:55 PM","8/2/2016 10:43:59 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"administrator@spivack.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:39:40 PM","8/2/2016 9:39:49 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"administration@westarmtherapy.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:39:05 PM","8/3/2016 1:29:56 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@wushealingcenter.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:38:30 PM","8/3/2016 2:13:16 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@umyh.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:38:14 PM","8/3/2016 2:20:43 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@octherapy.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:37:19 PM","8/2/2016 9:48:45 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@icgrehab.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:36:45 PM","8/2/2016 11:09:14 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@hardtnermedical.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:36:35 PM","8/2/2016 10:55:29 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@garyburgetmd.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:36:29 PM","8/2/2016 9:44:49 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@drurrutia.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:36:20 PM","8/2/2016 10:11:42 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@doctorevan.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:35:59 PM","8/2/2016 9:53:55 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@altexsolutions.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:35:03 PM","8/2/2016 9:44:13 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admatian@matianmed.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:34:44 PM","8/3/2016 1:58:22 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"adm@webaxis.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:34:39 PM","8/2/2016 9:39:51 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"adaobioha@cs.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:33:39 PM","8/3/2016 12:08:26 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"adamc@colespeech.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:33:14 PM","8/2/2016 10:01:28 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aclodfelter4@triad.rr.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:32:09 PM","8/2/2016 9:37:43 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"accuratebilling@dslextreme.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:31:09 PM","8/2/2016 9:48:08 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aaudette@teamworkpt.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:26:50 PM","8/2/2016 11:58:00 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aarism3180@rgv.rr.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:26:44 PM","8/2/2016 10:51:28 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"878gwright@buckeye-express.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:26:05 PM","8/2/2016 11:15:22 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"345345@sdfsd.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:25:57 PM","8/2/2016 10:43:58 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"advancedmedbln@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:05:17 PM","8/2/2016 10:10:09 PM","2","1","0","0","0","0","0","","","","0","","","","0" +"adrupp@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:05:14 PM","8/3/2016 2:34:00 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"acumed7@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:04:56 PM","8/3/2016 12:27:36 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"acrumplerdc@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:04:47 PM","8/2/2016 9:26:03 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"acaciamedical@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:04:16 PM","8/2/2016 9:07:18 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"abshay202@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:04:11 PM","8/3/2016 2:29:58 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"abrahaminc@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:04:06 PM","8/2/2016 10:08:21 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"abdof@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:03:57 PM","8/2/2016 9:35:44 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aashaw50@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:03:48 PM","8/2/2016 9:16:54 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aamcfarlane@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:03:46 PM","8/2/2016 9:03:58 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"daniel.romischer@gmail.com","","","","","","","","","","","0","","","","","","","","Engaged","8/1/2016 5:02:40 AM","8/1/2016 3:57:11 PM","3","2","0","0","0","0","0","","","","0","","","","0" +"daniel.romischer@live.com","","","","","","","","","","","0","","","","","","","","Engaged","8/1/2016 5:02:40 AM","8/3/2016 12:37:03 AM","9","2","1","0","0","0","0","","","","0","","","","0" diff --git a/QuickFTP/ContactParser/bin/Release/First_Contacts116.Csv b/QuickFTP/ContactParser/bin/Release/First_Contacts116.Csv new file mode 100644 index 0000000..b2f9f69 --- /dev/null +++ b/QuickFTP/ContactParser/bin/Release/First_Contacts116.Csv @@ -0,0 +1,117 @@ +email,firstname,lastname,birthdate,city,country,gender,organizationname,annualrevenue,websiteurl,industry,employees,mobilenumber,faxnumber,phone,title,state,postalcode,notes,status,dateadded,dateupdated,sent,opened,clicked,bounced,visits,pageviews,purchasecount,firstpurchase,lastpurchase,linkedinbio,linkedinconnections,twitterbio,twitterusername,twitterprofilephoto,twitterfollowercount +"cgreen@backtohealthindy.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:19:29 PM","8/2/2016 11:42:15 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"celinachiro@bright.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:16:37 PM","8/3/2016 12:52:58 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"cbcteam@cbcbilling.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:10:15 PM","8/3/2016 12:13:59 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"carolegunn@ucdavis-alumni.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:06:31 PM","8/3/2016 12:27:00 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"carol@facesurgery.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:05:50 PM","8/3/2016 4:26:59 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"carant@montana.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 11:04:12 PM","8/3/2016 2:47:49 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"buffensta001@hawaii.rr.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:59:25 PM","8/2/2016 11:12:38 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bspady@bcns.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:58:22 PM","8/3/2016 2:02:13 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bsaxton@bright.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:57:27 PM","8/3/2016 2:27:51 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bryan@tmj-doc.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:57:14 PM","8/3/2016 11:31:28 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bruce@ourieff.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:55:53 PM","8/3/2016 1:47:22 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bruce@medessentials.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:55:48 PM","8/3/2016 10:42:40 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"brodsky@spsearch.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:54:43 PM","8/2/2016 11:50:16 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"brianc@paperlessmed.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:52:53 PM","8/3/2016 12:05:39 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"brian@ontrackhealth.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:52:37 PM","8/3/2016 12:10:00 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"brent@procarespine.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:51:48 PM","8/2/2016 11:45:12 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"brent@procaremedcenter.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:51:43 PM","8/2/2016 11:45:12 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"brenda.harris@mvla.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:50:47 PM","8/3/2016 2:49:53 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"brems@drbrems.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:50:42 PM","8/3/2016 3:40:17 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bradh@rmpt.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:49:29 PM","8/3/2016 2:03:53 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"brad@keystonetechnologyllc.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:49:12 PM","8/2/2016 11:53:36 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"boris@miamiurology.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:47:43 PM","8/3/2016 12:10:51 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bones@hvi.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:47:09 PM","8/2/2016 11:44:23 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bodyfirm@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:46:37 PM","8/3/2016 12:24:48 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bobbie@xopain.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:45:53 PM","8/3/2016 1:53:18 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"bmayer@neurocareinc.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:44:57 PM","8/3/2016 12:50:54 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"blogan@specialtycounseling.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:43:52 PM","8/3/2016 12:30:54 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"blogan@spchme.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:43:47 PM","8/2/2016 11:55:29 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"blerer2@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:43:27 PM","8/2/2016 11:36:51 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bklemm@power-recovery.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:42:42 PM","8/3/2016 2:49:49 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"billing@primary-care-clinic.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:40:06 PM","8/3/2016 12:44:39 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"billing@ivfphoenix.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:39:21 PM","8/2/2016 11:33:22 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"billing@hematologics.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:39:11 PM","8/2/2016 11:06:42 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"billing@apexfamchiro.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:38:13 PM","8/3/2016 9:17:58 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"billing@alephcenter.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:38:07 PM","8/2/2016 11:06:32 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bhphysicaltherapy@rushmore.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:37:05 PM","8/3/2016 12:23:00 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"betinab@healthpartnersplus.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:34:38 PM","8/2/2016 10:49:26 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"beth@smeincusa.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:34:26 PM","8/3/2016 10:33:26 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"berthaj@billriteps.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:33:50 PM","8/3/2016 2:07:31 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bentonchiro@go.zipstar.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:33:39 PM","8/2/2016 11:46:57 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"ben@drpopilsky.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:33:20 PM","8/3/2016 4:49:40 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"becky@blountdiscountpharmacy.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:31:49 PM","8/2/2016 10:43:46 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"becky@anthroclinic.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:31:45 PM","8/3/2016 2:46:54 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"becky@allvalleycare.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:31:39 PM","8/2/2016 10:58:01 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"bdbrannon@galinapta.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:29:43 PM","8/2/2016 11:14:44 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"barry@drbarryoppenheim.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:25:04 PM","8/2/2016 11:04:12 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"barbm@cardinalarmanagement.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:24:48 PM","8/2/2016 10:26:43 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"barb@4myears.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:23:49 PM","8/3/2016 12:50:33 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"baljeetsingh1@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:22:57 PM","8/2/2016 11:51:10 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"avictor@quickgymusa.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:15:26 PM","8/2/2016 10:19:13 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"audrey@celticmutts.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:14:31 PM","8/3/2016 2:22:15 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"atlasdc@mc.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:13:16 PM","8/2/2016 10:58:28 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"atlas12@veerizon.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:13:05 PM","8/2/2016 11:46:57 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"ask@pastortonycsw.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:11:55 PM","8/3/2016 1:23:52 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"ashah@bellatlantic.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:11:00 PM","8/2/2016 11:14:54 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"asha@blackmountainhealing.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:10:55 PM","8/2/2016 10:53:37 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"asethi@concordchildrensclinic.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:10:51 PM","8/2/2016 11:33:56 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aschnedler@chcseia.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:10:30 PM","8/2/2016 10:10:36 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"arjuna@sageclinic.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:08:46 PM","8/2/2016 10:16:07 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aricca@s4tmo.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:08:40 PM","8/2/2016 10:26:19 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aredmond@cslstherapy.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:08:09 PM","8/3/2016 3:20:23 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"aragao@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:07:19 PM","8/3/2016 11:36:38 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"anshul@gambhir.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:04:19 PM","8/3/2016 12:30:57 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"angel@webangel.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 10:01:18 PM","8/3/2016 12:08:19 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"anderson@backexperts.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:59:38 PM","8/2/2016 9:59:24 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"andee@libertyurgentcare.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:59:33 PM","8/3/2016 12:27:37 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"amyvance@elitebilling.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:59:02 PM","8/2/2016 10:05:28 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"ambc@att.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:56:03 PM","8/2/2016 11:38:43 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"ambaz@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:55:58 PM","8/2/2016 10:33:07 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"amalik@excelsolutionsonline.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:55:27 PM","8/2/2016 10:07:24 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"altex@altexsolutions.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:55:06 PM","8/2/2016 9:56:07 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"alrg@gcpower.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:54:51 PM","8/3/2016 1:53:29 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"allstatemedicalbilling@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:53:29 PM","8/2/2016 11:40:53 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"alexman@acmnetworks.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:51:52 PM","8/2/2016 10:02:05 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"alex@alexspc.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:51:26 PM","8/2/2016 9:55:34 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"alex.vera@att.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:51:22 PM","8/3/2016 12:19:27 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"alerts@friendly-solutions.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:51:10 PM","8/2/2016 9:55:10 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"albrown68@cox.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:51:05 PM","8/3/2016 1:17:12 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"aimee@professionalservicesconsultants.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:47:35 PM","8/2/2016 9:55:05 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aimee@ashbusiness.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:47:30 PM","8/2/2016 10:08:02 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"agcacupuncture@att.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:42:55 PM","8/3/2016 2:27:37 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"agates2159@ameritech.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:42:50 PM","8/2/2016 9:54:30 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"advantagechiro@questoffice.net","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:40:55 PM","8/2/2016 10:43:59 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"administrator@spivack.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:39:40 PM","8/2/2016 9:39:49 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"administration@westarmtherapy.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:39:05 PM","8/3/2016 1:29:56 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@wushealingcenter.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:38:30 PM","8/3/2016 2:13:16 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@umyh.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:38:14 PM","8/3/2016 2:20:43 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@octherapy.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:37:19 PM","8/2/2016 9:48:45 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@icgrehab.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:36:45 PM","8/2/2016 11:09:14 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@hardtnermedical.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:36:35 PM","8/2/2016 10:55:29 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@garyburgetmd.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:36:29 PM","8/2/2016 9:44:49 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@drurrutia.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:36:20 PM","8/2/2016 10:11:42 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@doctorevan.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:35:59 PM","8/2/2016 9:53:55 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admin@altexsolutions.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:35:03 PM","8/2/2016 9:44:13 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"admatian@matianmed.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:34:44 PM","8/3/2016 1:58:22 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"adm@webaxis.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:34:39 PM","8/2/2016 9:39:51 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"adaobioha@cs.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:33:39 PM","8/3/2016 12:08:26 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"adamc@colespeech.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:33:14 PM","8/2/2016 10:01:28 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aclodfelter4@triad.rr.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:32:09 PM","8/2/2016 9:37:43 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"accuratebilling@dslextreme.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:31:09 PM","8/2/2016 9:48:08 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aaudette@teamworkpt.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:26:50 PM","8/2/2016 11:58:00 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aarism3180@rgv.rr.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:26:44 PM","8/2/2016 10:51:28 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"878gwright@buckeye-express.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:26:05 PM","8/2/2016 11:15:22 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"345345@sdfsd.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:25:57 PM","8/2/2016 10:43:58 PM","1","1","1","0","0","0","0","","","","0","","","","0" +"advancedmedbln@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:05:17 PM","8/2/2016 10:10:09 PM","2","1","0","0","0","0","0","","","","0","","","","0" +"adrupp@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:05:14 PM","8/3/2016 2:34:00 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"acumed7@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:04:56 PM","8/3/2016 12:27:36 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"acrumplerdc@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:04:47 PM","8/2/2016 9:26:03 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"acaciamedical@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:04:16 PM","8/2/2016 9:07:18 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"abshay202@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:04:11 PM","8/3/2016 2:29:58 AM","1","1","0","0","0","0","0","","","","0","","","","0" +"abrahaminc@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:04:06 PM","8/2/2016 10:08:21 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"abdof@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:03:57 PM","8/2/2016 9:35:44 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aashaw50@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:03:48 PM","8/2/2016 9:16:54 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"aamcfarlane@aol.com","","","","","","","","","","","0","","","","","","","","Engaged","8/2/2016 9:03:46 PM","8/2/2016 9:03:58 PM","1","1","0","0","0","0","0","","","","0","","","","0" +"daniel.romischer@gmail.com","","","","","","","","","","","0","","","","","","","","Engaged","8/1/2016 5:02:40 AM","8/1/2016 3:57:11 PM","3","2","0","0","0","0","0","","","","0","","","","0" +"daniel.romischer@live.com","","","","","","","","","","","0","","","","","","","","Engaged","8/1/2016 5:02:40 AM","8/3/2016 12:37:03 AM","9","2","1","0","0","0","0","","","","0","","","","0" diff --git a/QuickFTP/ContactParser/bin/Release/SMFTP.dll b/QuickFTP/ContactParser/bin/Release/SMFTP.dll deleted file mode 100644 index 4a06567..0000000 Binary files a/QuickFTP/ContactParser/bin/Release/SMFTP.dll and /dev/null differ diff --git a/QuickFTP/ContactParser/bin/Release/Sdaleo.dll b/QuickFTP/ContactParser/bin/Release/Sdaleo.dll index 07e145b..b35ee1d 100644 Binary files a/QuickFTP/ContactParser/bin/Release/Sdaleo.dll and b/QuickFTP/ContactParser/bin/Release/Sdaleo.dll differ diff --git a/QuickFTP/ContactParser/bin/Release/axcws32.dll b/QuickFTP/ContactParser/bin/Release/axcws32.dll deleted file mode 100644 index b3cd157..0000000 Binary files a/QuickFTP/ContactParser/bin/Release/axcws32.dll and /dev/null differ diff --git a/QuickFTP/ContactParser/bin/Release/query1.txt b/QuickFTP/ContactParser/bin/Release/query1.txt deleted file mode 100644 index 2db9907..0000000 --- a/QuickFTP/ContactParser/bin/Release/query1.txt +++ /dev/null @@ -1,178 +0,0 @@ -Select -A."Entry Number", -A.Chart_Number, -A."First Name" as First_Name, -A."Last Name" as Last_Name, -A.Claim_Number, -A.Date_From, -A.Description as Level_Of_Care, -A.Amount, -B.Payment_Status, -A.Diagnosis1, -A.Diagnosis_Description, -D.DED, -I.ERA_DED, -A.Insurance_Name, -A.Insurance_Class, -A."Insurance_1_Amount_Paid", -A."Insurance_2_Amount_Paid", -A.Adjustment_Amount, -A.Referring_Provider, -A.Policy_1, -A.Group_Number_1, -A.Initial_Billing_Date, -A.Primary_Billing_Date, -A.Referring_Provider, -MWPRI."Date From" as Primary_Paid_Date, -MWSEC."Date From" as Secondary_Paid_Date, -MWGUA."Date From" as Guarantor_Paid_Date - - - - from -//Main Query -(Select distinct MWTRN."Entry Number", - MWTRN."Chart Number" as Chart_Number, - MWPAT."First Name", - MWPAT."Last Name", - MWTRN."Claim Number" AS Claim_Number, - MWTRN."Date From" AS Date_From, - - - MWTRN."Diagnosis Code 1" as Diagnosis1, - MWTRN."Diagnosis Code 2" as Diagnosis2, - DIA."Description" as Diagnosis_Description , - DIA2."Description" Diagnosis2_Description, - - MWINS."Insurance Class" as Insurance_Class, - - MWTRN.Amount, -//whatthehellisthis "Procedure Code" As Units, - MWPRO.Description, - "Adjustment Amount", - MWPRO."Description", - MWINS."Name" as Insurance_Name, - MWTRN.Amount, - MonthName("MWTRN"."Date Created") as MonthofYear, - Year("MWTRN"."Date Created") as TheYear, - MWTRN."Diagnosis_12_Description" as Blank, - MWPRO."Description" As Level_Of_Care, - MWINS."Insurance Class" as Insurance_Class, - MWINS."Name" as Insurance_Name, - MWCAS."Policy Number #1" as Policy_1, - MWCAS."Group Number #1" as Group_Number_1, - MWCLA."Initial Billing Date 1" as Initial_Billing_Date, - MWCLA."Primary BIlling Date"as Primary_Billing_Date, - MWTRN."Attending Provider" AS Attending_Provider, - MWTRN."Insurance 1 Amount Paid" AS Insurance_1_Amount_Paid, - MWTRN."Insurance 2 Amount Paid" AS Insurance_2_Amount_Paid, - MWTRN."Insurance 3 Amount Paid" AS Insurance_3_Amount_Paid, - MWTRN."Guarantor Amount Paid" AS Guarantor_Amount_Paid, - MWTRN."Adjustment Amount" AS Adjustment_Amount, - (MWRPH."First Name" + MWRPH."Last Name") AS Referring_Provider, - MWRPH."Code" as Referring_Provider_Code - - - FROM MWTRN -INNER JOIN MWCAS MWCAS ON - (MWCAS."Case Number" = MWTRN."Case Number") -INNER JOIN MWINS MWINS ON - (MWINS."Code" = MWCAS."Insurance Carrier #1") - INNER JOIN MWDIA DIA ON - MWTRN."Diagnosis Code 1" = DIA."Code 1" - left outer JOIN MWDIA DIA2 ON - MWTRN."Diagnosis Code 2" = DIA2."Code 1" -INNER JOIN MWPAT MWPAT ON - (MWPAT."Chart Number" = MWTRN."Chart Number") -INNER JOIN MWPRO MWPRO ON - (MWTRN."Procedure Code" = MWPRO."Code 1") - left outer JOIN MWRPH ON - MWCAS."Referring Provider" = MWRPH."Code" -INNER JOIN MWCLA MWCLA ON - (MWCLA."Claim Number" = MWTRN."Claim Number") -WHERE (MWTRN."Transaction Type" BETWEEN 'A' AND 'H') AND - (MWTRN."Date From" >= '01/1/2015') AND (MWCLA."Claim Status 1" in ('2', '3', '4', '6'))) A - - //Primary Payments (MWPRI) -LEFT OUTER JOIN - (Select distinct MWTRN."Entry Number", MAX(MWTRN2."Date From") as "Date From" - from MWTRN INNER JOIN MWPAX ON - MWPAX."Charge Reference" = MWTRN."Entry Number" - INNER JOIN MWTRN MWTRN2 ON - MWPAX."Payment Reference" = MWTRN2."Entry Number" - Where MWPAX."Who Paid" = '1' and MWPAX."Payment Amount" < 0 - and MWTRN2."Transaction Type" in ('I', 'M') - group by MWTRN."Entry Number") MWPRI ON - A."Entry Number" = MWPRI."Entry Number" - - //Gather Secondary Payments (MWSEC) - left outer JOIN - (Select distinct MWTRN."Entry Number", MAX(MWTRN2."Date From") as "Date From" - from MWTRN INNER JOIN MWPAX ON - MWPAX."Charge Reference" = MWTRN."Entry Number" - INNER JOIN MWTRN MWTRN2 ON - MWPAX."Payment Reference" = MWTRN2."Entry Number" - Where MWPAX."Who Paid" = '2' and MWTRN2."Transaction Type" in ('I', 'M') - group by MWTRN."Entry Number") MWSEC ON - A."Entry Number" = MWSEC."Entry Number" - left outer JOIN - - //Gather Guarantor Payments (MWGUA) - (Select distinct MWTRN."Entry Number", MAX(MWTRN2."Date From") as "Date From" - from MWTRN INNER JOIN MWPAX ON - MWPAX."Charge Reference" = MWTRN."Entry Number" - INNER JOIN MWTRN MWTRN2 ON - MWPAX."Payment Reference" = MWTRN2."Entry Number" - Where MWPAX."Who Paid" = 'G' - group by MWTRN."Entry Number") MWGUA ON - A."Entry Number" = MWGUA."Entry Number" - - //Deductible Stuff (D) - left outer join - (Select abs(sum(cast(MWPAX."Payment Amount" as SQL_NUMERIC(9,2)))) as DED, MWTRN."Entry Number", MWTRN."Chart Number" from MWTRN INNER JOIN MWPAX on MWTRN."Entry Number" = MWPAX."Charge Reference" - inner join MWTRN MWTRN2 on MWPAX."Payment Reference" = MWTRN2."Entry Number" - Where MWTRN2."Transaction Type" = 'P' - group by MWTRN."Chart Number", MWTRN."Entry Number") D - on D."Entry Number" = A."Entry Number" - - //I have no clue (I) - left outer join (Select sum(cast((Substring(replace(MWTRN."Description", ',', ''), (LOCATE('$', MWTRN."Description") +1), - ((LOCATE(' ', MWTRN."Description") -1) - (LOCATE('$', MWTRN."Description") +1) ))) as SQL_Numeric(9,2))) as ERA_DED, mwtrn2."Entry Number", MWTRN2."Chart Number" from MWTRN - INNER JOIN MWPAX on MWTRN."Entry Number" = MWPAX."Payment Reference" - inner join MWTRN MWTRN2 on MWPAX."Charge Reference" = MWTRN2."Entry Number" - Where MWTRN."Description" like 'ERA:Deductible=%' or MWTRN."Description" like 'ERA:PR1=%' - group by MWTRN2."Chart Number", MWTRN2."Entry Number") I - ON I."Entry Number" = A."Entry Number" - - left outer join - -(Select "Charge Reference" as CRef, -(Case When MWDEP."Deposit Code" = 'A' Then 'ERA_Payment_Posting' -When MWDEP."Deposit Code" = 'B' Then 'ERA_Payment_Confirmed' -When MWDEP."Deposit Code" = 'F' Then 'Paid_Confirmed_Aging_To_Facility' -When MWDEP."Deposit Code" = 'G' Then 'Paid_Per_Check_To_Facility' -When MWDEP."Deposit Code" = 'J' Then 'Paid_Per_AR_To_Patient' -When MWDEP."Deposit Code" = 'K' Then 'Paid_Per_Check_To_Patient' -When MWDEP."Deposit Code" = 'N' Then 'Paid_Per_Aging_To_Facility' -Else 'Unpaid' End) as Payment_Status, - -sum(Case When MWDEP."Deposit Code" in ('A', 'B', 'E', 'F', 'G', 'J', 'K', 'N') Then (Cast(MWPAX."Payment Amount" as - -SQL_NUMERIC(9,2))) Else 0 End) as Total_Deposit, -Sum(Case WHen MWTRN."Transaction Type" = 'P' Then (Cast(MWPAX."Payment Amount" as SQL_NUMERIC(9,2))) Else 0 End) as D, -Sum(Case WHen MWTRN."Transaction Type" in ('J', 'K', 'L') Then (Cast(MWPAX."Payment Amount" as SQL_NUMERIC(9,2))) Else 0 - -End) as C, -Sum(Case WHen MWTRN."Transaction Type" in ('M', 'N', 'O') Then (Cast(MWPAX."Payment Amount" as SQL_NUMERIC(9,2))) Else 0 - -End) as P - - -from MWPAX -inner join MWDEP on -MWDEP."Entry Number" = MWPAX."Deposit ID" -inner join MWTRN on -MWTRN."Entry Number" = MWPAX."Payment Reference" where MWTRN."Transaction Type" in ('I', 'J', 'K', 'N', 'O', 'P') -Group By Cref, Payment_Status ) B - ON A."Entry Number" = B.CREF -// Group BY A.Chart_Number, A.Procedure_Code, A."First Name", A."Last Name", A.Insurance_Class, A.MonthofYear, A.TheYear,A.Blank, \ No newline at end of file diff --git a/QuickFTP/ContactParser/bin/Release/quickftp.exe b/QuickFTP/ContactParser/bin/Release/quickftp.exe deleted file mode 100644 index 259b04e..0000000 Binary files a/QuickFTP/ContactParser/bin/Release/quickftp.exe and /dev/null differ diff --git a/QuickFTP/ContactParser/bin/Release/quickftp.exe.config b/QuickFTP/ContactParser/bin/Release/quickftp.exe.config deleted file mode 100644 index 2bbf685..0000000 --- a/QuickFTP/ContactParser/bin/Release/quickftp.exe.config +++ /dev/null @@ -1,21 +0,0 @@ - - - - -
- - - - - - \\medisoft_server\medidata\EMBARK RECOVERY LLC\mwddf.add - - - user - - - password - - - - diff --git a/QuickFTP/ContactParser/bin/Release/quickftp.pdb b/QuickFTP/ContactParser/bin/Release/quickftp.pdb deleted file mode 100644 index 7653edf..0000000 Binary files a/QuickFTP/ContactParser/bin/Release/quickftp.pdb and /dev/null differ diff --git a/QuickFTP/ContactParser/bin/Release/quickftp.vshost.exe b/QuickFTP/ContactParser/bin/Release/quickftp.vshost.exe deleted file mode 100644 index 666c0af..0000000 Binary files a/QuickFTP/ContactParser/bin/Release/quickftp.vshost.exe and /dev/null differ diff --git a/QuickFTP/ContactParser/bin/Release/quickftp.vshost.exe.config b/QuickFTP/ContactParser/bin/Release/quickftp.vshost.exe.config deleted file mode 100644 index 2bbf685..0000000 --- a/QuickFTP/ContactParser/bin/Release/quickftp.vshost.exe.config +++ /dev/null @@ -1,21 +0,0 @@ - - - - -
- - - - - - \\medisoft_server\medidata\EMBARK RECOVERY LLC\mwddf.add - - - user - - - password - - - - diff --git a/QuickFTP/ContactParser/bin/Release/quickftp.vshost.exe.manifest b/QuickFTP/ContactParser/bin/Release/quickftp.vshost.exe.manifest deleted file mode 100644 index f96b1d6..0000000 --- a/QuickFTP/ContactParser/bin/Release/quickftp.vshost.exe.manifest +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/QuickFTP/ContactParser/obj/Debug/ContactParser.csproj.FileListAbsolute.txt b/QuickFTP/ContactParser/obj/Debug/ContactParser.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d5819a8 --- /dev/null +++ b/QuickFTP/ContactParser/obj/Debug/ContactParser.csproj.FileListAbsolute.txt @@ -0,0 +1,9 @@ +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\bin\Debug\ContactParser.exe.config +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\bin\Debug\ContactParser.exe +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\bin\Debug\ContactParser.pdb +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\bin\Debug\log4net.dll +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\bin\Debug\Sdaleo.dll +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\bin\Debug\Yaulw.dll +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\obj\Debug\ContactParser.exe +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\obj\Debug\ContactParser.pdb +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\obj\Debug\ContactParser.csprojResolveAssemblyReference.cache diff --git a/QuickFTP/ContactParser/obj/Debug/ContactParser.csprojResolveAssemblyReference.cache b/QuickFTP/ContactParser/obj/Debug/ContactParser.csprojResolveAssemblyReference.cache new file mode 100644 index 0000000..ce21a58 Binary files /dev/null and b/QuickFTP/ContactParser/obj/Debug/ContactParser.csprojResolveAssemblyReference.cache differ diff --git a/QuickFTP/ContactParser/obj/Debug/ContactParser.exe b/QuickFTP/ContactParser/obj/Debug/ContactParser.exe new file mode 100644 index 0000000..64d5419 Binary files /dev/null and b/QuickFTP/ContactParser/obj/Debug/ContactParser.exe differ diff --git a/QuickFTP/ContactParser/obj/Debug/ContactParser.pdb b/QuickFTP/ContactParser/obj/Debug/ContactParser.pdb new file mode 100644 index 0000000..5ddf909 Binary files /dev/null and b/QuickFTP/ContactParser/obj/Debug/ContactParser.pdb differ diff --git a/QuickFTP/ContactParser/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/QuickFTP/ContactParser/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index b209332..6e4e8d7 100644 Binary files a/QuickFTP/ContactParser/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/QuickFTP/ContactParser/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/QuickFTP/ContactParser/obj/Release/ContactParser.csproj.FileListAbsolute.txt b/QuickFTP/ContactParser/obj/Release/ContactParser.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..14bd49f --- /dev/null +++ b/QuickFTP/ContactParser/obj/Release/ContactParser.csproj.FileListAbsolute.txt @@ -0,0 +1,8 @@ +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\bin\Release\log4net.dll +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\bin\Release\Sdaleo.dll +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\bin\Release\Yaulw.dll +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\bin\Release\ContactParser.exe.config +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\bin\Release\ContactParser.exe +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\bin\Release\ContactParser.pdb +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\obj\Release\ContactParser.exe +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\ContactParser\obj\Release\ContactParser.pdb diff --git a/QuickFTP/ContactParser/obj/Release/ContactParser.exe b/QuickFTP/ContactParser/obj/Release/ContactParser.exe new file mode 100644 index 0000000..d497f14 Binary files /dev/null and b/QuickFTP/ContactParser/obj/Release/ContactParser.exe differ diff --git a/QuickFTP/ContactParser/obj/Release/ContactParser.pdb b/QuickFTP/ContactParser/obj/Release/ContactParser.pdb new file mode 100644 index 0000000..4b0993d Binary files /dev/null and b/QuickFTP/ContactParser/obj/Release/ContactParser.pdb differ diff --git a/QuickFTP/ContactParser/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/QuickFTP/ContactParser/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache index 24bfe3e..1f2ee4e 100644 Binary files a/QuickFTP/ContactParser/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache and b/QuickFTP/ContactParser/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/QuickFTP/ContactParser/obj/Release/quickftp.exe b/QuickFTP/ContactParser/obj/Release/quickftp.exe deleted file mode 100644 index 259b04e..0000000 Binary files a/QuickFTP/ContactParser/obj/Release/quickftp.exe and /dev/null differ diff --git a/QuickFTP/ContactParser/obj/Release/quickftp.pdb b/QuickFTP/ContactParser/obj/Release/quickftp.pdb deleted file mode 100644 index 7653edf..0000000 Binary files a/QuickFTP/ContactParser/obj/Release/quickftp.pdb and /dev/null differ diff --git a/QuickFTP/QuickFTP.sln b/QuickFTP/QuickFTP.sln index eef576e..0bc5319 100644 --- a/QuickFTP/QuickFTP.sln +++ b/QuickFTP/QuickFTP.sln @@ -5,6 +5,10 @@ VisualStudioVersion = 12.0.31101.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "quickftp", "quickftp\quickftp.csproj", "{E0B1E1C9-AF77-424A-9F00-CDD27C499350}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "gQuery", "gQuery\gQuery.csproj", "{35187E28-CF64-4B0F-AADE-355B5561393C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ContactParser", "ContactParser\ContactParser.csproj", "{1338D591-1E3F-4DD0-A270-4E4E12DC76C2}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -15,6 +19,14 @@ Global {E0B1E1C9-AF77-424A-9F00-CDD27C499350}.Debug|Any CPU.Build.0 = Debug|Any CPU {E0B1E1C9-AF77-424A-9F00-CDD27C499350}.Release|Any CPU.ActiveCfg = Release|Any CPU {E0B1E1C9-AF77-424A-9F00-CDD27C499350}.Release|Any CPU.Build.0 = Release|Any CPU + {35187E28-CF64-4B0F-AADE-355B5561393C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {35187E28-CF64-4B0F-AADE-355B5561393C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {35187E28-CF64-4B0F-AADE-355B5561393C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {35187E28-CF64-4B0F-AADE-355B5561393C}.Release|Any CPU.Build.0 = Release|Any CPU + {1338D591-1E3F-4DD0-A270-4E4E12DC76C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1338D591-1E3F-4DD0-A270-4E4E12DC76C2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1338D591-1E3F-4DD0-A270-4E4E12DC76C2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1338D591-1E3F-4DD0-A270-4E4E12DC76C2}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/QuickFTP/QuickFTP.v12.suo b/QuickFTP/QuickFTP.v12.suo index 961ffe8..2836528 100644 Binary files a/QuickFTP/QuickFTP.v12.suo and b/QuickFTP/QuickFTP.v12.suo differ diff --git a/QuickFTP/gQuery/3rdparty/SMFTP.dll b/QuickFTP/gQuery/3rdparty/SMFTP.dll deleted file mode 100644 index 4a06567..0000000 Binary files a/QuickFTP/gQuery/3rdparty/SMFTP.dll and /dev/null differ diff --git a/QuickFTP/gQuery/gQuery.csproj b/QuickFTP/gQuery/gQuery.csproj index d0954e9..86ba9c9 100644 --- a/QuickFTP/gQuery/gQuery.csproj +++ b/QuickFTP/gQuery/gQuery.csproj @@ -4,7 +4,7 @@ Debug AnyCPU - {E0B1E1C9-AF77-424A-9F00-CDD27C499350} + {35187E28-CF64-4B0F-AADE-355B5561393C} Exe Properties quickftp @@ -40,9 +40,6 @@ False 3rdparty\Sdaleo.dll - - 3rdparty\SMFTP.dll - diff --git a/QuickFTP/gQuery/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/QuickFTP/gQuery/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index b209332..5126335 100644 Binary files a/QuickFTP/gQuery/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/QuickFTP/gQuery/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/QuickFTP/gQuery/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/QuickFTP/gQuery/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache index 24bfe3e..a095e4e 100644 Binary files a/QuickFTP/gQuery/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache and b/QuickFTP/gQuery/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/QuickFTP/gQuery/obj/Release/build.force b/QuickFTP/gQuery/obj/Release/build.force new file mode 100644 index 0000000..e69de29 diff --git a/QuickFTP/quickftp/bin/Debug/quickftp.exe b/QuickFTP/quickftp/bin/Debug/quickftp.exe index 98e8166..fef24a6 100644 Binary files a/QuickFTP/quickftp/bin/Debug/quickftp.exe and b/QuickFTP/quickftp/bin/Debug/quickftp.exe differ diff --git a/QuickFTP/quickftp/bin/Debug/quickftp.pdb b/QuickFTP/quickftp/bin/Debug/quickftp.pdb index ef9e124..25ee14a 100644 Binary files a/QuickFTP/quickftp/bin/Debug/quickftp.pdb and b/QuickFTP/quickftp/bin/Debug/quickftp.pdb differ diff --git a/QuickFTP/quickftp/bin/Release/quickftp.exe b/QuickFTP/quickftp/bin/Release/quickftp.exe index 259b04e..1936f8c 100644 Binary files a/QuickFTP/quickftp/bin/Release/quickftp.exe and b/QuickFTP/quickftp/bin/Release/quickftp.exe differ diff --git a/QuickFTP/quickftp/bin/Release/quickftp.pdb b/QuickFTP/quickftp/bin/Release/quickftp.pdb index 7653edf..1bc9cf9 100644 Binary files a/QuickFTP/quickftp/bin/Release/quickftp.pdb and b/QuickFTP/quickftp/bin/Release/quickftp.pdb differ diff --git a/QuickFTP/quickftp/obj/Debug/quickftp.exe b/QuickFTP/quickftp/obj/Debug/quickftp.exe index 98e8166..fef24a6 100644 Binary files a/QuickFTP/quickftp/obj/Debug/quickftp.exe and b/QuickFTP/quickftp/obj/Debug/quickftp.exe differ diff --git a/QuickFTP/quickftp/obj/Debug/quickftp.pdb b/QuickFTP/quickftp/obj/Debug/quickftp.pdb index ef9e124..25ee14a 100644 Binary files a/QuickFTP/quickftp/obj/Debug/quickftp.pdb and b/QuickFTP/quickftp/obj/Debug/quickftp.pdb differ diff --git a/QuickFTP/quickftp/obj/Release/DesignTimeResolveAssemblyReferences.cache b/QuickFTP/quickftp/obj/Release/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..a25e5f3 Binary files /dev/null and b/QuickFTP/quickftp/obj/Release/DesignTimeResolveAssemblyReferences.cache differ diff --git a/QuickFTP/quickftp/obj/Release/quickftp.exe b/QuickFTP/quickftp/obj/Release/quickftp.exe index 259b04e..1936f8c 100644 Binary files a/QuickFTP/quickftp/obj/Release/quickftp.exe and b/QuickFTP/quickftp/obj/Release/quickftp.exe differ diff --git a/QuickFTP/quickftp/obj/Release/quickftp.pdb b/QuickFTP/quickftp/obj/Release/quickftp.pdb index 7653edf..1bc9cf9 100644 Binary files a/QuickFTP/quickftp/obj/Release/quickftp.pdb and b/QuickFTP/quickftp/obj/Release/quickftp.pdb differ