Commit 41cd7bbc authored by 簡碩辰's avatar 簡碩辰

重新上傳

parent e9cd9f92
...@@ -130,9 +130,12 @@ namespace ETC_App1 ...@@ -130,9 +130,12 @@ namespace ETC_App1
string k = kcell != null && HasHead ? (kcell.CellType == CellType.Numeric ? kcell.NumericCellValue.ToString() : kcell.StringCellValue) : "C" + m; string k = kcell != null && HasHead ? (kcell.CellType == CellType.Numeric ? kcell.NumericCellValue.ToString() : kcell.StringCellValue) : "C" + m;
string v = vcell != null ? (vcell.CellType == CellType.Numeric ? vcell.NumericCellValue.ToString() : vcell.StringCellValue) : ""; string v = vcell != null ? (vcell.CellType == CellType.Numeric ? vcell.NumericCellValue.ToString() : vcell.CellType == CellType.String ? vcell.StringCellValue : "") : "";
if (!item.ContainsKey(k))
item.Add(k, v); item.Add(k, v);
else
item[k] = v;
} }
value.Add(item); value.Add(item);
......
...@@ -12,6 +12,7 @@ using System.Text; ...@@ -12,6 +12,7 @@ using System.Text;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
using DuoVia.FuzzyStrings;
/// <summary> /// <summary>
/// 功能: 建立檢查資料檔與影像的背景程序。 /// 功能: 建立檢查資料檔與影像的背景程序。
/// 維護: /// 維護:
...@@ -89,6 +90,8 @@ namespace ETC_App1 ...@@ -89,6 +90,8 @@ namespace ETC_App1
int start = Convert.ToInt32(e.Argument); int start = Convert.ToInt32(e.Argument);
StreamWriter sw = new StreamWriter("output.txt");
for (int i = start; i < data.Count && !CancellationPending; i++) for (int i = start; i < data.Count && !CancellationPending; i++)
{ {
Stopwatch stopwatch = Stopwatch.StartNew(); Stopwatch stopwatch = Stopwatch.StartNew();
...@@ -128,6 +131,8 @@ namespace ETC_App1 ...@@ -128,6 +131,8 @@ namespace ETC_App1
} }
} }
if (json.result != null && json.result.Count > 0) if (json.result != null && json.result.Count > 0)
{ {
json.lost1 = json.lost2 = false; json.lost1 = json.lost2 = false;
...@@ -142,8 +147,14 @@ namespace ETC_App1 ...@@ -142,8 +147,14 @@ namespace ETC_App1
{ {
string result = json.result[j].plate[k]; string result = json.result[j].plate[k];
if (json.result[j].plate[k].Length > 0) if (result.Length > 0)
{ {
double fuzzy = StringExtensions.FuzzyMatch(result, data[i]["車牌號碼"]);
sw.WriteLine(string.Format("{0}. {1} fuzzy {2} = {3}", i, data[i]["車牌號碼"], result, fuzzy));
sw.Flush();
if (result == plate || plate.Contains(result)) if (result == plate || plate.Contains(result))
{ {
// 辨識成功,比對正確 // 辨識成功,比對正確
...@@ -157,7 +168,7 @@ namespace ETC_App1 ...@@ -157,7 +168,7 @@ namespace ETC_App1
break; break;
} }
else else if (fuzzy > 0.1)
{ {
// 辨識成功,比對錯誤 // 辨識成功,比對錯誤
json.message1 = data[i]["車牌號碼"]; json.message1 = data[i]["車牌號碼"];
...@@ -172,6 +183,16 @@ namespace ETC_App1 ...@@ -172,6 +183,16 @@ namespace ETC_App1
//json.message2 = (json.message2 == null ? "資料異常" : json.message2) + "[" + result + "]"; //json.message2 = (json.message2 == null ? "資料異常" : json.message2) + "[" + result + "]";
} }
else
{
json.success = false;
json.failed = true;
json.tickoff = true;
json.lost1 = false;
json.lost2 = false;
json.message1 = data[i]["車牌號碼"];
json.message2 = "車牌定位無結果";
}
} }
else { json.message2 = "車牌辨識無結果"; } else { json.message2 = "車牌辨識無結果"; }
} }
...@@ -202,6 +223,8 @@ namespace ETC_App1 ...@@ -202,6 +223,8 @@ namespace ETC_App1
stopwatch.Restart(); stopwatch.Restart();
e.Result = i + 1; e.Result = i + 1;
Thread.Sleep(100);
} }
foreach (string key in Images.Keys) foreach (string key in Images.Keys)
...@@ -218,6 +241,7 @@ namespace ETC_App1 ...@@ -218,6 +241,7 @@ namespace ETC_App1
} }
else { break; } else { break; }
} }
sw.Close();
} }
else // 一維條碼模式 else // 一維條碼模式
{ {
......
...@@ -47,6 +47,7 @@ ...@@ -47,6 +47,7 @@
this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
this.textBox1 = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout();
...@@ -127,10 +128,10 @@ ...@@ -127,10 +128,10 @@
this.etcPictureBox1.BackColor = System.Drawing.Color.Transparent; this.etcPictureBox1.BackColor = System.Drawing.Color.Transparent;
this.etcPictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.etcPictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.etcPictureBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.etcPictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.etcPictureBox1.Location = new System.Drawing.Point(8, 24); this.etcPictureBox1.Location = new System.Drawing.Point(8, 20);
this.etcPictureBox1.Margin = new System.Windows.Forms.Padding(0); this.etcPictureBox1.Margin = new System.Windows.Forms.Padding(0);
this.etcPictureBox1.Name = "etcPictureBox1"; this.etcPictureBox1.Name = "etcPictureBox1";
this.etcPictureBox1.Size = new System.Drawing.Size(736, 395); this.etcPictureBox1.Size = new System.Drawing.Size(736, 399);
this.etcPictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.etcPictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.etcPictureBox1.TabIndex = 0; this.etcPictureBox1.TabIndex = 0;
this.etcPictureBox1.TabStop = false; this.etcPictureBox1.TabStop = false;
...@@ -158,11 +159,11 @@ ...@@ -158,11 +159,11 @@
this.listBox2.ForeColor = System.Drawing.SystemColors.ControlText; this.listBox2.ForeColor = System.Drawing.SystemColors.ControlText;
this.listBox2.FormattingEnabled = true; this.listBox2.FormattingEnabled = true;
this.listBox2.IntegralHeight = false; this.listBox2.IntegralHeight = false;
this.listBox2.ItemHeight = 40; this.listBox2.ItemHeight = 32;
this.listBox2.Location = new System.Drawing.Point(8, 24); this.listBox2.Location = new System.Drawing.Point(8, 20);
this.listBox2.Margin = new System.Windows.Forms.Padding(0); this.listBox2.Margin = new System.Windows.Forms.Padding(0);
this.listBox2.Name = "listBox2"; this.listBox2.Name = "listBox2";
this.listBox2.Size = new System.Drawing.Size(740, 111); this.listBox2.Size = new System.Drawing.Size(740, 115);
this.listBox2.TabIndex = 0; this.listBox2.TabIndex = 0;
this.listBox2.SelectedIndexChanged += new System.EventHandler(this.ListBox2_SelectedIndexChanged); this.listBox2.SelectedIndexChanged += new System.EventHandler(this.ListBox2_SelectedIndexChanged);
// //
...@@ -189,6 +190,7 @@ ...@@ -189,6 +190,7 @@
// groupBox2 // groupBox2
// //
this.groupBox2.Controls.Add(this.listBox1); this.groupBox2.Controls.Add(this.listBox1);
this.groupBox2.Controls.Add(this.textBox1);
this.groupBox2.Controls.Add(this.button1); this.groupBox2.Controls.Add(this.button1);
this.groupBox2.Controls.Add(this.button2); this.groupBox2.Controls.Add(this.button2);
this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill; this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
...@@ -213,10 +215,10 @@ ...@@ -213,10 +215,10 @@
this.listBox1.FormattingEnabled = true; this.listBox1.FormattingEnabled = true;
this.listBox1.IntegralHeight = false; this.listBox1.IntegralHeight = false;
this.listBox1.ItemHeight = 48; this.listBox1.ItemHeight = 48;
this.listBox1.Location = new System.Drawing.Point(8, 24); this.listBox1.Location = new System.Drawing.Point(8, 20);
this.listBox1.Margin = new System.Windows.Forms.Padding(0); this.listBox1.Margin = new System.Windows.Forms.Padding(0);
this.listBox1.Name = "listBox1"; this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(238, 315); this.listBox1.Size = new System.Drawing.Size(238, 286);
this.listBox1.TabIndex = 0; this.listBox1.TabIndex = 0;
this.listBox1.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.ListBox1_DrawItem); this.listBox1.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.ListBox1_DrawItem);
this.listBox1.SelectedIndexChanged += new System.EventHandler(this.ListBox1_SelectedIndexChanged); this.listBox1.SelectedIndexChanged += new System.EventHandler(this.ListBox1_SelectedIndexChanged);
...@@ -268,10 +270,10 @@ ...@@ -268,10 +270,10 @@
this.etcPictureBox2.BackColor = System.Drawing.Color.Transparent; this.etcPictureBox2.BackColor = System.Drawing.Color.Transparent;
this.etcPictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.etcPictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.etcPictureBox2.Dock = System.Windows.Forms.DockStyle.Fill; this.etcPictureBox2.Dock = System.Windows.Forms.DockStyle.Fill;
this.etcPictureBox2.Location = new System.Drawing.Point(8, 24); this.etcPictureBox2.Location = new System.Drawing.Point(8, 20);
this.etcPictureBox2.Margin = new System.Windows.Forms.Padding(0); this.etcPictureBox2.Margin = new System.Windows.Forms.Padding(0);
this.etcPictureBox2.Name = "etcPictureBox2"; this.etcPictureBox2.Name = "etcPictureBox2";
this.etcPictureBox2.Size = new System.Drawing.Size(238, 111); this.etcPictureBox2.Size = new System.Drawing.Size(238, 115);
this.etcPictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.etcPictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.etcPictureBox2.TabIndex = 0; this.etcPictureBox2.TabIndex = 0;
this.etcPictureBox2.TabStop = false; this.etcPictureBox2.TabStop = false;
...@@ -307,7 +309,7 @@ ...@@ -307,7 +309,7 @@
this.toolStripStatusLabel1.Font = new System.Drawing.Font("標楷體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.toolStripStatusLabel1.Font = new System.Drawing.Font("標楷體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.toolStripStatusLabel1.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3); this.toolStripStatusLabel1.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3);
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
this.toolStripStatusLabel1.Size = new System.Drawing.Size(219, 20); this.toolStripStatusLabel1.Size = new System.Drawing.Size(176, 20);
this.toolStripStatusLabel1.Text = "toolStripStatusLabel1"; this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
this.toolStripStatusLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.toolStripStatusLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
// //
...@@ -316,7 +318,7 @@ ...@@ -316,7 +318,7 @@
this.toolStripStatusLabel2.Font = new System.Drawing.Font("標楷體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.toolStripStatusLabel2.Font = new System.Drawing.Font("標楷體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.toolStripStatusLabel2.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3); this.toolStripStatusLabel2.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3);
this.toolStripStatusLabel2.Name = "toolStripStatusLabel2"; this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
this.toolStripStatusLabel2.Size = new System.Drawing.Size(219, 20); this.toolStripStatusLabel2.Size = new System.Drawing.Size(176, 20);
this.toolStripStatusLabel2.Text = "toolStripStatusLabel2"; this.toolStripStatusLabel2.Text = "toolStripStatusLabel2";
this.toolStripStatusLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.toolStripStatusLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
// //
...@@ -325,7 +327,7 @@ ...@@ -325,7 +327,7 @@
this.toolStripStatusLabel3.Font = new System.Drawing.Font("標楷體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.toolStripStatusLabel3.Font = new System.Drawing.Font("標楷體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.toolStripStatusLabel3.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3); this.toolStripStatusLabel3.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3);
this.toolStripStatusLabel3.Name = "toolStripStatusLabel3"; this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
this.toolStripStatusLabel3.Size = new System.Drawing.Size(219, 20); this.toolStripStatusLabel3.Size = new System.Drawing.Size(176, 20);
this.toolStripStatusLabel3.Text = "toolStripStatusLabel3"; this.toolStripStatusLabel3.Text = "toolStripStatusLabel3";
this.toolStripStatusLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.toolStripStatusLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
// //
...@@ -334,13 +336,25 @@ ...@@ -334,13 +336,25 @@
this.toolStripStatusLabel4.Font = new System.Drawing.Font("標楷體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.toolStripStatusLabel4.Font = new System.Drawing.Font("標楷體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.toolStripStatusLabel4.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3); this.toolStripStatusLabel4.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3);
this.toolStripStatusLabel4.Name = "toolStripStatusLabel4"; this.toolStripStatusLabel4.Name = "toolStripStatusLabel4";
this.toolStripStatusLabel4.Size = new System.Drawing.Size(219, 20); this.toolStripStatusLabel4.Size = new System.Drawing.Size(176, 20);
this.toolStripStatusLabel4.Text = "toolStripStatusLabel4"; this.toolStripStatusLabel4.Text = "toolStripStatusLabel4";
this.toolStripStatusLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.toolStripStatusLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
// //
// textBox1
//
this.textBox1.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.textBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.textBox1.Font = new System.Drawing.Font("標楷體", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
this.textBox1.Location = new System.Drawing.Point(8, 306);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(238, 33);
this.textBox1.TabIndex = 3;
this.textBox1.TextChanged += new System.EventHandler(this.TextBox1_TextChanged);
//
// ETCPictureCheckBox // ETCPictureCheckBox
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 23F); this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 19F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ControlLightLight; this.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.Controls.Add(this.splitContainer1); this.Controls.Add(this.splitContainer1);
...@@ -397,5 +411,6 @@ ...@@ -397,5 +411,6 @@
private System.Windows.Forms.Button button1; private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2; private System.Windows.Forms.Button button2;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel4; private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel4;
private System.Windows.Forms.TextBox textBox1;
} }
} }
...@@ -164,6 +164,8 @@ namespace ETC_App1 ...@@ -164,6 +164,8 @@ namespace ETC_App1
{ {
Json json = Data[listBox1.SelectedIndex]; Json json = Data[listBox1.SelectedIndex];
textBox1.Text = json.message1;
if ((json.success || json.failed || json.lost2) && json.content && File.Exists(json.filename)) if ((json.success || json.failed || json.lost2) && json.content && File.Exists(json.filename))
{ {
MemoryStream memory = new MemoryStream(); MemoryStream memory = new MemoryStream();
...@@ -226,7 +228,7 @@ namespace ETC_App1 ...@@ -226,7 +228,7 @@ namespace ETC_App1
button1.ForeColor = json.success ? Color.Green : button1.ForeColor; button1.ForeColor = json.success ? Color.Green : button1.ForeColor;
button1.Text = json.failed ? "第 " + json.index + " 筆資料異常!" : button1.Text; button1.Text = json.failed ? "第 " + json.index + " 筆資料檢查異常!" : button1.Text;
button1.ForeColor = json.failed ? WarningColor : button1.ForeColor; button1.ForeColor = json.failed ? WarningColor : button1.ForeColor;
...@@ -395,5 +397,10 @@ namespace ETC_App1 ...@@ -395,5 +397,10 @@ namespace ETC_App1
file2003.Close(); file2003.Close();
workbook2003.Close(); workbook2003.Close();
} }
private void TextBox1_TextChanged(object sender, EventArgs e)
{
Data[SelectedIndex].message1 = textBox1.Text;
}
} }
} }
...@@ -59,6 +59,9 @@ ...@@ -59,6 +59,9 @@
<Reference Include="Aspose.BarCode, Version=19.4.0.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL"> <Reference Include="Aspose.BarCode, Version=19.4.0.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL">
<HintPath>..\packages\Aspose.BarCode.19.4.0\lib\net45\Aspose.BarCode.dll</HintPath> <HintPath>..\packages\Aspose.BarCode.19.4.0\lib\net45\Aspose.BarCode.dll</HintPath>
</Reference> </Reference>
<Reference Include="DuoVia.FuzzyStrings, Version=2.0.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\DuoVia.FuzzyStrings.2.0.1\lib\net462\DuoVia.FuzzyStrings.dll</HintPath>
</Reference>
<Reference Include="Emgu.CV.UI, Version=4.0.1.3373, Culture=neutral, PublicKeyToken=7281126722ab4438, processorArchitecture=MSIL"> <Reference Include="Emgu.CV.UI, Version=4.0.1.3373, Culture=neutral, PublicKeyToken=7281126722ab4438, processorArchitecture=MSIL">
<HintPath>..\packages\EMGU.CV.4.0.1.3373\lib\net35\Emgu.CV.UI.dll</HintPath> <HintPath>..\packages\EMGU.CV.4.0.1.3373\lib\net35\Emgu.CV.UI.dll</HintPath>
</Reference> </Reference>
......
...@@ -42,6 +42,8 @@ namespace ETC_App1 ...@@ -42,6 +42,8 @@ namespace ETC_App1
toolStripTextBox3.Size = new Size(width / 2, toolStripTextBox1.Size.Height); toolStripTextBox3.Size = new Size(width / 2, toolStripTextBox1.Size.Height);
toolStripTextBox4.Size = new Size(width / 2, toolStripTextBox1.Size.Height); toolStripTextBox4.Size = new Size(width / 2, toolStripTextBox1.Size.Height);
toolStripButton5.Visible = false;
} }
} }
...@@ -62,6 +64,8 @@ namespace ETC_App1 ...@@ -62,6 +64,8 @@ namespace ETC_App1
toolStripButton4.Enabled = toolStripButton6.Enabled = !value; toolStripButton4.Enabled = toolStripButton6.Enabled = !value;
toolStripButton5.Enabled = false; toolStripButton5.Enabled = false;
toolStripTextBox1.Text = toolStripTextBox2.Text = string.Empty;
} }
} }
...@@ -78,6 +82,8 @@ namespace ETC_App1 ...@@ -78,6 +82,8 @@ namespace ETC_App1
IsLock = true; IsLock = true;
Text = "E-Eye 電子眼圖像辨識系統"; Text = "E-Eye 電子眼圖像辨識系統";
WindowState = FormWindowState.Maximized;
} }
private void Form1_Resize(object sender, EventArgs e) private void Form1_Resize(object sender, EventArgs e)
...@@ -239,9 +245,11 @@ namespace ETC_App1 ...@@ -239,9 +245,11 @@ namespace ETC_App1
//etcPictureCheckBox1.ToolStripStatusLabel4 = e.UserState as string; //etcPictureCheckBox1.ToolStripStatusLabel4 = e.UserState as string;
} }
long sum = etcPictureCheckBox1.Success + etcPictureCheckBox1.Noplate + etcPictureCheckBox1.Noimg + etcPictureCheckBox1.Nodata;
etcPictureCheckBox1.ToolStripProgressBar = e.ProgressPercentage; etcPictureCheckBox1.ToolStripProgressBar = e.ProgressPercentage;
etcPictureCheckBox1.ToolStripStatusLabel1 = "完成正確:" + etcPictureCheckBox1.Success; etcPictureCheckBox1.ToolStripStatusLabel1 = string.Format("完成正確:{0} ({1})", etcPictureCheckBox1.Success, etcPictureCheckBox1.Success * 100 / sum);
etcPictureCheckBox1.ToolStripStatusLabel2 = "車牌定位無結果:" + etcPictureCheckBox1.Noplate; etcPictureCheckBox1.ToolStripStatusLabel2 = "車牌定位無結果:" + etcPictureCheckBox1.Noplate;
...@@ -286,14 +294,18 @@ namespace ETC_App1 ...@@ -286,14 +294,18 @@ namespace ETC_App1
{ {
BackgroundWorker worker = new BackgroundWorker() { WorkerReportsProgress = true, WorkerSupportsCancellation = true }; BackgroundWorker worker = new BackgroundWorker() { WorkerReportsProgress = true, WorkerSupportsCancellation = true };
worker.DoWork += Worker_DoWork_fail;
worker.RunWorkerAsync(new object[] { etcPictureCheckBox1.Data, etcBackgroundWorker31.Data[etcBackgroundWorker31.SelectedKey] , toolStripTextBox4.Text }); worker.RunWorkerAsync(new object[] { etcPictureCheckBox1.Data, etcBackgroundWorker31.Data[etcBackgroundWorker31.SelectedKey] , toolStripTextBox4.Text });
worker.DoWork += Worker_DoWork; worker.RunWorkerCompleted += Worker_RunWorkerCompleted;
worker.DoWork += Worker_DoWork_fail; }
private void Worker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
etcPictureCheckBox1.SaveLogs(toolStripTextBox4.Text); etcPictureCheckBox1.SaveLogs(toolStripTextBox4.Text);
MessageBox.Show("輸出成功"); MessageBox.Show("輸出成功");
} }
private void Worker_DoWork(object sender, DoWorkEventArgs e) private void Worker_DoWork(object sender, DoWorkEventArgs e)
...@@ -314,31 +326,34 @@ namespace ETC_App1 ...@@ -314,31 +326,34 @@ namespace ETC_App1
SheetOne.GetRow(0).CreateCell(0).SetCellValue("序號"); SheetOne.GetRow(0).CreateCell(0).SetCellValue("序號");
SheetOne.GetRow(0).CreateCell(1).SetCellValue("申訴單位"); SheetOne.GetRow(0).CreateCell(1).SetCellValue("申訴單位");
SheetOne.GetRow(0).CreateCell(2).SetCellValue("公警隊別"); SheetOne.GetRow(0).CreateCell(2).SetCellValue("公警隊別");
SheetOne.GetRow(0).CreateCell(3).SetCellValue( "起站國道編號"); SheetOne.GetRow(0).CreateCell(3).SetCellValue("起站國道編號");
SheetOne.GetRow(0).CreateCell(4).SetCellValue( "起站收費區"); SheetOne.GetRow(0).CreateCell(4).SetCellValue("起站收費區");
SheetOne.GetRow(0).CreateCell(5).SetCellValue( "起站門架座落地點"); SheetOne.GetRow(0).CreateCell(5).SetCellValue("起站門架座落地點");
SheetOne.GetRow(0).CreateCell(6).SetCellValue( "訖站國道編號"); SheetOne.GetRow(0).CreateCell(6).SetCellValue("訖站國道編號");
SheetOne.GetRow(0).CreateCell(7).SetCellValue( "訖站收費區"); SheetOne.GetRow(0).CreateCell(7).SetCellValue("訖站收費區");
SheetOne.GetRow(0).CreateCell(8).SetCellValue( "訖站門架座落地點"); SheetOne.GetRow(0).CreateCell(8).SetCellValue("訖站門架座落地點");
SheetOne.GetRow(0).CreateCell(9).SetCellValue( "訖站時間"); SheetOne.GetRow(0).CreateCell(9).SetCellValue("訖站時間");
SheetOne.GetRow(0).CreateCell(10).SetCellValue( "帳單編號"); SheetOne.GetRow(0).CreateCell(10).SetCellValue("帳單編號");
SheetOne.GetRow(0).CreateCell(11).SetCellValue( "交易日"); SheetOne.GetRow(0).CreateCell(11).SetCellValue("交易日");
SheetOne.GetRow(0).CreateCell(12).SetCellValue( "車牌號碼"); SheetOne.GetRow(0).CreateCell(12).SetCellValue("車牌號碼");
SheetOne.GetRow(0).CreateCell(13).SetCellValue( "車型"); SheetOne.GetRow(0).CreateCell(13).SetCellValue("車型");
SheetOne.GetRow(0).CreateCell(14).SetCellValue( "車主"); SheetOne.GetRow(0).CreateCell(14).SetCellValue("車主");
SheetOne.GetRow(0).CreateCell(15).SetCellValue( "車主證號"); SheetOne.GetRow(0).CreateCell(15).SetCellValue("車主證號");
SheetOne.GetRow(0).CreateCell(16).SetCellValue( "改寄人"); SheetOne.GetRow(0).CreateCell(16).SetCellValue("改寄人");
SheetOne.GetRow(0).CreateCell(17).SetCellValue( "改寄人證號"); SheetOne.GetRow(0).CreateCell(17).SetCellValue("改寄人證號");
SheetOne.GetRow(0).CreateCell(18).SetCellValue( "改寄人生日"); SheetOne.GetRow(0).CreateCell(18).SetCellValue("改寄人生日");
SheetOne.GetRow(0).CreateCell(19).SetCellValue( "改寄人應到案處所"); SheetOne.GetRow(0).CreateCell(19).SetCellValue("改寄人應到案處所");
SheetOne.GetRow(0).CreateCell(20).SetCellValue( "申裝類別"); SheetOne.GetRow(0).CreateCell(20).SetCellValue("申裝類別");
SheetOne.GetRow(0).CreateCell(21).SetCellValue( "通行費淨額"); SheetOne.GetRow(0).CreateCell(21).SetCellValue("通行費淨額");
SheetOne.GetRow(0).CreateCell(22).SetCellValue( "欠費原因"); SheetOne.GetRow(0).CreateCell(22).SetCellValue("欠費原因");
SheetOne.GetRow(0).CreateCell(23).SetCellValue( "繳款期限"); SheetOne.GetRow(0).CreateCell(23).SetCellValue("繳款期限");
SheetOne.GetRow(0).CreateCell(24).SetCellValue( "偵測之eTag ID"); SheetOne.GetRow(0).CreateCell(24).SetCellValue("偵測之eTag ID");
SheetOne.GetRow(0).CreateCell(25).SetCellValue( "帳單地址"); SheetOne.GetRow(0).CreateCell(25).SetCellValue("帳單地址");
SheetOne.GetRow(0).CreateCell(26).SetCellValue( "帳單地址類別"); SheetOne.GetRow(0).CreateCell(26).SetCellValue("帳單地址類別");
SheetOne.GetRow(0).CreateCell(27).SetCellValue( "改寄類別"); SheetOne.GetRow(0).CreateCell(27).SetCellValue("改寄類別");
SheetOne.GetRow(0).CreateCell(28).SetCellValue("檢查註記");
SheetOne.GetRow(0).CreateCell(29).SetCellValue("檢查註記2");
int i = 0; //紀錄筆數 int i = 0; //紀錄筆數
int j = 1; //資料寫入第幾列 int j = 1; //資料寫入第幾列
...@@ -350,34 +365,36 @@ namespace ETC_App1 ...@@ -350,34 +365,36 @@ namespace ETC_App1
{ {
SheetOne.CreateRow(j); SheetOne.CreateRow(j);
SheetOne.GetRow(j).CreateCell(0).SetCellValue(execlData[i]["序號"]); SheetOne.GetRow(j).CreateCell(0).SetCellValue(execlData[i].ContainsKey("序號") ? execlData[i]["序號"] : "");
SheetOne.GetRow(j).CreateCell(1).SetCellValue(execlData[i]["申訴單位"]); SheetOne.GetRow(j).CreateCell(1).SetCellValue(execlData[i].ContainsKey("申訴單位") ? execlData[i]["申訴單位"] : "");
SheetOne.GetRow(j).CreateCell(2).SetCellValue(execlData[i]["公警隊別"]); SheetOne.GetRow(j).CreateCell(2).SetCellValue(execlData[i].ContainsKey("公警隊別") ? execlData[i]["公警隊別"] : "");
SheetOne.GetRow(j).CreateCell(3).SetCellValue(execlData[i]["起站國道編號"]); SheetOne.GetRow(j).CreateCell(3).SetCellValue(execlData[i].ContainsKey("起站國道編號") ? execlData[i]["起站國道編號"] : "");
SheetOne.GetRow(j).CreateCell(4).SetCellValue(execlData[i]["起站收費區"]); SheetOne.GetRow(j).CreateCell(4).SetCellValue(execlData[i].ContainsKey("起站收費區") ? execlData[i]["起站收費區"] : "");
SheetOne.GetRow(j).CreateCell(5).SetCellValue(execlData[i]["起站門架座落地點"]); SheetOne.GetRow(j).CreateCell(5).SetCellValue(execlData[i].ContainsKey("起站門架座落地點") ? execlData[i]["起站門架座落地點"] : "");
SheetOne.GetRow(j).CreateCell(6).SetCellValue(execlData[i]["訖站國道編號"]); SheetOne.GetRow(j).CreateCell(6).SetCellValue(execlData[i].ContainsKey("訖站國道編號") ? execlData[i]["訖站國道編號"] : "");
SheetOne.GetRow(j).CreateCell(7).SetCellValue(execlData[i]["訖站收費區"]); SheetOne.GetRow(j).CreateCell(7).SetCellValue(execlData[i].ContainsKey("訖站收費區") ? execlData[i]["訖站收費區"] : "");
SheetOne.GetRow(j).CreateCell(8).SetCellValue(execlData[i]["訖站門架座落地點"]); SheetOne.GetRow(j).CreateCell(8).SetCellValue(execlData[i].ContainsKey("訖站門架座落地點") ? execlData[i]["訖站門架座落地點"] : "");
SheetOne.GetRow(j).CreateCell(9).SetCellValue(execlData[i]["訖站時間"]); SheetOne.GetRow(j).CreateCell(9).SetCellValue(execlData[i].ContainsKey("訖站時間") ? execlData[i]["訖站時間"] : "");
SheetOne.GetRow(j).CreateCell(10).SetCellValue(execlData[i]["帳單編號"]); SheetOne.GetRow(j).CreateCell(10).SetCellValue(execlData[i].ContainsKey("帳單編號") ? execlData[i]["帳單編號"] : "");
SheetOne.GetRow(j).CreateCell(11).SetCellValue(execlData[i]["交易日"]); SheetOne.GetRow(j).CreateCell(11).SetCellValue(execlData[i].ContainsKey("交易日") ? execlData[i]["交易日"] : "");
SheetOne.GetRow(j).CreateCell(12).SetCellValue(execlData[i]["車牌號碼"]); SheetOne.GetRow(j).CreateCell(12).SetCellValue(execlData[i].ContainsKey("車牌號碼") ? execlData[i]["車牌號碼"] : "");
SheetOne.GetRow(j).CreateCell(13).SetCellValue(execlData[i]["車型"]); SheetOne.GetRow(j).CreateCell(13).SetCellValue(execlData[i].ContainsKey("車型") ? execlData[i]["車型"] : "");
SheetOne.GetRow(j).CreateCell(14).SetCellValue(execlData[i]["車主"]); SheetOne.GetRow(j).CreateCell(14).SetCellValue(execlData[i].ContainsKey("車主") ? execlData[i]["車主"] : "");
SheetOne.GetRow(j).CreateCell(15).SetCellValue(execlData[i]["車主證號"]); SheetOne.GetRow(j).CreateCell(15).SetCellValue(execlData[i].ContainsKey("車主證號") ? execlData[i]["車主證號"] : "");
SheetOne.GetRow(j).CreateCell(16).SetCellValue(execlData[i]["改寄人"]); SheetOne.GetRow(j).CreateCell(16).SetCellValue(execlData[i].ContainsKey("起站門架座落地點") ? execlData[i]["改寄人"] : "");
SheetOne.GetRow(j).CreateCell(17).SetCellValue(execlData[i]["改寄人證號"]); SheetOne.GetRow(j).CreateCell(17).SetCellValue(execlData[i].ContainsKey("改寄人") ? execlData[i]["改寄人證號"] : "");
SheetOne.GetRow(j).CreateCell(18).SetCellValue(execlData[i]["改寄人生日"]); SheetOne.GetRow(j).CreateCell(18).SetCellValue(execlData[i].ContainsKey("改寄人生日") ? execlData[i]["改寄人生日"] : "");
SheetOne.GetRow(j).CreateCell(19).SetCellValue(execlData[i]["改寄人應到案處所"]); SheetOne.GetRow(j).CreateCell(19).SetCellValue(execlData[i].ContainsKey("改寄人應到案處所") ? execlData[i]["改寄人應到案處所"] : "");
SheetOne.GetRow(j).CreateCell(20).SetCellValue(execlData[i]["申裝類別"]); SheetOne.GetRow(j).CreateCell(20).SetCellValue(execlData[i].ContainsKey("申裝類別") ? execlData[i]["申裝類別"] : "");
SheetOne.GetRow(j).CreateCell(21).SetCellValue(execlData[i]["通行費淨額"]); SheetOne.GetRow(j).CreateCell(21).SetCellValue(execlData[i].ContainsKey("通行費淨額") ? execlData[i]["通行費淨額"] : "");
SheetOne.GetRow(j).CreateCell(22).SetCellValue(execlData[i]["欠費原因"]); SheetOne.GetRow(j).CreateCell(22).SetCellValue(execlData[i].ContainsKey("欠費原因") ? execlData[i]["欠費原因"] : "");
SheetOne.GetRow(j).CreateCell(23).SetCellValue(execlData[i]["繳款期限"]); SheetOne.GetRow(j).CreateCell(23).SetCellValue(execlData[i].ContainsKey("繳款期限") ? execlData[i]["繳款期限"] : "");
SheetOne.GetRow(j).CreateCell(24).SetCellValue(execlData[i]["偵測之eTag ID"]); SheetOne.GetRow(j).CreateCell(24).SetCellValue(execlData[i].ContainsKey("偵測之eTag ID") ? execlData[i]["偵測之eTag ID"] : "");
SheetOne.GetRow(j).CreateCell(25).SetCellValue(execlData[i]["帳單地址"]); SheetOne.GetRow(j).CreateCell(25).SetCellValue(execlData[i].ContainsKey("帳單地址") ? execlData[i]["帳單地址"] : "");
SheetOne.GetRow(j).CreateCell(26).SetCellValue(execlData[i]["帳單地址類別"]); SheetOne.GetRow(j).CreateCell(26).SetCellValue(execlData[i].ContainsKey("帳單地址類別") ? execlData[i]["帳單地址類別"] : "");
SheetOne.GetRow(j).CreateCell(27).SetCellValue(execlData[i]["改寄類別"]); SheetOne.GetRow(j).CreateCell(27).SetCellValue(execlData[i].ContainsKey("改寄類別") ? execlData[i]["改寄類別"] : "");
SheetOne.GetRow(j).CreateCell(28).SetCellValue(json.message1);
SheetOne.GetRow(j).CreateCell(29).SetCellValue(json.message2);
j += 1; j += 1;
} }
...@@ -406,34 +423,40 @@ namespace ETC_App1 ...@@ -406,34 +423,40 @@ namespace ETC_App1
workbook2003.CreateSheet("Sheet1"); //新建1個Sheet工作表 workbook2003.CreateSheet("Sheet1"); //新建1個Sheet工作表
HSSFSheet SheetOne = (HSSFSheet)workbook2003.GetSheet("Sheet1"); //獲取名稱為Sheet1的工作表 HSSFSheet SheetOne = (HSSFSheet)workbook2003.GetSheet("Sheet1"); //獲取名稱為Sheet1的工作表
SheetOne.CreateRow(0); //建立第一列的開頭資料 SheetOne.CreateRow(0); //建立第一列的開頭資料
//SheetOne.GetRow(0).CreateCell(0).SetCellValue("序號");
//SheetOne.GetRow(0).CreateCell(1).SetCellValue("申訴單位");
//SheetOne.GetRow(0).CreateCell(2).SetCellValue("公警隊別");
//SheetOne.GetRow(0).CreateCell(3).SetCellValue("起站國道編號");
//SheetOne.GetRow(0).CreateCell(4).SetCellValue("起站收費區");
//SheetOne.GetRow(0).CreateCell(5).SetCellValue("起站門架座落地點");
//SheetOne.GetRow(0).CreateCell(6).SetCellValue("訖站國道編號");
//SheetOne.GetRow(0).CreateCell(7).SetCellValue("訖站收費區");
//SheetOne.GetRow(0).CreateCell(8).SetCellValue("訖站門架座落地點");
//SheetOne.GetRow(0).CreateCell(9).SetCellValue("訖站時間");
//SheetOne.GetRow(0).CreateCell(10).SetCellValue("帳單編號");
//SheetOne.GetRow(0).CreateCell(11).SetCellValue("交易日");
//SheetOne.GetRow(0).CreateCell(12).SetCellValue("車牌號碼");
//SheetOne.GetRow(0).CreateCell(13).SetCellValue("車型");
//SheetOne.GetRow(0).CreateCell(14).SetCellValue("車主");
//SheetOne.GetRow(0).CreateCell(15).SetCellValue("車主證號");
//SheetOne.GetRow(0).CreateCell(16).SetCellValue("改寄人");
//SheetOne.GetRow(0).CreateCell(17).SetCellValue("改寄人證號");
//SheetOne.GetRow(0).CreateCell(18).SetCellValue("改寄人生日");
//SheetOne.GetRow(0).CreateCell(19).SetCellValue("改寄人應到案處所");
//SheetOne.GetRow(0).CreateCell(20).SetCellValue("申裝類別");
//SheetOne.GetRow(0).CreateCell(21).SetCellValue("通行費淨額");
//SheetOne.GetRow(0).CreateCell(22).SetCellValue("欠費原因");
//SheetOne.GetRow(0).CreateCell(23).SetCellValue("繳款期限");
//SheetOne.GetRow(0).CreateCell(24).SetCellValue("偵測之eTag ID");
//SheetOne.GetRow(0).CreateCell(25).SetCellValue("帳單地址");
//SheetOne.GetRow(0).CreateCell(26).SetCellValue("帳單地址類別");
//SheetOne.GetRow(0).CreateCell(27).SetCellValue("改寄類別");
//SheetOne.GetRow(0).CreateCell(28).SetCellValue("檢查註記1");
//SheetOne.GetRow(0).CreateCell(29).SetCellValue("檢查註記2");
SheetOne.GetRow(0).CreateCell(0).SetCellValue("序號"); SheetOne.GetRow(0).CreateCell(0).SetCellValue("序號");
SheetOne.GetRow(0).CreateCell(1).SetCellValue("申訴單位"); SheetOne.GetRow(0).CreateCell(1).SetCellValue("車牌號碼");
SheetOne.GetRow(0).CreateCell(2).SetCellValue("公警隊別"); SheetOne.GetRow(0).CreateCell(2).SetCellValue("繳款期限");
SheetOne.GetRow(0).CreateCell(3).SetCellValue("起站國道編號"); SheetOne.GetRow(0).CreateCell(3).SetCellValue("檢查註記");
SheetOne.GetRow(0).CreateCell(4).SetCellValue("起站收費區");
SheetOne.GetRow(0).CreateCell(5).SetCellValue("起站門架座落地點");
SheetOne.GetRow(0).CreateCell(6).SetCellValue("訖站國道編號");
SheetOne.GetRow(0).CreateCell(7).SetCellValue("訖站收費區");
SheetOne.GetRow(0).CreateCell(8).SetCellValue("訖站門架座落地點");
SheetOne.GetRow(0).CreateCell(9).SetCellValue("訖站時間");
SheetOne.GetRow(0).CreateCell(10).SetCellValue("帳單編號");
SheetOne.GetRow(0).CreateCell(11).SetCellValue("交易日");
SheetOne.GetRow(0).CreateCell(12).SetCellValue("車牌號碼");
SheetOne.GetRow(0).CreateCell(13).SetCellValue("車型");
SheetOne.GetRow(0).CreateCell(14).SetCellValue("車主");
SheetOne.GetRow(0).CreateCell(15).SetCellValue("車主證號");
SheetOne.GetRow(0).CreateCell(16).SetCellValue("改寄人");
SheetOne.GetRow(0).CreateCell(17).SetCellValue("改寄人證號");
SheetOne.GetRow(0).CreateCell(18).SetCellValue("改寄人生日");
SheetOne.GetRow(0).CreateCell(19).SetCellValue("改寄人應到案處所");
SheetOne.GetRow(0).CreateCell(20).SetCellValue("申裝類別");
SheetOne.GetRow(0).CreateCell(21).SetCellValue("通行費淨額");
SheetOne.GetRow(0).CreateCell(22).SetCellValue("欠費原因");
SheetOne.GetRow(0).CreateCell(23).SetCellValue("繳款期限");
SheetOne.GetRow(0).CreateCell(24).SetCellValue("偵測之eTag ID");
SheetOne.GetRow(0).CreateCell(25).SetCellValue("帳單地址");
SheetOne.GetRow(0).CreateCell(26).SetCellValue("帳單地址類別");
SheetOne.GetRow(0).CreateCell(27).SetCellValue("改寄類別");
int i = 0; //紀錄筆數 int i = 0; //紀錄筆數
int j = 1; //資料寫入第幾列,J=1是為了預留第一列的空間放開頭 int j = 1; //資料寫入第幾列,J=1是為了預留第一列的空間放開頭
...@@ -445,34 +468,44 @@ namespace ETC_App1 ...@@ -445,34 +468,44 @@ namespace ETC_App1
{ {
SheetOne.CreateRow(j); //建立相對的列 SheetOne.CreateRow(j); //建立相對的列
SheetOne.GetRow(j).CreateCell(0).SetCellValue(execlData[i]["序號"]); //SheetOne.GetRow(j).CreateCell(0).SetCellValue(execlData[i].ContainsKey("序號") ? execlData[i]["序號"] : "");
SheetOne.GetRow(j).CreateCell(1).SetCellValue(execlData[i]["申訴單位"]); //SheetOne.GetRow(j).CreateCell(1).SetCellValue(execlData[i].ContainsKey("申訴單位") ? execlData[i]["申訴單位"] : "");
SheetOne.GetRow(j).CreateCell(2).SetCellValue(execlData[i]["公警隊別"]); //SheetOne.GetRow(j).CreateCell(2).SetCellValue(execlData[i].ContainsKey("公警隊別") ? execlData[i]["公警隊別"] : "");
SheetOne.GetRow(j).CreateCell(3).SetCellValue(execlData[i]["起站國道編號"]); //SheetOne.GetRow(j).CreateCell(3).SetCellValue(execlData[i].ContainsKey("起站國道編號") ? execlData[i]["起站國道編號"] : "");
SheetOne.GetRow(j).CreateCell(4).SetCellValue(execlData[i]["起站收費區"]); //SheetOne.GetRow(j).CreateCell(4).SetCellValue(execlData[i].ContainsKey("起站收費區") ? execlData[i]["起站收費區"] : "");
SheetOne.GetRow(j).CreateCell(5).SetCellValue(execlData[i]["起站門架座落地點"]); //SheetOne.GetRow(j).CreateCell(5).SetCellValue(execlData[i].ContainsKey("起站門架座落地點") ? execlData[i]["起站門架座落地點"] : "");
SheetOne.GetRow(j).CreateCell(6).SetCellValue(execlData[i]["訖站國道編號"]); //SheetOne.GetRow(j).CreateCell(6).SetCellValue(execlData[i].ContainsKey("訖站國道編號") ? execlData[i]["訖站國道編號"] : "");
SheetOne.GetRow(j).CreateCell(7).SetCellValue(execlData[i]["訖站收費區"]); //SheetOne.GetRow(j).CreateCell(7).SetCellValue(execlData[i].ContainsKey("訖站收費區") ? execlData[i]["訖站收費區"] : "");
SheetOne.GetRow(j).CreateCell(8).SetCellValue(execlData[i]["訖站門架座落地點"]); //SheetOne.GetRow(j).CreateCell(8).SetCellValue(execlData[i].ContainsKey("訖站門架座落地點") ? execlData[i]["訖站門架座落地點"] : "");
SheetOne.GetRow(j).CreateCell(9).SetCellValue(execlData[i]["訖站時間"]); //SheetOne.GetRow(j).CreateCell(9).SetCellValue(execlData[i].ContainsKey("訖站時間") ? execlData[i]["訖站時間"] : "");
SheetOne.GetRow(j).CreateCell(10).SetCellValue(execlData[i]["帳單編號"]); //SheetOne.GetRow(j).CreateCell(10).SetCellValue(execlData[i].ContainsKey("帳單編號") ? execlData[i]["帳單編號"] : "");
SheetOne.GetRow(j).CreateCell(11).SetCellValue(execlData[i]["交易日"]); //SheetOne.GetRow(j).CreateCell(11).SetCellValue(execlData[i].ContainsKey("交易日") ? execlData[i]["交易日"] : "");
SheetOne.GetRow(j).CreateCell(12).SetCellValue(execlData[i]["車牌號碼"]); //SheetOne.GetRow(j).CreateCell(12).SetCellValue(execlData[i].ContainsKey("車牌號碼") ? execlData[i]["車牌號碼"] : "");
SheetOne.GetRow(j).CreateCell(13).SetCellValue(execlData[i]["車型"]); //SheetOne.GetRow(j).CreateCell(13).SetCellValue(execlData[i].ContainsKey("車型") ? execlData[i]["車型"] : "");
SheetOne.GetRow(j).CreateCell(14).SetCellValue(execlData[i]["車主"]); //SheetOne.GetRow(j).CreateCell(14).SetCellValue(execlData[i].ContainsKey("車主") ? execlData[i]["車主"] : "");
SheetOne.GetRow(j).CreateCell(15).SetCellValue(execlData[i]["車主證號"]); //SheetOne.GetRow(j).CreateCell(15).SetCellValue(execlData[i].ContainsKey("車主證號") ? execlData[i]["車主證號"] : "");
SheetOne.GetRow(j).CreateCell(16).SetCellValue(execlData[i]["改寄人"]); //SheetOne.GetRow(j).CreateCell(16).SetCellValue(execlData[i].ContainsKey("起站門架座落地點") ? execlData[i]["改寄人"] : "");
SheetOne.GetRow(j).CreateCell(17).SetCellValue(execlData[i]["改寄人證號"]); //SheetOne.GetRow(j).CreateCell(17).SetCellValue(execlData[i].ContainsKey("改寄人") ? execlData[i]["改寄人證號"] : "");
SheetOne.GetRow(j).CreateCell(18).SetCellValue(execlData[i]["改寄人生日"]); //SheetOne.GetRow(j).CreateCell(18).SetCellValue(execlData[i].ContainsKey("改寄人生日") ? execlData[i]["改寄人生日"] : "");
SheetOne.GetRow(j).CreateCell(19).SetCellValue(execlData[i]["改寄人應到案處所"]); //SheetOne.GetRow(j).CreateCell(19).SetCellValue(execlData[i].ContainsKey("改寄人應到案處所") ? execlData[i]["改寄人應到案處所"] : "");
SheetOne.GetRow(j).CreateCell(20).SetCellValue(execlData[i]["申裝類別"]); //SheetOne.GetRow(j).CreateCell(20).SetCellValue(execlData[i].ContainsKey("申裝類別") ? execlData[i]["申裝類別"] : "");
SheetOne.GetRow(j).CreateCell(21).SetCellValue(execlData[i]["通行費淨額"]); //SheetOne.GetRow(j).CreateCell(21).SetCellValue(execlData[i].ContainsKey("通行費淨額") ? execlData[i]["通行費淨額"] : "");
SheetOne.GetRow(j).CreateCell(22).SetCellValue(execlData[i]["欠費原因"]); //SheetOne.GetRow(j).CreateCell(22).SetCellValue(execlData[i].ContainsKey("欠費原因") ? execlData[i]["欠費原因"] : "");
SheetOne.GetRow(j).CreateCell(23).SetCellValue(execlData[i]["繳款期限"]); //SheetOne.GetRow(j).CreateCell(23).SetCellValue(execlData[i].ContainsKey("繳款期限") ? execlData[i]["繳款期限"] : "");
SheetOne.GetRow(j).CreateCell(24).SetCellValue(execlData[i]["偵測之eTag ID"]); //SheetOne.GetRow(j).CreateCell(24).SetCellValue(execlData[i].ContainsKey("偵測之eTag ID") ? execlData[i]["偵測之eTag ID"] : "");
SheetOne.GetRow(j).CreateCell(25).SetCellValue(execlData[i]["帳單地址"]); //SheetOne.GetRow(j).CreateCell(25).SetCellValue(execlData[i].ContainsKey("帳單地址") ? execlData[i]["帳單地址"] : "");
SheetOne.GetRow(j).CreateCell(26).SetCellValue(execlData[i]["帳單地址類別"]); //SheetOne.GetRow(j).CreateCell(26).SetCellValue(execlData[i].ContainsKey("帳單地址類別") ? execlData[i]["帳單地址類別"] : "");
SheetOne.GetRow(j).CreateCell(27).SetCellValue(execlData[i]["改寄類別"]); //SheetOne.GetRow(j).CreateCell(27).SetCellValue(execlData[i].ContainsKey("改寄類別") ? execlData[i]["改寄類別"] : "");
//SheetOne.GetRow(j).CreateCell(28).SetCellValue(json.message1);
//SheetOne.GetRow(j).CreateCell(29).SetCellValue(json.message2);
SheetOne.GetRow(j).CreateCell(0).SetCellValue(execlData[i].ContainsKey("序號") ? execlData[i]["序號"] : "");
SheetOne.GetRow(j).CreateCell(1).SetCellValue(execlData[i].ContainsKey("車牌號碼") ? execlData[i]["車牌號碼"] : "");
SheetOne.GetRow(j).CreateCell(2).SetCellValue(execlData[i].ContainsKey("繳款期限") ? execlData[i]["繳款期限"] : "");
SheetOne.GetRow(j).CreateCell(3).SetCellValue("資料異常");
j += 1; //有寫入資料要換下一列 j += 1; //有寫入資料要換下一列
} }
......
0. 6289-T8 fuzzy J28918 = 0.23764880952381
1. ARN-9767 fuzzy RN9767 = 0.37405303030303
2. AVB-1513 fuzzy VB1513 = 0.37405303030303
3. ARY-3263 fuzzy RY326S = 0.275094696969697
4. AQF-8356 fuzzy AQF8356 = 0.525822829131653
5. 9391-W7 fuzzy 9391W7 = 0.527380952380952
6. AVB-2713 fuzzy AVB2713 = 0.525822829131653
7. 8U-0909 fuzzy 8U0909 = 0.527380952380952
8. 1300-HP fuzzy L300HP = 0.324350649350649
9. B4-3356 fuzzy B43356 = 0.527380952380952
10. AJV-9703 fuzzy JV970S = 0.275094696969697
11. 5206-ZS fuzzy 5206ZS = 0.527380952380952
12. KEC-5975 fuzzy M4H9 = 0.0425347222222222
12. KEC-5975 fuzzy 2J111U = 0.0347222222222222
12. KEC-5975 fuzzy K4GK = 0.083849366359447
12. KEC-5975 fuzzy UM1UE8 = 0.0399305555555556
12. KEC-5975 fuzzy EC5975 = 0.37405303030303
13. ARR-9680 fuzzy RR9680 = 0.37405303030303
14. 3823-YW fuzzy 3823YV = 0.442857142857143
15. AHD-1550 fuzzy HD1551 = 0.275094696969697
16. 3401-MU fuzzy 3401MJ = 0.442857142857143
17. ABZ-2706 fuzzy ABZ2706 = 0.525822829131653
18. AZB-0863 fuzzy AZR0863 = 0.379392666157372
19. AYP-6682 fuzzy YP6682 = 0.37405303030303
20. IL-6933 fuzzy 1H37X7 = 0.0462749615975422
20. IL-6933 fuzzy L6933 = 0.377922077922078
21. AWJ-9173 fuzzy WJ9173 = 0.37405303030303
22. 5213-VN fuzzy 5213VN = 0.527380952380952
23. RBF-1299 fuzzy RBF1299 = 0.525822829131653
24. ADD-5301 fuzzy ADD5301 = 0.525822829131653
25. 7130-FY fuzzy 7130FY = 0.527380952380952
26. AZJ-1623 fuzzy AZJL1623 = 0.500434027777778
27. AUE-7963 fuzzy AUE7963 = 0.525822829131653
28. 5080-YT fuzzy 5080LY1 = 0.420068027210884
29. 6938-NC fuzzy 6938NC = 0.527380952380952
30. KEE-8800 fuzzy KEE88U0 = 0.323195187165775
31. 1977-T8 fuzzy U977T8 = 0.324350649350649
32. 5668-YV fuzzy 5668YV = 0.527380952380952
33. 2792-MJ fuzzy 2792MJ = 0.527380952380952
34. 9677-SG fuzzy 9677SG = 0.527380952380952
35. 1955-P6 fuzzy 1955P6 = 0.527380952380952
36. AXM-3630 fuzzy XM3630 = 0.37405303030303
37. AKV-7111 fuzzy AKV711 = 0.394886363636364
38. AYT-9311 fuzzy AY19311 = 0.379392666157372
39. 7133-B9 fuzzy 133B9 = 0.349350649350649
40. 5U-1317 fuzzy 5U1317 = 0.527380952380952
41. ATE-1511 fuzzy ATE151 = 0.394886363636364
42. AHZ-7692 fuzzy 1HZ7692 = 0.34998090145149
43. AGC-1376 fuzzy GC1376 = 0.37405303030303
44. 9196-XZ fuzzy 9196XZ = 0.527380952380952
45. BAK-1330 fuzzy BAK1330 = 0.525822829131653
46. 6Q-1311 fuzzy 6QM131J = 0.399659863945578
47. CX-9377 fuzzy WCX937 = 0.288839285714286
48. AXW-5998 fuzzy XW5998 = 0.37405303030303
49. 7098-U5 fuzzy 7098U5 = 0.527380952380952
50. BAA-3395 fuzzy BAA3395 = 0.525822829131653
51. MU-9758 fuzzy MU9758 = 0.527380952380952
52. 7T-3186 fuzzy 7T3186 = 0.527380952380952
53. 9819-QK fuzzy 9819QK = 0.527380952380952
54. LW-3897 fuzzy W3897 = 0.377922077922078
55. BAW-7012 fuzzy BAW7012 = 0.525822829131653
56. 6819-WE fuzzy 6819WE = 0.527380952380952
57. AUY-2226 fuzzy AUY2226 = 0.525822829131653
58. AWM-1615 fuzzy WM1615 = 0.37405303030303
59. 7987-VS fuzzy 7987VS = 0.527380952380952
60. 7428-LT fuzzy 7428L = 0.377922077922078
61. HF-8758 fuzzy F8V58 = 0.192410714285714
62. 3538-TJ fuzzy 3538T = 0.377922077922078
63. AHK-5361 fuzzy AHK5361 = 0.525822829131653
64. AHL-7819 fuzzy HL7819 = 0.37405303030303
65. ABG-3916 fuzzy BG3916 = 0.37405303030303
66. AHG-1789 fuzzy AHG1789 = 0.525822829131653
67. 3530-EU fuzzy 3530EU = 0.527380952380952
68. 2D-7737 fuzzy 2U7737 = 0.381493506493507
70. APY-1861 fuzzy APY1861 = 0.525822829131653
71. AJJ-7185 fuzzy JJ7185 = 0.37405303030303
72. APZ-3572 fuzzy APZ3572 = 0.525822829131653
73. NY-5016 fuzzy NY5016A = 0.371927179962894
74. ALS-9238 fuzzy ALS9238 = 0.525822829131653
75. 9716-ZN fuzzy 9716ZN = 0.527380952380952
76. ALP-5980 fuzzy ALP5980 = 0.525822829131653
77. APR-5067 fuzzy APR5067 = 0.525822829131653
78. APZ-3216 fuzzy APZ32 = 0.292708333333333
79. APR-3025 fuzzy PR3025 = 0.37405303030303
80. AQQ-0136 fuzzy AQQ0136 = 0.525822829131653
81. 5309-FE fuzzy 5309FE = 0.527380952380952
82. 9690-F9 fuzzy 9690F9 = 0.527380952380952
83. 6097-PS fuzzy 6097PS = 0.527380952380952
84. 1590-EJ fuzzy 1590E = 0.377922077922078
85. AQZ-6091 fuzzy AQZ609 = 0.363636363636364
86. W9-3443 fuzzy W93443 = 0.527380952380952
87. 8888-JC fuzzy 8888JC = 0.527380952380952
88. 773-5A fuzzy WW5N = 0.0699404761904762
89. AUU-5166 fuzzy AUU566 = 0.34280303030303
90. 1355-LD fuzzy 1355 = 0.374828296703297
91. AQB-1106 fuzzy AQB1106 = 0.525822829131653
92. AJX-8333 fuzzy JX83S3 = 0.34375
93. APC-8503 fuzzy PC8503 = 0.37405303030303
94. ABB-0955 fuzzy BH0955 = 0.291666666666667
95. 3985-N6 fuzzy 3985N6 = 0.527380952380952
96. 1907-C8 fuzzy 19D7C8 = 0.300541125541126
97. 7C-4932 fuzzy 7C4932 = 0.527380952380952
98. 9671-VV fuzzy 9671VV = 0.527380952380952
99. 7881-PR fuzzy 7881PR = 0.527380952380952
100. 2231-WR fuzzy 11M1 = 0.0570054945054945
100. 2231-WR fuzzy 2231WR = 0.527380952380952
101. 5728-VU fuzzy 5728VU = 0.527380952380952
103. AVB-5972 fuzzy VB5972 = 0.37405303030303
104. AUZ-8321 fuzzy AUZ8321 = 0.525822829131653
105. 7025-HW fuzzy 7025HW = 0.527380952380952
108. 7986-QS fuzzy 7986QS = 0.527380952380952
109. RCH-5563 fuzzy R0H5563 = 0.341052330022918
110. AYT-2573 fuzzy AYT2573 = 0.525822829131653
111. DI-8085 fuzzy U18085 = 0.306696428571429
112. 9926-ZE fuzzy 9926ZE = 0.527380952380952
113. 1131-W9 fuzzy 1131W9 = 0.527380952380952
114. AUZ-0833 fuzzy UZ0853 = 0.21875
115. U4-2267 fuzzy 42267 = 0.377922077922078
116. 5751-WF fuzzy 5751WF = 0.527380952380952
117. AHH-3637 fuzzy HH3637 = 0.37405303030303
118. 6069-XV fuzzy 6069XV = 0.527380952380952
119. ALK-5868 fuzzy K5868 = 0.317708333333333
120. M5-4190 fuzzy M54190 = 0.527380952380952
121. W7-5507 fuzzy W75507 = 0.527380952380952
122. 6J-2850 fuzzy 6J2850 = 0.527380952380952
123. AXW-2350 fuzzy AXW2350 = 0.525822829131653
124. 5658-X6 fuzzy 5658X6 = 0.527380952380952
125. AXY-5285 fuzzy AXY5285 = 0.525822829131653
126. AXU-8071 fuzzy AXU8071 = 0.525822829131653
128. 5J-5155 fuzzy 5J5155 = 0.527380952380952
129. KEG-9039 fuzzy KEG9039 = 0.525822829131653
130. AWL-1357 fuzzy WL1357 = 0.37405303030303
131. 3628-FQ fuzzy 3628FQ = 0.527380952380952
132. 5168-QR fuzzy 5168QR = 0.527380952380952
133. AGM-1582 fuzzy 1 = 0.0659722222222222
134. AHP-3058 fuzzy HP3058 = 0.37405303030303
135. V7-5267 fuzzy V1526T = 0.273160173160173
136. AKQ-6776 fuzzy KQ6776 = 0.37405303030303
137. AYW-3733 fuzzy YW3733 = 0.37405303030303
138. ASZ-0350 fuzzy ASZD350 = 0.370464094728801
139. H4-6935 fuzzy 46935 = 0.377922077922078
140. W6-3798 fuzzy W63798 = 0.527380952380952
141. ABN-1269 fuzzy ABN1269 = 0.525822829131653
142. ACD-5915 fuzzy AJD59 = 0.163690476190476
144. 6783-RW fuzzy 6783RW = 0.527380952380952
145. 3756-PW fuzzy 3756PW = 0.527380952380952
146. 2657-NJ fuzzy 2657N = 0.377922077922078
147. 2755-WE fuzzy 2755WE = 0.527380952380952
148. ABY-0993 fuzzy BY0993 = 0.37405303030303
149. 0569-QT fuzzy 0569QT = 0.527380952380952
150. 6687-LJ fuzzy 6687U = 0.370779220779221
151. W2-2889 fuzzy W22889 = 0.527380952380952
152. 7H-0681 fuzzy H0681 = 0.377922077922078
153. AJT-5017 fuzzy JT5012 = 0.275094696969697
154. S9-1941 fuzzy S91941 = 0.527380952380952
155. 5855-G7 fuzzy 5855G7 = 0.527380952380952
156. 6V-7307 fuzzy 6VG7307 = 0.497874149659864
157. AQH-7556 fuzzy QHL7556 = 0.34998090145149
158. ARS-9093 fuzzy RS9093 = 0.37405303030303
159. AYE-5732 fuzzy YE5732 = 0.37405303030303
160. AQE-0819 fuzzy QE0819 = 0.37405303030303
161. 809-X2 fuzzy QJ0 = 0.061965811965812
161. 809-X2 fuzzy 43NA1 = 0.0480769230769231
162. ARP-3735 fuzzy ARP3735 = 0.525822829131653
163. AFP-6198 fuzzy FP6198 = 0.37405303030303
164. 8492-LN fuzzy 84921 = 0.370779220779221
165. AFQ-7558 fuzzy FQ7558 = 0.37405303030303
166. 9616-Q9 fuzzy UM111 = 0.0552197802197802
166. 9616-Q9 fuzzy LM77 = 0.0403225806451613
166. 9616-Q9 fuzzy 961609 = 0.381493506493507
167. 5250-WK fuzzy 5250WK = 0.527380952380952
168. 0320-TJ fuzzy 0320T = 0.377922077922078
169. 1032-HV fuzzy 1032HV = 0.527380952380952
170. 7828-YU fuzzy 7828Y1 = 0.442857142857143
171. 1701-F5 fuzzy 1701F5 = 0.527380952380952
172. AGB-1980 fuzzy AGB980 = 0.394886363636364
173. 8206-RV fuzzy 8206RV = 0.527380952380952
174. ABS-3810 fuzzy BS3810 = 0.37405303030303
175. W3-0996 fuzzy 3099G = 0.256493506493507
176. ALZ-3530 fuzzy ALZ3530 = 0.525822829131653
177. AMV-2829 fuzzy MV2829 = 0.37405303030303
178. APN-3993 fuzzy PN3993 = 0.37405303030303
179. AQM-8177 fuzzy QM877 = 0.234375
180. 8072-RG fuzzy 8072RG = 0.527380952380952
181. AYM-3850 fuzzy YM3850 = 0.37405303030303
182. 6155-U8 fuzzy 6155U8 = 0.527380952380952
183. 3792-MZ fuzzy 3792MZ = 0.527380952380952
184. 5500-D7 fuzzy 550007 = 0.41482683982684
185. 8105-TZ fuzzy LW = 0.0403225806451613
185. 8105-TZ fuzzy 8105TZ1 = 0.371927179962894
186. AUK-5500 fuzzy AUK5500 = 0.525822829131653
187. 7923-TR fuzzy 7923TR = 0.527380952380952
188. LT-1076 fuzzy T1076 = 0.377922077922078
189. 6678-YF fuzzy 6678YF = 0.527380952380952
190. AYR-1729 fuzzy YR1729 = 0.37405303030303
191. AYR-0290 fuzzy YR0290 = 0.37405303030303
192. 8810-R8 fuzzy 8810R8 = 0.527380952380952
193. 7591-B7 fuzzy 7591B7 = 0.527380952380952
194. AWM-5263 fuzzy WM5263 = 0.37405303030303
195. 4268-UD fuzzy 4268UU = 0.442857142857143
196. ALR-1207 fuzzy R1207 = 0.317708333333333
197. AWW-7392 fuzzy WW7392 = 0.37405303030303
198. AYT-8903 fuzzy 0W = 0.0559475806451613
198. AYT-8903 fuzzy AYT8903 = 0.525822829131653
199. 7189-QB fuzzy 7189QB = 0.527380952380952
200. BAJ-5359 fuzzy FAJ5359 = 0.34998090145149
201. AYE-7553 fuzzy YE7553 = 0.37405303030303
202. QU-1006 fuzzy QUL1006 = 0.497874149659864
203. ALW-7308 fuzzy LW7308 = 0.37405303030303
204. AYX-3282 fuzzy AYX3282 = 0.525822829131653
205. AYU-8369 fuzzy AYU8369 = 0.525822829131653
206. YN-2746 fuzzy YN2746 = 0.527380952380952
207. US-3747 fuzzy LS3747 = 0.348160173160173
208. AZA-7875 fuzzy ZA7875 = 0.37405303030303
209. 0655-HF fuzzy 0655HF = 0.527380952380952
210. ALL-6597 fuzzy 173 = 0.0451388888888889
210. ALL-6597 fuzzy LL6597 = 0.37405303030303
211. AAM-8269 fuzzy AM8269 = 0.394886363636364
212. 3255-W8 fuzzy 3255W8 = 0.527380952380952
213. 9712-WK fuzzy 9712WK = 0.527380952380952
214. V2-7616 fuzzy V27616 = 0.527380952380952
215. ABS-7893 fuzzy BS7893 = 0.37405303030303
216. AYJ-8587 fuzzy AYJ8587V = 0.37795928030303
217. 9875-FL fuzzy 9875FL = 0.527380952380952
218. AXY-7323 fuzzy AXY7323 = 0.525822829131653
219. 8361-W3 fuzzy 8361W3 = 0.527380952380952
220. AVN-8027 fuzzy VN8027 = 0.37405303030303
221. 5220-EQ fuzzy 5220EQ = 0.527380952380952
222. 0828-DN fuzzy 11MM = 0.0403225806451613
222. 0828-DN fuzzy 08280N = 0.381493506493507
223. 4086-XB fuzzy 4086XE = 0.442857142857143
224. AMY-9060 fuzzy AMY9060 = 0.525822829131653
226. 2618-N2 fuzzy 2618N2 = 0.527380952380952
227. 9198-N3 fuzzy 9198N3 = 0.527380952380952
228. 9292-KF fuzzy 9292KU = 0.442857142857143
229. 0922-Q2 fuzzy 092202 = 0.381493506493507
230. 8338-HB fuzzy 8338HB = 0.527380952380952
231. AHK-9657 fuzzy HK99657 = 0.323195187165775
233. 6223-DH fuzzy L344M = 0.0552197802197802
233. 6223-DH fuzzy 62230W = 0.342207792207792
234. AHJ-7555 fuzzy AHJ7555 = 0.525822829131653
235. AHL-1309 fuzzy AHL309 = 0.394886363636364
236. A8-7428 fuzzy A87425 = 0.419047619047619
237. OA-6622 fuzzy 0A6622 = 0.348160173160173
238. AHJ-6273 fuzzy AHJ6273 = 0.525822829131653
239. H8-6666 fuzzy H86666 = 0.527380952380952
240. 2193-D5 fuzzy 2193D5 = 0.527380952380952
241. 8S-5339 fuzzy 8S5339 = 0.527380952380952
242. AKL-2632 fuzzy AKL2632 = 0.525822829131653
243. 8155-W7 fuzzy 8155W7 = 0.527380952380952
245. 3326-VX fuzzy 3326VX = 0.527380952380952
246. APN-0877 fuzzy PN0877 = 0.37405303030303
247. 7Q-8807 fuzzy 7Q8807 = 0.527380952380952
248. F8-8992 fuzzy F88992 = 0.527380952380952
249. AMA-7005 fuzzy AMA7005 = 0.525822829131653
250. 2331-KX fuzzy 14C = 0.059981684981685
251. 2267-J7 fuzzy 2267J7 = 0.527380952380952
252. 1218-X2 fuzzy 1218X2 = 0.527380952380952
253. AJW-5993 fuzzy JW5993 = 0.37405303030303
254. ARU-0692 fuzzy AA = 0.097614247311828
255. 1701-C5 fuzzy 1701C5 = 0.527380952380952
256. T6-0468 fuzzy T60468 = 0.527380952380952
257. AVH-3895 fuzzy VH3895 = 0.37405303030303
258. 1692-JE fuzzy U692JE = 0.324350649350649
259. AHJ-0293 fuzzy HJ0293 = 0.37405303030303
260. AUP-7552 fuzzy AUP7552 = 0.525822829131653
261. NR-8700 fuzzy VR8700 = 0.348160173160173
262. 5889-P3 fuzzy 5889P3 = 0.527380952380952
263. 3939-X2 fuzzy 3939X2 = 0.527380952380952
264. AWN-2003 fuzzy AWN2003 = 0.525822829131653
265. Q8-8309 fuzzy Q88309 = 0.527380952380952
266. AYP-9538 fuzzy AYP9538 = 0.525822829131653
267. 7280-HA fuzzy 7280HA = 0.527380952380952
268. 6T-7092 fuzzy 6T7092 = 0.527380952380952
269. ASH-5855 fuzzy ASH5855 = 0.525822829131653
270. ACD-7985 fuzzy A0D7985 = 0.341052330022918
271. AYJ-6889 fuzzy YJ6889 = 0.37405303030303
272. 8322-F9 fuzzy 8322F9 = 0.527380952380952
273. AYX-5103 fuzzy YX5103 = 0.37405303030303
274. AXV-5730 fuzzy XV5730 = 0.37405303030303
275. AXN-1197 fuzzy 1XN1197 = 0.34998090145149
276. AWM-3733 fuzzy 7 = 0.0659722222222222
277. 1805-LQ fuzzy 1805LQ = 0.527380952380952
278. RAU-0185 fuzzy AU0185 = 0.37405303030303
279. 8935-YD fuzzy 8935YU = 0.442857142857143
280. ARG-2519 fuzzy ARG2519 = 0.525822829131653
281. 5762-DS fuzzy 5762DS = 0.527380952380952
282. 3210-N2 fuzzy 320N2 = 0.320779220779221
283. 6388-KU fuzzy 6388K0 = 0.442857142857143
284. AXY-0929 fuzzy XY0929 = 0.37405303030303
285. BAV-5232 fuzzy BAV5232 = 0.525822829131653
286. BAR-7850 fuzzy 8AR7850 = 0.34998090145149
287. 9410-ZN fuzzy 9410ZN = 0.527380952380952
288. LAN-055 fuzzy A11 = 0.059981684981685
289. BCP-3117 fuzzy B0P311 = 0.229166666666667
290. 1889-UE fuzzy U889 = 0.216804029304029
291. 3298-DX fuzzy 3298DX = 0.527380952380952
292. ASN-8795 fuzzy SN8795 = 0.37405303030303
293. 3005-FZ fuzzy 3005F2 = 0.442857142857143
294. 1538-Q6 fuzzy U538J6 = 0.23764880952381
295. 1192-LH fuzzy 1192UH = 0.381493506493507
296. 9E-1576 fuzzy JEW1576 = 0.325371057513915
297. ABW-1662 fuzzy 1111111 = 0.044786866359447
297. ABW-1662 fuzzy 111111111 = 0.0381944444444444
297. ABW-1662 fuzzy BW662 = 0.292708333333333
298. AHK-8315 fuzzy KB3W = 0.0637019230769231
299. 7793-H6 fuzzy 7793H6 = 0.527380952380952
300. 2196-ZM fuzzy 2196ZM = 0.527380952380952
301. 4856-LP fuzzy 4856 = 0.374828296703297
303. 1267-SB fuzzy 1267SB = 0.527380952380952
305. 6391-ZG fuzzy 6391ZGW = 0.371927179962894
306. 6191-J5 fuzzy 6191J5 = 0.527380952380952
307. AHZ-0261 fuzzy AHZ026 = 0.363636363636364
308. 6133-N2 fuzzy 5133N2 = 0.324350649350649
310. 2B-7307 fuzzy 2BF7307 = 0.497874149659864
311. H7-9497 fuzzy H79497 = 0.527380952380952
313. AHN-5351 fuzzy UN535 = 0.188690476190476
314. AGV-3113 fuzzy GV3113 = 0.37405303030303
315. AHC-8630 fuzzy HC8630 = 0.37405303030303
316. SN-4517 fuzzy V4517 = 0.335267857142857
317. AJM-6031 fuzzy JM6031 = 0.37405303030303
318. ACQ-9890 fuzzy CQ9890 = 0.37405303030303
319. AVH-3291 fuzzy VH3291 = 0.37405303030303
320. ANG-1110 fuzzy ANG110 = 0.37405303030303
321. ANH-5700 fuzzy NH5700 = 0.37405303030303
322. RBA-9231 fuzzy RBA9231 = 0.525822829131653
323. AMD-7559 fuzzy MD7559 = 0.37405303030303
324. AWM-0733 fuzzy WM0733 = 0.37405303030303
325. APV-7335 fuzzy APV7335 = 0.525822829131653
326. ANP-5853 fuzzy 1NP5853 = 0.34998090145149
327. AHN-9071 fuzzy HN9071 = 0.37405303030303
328. AQD-5995 fuzzy QD5995 = 0.37405303030303
329. ARB-3082 fuzzy RB3082 = 0.37405303030303
330. AQB-8316 fuzzy QB8316 = 0.37405303030303
331. 3Q-7813 fuzzy 3QL781J = 0.399659863945578
332. ABC-6173 fuzzy BC673 = 0.234375
333. 6591-SM fuzzy 6591SM = 0.527380952380952
334. AXZ-0521 fuzzy AXZ0521 = 0.775822829131653
337. 8710-YP fuzzy 8710YF = 0.442857142857143
338. 3206-JV fuzzy 32U6JV = 0.300541125541126
339. 6H-1736 fuzzy J1 = 0.0581797235023041
339. 6H-1736 fuzzy 5AYW = 0.0403225806451613
340. ARY-6160 fuzzy ARY660 = 0.34280303030303
341. AJZ-8957 fuzzy JZ8957 = 0.37405303030303
342. 7K-1550 fuzzy 7KW155U = 0.399659863945578
343. ARU-0217 fuzzy ARU0217 = 0.525822829131653
344. 7008-TM fuzzy 008TM = 0.349350649350649
345. ALX-5012 fuzzy F4UAXS = 0.107638888888889
346. 7436-GN fuzzy 436G71 = 0.204315476190476
347. 0907-JW fuzzy 0907JW = 0.527380952380952
348. RAE-9639 fuzzy RAE9639 = 0.525822829131653
349. ARR-0710 fuzzy ARR0710 = 0.525822829131653
350. 5208-JS fuzzy 5208JS = 0.527380952380952
351. ART-0637 fuzzy RT0632 = 0.275094696969697
352. 6R-1315 fuzzy MMM1313K = 0.187937675070028
353. ARU-6590 fuzzy RU6590 = 0.37405303030303
354. 8995-NC fuzzy 8995NL = 0.442857142857143
355. KB-9545 fuzzy KB9545 = 0.527380952380952
356. ASR-5970 fuzzy ASR5970 = 0.525822829131653
357. 4222-YX fuzzy 4222YX = 0.527380952380952
358. QP-8053 fuzzy QP8053 = 0.527380952380952
359. AXM-0657 fuzzy AXM0657 = 0.775822829131653
360. 6401-VS fuzzy 6401VS = 0.527380952380952
361. 6087-VB fuzzy 6087V8 = 0.442857142857143
362. AQC-2960 fuzzy QC2960 = 0.37405303030303
363. TDB-6185 fuzzy TDB6185 = 0.525822829131653
364. ATT-9562 fuzzy TT9562 = 0.37405303030303
365. ATT-6930 fuzzy ATT6930 = 0.525822829131653
366. DE-9202 fuzzy DE9202 = 0.527380952380952
367. QR-8687 fuzzy QR8687 = 0.527380952380952
368. 9191-X3 fuzzy 9191X3 = 0.527380952380952
370. ARW-0951 fuzzy ARW0951 = 0.525822829131653
371. Y3-0267 fuzzy Y30267 = 0.527380952380952
372. ASU-9155 fuzzy SU9155 = 0.37405303030303
373. ASU-8932 fuzzy SU8932 = 0.37405303030303
374. AUW-5120 fuzzy UW520 = 0.234375
375. 5053-K8 fuzzy 5053K03 = 0.325371057513915
376. 9080-U6 fuzzy 9080U6 = 0.527380952380952
377. AMH-6359 fuzzy AMH6359 = 0.525822829131653
378. 9A-8733 fuzzy 9A8733 = 0.527380952380952
379. 7228-SG fuzzy 7228SG = 0.527380952380952
380. AUU-5091 fuzzy L1HM = 0.0425347222222222
381. AVA-0301 fuzzy VA0301 = 0.37405303030303
382. 0360-XD fuzzy 0360X0 = 0.442857142857143
383. AFG-2367 fuzzy AFG2367 = 0.525822829131653
384. 2563-P5 fuzzy 2563P5 = 0.527380952380952
385. AXC-8667 fuzzy XC8667 = 0.37405303030303
386. AYV-6837 fuzzy AYV6837 = 0.525822829131653
387. 9406-YP fuzzy 9406YP = 0.527380952380952
388. AWM-8391 fuzzy WM8391 = 0.37405303030303
389. 7889-XW fuzzy 7889XW = 0.527380952380952
390. ABK-2622 fuzzy BK2622 = 0.37405303030303
391. AYY-6179 fuzzy YY6179 = 0.37405303030303
392. ZW-0602 fuzzy 3Q = 0.0403225806451613
392. ZW-0602 fuzzy W0602 = 0.377922077922078
393. 6883-SN fuzzy Q883S = 0.220982142857143
396. 9977-HB fuzzy 9977HH = 0.442857142857143
397. 2R-2381 fuzzy 2R2381 = 0.527380952380952
398. AZL-0909 fuzzy AZL0909 = 0.525822829131653
399. 6S-4729 fuzzy 6S4729 = 0.527380952380952
400. A8-5219 fuzzy A85219 = 0.527380952380952
401. AVL-7906 fuzzy AVL7906 = 0.525822829131653
402. APS-9002 fuzzy APS9002 = 0.525822829131653
403. 2331-VZ fuzzy 2331VZ = 0.527380952380952
404. 7199-U6 fuzzy 7199U6 = 0.527380952380952
405. 6525-U5 fuzzy 6525U5 = 0.527380952380952
406. 3303-NB fuzzy 3303N8 = 0.442857142857143
407. AXN-2853 fuzzy UH11 = 0.0347222222222222
407. AXN-2853 fuzzy A1PH = 0.083849366359447
407. AXN-2853 fuzzy XN2853 = 0.37405303030303
409. AFQ-5892 fuzzy FQ5892 = 0.37405303030303
410. 4687-WX fuzzy 4687W = 0.377922077922078
412. 5H-9392 fuzzy WH9392 = 0.348160173160173
414. 9379-G2 fuzzy 9379G2 = 0.527380952380952
415. H8-8965 fuzzy 40 = 0.0403225806451613
415. H8-8965 fuzzy H889G5 = 0.300541125541126
416. 7A-6223 fuzzy L96223 = 0.306696428571429
417. ABY-3016 fuzzy ABY301 = 0.363636363636364
418. M8-7935 fuzzy A87935 = 0.348160173160173
419. AHR-9817 fuzzy HR9817 = 0.37405303030303
420. ACB-9589 fuzzy CB9589 = 0.37405303030303
421. 7112-QZ fuzzy 7112QZ = 0.527380952380952
422. 2481-QE fuzzy 2481QE = 0.527380952380952
423. ALT-9670 fuzzy ALT9671 = 0.435749299719888
424. AYS-0502 fuzzy AYS0502 = 0.525822829131653
425. 1365-KB fuzzy 1365KB = 0.527380952380952
426. QP-7867 fuzzy QP7867 = 0.527380952380952
427. ALW-0205 fuzzy ALW0205 = 0.525822829131653
428. 7551-GT fuzzy 7551GT = 0.527380952380952
429. AML-0263 fuzzy M0263 = 0.317708333333333
430. AKV-6238 fuzzy KV6238 = 0.37405303030303
431. ALY-3035 fuzzy 1LY3035 = 0.34998090145149
432. AJV-8505 fuzzy V8505 = 0.317708333333333
433. AMD-1600 fuzzy AMD1600 = 0.525822829131653
434. 5317-KV fuzzy U5317KV = 0.371927179962894
435. ALU-7310 fuzzy ALU7310 = 0.525822829131653
436. 938-S7 fuzzy H9M9AS = 0.061965811965812
437. J7-9989 fuzzy 179989 = 0.348160173160173
438. 903-Y9 fuzzy 1S11 = 0.0480769230769231
438. 903-Y9 fuzzy 903Y9 = 0.508974358974359
439. ANJ-9938 fuzzy ANJ9938 = 0.525822829131653
440. AMW-6796 fuzzy MW6796 = 0.37405303030303
441. ANK-1028 fuzzy NK61028 = 0.34998090145149
442. 8512-R9 fuzzy 8512R9 = 0.527380952380952
443. AMA-9573 fuzzy MA9573 = 0.37405303030303
444. 9233-QJ fuzzy 9233QJ = 0.527380952380952
445. ARY-8215 fuzzy RY8215 = 0.37405303030303
446. 9470-M6 fuzzy 9470M6 = 0.527380952380952
447. ARW-3938 fuzzy RW3938 = 0.37405303030303
448. 4796-SD fuzzy 4796SD = 0.527380952380952
449. 2160-LA fuzzy 2160LA = 0.527380952380952
450. ASQ-3823 fuzzy ASQ3823 = 0.525822829131653
451. ALX-2031 fuzzy ALX2031 = 0.775822829131653
452. AUV-5575 fuzzy AUV5575 = 0.525822829131653
453. Q9-5469 fuzzy Q95469 = 0.527380952380952
454. AUF-8516 fuzzy AUF851W = 0.435749299719888
455. RBH-1822 fuzzy RBHL822 = 0.370464094728801
456. AFK-7886 fuzzy FK7886 = 0.37405303030303
457. AVA-5792 fuzzy VA5792 = 0.37405303030303
458. AUT-5990 fuzzy AUT5990 = 0.525822829131653
459. 9702-X2 fuzzy 9702X2 = 0.527380952380952
460. AUK-3788 fuzzy AUK3788 = 0.525822829131653
461. H8-5645 fuzzy 185645 = 0.348160173160173
462. AUV-1695 fuzzy AUV1695 = 0.525822829131653
463. AUU-2152 fuzzy UAU2152 = 0.34998090145149
464. AUY-5656 fuzzy AUY5656 = 0.525822829131653
465. 7692-U2 fuzzy 7692U2 = 0.527380952380952
466. KEC-3357 fuzzy EC3357 = 0.37405303030303
467. EY-8697 fuzzy Y8697 = 0.377922077922078
468. KLC-5775 fuzzy MYWET = 0.0347222222222222
468. KLC-5775 fuzzy 5JJE = 0.0481350806451613
469. AUP-3872 fuzzy UP3872 = 0.37405303030303
470. 5B-0851 fuzzy 5B0851 = 0.527380952380952
471. ARQ-0978 fuzzy WQ0978 = 0.291666666666667
472. AUY-5511 fuzzy AUY5511 = 0.525822829131653
473. 2Q-8782 fuzzy 2Q8782 = 0.527380952380952
474. 2861-Q2 fuzzy 286102 = 0.381493506493507
475. 9691-VA fuzzy 9691VA = 0.527380952380952
476. AXU-5132 fuzzy XU5132 = 0.37405303030303
477. AZA-0872 fuzzy AZA0872 = 0.525822829131653
478. 5197-HA fuzzy 5197 = 0.374828296703297
479. RCH-7088 fuzzy FCH7088 = 0.34998090145149
480. ARJ-3300 fuzzy ARJ3300 = 0.525822829131653
481. 9935-A3 fuzzy 9935A3 = 0.527380952380952
482. ABZ-2928 fuzzy A8229 = 0.144940476190476
483. AYX-2673 fuzzy AYX2673 = 0.525822829131653
484. AYL-6519 fuzzy AYL6519 = 0.525822829131653
485. AYL-3921 fuzzy AY3921 = 0.40530303030303
486. 0827-FR fuzzy 0827FR = 0.527380952380952
487. AHR-7131 fuzzy AHR7131 = 0.525822829131653
488. 2T-2008 fuzzy 2T2008 = 0.527380952380952
489. 6580-NF fuzzy 6580NF = 0.527380952380952
490. Y7-6035 fuzzy Y76035 = 0.527380952380952
491. 7V-1238 fuzzy 7V1238 = 0.527380952380952
492. 6L-0971 fuzzy 0971 = 0.374828296703297
493. 1553-MQ fuzzy 1553MQ = 0.527380952380952
494. BBC-3710 fuzzy W9037 = 0.0986559139784946
495. 9712-P2 fuzzy 9712P2 = 0.527380952380952
496. AYP-1383 fuzzy AYP1383 = 0.525822829131653
497. A5-6297 fuzzy A5629T = 0.419047619047619
498. 5122-EH fuzzy W122EH = 0.324350649350649
499. 9717-P9 fuzzy 9717P9 = 0.527380952380952
500. ABY-2390 fuzzy ABY2390 = 0.525822829131653
501. 8726-LH fuzzy 87261 = 0.370779220779221
502. 3729-WA fuzzy 3729WA = 0.527380952380952
503. APR-2852 fuzzy PR2852 = 0.37405303030303
504. 5910-D9 fuzzy 591009 = 0.381493506493507
505. 6Q-6762 fuzzy QQ6762 = 0.348160173160173
506. 2826-ZK fuzzy 2826ZK = 0.527380952380952
507. AHG-9711 fuzzy AHG9711 = 0.525822829131653
508. RB-1272 fuzzy 81272 = 0.335267857142857
509. 8E-6617 fuzzy 8E6617 = 0.527380952380952
510. V8-7603 fuzzy V87603W = 0.371927179962894
511. AYQ-9191 fuzzy AYQ9191 = 0.525822829131653
512. 828-5F fuzzy 8285F = 0.508974358974359
513. 8788-HQ fuzzy 8788HQ = 0.527380952380952
514. AMB-0591 fuzzy AMB0591 = 0.525822829131653
515. LW-6261 fuzzy LW6261 = 0.527380952380952
516. ANJ-2576 fuzzy ANJ2576 = 0.525822829131653
517. KED-8527 fuzzy KED8527 = 0.525822829131653
518. 6T-1815 fuzzy 6T1815 = 0.527380952380952
519. OD-0576 fuzzy 000576 = 0.270982142857143
520. PH-6821 fuzzy PHH6821 = 0.497874149659864
521. ARY-3083 fuzzy RY3083 = 0.37405303030303
522. ABX-6890 fuzzy ABX6890 = 0.775822829131653
523. 8951-TV fuzzy 8951TV = 0.527380952380952
524. AVA-5957 fuzzy VA5957 = 0.37405303030303
525. ADB-3567 fuzzy ADB3567 = 0.525822829131653
526. 7760-J2 fuzzy 7760J2 = 0.527380952380952
527. AWV-1760 fuzzy WV176QJ = 0.224396008403361
528. ARR-0781 fuzzy ARR0781 = 0.525822829131653
529. AVG-5803 fuzzy VG5803 = 0.37405303030303
530. 1698-YH fuzzy 698YM = 0.256493506493507
531. AWN-0513 fuzzy AWN0513 = 0.525822829131653
533. AYM-7092 fuzzy YM7092 = 0.37405303030303
534. 5380-RU fuzzy 5380RL = 0.442857142857143
535. AWQ-8118 fuzzy WQ8118 = 0.37405303030303
536. 0816-N8 fuzzy 0816N8 = 0.527380952380952
537. AVN-1983 fuzzy AVN1983 = 0.525822829131653
538. Y3-2336 fuzzy Y323JJ = 0.261255411255411
539. ACE-9013 fuzzy NCE901 = 0.239583333333333
540. 3159-HG fuzzy 3159HG = 0.527380952380952
541. 0399-C9 fuzzy 0399C9 = 0.527380952380952
542. 9920-C8 fuzzy 9920CJJ = 0.325371057513915
543. 1868-GC fuzzy 1864QC = 0.270982142857143
544. 6331-RG fuzzy 6331RG = 0.527380952380952
545. ALK-1517 fuzzy AK15 = 0.177827380952381
546. AXZ-3266 fuzzy AX23266 = 0.379392666157372
547. 9355-U5 fuzzy 9355U5 = 0.527380952380952
548. 7451-JE fuzzy 7451JE = 0.527380952380952
549. 7036-E7 fuzzy 7036E7 = 0.527380952380952
550. RCF-1791 fuzzy R0F791 = 0.260416666666667
551. AQF-0261 fuzzy AQF0261 = 0.525822829131653
552. 5376-QM fuzzy 5376QM = 0.527380952380952
553. 3026-WB fuzzy 3026WB = 0.527380952380952
554. ZK-4893 fuzzy ZK4893 = 0.527380952380952
555. 7H-0263 fuzzy 7H0263 = 0.527380952380952
556. 5513-F6 fuzzy 5513F6 = 0.527380952380952
557. AZJ-8139 fuzzy AZJ8139 = 0.525822829131653
558. 7728-MA fuzzy T728MA = 0.300541125541126
560. ALT-5951 fuzzy AL15951 = 0.379392666157372
561. 6213-DR fuzzy 6213DR = 0.527380952380952
562. 1718-LH fuzzy 1718 = 0.374828296703297
563. 4310-U3 fuzzy 4310U3 = 0.527380952380952
564. 1528-ZH fuzzy 528ZH = 0.349350649350649
565. KLB-1011 fuzzy 1A7L = 0.0481350806451613
566. TAW-836 fuzzy AW83W = 0.242207792207792
567. ANG-9796 fuzzy NG9796 = 0.37405303030303
568. 1389-ZH fuzzy 1389ZH = 0.527380952380952
569. R7-5216 fuzzy R75216 = 0.527380952380952
570. ANQ-0010 fuzzy NQ0010 = 0.37405303030303
571. ALT-9903 fuzzy ALT9903 = 0.525822829131653
572. APA-6869 fuzzy APA6869 = 0.525822829131653
573. AQA-5602 fuzzy AQA5602 = 0.525822829131653
574. ANZ-1259 fuzzy N21259 = 0.291666666666667
575. ART-9198 fuzzy ART9198 = 0.525822829131653
576. AVB-7286 fuzzy VB7286 = 0.37405303030303
577. 5R-6562 fuzzy 5R6562 = 0.527380952380952
578. AFS-1927 fuzzy FS1927 = 0.37405303030303
579. ALU-9360 fuzzy J193Q0 = 0.13661858974359
580. 0182-UX fuzzy 0182UX = 0.527380952380952
581. ART-3629 fuzzy RT36291 = 0.285057773109244
582. AYU-3583 fuzzy YU3583 = 0.37405303030303
583. AUW-2987 fuzzy UW2987 = 0.37405303030303
584. AVB-3787 fuzzy VB3787 = 0.37405303030303
586. AVB-3091 fuzzy VR3091 = 0.291666666666667
587. AUY-3131 fuzzy UY31S = 0.194791666666667
588. ATU-3663 fuzzy TU3663 = 0.37405303030303
589. ACF-0578 fuzzy NJF0578 = 0.271664915966387
590. 2509-Q6 fuzzy 2509Q6 = 0.527380952380952
591. 9969-QH fuzzy 1969QH = 0.300541125541126
592. 3569-DQ fuzzy 3569DQ = 0.527380952380952
593. OM-2972 fuzzy 0M2972 = 0.348160173160173
594. AVB-8165 fuzzy VB8165 = 0.37405303030303
595. 5369-EX fuzzy 5369E = 0.377922077922078
596. AZA-3758 fuzzy ZA3758 = 0.37405303030303
597. 8186-YQ fuzzy 8186YQ = 0.527380952380952
598. 7661-PW fuzzy 7G61PW = 0.288636363636364
599. A9-5901 fuzzy A95901 = 0.527380952380952
600. 2438-U2 fuzzy 2438U2 = 0.527380952380952
601. 3811-MG fuzzy 3811MG = 0.527380952380952
602. 997-P6 fuzzy 997P6 = 0.508974358974359
603. OK-6690 fuzzy 0K6690 = 0.348160173160173
604. 5721-MU fuzzy 5721M = 0.377922077922078
605. AHE-0339 fuzzy AHE0339 = 0.525822829131653
606. AGJ-5530 fuzzy AGJ5530 = 0.525822829131653
607. 3010-ZT fuzzy 3010ZT = 0.527380952380952
609. RAE-1561 fuzzy RAE1561 = 0.525822829131653
610. AJT-7088 fuzzy AJT7088 = 0.525822829131653
611. AHK-1375 fuzzy AHK1375 = 0.525822829131653
612. AMU-5308 fuzzy MU5308 = 0.37405303030303
613. AJU-0895 fuzzy UU0895 = 0.291666666666667
614. AYP-1882 fuzzy YP1882 = 0.37405303030303
615. AHV-2300 fuzzy AHV2300 = 0.525822829131653
616. 805-6F fuzzy 8056F = 0.508974358974359
617. AMC-7735 fuzzy AMC7735 = 0.525822829131653
618. ARU-9121 fuzzy ARU9121 = 0.525822829131653
620. ARU-7570 fuzzy RU7570 = 0.37405303030303
621. ACD-6578 fuzzy C06578 = 0.291666666666667
622. AUU-5378 fuzzy UU5328 = 0.21875
623. ANX-9373 fuzzy ANX9373 = 0.775822829131653
624. 7C-0188 fuzzy 7C0188 = 0.527380952380952
625. ATK-8985 fuzzy TK8985 = 0.37405303030303
626. ANG-3067 fuzzy NG3062 = 0.275094696969697
627. KED-5669 fuzzy KED5669 = 0.525822829131653
628. B8-6196 fuzzy H86196 = 0.348160173160173
629. AUY-8592 fuzzy UY8592 = 0.37405303030303
630. AUY-2266 fuzzy AUY2266 = 0.525822829131653
631. 6916-QL fuzzy 6916QL = 0.527380952380952
632. 2135-JA fuzzy 2135J4 = 0.442857142857143
633. 1588-NM fuzzy U588NM = 0.324350649350649
634. 1470-NE fuzzy 1470NE = 0.527380952380952
636. AHR-7755 fuzzy AHR7755 = 0.525822829131653
637. AYR-6501 fuzzy YR6501 = 0.37405303030303
638. 4850-ZK fuzzy 4850ZK = 0.527380952380952
639. 8305-U5 fuzzy 8305U5 = 0.527380952380952
641. 8B-1082 fuzzy 8B1082 = 0.527380952380952
642. ALA-8063 fuzzy ALA8063 = 0.525822829131653
643. 6426-TS fuzzy 6426TS = 0.527380952380952
644. AXE-8192 fuzzy AXE8192 = 0.525822829131653
645. 3B-1370 fuzzy 381370 = 0.381493506493507
646. TBK-262 fuzzy TBK262 = 0.515476190476191
647. AYZ-1823 fuzzy AYZ1823 = 0.525822829131653
648. 6873-U7 fuzzy 6873U7 = 0.527380952380952
649. 3101-W8 fuzzy 3101W8 = 0.527380952380952
650. AQA-2986 fuzzy AQA2986 = 0.525822829131653
651. ATS-2907 fuzzy ATS2907 = 0.525822829131653
652. AYX-1150 fuzzy AYX150 = 0.37405303030303
653. ASP-3760 fuzzy SP3760 = 0.37405303030303
654. DI-7663 fuzzy D167663 = 0.356621057513915
656. 2396-FP fuzzy 2396FP = 0.527380952380952
657. KEA-9206 fuzzy 4C1971 = 0.0455309139784946
658. 9502-EK fuzzy 9502EK = 0.527380952380952
659. 3139-T3 fuzzy 3139T3 = 0.527380952380952
660. 8739-D9 fuzzy 8739D9 = 0.527380952380952
661. 4613-E6 fuzzy 4613E6 = 0.527380952380952
662. C7-3776 fuzzy C73776 = 0.527380952380952
663. 2V-3717 fuzzy 2V3717 = 0.527380952380952
664. RBK-8807 fuzzy RBK8807 = 0.525822829131653
665. APX-8816 fuzzy PX8816 = 0.37405303030303
666. 8908-W7 fuzzy 8908W7 = 0.527380952380952
667. AXC-1821 fuzzy XC1821 = 0.37405303030303
668. ZM-9352 fuzzy 0M9352 = 0.348160173160173
669. 6P-0940 fuzzy 6P0940 = 0.527380952380952
670. AYM-9157 fuzzy YM9157W = 0.285057773109244
671. 2P-2872 fuzzy 2P2872 = 0.527380952380952
672. 5899-QP fuzzy 5899QP = 0.527380952380952
673. 9895-LH fuzzy 9895U = 0.370779220779221
674. 8383-WH fuzzy 8383WH = 0.527380952380952
675. AZC-1292 fuzzy ZC1292 = 0.37405303030303
676. 5256-GE fuzzy 5256GE = 0.527380952380952
677. AYP-3239 fuzzy AYP3239 = 0.525822829131653
678. AYN-8221 fuzzy YN8221 = 0.37405303030303
680. UK-0457 fuzzy UK0457 = 0.527380952380952
681. 7921-GB fuzzy 7921GB = 0.527380952380952
682. AXA-7220 fuzzy UJ4W0 = 0.0743055555555556
682. AXA-7220 fuzzy AXA7220 = 0.525822829131653
683. 1107-F7 fuzzy L107F7 = 0.300541125541126
684. D5-8169 fuzzy D58169 = 0.527380952380952
685. ASM-0871 fuzzy ASM0871 = 0.525822829131653
686. 2407-P2 fuzzy 2407P21 = 0.371927179962894
687. 2699-D6 fuzzy 269906 = 0.381493506493507
688. A2-8079 fuzzy A28079 = 0.527380952380952
689. 9V-7270 fuzzy 9V67270 = 0.497874149659864
690. 5615-JV fuzzy 5615JV = 0.527380952380952
691. 9388-HF fuzzy 9388HF = 0.527380952380952
693. 707-VS fuzzy 707V9 = 0.407051282051282
694. 2710-UA fuzzy 2710UA = 0.527380952380952
695. 2882-UA fuzzy 2882U4 = 0.442857142857143
696. 2970-P9 fuzzy 2970P9 = 0.527380952380952
697. AUP-2718 fuzzy AUP2718 = 0.525822829131653
698. Y2-0286 fuzzy Y20286 = 0.527380952380952
699. 1070-VU fuzzy 1070VU = 0.527380952380952
700. 4138-J8 fuzzy 4138J8 = 0.527380952380952
701. AYY-7350 fuzzy AYY7350 = 0.525822829131653
702. 6W-0410 fuzzy 6W0410 = 0.527380952380952
703. 6479-M6 fuzzy 6479M6 = 0.527380952380952
704. ABU-0212 fuzzy 8U0212 = 0.291666666666667
705. ALR-0338 fuzzy R03381 = 0.241815476190476
706. AGN-9161 fuzzy AGN961 = 0.34280303030303
707. 8690-UM fuzzy 8690UM = 0.527380952380952
708. 980-U2 fuzzy J0JMJ2 = 0.0976800976800977
709. ALX-3505 fuzzy ALX3505 = 0.775822829131653
710. ALT-2379 fuzzy ALT2379 = 0.525822829131653
711. AMB-9810 fuzzy MB9810 = 0.37405303030303
712. ANJ-6580 fuzzy ANJ6580 = 0.525822829131653
714. 5096-FH fuzzy 5096FH = 0.527380952380952
715. APY-0372 fuzzy APY0372 = 0.525822829131653
716. X6-3741 fuzzy X63741 = 0.527380952380952
717. 076-GL fuzzy 1W1H4M = 0.0480769230769231
717. 076-GL fuzzy QL3 = 0.061965811965812
718. AQD-9822 fuzzy NQD9822 = 0.34998090145149
719. 5086-EM fuzzy 5086EM = 0.527380952380952
720. AQC-6695 fuzzy QC6695 = 0.37405303030303
721. ARY-0988 fuzzy RY0988 = 0.37405303030303
722. 2887-S6 fuzzy 2887S = 0.377922077922078
723. ARK-3868 fuzzy RK3868 = 0.37405303030303
724. W6-3077 fuzzy W63077 = 0.527380952380952
725. 7388-UR fuzzy 7388UR = 0.527380952380952
726. APF-9053 fuzzy PF9053 = 0.37405303030303
727. AKE-5357 fuzzy KE5357 = 0.37405303030303
728. PH-3810 fuzzy PH3810 = 0.527380952380952
729. APN-0197 fuzzy PN0197 = 0.37405303030303
730. 6417-P7 fuzzy 36417P7 = 0.371927179962894
731. ASQ-5019 fuzzy SQ5019 = 0.37405303030303
732. AGC-9957 fuzzy GC9957 = 0.37405303030303
733. ASY-0550 fuzzy ASY0550 = 0.525822829131653
734. 1933-KT fuzzy 1933KT = 0.527380952380952
735. 7191-QB fuzzy 7191QB = 0.527380952380952
736. 9160-JP fuzzy 9160JP = 0.527380952380952
737. AUT-3227 fuzzy AUT3227 = 0.525822829131653
738. 7093-X6 fuzzy 7093X6 = 0.527380952380952
739. 6987-LR fuzzy L6987 = 0.280952380952381
740. A2-0349 fuzzy A20349 = 0.527380952380952
741. AUS-7279 fuzzy US7279 = 0.37405303030303
742. 3422-GR fuzzy 3422GR = 0.527380952380952
743. AUH-1519 fuzzy 15191 = 0.248076923076923
744. ZV-2688 fuzzy ZV2688 = 0.527380952380952
745. AWQ-1518 fuzzy WQM1518 = 0.34998090145149
746. 3908-F9 fuzzy 3908F9 = 0.527380952380952
747. LQ-6436 fuzzy Q6436 = 0.377922077922078
748. AWP-7209 fuzzy WP7209 = 0.37405303030303
749. AYF-0621 fuzzy AYF0621 = 0.525822829131653
751. ALG-2293 fuzzy AG2293 = 0.363636363636364
752. 1118-KU fuzzy L118KU = 0.300541125541126
753. AKU-5829 fuzzy AKU5829 = 0.525822829131653
754. 7035-VW fuzzy 7035VW = 0.527380952380952
755. 6311-WU fuzzy 6311WL = 0.442857142857143
756. APX-1953 fuzzy APX1953 = 0.775822829131653
757. ALR-9228 fuzzy ALR9228 = 0.525822829131653
758. APY-5395 fuzzy PY5395 = 0.37405303030303
759. ASP-9829 fuzzy AASP98 = 0.23139880952381
760. 4921-N8 fuzzy 4921N8 = 0.527380952380952
761. 1386-KG fuzzy 1386KG = 0.527380952380952
762. OL-7389 fuzzy 0L7389 = 0.348160173160173
763. 0252-C9 fuzzy 0252C9 = 0.527380952380952
764. 8969-YA fuzzy 8969WY1 = 0.420068027210884
765. AMZ-8135 fuzzy AMZ8135 = 0.525822829131653
766. AYR-0835 fuzzy YR0835 = 0.37405303030303
767. 1025-TQ fuzzy 1025TQ = 0.527380952380952
768. AND-2076 fuzzy NND2076 = 0.341052330022918
769. 7538-N7 fuzzy 7538N7 = 0.527380952380952
770. 4697-G2 fuzzy 4697G2 = 0.527380952380952
771. 0330-NC fuzzy 0330NC = 0.527380952380952
772. BAT-2837 fuzzy BAT2837 = 0.525822829131653
773. 9066-FN fuzzy 9066FN = 0.527380952380952
774. 1951-YZ fuzzy 1951YZ = 0.527380952380952
775. 9V-6985 fuzzy 9V6985 = 0.527380952380952
776. AQM-0108 fuzzy QM008 = 0.234375
777. 8523-LV fuzzy 8523LV = 0.527380952380952
778. AYQ-0885 fuzzy YQ0885 = 0.37405303030303
779. 0087-KL fuzzy 0087K = 0.377922077922078
780. AHM-9673 fuzzy KKK7 = 0.0425347222222222
780. AHM-9673 fuzzy AAAAAAWW = 0.0720066084229391
780. AHM-9673 fuzzy 11111 = 0.0347222222222222
780. AHM-9673 fuzzy AHM9673 = 0.525822829131653
781. AVY-2967 fuzzy NVY29W = 0.182291666666667
782. APQ-6665 fuzzy APQ6665 = 0.525822829131653
783. ANM-1877 fuzzy ANM877 = 0.394886363636364
784. DN-3048 fuzzy 0N3048 = 0.348160173160173
785. 4959-ZJ fuzzy 4959Z = 0.377922077922078
786. RBF-6098 fuzzy BF60981 = 0.285057773109244
787. 4563-SF fuzzy 4563SF = 0.527380952380952
788. 7619-EM fuzzy 7619EM = 0.527380952380952
789. ARL-0925 fuzzy R0925 = 0.317708333333333
790. ATC-5355 fuzzy TCS355 = 0.270833333333333
791. AHW-7602 fuzzy AHW7602 = 0.525822829131653
792. RAY-8172 fuzzy RAY8172 = 0.525822829131653
793. 8671-ZN fuzzy 8671ZN = 0.527380952380952
794. 5T-4955 fuzzy 5T4955 = 0.527380952380952
795. AUD-6023 fuzzy UD6023 = 0.37405303030303
796. RBD-1876 fuzzy RBD1876 = 0.525822829131653
797. 7600-FU fuzzy 1600FL = 0.23982683982684
799. AQC-2203 fuzzy QC2203 = 0.37405303030303
800. AUV-2738 fuzzy UV2738 = 0.37405303030303
801. W3-0295 fuzzy 30295 = 0.377922077922078
802. GP-6546 fuzzy GP6546 = 0.527380952380952
803. AZB-0380 fuzzy AZB0380 = 0.525822829131653
804. QO-2463 fuzzy Q0L2463 = 0.356621057513915
805. AWR-3096 fuzzy WR3096 = 0.37405303030303
806. 8561-V7 fuzzy U8561V = 0.279315476190476
807. KEE-5265 fuzzy KEE5265 = 0.525822829131653
808. ATW-8021 fuzzy TW8021 = 0.37405303030303
809. 9U-0891 fuzzy 9U0891 = 0.527380952380952
810. R8-2827 fuzzy R82827 = 0.560714285714286
811. AGZ-3526 fuzzy GZ3526 = 0.37405303030303
812. AYP-2090 fuzzy AYP2090 = 0.525822829131653
813. 4392-HL fuzzy 4392H = 0.377922077922078
814. AFS-7355 fuzzy AFS7355 = 0.525822829131653
815. AVC-9153 fuzzy VC9153 = 0.37405303030303
816. AYR-3300 fuzzy YR3300 = 0.37405303030303
817. AXM-0200 fuzzy XM0200 = 0.37405303030303
818. 5G-8888 fuzzy 5G8888 = 0.527380952380952
819. AYX-1733 fuzzy YX51733 = 0.34998090145149
820. 9U-4758 fuzzy 3U4756 = 0.23982683982684
821. 9290-YU fuzzy 9290Y1 = 0.442857142857143
822. AYK-0555 fuzzy YK0555 = 0.37405303030303
823. 6809-MQ fuzzy 6809MQ = 0.527380952380952
824. ATT-0030 fuzzy TT0030 = 0.37405303030303
825. 0667-LZ fuzzy 0667L = 0.377922077922078
826. 2472-F2 fuzzy 2472F2 = 0.527380952380952
827. KEA-1585 fuzzy KEAW1585 = 0.500434027777778
828. BAW-6353 fuzzy BAW6955 = 0.250978800611154
829. RBV-7091 fuzzy RBV7091 = 0.525822829131653
830. BCL-0511 fuzzy B0L0511 = 0.341052330022918
831. BAA-9977 fuzzy BAA997 = 0.394886363636364
832. ASP-1861 fuzzy ASP186 = 0.363636363636364
833. DO-9802 fuzzy D09802 = 0.381493506493507
834. 2217-WE fuzzy 2217W = 0.377922077922078
835. AXY-6951 fuzzy XY6951 = 0.37405303030303
836. 589-DD fuzzy 4J6 = 0.0480769230769231
838. 3196-JT fuzzy 3196TJ = 0.348160173160173
839. 8850-JY fuzzy A850JY = 0.300541125541126
840. 7293-L3 fuzzy 7293 = 0.413289835164835
841. 6632-M7 fuzzy 6632M7 = 0.527380952380952
842. 0817-UD fuzzy 10817UD = 0.371927179962894
843. ALT-2097 fuzzy LT2097 = 0.37405303030303
844. 8638-SK fuzzy 8638SK = 0.527380952380952
845. 0486-LQ fuzzy 0486JQ = 0.381493506493507
846. 9219-KX fuzzy 9219K = 0.377922077922078
847. 7516-ZM fuzzy 7516ZM = 0.527380952380952
848. 7635-NJ fuzzy 7635NJ = 0.527380952380952
849. 8456-PM fuzzy 3456PM = 0.324350649350649
850. AUK-7810 fuzzy AUK7810 = 0.525822829131653
851. ALT-3521 fuzzy ALT3521 = 0.525822829131653
852. 1709-TW fuzzy 1709TW = 0.527380952380952
853. 7U-0090 fuzzy 7U0090 = 0.527380952380952
854. AAR-3763 fuzzy AR3763 = 0.394886363636364
855. AAQ-1100 fuzzy AQ1100 = 0.394886363636364
856. ACA-1129 fuzzy ACA11291 = 0.37795928030303
857. 8002-B8 fuzzy 8002B8 = 0.527380952380952
858. 3902-X5 fuzzy 3902X5 = 0.527380952380952
859. AMA-9251 fuzzy AMA9251 = 0.525822829131653
860. ABX-2597 fuzzy ABX2597 = 0.775822829131653
861. Q8-7762 fuzzy Q87762 = 0.527380952380952
862. 2C-5476 fuzzy 2C5476 = 0.527380952380952
863. AQG-2137 fuzzy QG237 = 0.234375
864. 1009-U5 fuzzy U009U5 = 0.324350649350649
865. 6163-FX fuzzy 6163FX = 0.527380952380952
866. AXZ-3151 fuzzy WAX2351 = 0.187937675070028
867. AQB-9065 fuzzy QB9065 = 0.37405303030303
868. 4427-PT fuzzy 4427P1 = 0.442857142857143
869. QU-4601 fuzzy QU4601 = 0.527380952380952
870. ARA-5015 fuzzy RA501 = 0.259375
871. AJW-9853 fuzzy M9853 = 0.292857142857143
872. 5T-6995 fuzzy 5T6995 = 0.527380952380952
873. AXZ-0157 fuzzy AXZ0157 = 0.775822829131653
874. QK-5399 fuzzy QK5399 = 0.527380952380952
875. ABQ-3967 fuzzy BQ3967 = 0.37405303030303
876. AHH-7250 fuzzy AHH7250 = 0.525822829131653
877. 5101-XY fuzzy 5101XY = 0.527380952380952
878. AHH-8363 fuzzy HH8363 = 0.37405303030303
879. AFR-8273 fuzzy FR8273 = 0.37405303030303
880. 2502-JN fuzzy 2502J = 0.377922077922078
881. 5581-E7 fuzzy 5581E7 = 0.527380952380952
882. 4953-MK fuzzy 4953MK = 0.527380952380952
883. 9365-ND fuzzy 9365ND = 0.527380952380952
884. ASC-7887 fuzzy SCS788 = 0.239583333333333
885. M8-6466 fuzzy M86466 = 0.527380952380952
886. 9390-X3 fuzzy 9390X3 = 0.527380952380952
887. ASN-7191 fuzzy ASN7191 = 0.525822829131653
888. RAE-9663 fuzzy RAE966 = 0.363636363636364
889. AVZ-5388 fuzzy VZ5388 = 0.37405303030303
890. 6056-JV fuzzy 6056JV = 0.527380952380952
891. 5V-1527 fuzzy 5V1527 = 0.527380952380952
892. 921-P6 fuzzy 92PS = 0.24905303030303
893. 9795-JV fuzzy 97951 = 0.370779220779221
894. AHM-5082 fuzzy HM5082 = 0.37405303030303
895. AHR-3916 fuzzy HR3916 = 0.37405303030303
896. 4869-YZ fuzzy 4869YZ = 0.527380952380952
897. 3735-VH fuzzy 3735VH = 0.527380952380952
898. AHN-6611 fuzzy HN661 = 0.292708333333333
899. 2E-2132 fuzzy 2E2132 = 0.527380952380952
900. AHD-7135 fuzzy HD7135 = 0.37405303030303
901. 0056-LE fuzzy 0056L = 0.377922077922078
902. ZR-4967 fuzzy ZR4967 = 0.527380952380952
904. 6152-R9 fuzzy 6152R9 = 0.527380952380952
905. 5495-KT fuzzy 5495KT = 0.527380952380952
906. 3Q-1833 fuzzy 3QL1833 = 0.497874149659864
907. 9C-6997 fuzzy 9C6997 = 0.527380952380952
908. ALU-5299 fuzzy 1UU5299 = 0.271664915966387
909. AJC-5195 fuzzy JC5195 = 0.37405303030303
910. AJV-1086 fuzzy JV1086 = 0.37405303030303
911. 3292-KT fuzzy N3292K = 0.279315476190476
912. AYU-1787 fuzzy AYUL1787 = 0.500434027777778
913. AJR-8738 fuzzy JR8738 = 0.37405303030303
915. AZQ-8163 fuzzy ZQ8163 = 0.37405303030303
916. W2-8985 fuzzy W28985 = 0.527380952380952
917. 8730-U6 fuzzy 8730U6 = 0.527380952380952
918. AUE-0263 fuzzy AUE0263 = 0.525822829131653
919. 4939-PA fuzzy 4939PA = 0.527380952380952
920. AUR-8711 fuzzy AUR871L = 0.435749299719888
921. ZQ-1608 fuzzy ZQ1608 = 0.527380952380952
922. AUY-2037 fuzzy AUY2037 = 0.525822829131653
923. AVQ-3922 fuzzy VQ3922 = 0.37405303030303
924. 6P-3691 fuzzy 6P3691 = 0.527380952380952
925. APY-2825 fuzzy PY2825 = 0.37405303030303
926. P8-2788 fuzzy P82788 = 0.527380952380952
927. ARS-6288 fuzzy RS6288 = 0.37405303030303
928. AYR-5390 fuzzy AYR5390 = 0.525822829131653
929. 5967-PM fuzzy 5967PM = 0.527380952380952
930. ARS-8721 fuzzy ARS8721 = 0.525822829131653
931. 0039-UT fuzzy 0039UT = 0.527380952380952
932. AVY-0881 fuzzy AVY0881 = 0.525822829131653
933. BCB-0087 fuzzy BCB0U87 = 0.323195187165775
934. APM-5128 fuzzy PM5128 = 0.37405303030303
935. 5817-FE fuzzy 5817FE = 0.527380952380952
936. 7557-PM fuzzy 7557PM = 0.527380952380952
937. AKG-6583 fuzzy KG6583 = 0.37405303030303
938. APY-3605 fuzzy PY3605 = 0.37405303030303
939. 8918-XD fuzzy 8918XD = 0.527380952380952
940. ALE-3619 fuzzy AF341 = 0.100160256410256
941. AQJ-8776 fuzzy AQJ8776 = 0.525822829131653
942. AUT-0599 fuzzy UT0599 = 0.37405303030303
943. 9016-X2 fuzzy 3016X2 = 0.324350649350649
944. 0700-F8 fuzzy 0700F8 = 0.527380952380952
945. AUZ-1583 fuzzy AUZ583 = 0.394886363636364
946. 8701-JV fuzzy 8701JV = 0.527380952380952
947. AUL-9513 fuzzy 1L1L951 = 0.151543309631545
949. 6360-DC fuzzy 6360UX = 0.342207792207792
950. 3402-HR fuzzy 3402HR = 0.527380952380952
951. NT-4926 fuzzy NT4926 = 0.527380952380952
952. 2J-5552 fuzzy 2J5552 = 0.527380952380952
953. AVR-6608 fuzzy VR6608 = 0.37405303030303
954. 5913-VY fuzzy 5913VY = 0.527380952380952
955. 5365-S7 fuzzy 5365S7 = 0.527380952380952
956. M2-5011 fuzzy M2501 = 0.385064935064935
957. AWN-8161 fuzzy AWN8161 = 0.525822829131653
958. 2505-SH fuzzy 2505SH = 0.527380952380952
959. AWQ-0987 fuzzy WQ0987 = 0.37405303030303
960. ACA-9362 fuzzy ACA9362 = 0.525822829131653
961. BBC-9073 fuzzy BC9073 = 0.394886363636364
962. 1285-HG fuzzy 1285 = 0.374828296703297
963. G7-8422 fuzzy G78422 = 0.527380952380952
964. 5059-W8 fuzzy 5059W8 = 0.527380952380952
965. 6P-8435 fuzzy 6P84354 = 0.371927179962894
966. 8H-8701 fuzzy 8H8701 = 0.527380952380952
967. AYZ-8070 fuzzy Y28070 = 0.291666666666667
968. 2V-3251 fuzzy 2V3251 = 0.527380952380952
969. 7278-U5 fuzzy 7278U5 = 0.527380952380952
970. AZF-0868 fuzzy ZF0868 = 0.37405303030303
971. AYQ-6185 fuzzy AYQ6185 = 0.525822829131653
972. 8963-W7 fuzzy 8963W7 = 0.527380952380952
973. AVA-0625 fuzzy AVA0625 = 0.525822829131653
974. AYR-9828 fuzzy AYR9828 = 0.525822829131653
975. 8562-U2 fuzzy 8562U2 = 0.527380952380952
976. KNA-2036 fuzzy M379J3 = 0.0399305555555556
977. DJ-0025 fuzzy DJ0025 = 0.527380952380952
978. 1079-C9 fuzzy 1079C9 = 0.527380952380952
979. ARC-5886 fuzzy RC5886 = 0.37405303030303
980. CE-9095 fuzzy JE99 = 0.0863095238095238
981. AYV-9813 fuzzy AYV9813 = 0.525822829131653
982. 6761-W7 fuzzy 6761W7 = 0.527380952380952
983. AYE-5261 fuzzy AYE526J = 0.435749299719888
984. 9203-U5 fuzzy 9203U5 = 0.527380952380952
985. AYH-6037 fuzzy AYH6037 = 0.525822829131653
986. 7380-D2 fuzzy 7380D2 = 0.527380952380952
987. 9457-PD fuzzy 9457PD = 0.527380952380952
988. 7282-PU fuzzy 7282PL = 0.442857142857143
989. RBW-9578 fuzzy RBW9578 = 0.525822829131653
990. BAJ-1689 fuzzy BAJW1689 = 0.500434027777778
991. AQH-5762 fuzzy QH5762 = 0.37405303030303
992. 7165-LP fuzzy 7165LF = 0.442857142857143
993. AXV-3771 fuzzy AXV3771 = 0.775822829131653
994. AYX-3981 fuzzy AYX3981 = 0.525822829131653
995. BCB-6288 fuzzy BCB6288 = 0.525822829131653
996. AXW-0310 fuzzy AXW0310 = 0.525822829131653
997. 0960-F7 fuzzy 0960F7 = 0.527380952380952
998. Y7-8281 fuzzy Y78281 = 0.527380952380952
999. 9318-NC fuzzy 9318NC = 0.527380952380952
de48493c4e47c17f1d3fb9ea7de587584520d94e e0043c7e390cd0b592b3be354e86de0f9dd09bd3
...@@ -299,3 +299,65 @@ D:\e-eye\ETC_App1\obj\Debug\ETC_App1.csproj.CoreCompileInputs.cache ...@@ -299,3 +299,65 @@ D:\e-eye\ETC_App1\obj\Debug\ETC_App1.csproj.CoreCompileInputs.cache
D:\e-eye\ETC_App1\obj\Debug\ETC_App1.csproj.CopyComplete D:\e-eye\ETC_App1\obj\Debug\ETC_App1.csproj.CopyComplete
D:\e-eye\ETC_App1\obj\Debug\ETC_App1.exe D:\e-eye\ETC_App1\obj\Debug\ETC_App1.exe
D:\e-eye\ETC_App1\obj\Debug\ETC_App1.pdb D:\e-eye\ETC_App1\obj\Debug\ETC_App1.pdb
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\x64\concrt140.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\x64\cvextern.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\x64\msvcp140.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\x64\opencv_ffmpeg401_64.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\x64\vcruntime140.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\x86\concrt140.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\x86\cvextern.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\x86\msvcp140.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\x86\opencv_ffmpeg401.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\x86\vcruntime140.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\ETC_App1.exe.config
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\ETC_App1.exe
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\ETC_App1.pdb
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\Aspose.BarCode.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\DuoVia.FuzzyStrings.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\Emgu.CV.UI.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\Emgu.CV.World.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\ICSharpCode.SharpZipLib.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\MySql.Data.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\Newtonsoft.Json.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\NPOI.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\NPOI.OOXML.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\NPOI.OpenXml4Net.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\NPOI.OpenXmlFormats.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\RestSharp.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\ZedGraph.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\Aspose.BarCode.xml
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\Emgu.CV.UI.xml
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\Emgu.CV.World.xml
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\ICSharpCode.SharpZipLib.xml
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\MySql.Data.xml
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\Newtonsoft.Json.xml
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\RestSharp.xml
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\ZedGraph.xml
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\de\ZedGraph.resources.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\es\ZedGraph.resources.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\fr\ZedGraph.resources.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\hu\ZedGraph.resources.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\it\ZedGraph.resources.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\ja\ZedGraph.resources.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\pt\ZedGraph.resources.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\ru\ZedGraph.resources.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\sk\ZedGraph.resources.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\sv\ZedGraph.resources.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\tr\ZedGraph.resources.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\zh-cn\ZedGraph.resources.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\bin\Debug\zh-tw\ZedGraph.resources.dll
C:\Users\ECOM\source\repos\e-eye\ETC_App1\obj\Debug\ETC_App1.csprojAssemblyReference.cache
C:\Users\ECOM\source\repos\e-eye\ETC_App1\obj\Debug\ETC_App1.ETCBackgroundWorker1.resources
C:\Users\ECOM\source\repos\e-eye\ETC_App1\obj\Debug\ETC_App1.ETCBackgroundWorker2.resources
C:\Users\ECOM\source\repos\e-eye\ETC_App1\obj\Debug\ETC_App1.ETCBackgroundWorker3.resources
C:\Users\ECOM\source\repos\e-eye\ETC_App1\obj\Debug\ETC_App1.ETCPictureBox.resources
C:\Users\ECOM\source\repos\e-eye\ETC_App1\obj\Debug\ETC_App1.ETCPictureCheckBox.resources
C:\Users\ECOM\source\repos\e-eye\ETC_App1\obj\Debug\ETC_App1.ETCStatusStrip.resources
C:\Users\ECOM\source\repos\e-eye\ETC_App1\obj\Debug\ETC_App1.ETCToolStrip.resources
C:\Users\ECOM\source\repos\e-eye\ETC_App1\obj\Debug\ETC_App1.Form1.resources
C:\Users\ECOM\source\repos\e-eye\ETC_App1\obj\Debug\ETC_App1.Properties.Resources.resources
C:\Users\ECOM\source\repos\e-eye\ETC_App1\obj\Debug\ETC_App1.csproj.GenerateResource.cache
C:\Users\ECOM\source\repos\e-eye\ETC_App1\obj\Debug\ETC_App1.csproj.CoreCompileInputs.cache
C:\Users\ECOM\source\repos\e-eye\ETC_App1\obj\Debug\ETC_App1.csproj.CopyComplete
C:\Users\ECOM\source\repos\e-eye\ETC_App1\obj\Debug\ETC_App1.exe
C:\Users\ECOM\source\repos\e-eye\ETC_App1\obj\Debug\ETC_App1.pdb
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<packages> <packages>
<package id="Aspose.BarCode" version="19.4.0" targetFramework="net472" /> <package id="Aspose.BarCode" version="19.4.0" targetFramework="net472" />
<package id="DuoVia.FuzzyStrings" version="2.0.1" targetFramework="net472" />
<package id="EMGU.CV" version="4.0.1.3373" targetFramework="net472" /> <package id="EMGU.CV" version="4.0.1.3373" targetFramework="net472" />
<package id="Newtonsoft.Json" version="12.0.2" targetFramework="net472" /> <package id="Newtonsoft.Json" version="12.0.2" targetFramework="net472" />
<package id="NPOI" version="2.4.1" targetFramework="net472" /> <package id="NPOI" version="2.4.1" targetFramework="net472" />
......
68b17283f877db405cc276ee20cdb836bc8420b7 217508568aff3bd7bdefc962f8a7d71120078a49
26237647b74ccd9c962a1be50bd84e9a9d74becf 387b73e12b51b39f51b5998ffccff5d1c53fc88d
aa4c1c0c43c2733a95130f18a90549e96879dddb 96977e901f77dff536ebcf202b9b1a482a81f5e1
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment