├── DDU.exe ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties └── PublishProfiles │ ├── FolderProfile.pubxml │ ├── FolderProfile.pubxml.user │ ├── FolderProfile1.pubxml │ └── FolderProfile1.pubxml.user ├── README.md ├── WinFormsApp2.csproj ├── WinFormsApp2.csproj.user ├── app.manifest ├── bin ├── Debug │ ├── net472 │ │ ├── DDU.exe │ │ ├── DDU.exe.config │ │ └── DDU.pdb │ └── netcoreapp3.1 │ │ ├── DDU.deps.json │ │ ├── DDU.dll │ │ ├── DDU.exe │ │ ├── DDU.pdb │ │ ├── DDU.runtimeconfig.dev.json │ │ ├── DDU.runtimeconfig.json │ │ ├── id.log │ │ └── name.log └── Release │ └── netcoreapp3.1 │ ├── DDU.deps.json │ ├── DDU.dll │ ├── DDU.exe │ ├── DDU.pdb │ ├── DDU.runtimeconfig.dev.json │ ├── DDU.runtimeconfig.json │ ├── publish │ ├── DDU.deps.json │ ├── DDU.dll │ ├── DDU.exe │ ├── DDU.pdb │ ├── DDU.runtimeconfig.json │ ├── id.log │ └── name.log │ ├── win-x64 │ ├── DDU.deps.json │ ├── DDU.dll │ ├── DDU.exe │ ├── DDU.pdb │ ├── DDU.runtimeconfig.dev.json │ ├── DDU.runtimeconfig.json │ ├── id.log │ └── name.log │ └── win-x86 │ ├── DDU.deps.json │ ├── DDU.dll │ ├── DDU.exe │ ├── DDU.pdb │ ├── DDU.runtimeconfig.dev.json │ └── DDU.runtimeconfig.json ├── icn0.ico └── obj ├── Debug ├── net472 │ ├── DDU.Form1.resources │ ├── DDU.exe │ ├── DDU.exe.withSupportedRuntime.config │ ├── DDU.pdb │ ├── WinFormsApp2.AssemblyInfo.cs │ ├── WinFormsApp2.AssemblyInfoInputs.cache │ ├── WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig │ ├── WinFormsApp2.assets.cache │ ├── WinFormsApp2.csproj.AssemblyReference.cache │ ├── WinFormsApp2.csproj.CoreCompileInputs.cache │ ├── WinFormsApp2.csproj.FileListAbsolute.txt │ └── WinFormsApp2.csproj.GenerateResource.cache └── netcoreapp3.1 │ ├── DDU.designer.deps.json │ ├── DDU.designer.runtimeconfig.json │ ├── DDU.dll │ ├── DDU.pdb │ ├── PublishOutputs.045e2aa235.txt │ ├── WinFormsApp2.AssemblyInfo.cs │ ├── WinFormsApp2.AssemblyInfoInputs.cache │ ├── WinFormsApp2.Form1.resources │ ├── WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig │ ├── WinFormsApp2.assets.cache │ ├── WinFormsApp2.csproj.AssemblyReference.cache │ ├── WinFormsApp2.csproj.CoreCompileInputs.cache │ ├── WinFormsApp2.csproj.FileListAbsolute.txt │ ├── WinFormsApp2.csproj.GenerateResource.cache │ ├── WinFormsApp2.designer.deps.json │ ├── WinFormsApp2.designer.runtimeconfig.json │ ├── WinFormsApp2.genruntimeconfig.cache │ └── apphost.exe ├── Release └── netcoreapp3.1 │ ├── DDU.designer.deps.json │ ├── DDU.designer.runtimeconfig.json │ ├── DDU.dll │ ├── DDU.pdb │ ├── PublishOutputs.045e2aa235.txt │ ├── WinFormsApp2.AssemblyInfo.cs │ ├── WinFormsApp2.AssemblyInfoInputs.cache │ ├── WinFormsApp2.Form1.resources │ ├── WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig │ ├── WinFormsApp2.assets.cache │ ├── WinFormsApp2.csproj.AssemblyReference.cache │ ├── WinFormsApp2.csproj.CoreCompileInputs.cache │ ├── WinFormsApp2.csproj.FileListAbsolute.txt │ ├── WinFormsApp2.csproj.GenerateResource.cache │ ├── WinFormsApp2.designer.deps.json │ ├── WinFormsApp2.designer.runtimeconfig.json │ ├── WinFormsApp2.genruntimeconfig.cache │ ├── apphost.exe │ ├── win-x64 │ ├── DDU.dll │ ├── DDU.pdb │ ├── PublishOutputs.045e2aa235.txt │ ├── R2R │ │ ├── DDU.dll │ │ └── WinFormsApp2.dll │ ├── WinFormsApp2.AssemblyInfo.cs │ ├── WinFormsApp2.AssemblyInfoInputs.cache │ ├── WinFormsApp2.Form1.resources │ ├── WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig │ ├── WinFormsApp2.assets.cache │ ├── WinFormsApp2.csproj.CoreCompileInputs.cache │ ├── WinFormsApp2.csproj.FileListAbsolute.txt │ ├── WinFormsApp2.csproj.GenerateResource.cache │ ├── WinFormsApp2.genruntimeconfig.cache │ └── apphost.exe │ └── win-x86 │ ├── DDU.dll │ ├── DDU.pdb │ ├── PublishOutputs.045e2aa235.txt │ ├── R2R │ └── DDU.dll │ ├── WinFormsApp2.AssemblyInfo.cs │ ├── WinFormsApp2.AssemblyInfoInputs.cache │ ├── WinFormsApp2.Form1.resources │ ├── WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig │ ├── WinFormsApp2.assets.cache │ ├── WinFormsApp2.csproj.CoreCompileInputs.cache │ ├── WinFormsApp2.csproj.FileListAbsolute.txt │ ├── WinFormsApp2.csproj.GenerateResource.cache │ ├── WinFormsApp2.genruntimeconfig.cache │ └── apphost.exe ├── WinFormsApp2.csproj.nuget.dgspec.json ├── WinFormsApp2.csproj.nuget.g.props ├── WinFormsApp2.csproj.nuget.g.targets ├── project.assets.json ├── project.nuget.cache └── publish ├── win-x64 ├── WinFormsApp2.csproj.nuget.dgspec.json ├── WinFormsApp2.csproj.nuget.g.props ├── WinFormsApp2.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache └── win-x86 ├── WinFormsApp2.csproj.nuget.dgspec.json ├── WinFormsApp2.csproj.nuget.g.props ├── WinFormsApp2.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache /DDU.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/DDU.exe -------------------------------------------------------------------------------- /Form1.Designer.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace WinFormsApp2 3 | { 4 | partial class Form1 5 | { 6 | /// 7 | /// Required designer variable. 8 | /// 9 | private System.ComponentModel.IContainer components = null; 10 | 11 | /// 12 | /// Clean up any resources being used. 13 | /// 14 | /// true if managed resources should be disposed; otherwise, false. 15 | protected override void Dispose(bool disposing) 16 | { 17 | if (disposing && (components != null)) 18 | { 19 | components.Dispose(); 20 | } 21 | base.Dispose(disposing); 22 | } 23 | 24 | #region Windows Form Designer generated code 25 | 26 | /// 27 | /// Required method for Designer support - do not modify 28 | /// the contents of this method with the code editor. 29 | /// 30 | private void InitializeComponent() 31 | { 32 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 33 | this.button1 = new System.Windows.Forms.Button(); 34 | this.richTextBox1 = new System.Windows.Forms.RichTextBox(); 35 | this.button2 = new System.Windows.Forms.Button(); 36 | this.label3 = new System.Windows.Forms.Label(); 37 | this.panel1 = new System.Windows.Forms.Panel(); 38 | this.panel2 = new System.Windows.Forms.Panel(); 39 | this.comboBox2 = new System.Windows.Forms.ComboBox(); 40 | this.button3 = new System.Windows.Forms.Button(); 41 | this.label5 = new System.Windows.Forms.Label(); 42 | this.groupBox1 = new System.Windows.Forms.GroupBox(); 43 | this.comboBox1 = new System.Windows.Forms.ComboBox(); 44 | this.panel1.SuspendLayout(); 45 | this.panel2.SuspendLayout(); 46 | this.SuspendLayout(); 47 | // 48 | // button1 49 | // 50 | this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(64))))); 51 | this.button1.FlatAppearance.BorderSize = 0; 52 | this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 53 | this.button1.Font = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); 54 | this.button1.ForeColor = System.Drawing.Color.White; 55 | this.button1.Location = new System.Drawing.Point(281, 259); 56 | this.button1.Name = "button1"; 57 | this.button1.Size = new System.Drawing.Size(281, 57); 58 | this.button1.TabIndex = 0; 59 | this.button1.Text = "Download"; 60 | this.button1.UseVisualStyleBackColor = false; 61 | this.button1.Click += new System.EventHandler(this.button1_Click); 62 | // 63 | // richTextBox1 64 | // 65 | this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None; 66 | this.richTextBox1.Cursor = System.Windows.Forms.Cursors.Default; 67 | this.richTextBox1.DetectUrls = false; 68 | this.richTextBox1.Font = new System.Drawing.Font("Century Gothic", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); 69 | this.richTextBox1.HideSelection = false; 70 | this.richTextBox1.Location = new System.Drawing.Point(33, 80); 71 | this.richTextBox1.Name = "richTextBox1"; 72 | this.richTextBox1.ReadOnly = true; 73 | this.richTextBox1.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical; 74 | this.richTextBox1.Size = new System.Drawing.Size(495, 120); 75 | this.richTextBox1.TabIndex = 0; 76 | this.richTextBox1.TabStop = false; 77 | this.richTextBox1.Text = "Unknown Device"; 78 | // 79 | // button2 80 | // 81 | this.button2.BackColor = System.Drawing.Color.Purple; 82 | this.button2.FlatAppearance.BorderSize = 0; 83 | this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 84 | this.button2.Font = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); 85 | this.button2.ForeColor = System.Drawing.Color.White; 86 | this.button2.Location = new System.Drawing.Point(0, 259); 87 | this.button2.Name = "button2"; 88 | this.button2.Size = new System.Drawing.Size(281, 57); 89 | this.button2.TabIndex = 0; 90 | this.button2.Text = "Scan"; 91 | this.button2.UseVisualStyleBackColor = false; 92 | this.button2.Click += new System.EventHandler(this.button2_Click); 93 | // 94 | // label3 95 | // 96 | this.label3.AutoSize = true; 97 | this.label3.BackColor = System.Drawing.SystemColors.Control; 98 | this.label3.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point); 99 | this.label3.Location = new System.Drawing.Point(16, 223); 100 | this.label3.Name = "label3"; 101 | this.label3.Size = new System.Drawing.Size(96, 22); 102 | this.label3.TabIndex = 0; 103 | this.label3.Text = "Selection:"; 104 | // 105 | // panel1 106 | // 107 | this.panel1.BackColor = System.Drawing.SystemColors.Control; 108 | this.panel1.Controls.Add(this.panel2); 109 | this.panel1.Controls.Add(this.label3); 110 | this.panel1.Controls.Add(this.groupBox1); 111 | this.panel1.Controls.Add(this.comboBox1); 112 | this.panel1.Controls.Add(this.button1); 113 | this.panel1.Controls.Add(this.button2); 114 | this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; 115 | this.panel1.Location = new System.Drawing.Point(0, 0); 116 | this.panel1.Name = "panel1"; 117 | this.panel1.Size = new System.Drawing.Size(562, 316); 118 | this.panel1.TabIndex = 6; 119 | this.panel1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseMove); 120 | // 121 | // panel2 122 | // 123 | this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(64))))); 124 | this.panel2.Controls.Add(this.comboBox2); 125 | this.panel2.Controls.Add(this.button3); 126 | this.panel2.Controls.Add(this.label5); 127 | this.panel2.Location = new System.Drawing.Point(0, 0); 128 | this.panel2.Name = "panel2"; 129 | this.panel2.Size = new System.Drawing.Size(562, 43); 130 | this.panel2.TabIndex = 4; 131 | this.panel2.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseMove); 132 | // 133 | // comboBox2 134 | // 135 | this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 136 | this.comboBox2.Enabled = false; 137 | this.comboBox2.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 138 | this.comboBox2.FormattingEnabled = true; 139 | this.comboBox2.Location = new System.Drawing.Point(467, 6); 140 | this.comboBox2.Name = "comboBox2"; 141 | this.comboBox2.Size = new System.Drawing.Size(44, 28); 142 | this.comboBox2.TabIndex = 0; 143 | this.comboBox2.TabStop = false; 144 | this.comboBox2.Visible = false; 145 | // 146 | // button3 147 | // 148 | this.button3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(64))))); 149 | this.button3.FlatAppearance.BorderSize = 0; 150 | this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 151 | this.button3.Font = new System.Drawing.Font("Century Gothic", 10.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point); 152 | this.button3.ForeColor = System.Drawing.Color.Gainsboro; 153 | this.button3.Location = new System.Drawing.Point(519, 6); 154 | this.button3.Name = "button3"; 155 | this.button3.Size = new System.Drawing.Size(37, 32); 156 | this.button3.TabIndex = 0; 157 | this.button3.Text = "X"; 158 | this.button3.UseVisualStyleBackColor = false; 159 | this.button3.MouseClick += new System.Windows.Forms.MouseEventHandler(this.button3_MouseClick); 160 | // 161 | // label5 162 | // 163 | this.label5.AutoSize = true; 164 | this.label5.Font = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point); 165 | this.label5.ForeColor = System.Drawing.Color.Gainsboro; 166 | this.label5.Location = new System.Drawing.Point(14, 9); 167 | this.label5.Name = "label5"; 168 | this.label5.Size = new System.Drawing.Size(279, 23); 169 | this.label5.TabIndex = 0; 170 | this.label5.Text = "Driver Download Utility v.1.7"; 171 | // 172 | // groupBox1 173 | // 174 | this.groupBox1.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point); 175 | this.groupBox1.Location = new System.Drawing.Point(28, 57); 176 | this.groupBox1.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3); 177 | this.groupBox1.Name = "groupBox1"; 178 | this.groupBox1.Size = new System.Drawing.Size(506, 149); 179 | this.groupBox1.TabIndex = 3; 180 | this.groupBox1.TabStop = false; 181 | this.groupBox1.Text = "Drivers detected to install"; 182 | // 183 | // comboBox1 184 | // 185 | this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 186 | this.comboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 187 | this.comboBox1.Font = new System.Drawing.Font("Century Gothic", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); 188 | this.comboBox1.FormattingEnabled = true; 189 | this.comboBox1.Location = new System.Drawing.Point(118, 219); 190 | this.comboBox1.Name = "comboBox1"; 191 | this.comboBox1.Size = new System.Drawing.Size(431, 29); 192 | this.comboBox1.TabIndex = 0; 193 | this.comboBox1.SelectionChangeCommitted += new System.EventHandler(this.comboBox1_SelectionChangeCommitted); 194 | this.comboBox1.MouseEnter += new System.EventHandler(this.comboBox1_MouseEnter); 195 | this.comboBox1.MouseHover += new System.EventHandler(this.comboBox1_MouseHover); 196 | // 197 | // Form1 198 | // 199 | this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); 200 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 201 | this.BackColor = System.Drawing.Color.White; 202 | this.ClientSize = new System.Drawing.Size(562, 316); 203 | this.Controls.Add(this.richTextBox1); 204 | this.Controls.Add(this.panel1); 205 | this.Font = new System.Drawing.Font("Century Gothic", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); 206 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; 207 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 208 | this.MaximizeBox = false; 209 | this.MinimizeBox = false; 210 | this.Name = "Form1"; 211 | this.ShowIcon = false; 212 | this.Text = "z"; 213 | this.Load += new System.EventHandler(this.Form1_Load); 214 | this.panel1.ResumeLayout(false); 215 | this.panel1.PerformLayout(); 216 | this.panel2.ResumeLayout(false); 217 | this.panel2.PerformLayout(); 218 | this.ResumeLayout(false); 219 | 220 | } 221 | 222 | #endregion 223 | 224 | private System.Windows.Forms.Button button1; 225 | private System.Windows.Forms.RichTextBox richTextBox1; 226 | private System.Windows.Forms.Button button2; 227 | private System.Windows.Forms.Label label3; 228 | private System.Windows.Forms.Panel panel1; 229 | private System.Windows.Forms.Label label5; 230 | private System.Windows.Forms.ComboBox comboBox1; 231 | private System.Windows.Forms.ComboBox comboBox2; 232 | private System.Windows.Forms.GroupBox groupBox1; 233 | private System.Windows.Forms.Panel panel2; 234 | private System.Windows.Forms.Button button3; 235 | } 236 | } 237 | 238 | -------------------------------------------------------------------------------- /Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Collections.Generic; 4 | using System.ComponentModel; 5 | using System.Data; 6 | using System.Drawing; 7 | using System.Linq; 8 | using System.Text; 9 | using System.Threading.Tasks; 10 | using System.Timers; 11 | using System.Runtime.InteropServices; 12 | using System.IO; 13 | using System.Windows.Forms; 14 | 15 | 16 | namespace WinFormsApp2 17 | { 18 | 19 | public partial class Form1 : Form 20 | { 21 | public Form1() 22 | { 23 | InitializeComponent(); 24 | } 25 | 26 | string line, line2, lineall, entryconverted, entry; 27 | 28 | private void button2_Click(object sender, EventArgs e) 29 | { 30 | Process command = new Process(); 31 | command.StartInfo.FileName = "powershell.exe"; 32 | command.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; 33 | command.StartInfo.UseShellExecute = false; 34 | command.StartInfo.RedirectStandardOutput = true; 35 | command.StartInfo.CreateNoWindow = true; 36 | command.StartInfo.Arguments = "Get-PnpDevice -Status ERROR | select FriendlyName -ExpandProperty Name | ft -hide"; 37 | command.Start(); 38 | 39 | //save Device Name into string -> show list 40 | while (!command.StandardOutput.EndOfStream) 41 | { 42 | lineall = command.StandardOutput.ReadToEnd(); 43 | richTextBox1.Text = lineall; 44 | } 45 | 46 | //Save log files to put them into comboboxe's 47 | command.StartInfo.Arguments = "Get-PnpDevice -Status ERROR | select FriendlyName -ExpandProperty Name | ft -hide > name.log"; 48 | command.Start(); 49 | 50 | command.StartInfo.Arguments = "Get-PnpDevice -Status ERROR | select InstanceId | findstr /c:VEN_ /c:VID_ > id.log"; 51 | command.Start(); 52 | 53 | //save Device Instance ID into String -> button Download 54 | command.StartInfo.Arguments = "Get-PnpDevice -Status ERROR | select InstanceId | findstr /c:VEN_ /c:VID_; $?"; 55 | command.Start(); 56 | while (!command.StandardOutput.EndOfStream) 57 | { 58 | line2 = command.StandardOutput.ReadLine(); 59 | }//True or False checking 60 | 61 | command.StartInfo.Arguments = "Get-PnpDevice -Status ERROR | select InstanceId | findstr /c:VEN_ /c:VID_"; 62 | command.Start(); 63 | while (!command.StandardOutput.EndOfStream) 64 | { 65 | line = command.StandardOutput.ReadLine(); 66 | }//Default line checking 67 | 68 | if (line == " " || line == "" || line2 == "False") 69 | { 70 | richTextBox1.Text = "Nothing to do here."; 71 | MessageBox.Show("No drivers required to be installed were found.","Information"); 72 | 73 | command.StartInfo.Arguments = "rm id.log; rm name.log"; 74 | command.Start(); 75 | } 76 | } 77 | 78 | private void panel1_MouseMove(object sender, MouseEventArgs e) 79 | { 80 | 81 | } 82 | 83 | private void comboBox1_SelectionChangeCommitted(object sender, EventArgs e) 84 | { 85 | comboBox2.SelectedIndex = comboBox1.SelectedIndex; 86 | entry = comboBox2.GetItemText(comboBox2.SelectedItem); 87 | } 88 | 89 | private void comboBox1_MouseHover(object sender, EventArgs e) 90 | { 91 | 92 | } 93 | 94 | private void button3_MouseClick(object sender, MouseEventArgs e) 95 | { 96 | Process command = new Process(); 97 | command.StartInfo.FileName = "powershell.exe"; 98 | command.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; 99 | command.StartInfo.UseShellExecute = false; 100 | command.StartInfo.RedirectStandardOutput = true; 101 | command.StartInfo.CreateNoWindow = true; 102 | command.StartInfo.Arguments = "rm id.log; rm name.log"; 103 | command.Start(); 104 | Application.Exit(); 105 | } 106 | 107 | //Panel = Mouse Drag (Flat GUI) 108 | public const int WM_NCLBUTTONDOWN = 0xA1; 109 | public const int HT_CAPTION = 0x2; 110 | 111 | [DllImportAttribute("user32.dll")] 112 | public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam); 113 | [DllImportAttribute("user32.dll")] 114 | public static extern bool ReleaseCapture(); 115 | 116 | private void panel2_MouseMove(object sender, MouseEventArgs e) 117 | { 118 | if (e.Button == MouseButtons.Left) 119 | { 120 | ReleaseCapture(); 121 | SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0); 122 | } 123 | } 124 | 125 | private void comboBox1_MouseEnter(object sender, EventArgs e) 126 | { 127 | StreamReader sr = File.OpenText("name.log"); 128 | string s = ""; 129 | comboBox1.Items.Clear(); 130 | while ((s = sr.ReadLine()) != null) 131 | { 132 | comboBox1.Items.Add(s); 133 | } 134 | if (new FileInfo("name.log").Length==0) 135 | { 136 | comboBox1.Items.Add("Unknown Device"); 137 | } 138 | sr.Close(); 139 | 140 | StreamReader sr2 = File.OpenText("id.log"); 141 | s = ""; 142 | comboBox2.Items.Clear(); 143 | while ((s = sr2.ReadLine()) != null) 144 | { 145 | comboBox2.Items.Add(s); 146 | } 147 | sr2.Close(); 148 | } 149 | 150 | public void Form1_Load(object sender, EventArgs e) 151 | { 152 | 153 | button1.BackColor = Color.FromArgb(87, 101, 116); 154 | button2.BackColor = Color.FromArgb(44, 62, 80); 155 | 156 | Process command = new Process(); 157 | command.StartInfo.FileName = "powershell.exe"; 158 | command.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; 159 | command.StartInfo.UseShellExecute = false; 160 | command.StartInfo.RedirectStandardOutput = true; 161 | command.StartInfo.CreateNoWindow = true; 162 | command.StartInfo.Arguments = "Get-PnpDevice -Status ERROR | select FriendlyName -ExpandProperty Name | ft -hide"; 163 | command.Start(); 164 | 165 | //save Device Name into string -> show list 166 | while (!command.StandardOutput.EndOfStream) 167 | { 168 | lineall = command.StandardOutput.ReadToEnd(); 169 | richTextBox1.Text = lineall; 170 | } 171 | 172 | //Save log files to put them into comboboxe's 173 | command.StartInfo.Arguments = "Get-PnpDevice -Status ERROR | select FriendlyName -ExpandProperty Name | ft -hide > name.log"; 174 | command.Start(); 175 | 176 | command.StartInfo.Arguments = "Get-PnpDevice -Status ERROR | select InstanceId | findstr /c:VEN_ /c:VID_ > id.log"; 177 | command.Start(); 178 | 179 | //save Device Instance ID into String -> button Download 180 | command.StartInfo.Arguments = "Get-PnpDevice -Status ERROR | select InstanceId | findstr /c:VEN_ /c:VID_; $?"; 181 | command.Start(); 182 | while (!command.StandardOutput.EndOfStream) 183 | { 184 | line2 = command.StandardOutput.ReadLine(); 185 | }//True or False checking 186 | 187 | command.StartInfo.Arguments = "Get-PnpDevice -Status ERROR | select InstanceId | findstr /c:VEN_ /c:VID_"; 188 | command.Start(); 189 | while (!command.StandardOutput.EndOfStream) 190 | { 191 | line = command.StandardOutput.ReadLine(); 192 | }//Default line checking 193 | 194 | if (line == " " || line == "" || line2 == "False") 195 | { 196 | MessageBox.Show("No drivers required to be installed were found.", "Information"); 197 | richTextBox1.Text = "Nothing to do here."; 198 | command.StartInfo.Arguments = "rm id.log; rm name.log"; 199 | command.Start(); 200 | Application.Exit(); 201 | } 202 | 203 | } 204 | private void button1_Click(object sender, EventArgs e) 205 | { 206 | if (comboBox1.SelectedIndex > -1) 207 | { 208 | 209 | //Detecting device type 210 | string[] PCI = new string[] 211 | { "PCI\\" }; 212 | string[] USB_HID = new string[] 213 | { 214 | "USB\\", 215 | "HID\\" 216 | }; 217 | 218 | foreach(string s in PCI) 219 | { 220 | if (entry.StartsWith(s)) 221 | { 222 | //delete all before VEN_ 223 | int pos = entry.IndexOf("VEN_"); 224 | if (pos >= 0) 225 | { 226 | entryconverted = entry.Remove(0, pos); 227 | } 228 | 229 | //delete all after &SUBSYS 230 | pos = entryconverted.IndexOf("&SUBSYS"); 231 | if (pos >= 0) 232 | { 233 | entry = entryconverted.Remove(pos); 234 | } 235 | } 236 | } 237 | 238 | foreach (string s in USB_HID) 239 | { 240 | if (entry.StartsWith(s)) 241 | { 242 | //delete all before VEN_ 243 | int pos = entry.IndexOf("VID_"); 244 | if (pos >= 0) 245 | { 246 | entryconverted = entry.Remove(0, pos); 247 | } 248 | 249 | //delete all after &SUBSYS 250 | pos = entryconverted.IndexOf("&MI"); 251 | if (pos >= 0) 252 | { 253 | entry = entryconverted.Remove(pos); 254 | } 255 | 256 | pos = entryconverted.IndexOf("\\5&"); 257 | if (pos >= 0) 258 | { 259 | entry = entryconverted.Remove(pos); 260 | } 261 | 262 | pos = entryconverted.IndexOf("\\5"); 263 | if (pos >= 0) 264 | { 265 | entry = entryconverted.Remove(pos); 266 | } 267 | } 268 | } 269 | 270 | 271 | //replace & symbol between VEN_ and DEV_ ids for URL entry 272 | entryconverted = entry.Replace("&", "%26"); 273 | 274 | Process.Start(new ProcessStartInfo 275 | { 276 | FileName = "https://download-drivers.net/search?q=" + entryconverted, 277 | UseShellExecute = true 278 | }); 279 | } 280 | else 281 | { 282 | MessageBox.Show("Choose the driver you want to download.", "Information"); 283 | } 284 | } 285 | 286 | } 287 | } 288 | -------------------------------------------------------------------------------- /Form1.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | text/microsoft-resx 50 | 51 | 52 | 2.0 53 | 54 | 55 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 56 | 57 | 58 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 59 | 60 | 61 | 62 | 63 | AAABAAUAEBAAAAEAIABoBAAAVgAAABgYAAABACAAiAkAAL4EAAAgIAAAAQAgAKgQAABGDgAAMDAAAAEA 64 | IACoJQAA7h4AAGlpAAABAAgABDcAAJZEAAAoAAAAEAAAACAAAAABACAAAAAAAAAEAAB0EgAAdBIAAAAA 65 | AAAAAAAAQABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 66 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 67 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 68 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 69 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/z4APv8+AD7/QABA/0AAQP8+AD7/PgA+/0AA 70 | QP9AAED/PwA//z8AP/9AAED/QABA/0AAQP9AAED/QABA/0YHRP9dJlz/WyVc/0MHRf9HCET/Xidc/1ok 71 | XP9DB0X/PwA//1EVTv9XIVn/QQND/0AAQP9AAED/QABA/z4APv9oLFz/zLnK/7qku/+Wep//bzhm/8u6 72 | yv+7pLv/k3ec/1keVP+4nrL/wa7C/3RPgf8+AD7/QABA/0AAQP89AD7/bjNh/6mSsf9RE07/tZuy/4xi 73 | iv+ki6z/UhVP/7adtP+KX4f/oIap/4FNdv+cg6f/PgBA/0AAQP9AAED/PQA+/24zYf+pkrH/VBhR/7ad 74 | s/+KX4f/pIut/1YaUv+2nrX/jGCI/5yCpv94Qm3/noWp/z4AQP9AAED/QABA/z4APv9oLFz/zLrK/7ym 75 | vP+Pcpr/bjZl/8y6yv+8prz/i2yW/3Q9av+Vd57/dDxq/5V4n/8+AED/QABA/0AAQP9AAED/RgdE/10m 76 | XP9YIlr/QgVE/0cIRf9eJ1z/WCFa/0EEQ/9ICUb/ThRQ/0kKR/9OFFD/QABA/0AAQP9AAED/QABA/0AA 77 | QP8+AD7/PwA+/0AAQP9AAED/PgA+/z8AP/9AAED/PwBA/z8AP/8/AED/PwA//0AAQP9AAED/QABA/0AA 78 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 79 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 80 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 81 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 82 | QP9AAED/QABA/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 83 | AAAAAAAAAAAAAAAAAAAoAAAAGAAAADAAAAABACAAAAAAAAAJAAB0EgAAdBIAAAAAAAAAAAAAQABA/0AA 84 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 85 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 86 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 87 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 88 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 89 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 90 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 91 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 92 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 93 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 94 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 95 | QP9AAED/QABA/0AAQP9AAED/QABA/z8AP/8+AD7/PgA+/z8AP/9AAED/QABA/z4AP/8+AD7/PgA+/z8A 96 | P/9AAED/QABA/0AAQP8/AD//PgA+/0AAP/9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QQBA/1cb 97 | U/9hLWH/Xypg/0wTT/8/AD//QQBA/1gdVP9hLWH/Xilf/0oRTv8/AD//QABA/0ABP/9VGlD/XSlf/0YL 98 | Sv8/AD//QABA/0AAQP9AAED/QABA/0AAQP9AAED/RAA//7yXpv/p5Oz/4Nbg/8/F1/9rRXn/RgFA/8Si 99 | r//o4+v/4Nbg/8vB1P9mPnP/PQA9/31Ga//czNT/49vj/7ChwP9JE1P/PwA//0AAQP9AAED/QABA/0AA 100 | QP9AAED/RQA//8emsf+llbv/YCpg/7aSpP/Iw9j/UBVU/82wuP+dibP/Yitg/72bq//Bu9P/ShBO/8al 101 | r/+ml7v/d0Fs/+LW3P9uTYX/PQA9/0AAQP9AAED/QABA/0AAQP9AAED/RQA//8emsf+Uga3/OAA7/2co 102 | VP/e1Nz/ZTVx/8yut/+KdKT/OAA6/28xW//c1N7/Yi9r/9G3vv9/Zpr/SQU//9bAxv98X5X/PQA9/0AA 103 | QP9AAED/QABA/0AAQP9AAED/RQA//8emsf+Uga3/OAA7/2stV//d1N3/YjJu/8yvt/+KdKT/OAA6/3M3 104 | Xv/a1N7/YCxo/9K5wP+BZpv/SwRB/9bAxv99YJb/PQA9/0AAQP9AAED/QABA/0AAQP9AAED/RQA//8em 105 | sf+llbv/ZzJk/8Kir//AutL/ThFQ/86wuf+dibP/aTRl/8iqtv+4sMz/TxBO/9O7wf+BZpv/SwRB/9bA 106 | xv99YJb/PQA9/0AAQP9AAED/QABA/0AAQP9AAED/RAA//7yXpv/p5Oz/4Nfg/8a80P9hN3H/RgE//8Si 107 | r//o4+v/4Nfg/8K3zf9cMGv/SQRB/8ituP98XpT/SgRB/8uxvP95WZD/PQA9/0AAQP9AAED/QABA/0AA 108 | QP9AAED/QQBA/1cbU/9hLWH/XCde/0gOS/8/AD//QQBA/1gdVP9hLWH/XCZd/0cMSv8/AD//QgFA/1kg 109 | Vv9LEU//QgFA/1kgV/9KEE7/PwBA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/z8AP/8+AD7/PgA+/z8A 110 | P/9AAED/QABA/z4AP/8+AD7/PgA+/0AAP/9AAED/QABA/z4AP/8/AD//QABA/z4AP/8/AD//QABA/0AA 111 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 112 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 113 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 114 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 115 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 116 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 117 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 118 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 119 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 120 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 121 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 122 | QP9AAED/QABA/0AAQP9AAED/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 123 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACAA 124 | AABAAAAAAQAgAAAAAAAAEAAAdBIAAHQSAAAAAAAAAAAAAEAAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 125 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 126 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 127 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 128 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 129 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 130 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 131 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 132 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 133 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 134 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 135 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 136 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 137 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 138 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 139 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 140 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 141 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 142 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 143 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 144 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 145 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 146 | QP9AAED/QABA/0AAQP8/AED/PgA+/z4APv8+AD7/PwA+/0AAQP9AAED/QABA/z8AP/8+AD7/PgA+/z4A 147 | Pv8/AD7/QABA/0AAQP9AAED/QABA/0AAQP8+AD//PgA+/z8AP/9AAED/QABA/0AAQP9AAED/QABA/0AA 148 | QP9AAED/QABA/0AAQP9AAED/PwBA/0wMR/9jLmH/Yy9k/2IuY/9VH1n/QQVE/z8AP/9AAED/Tw9J/2Mv 149 | Yv9jL2P/Yi5i/1MdWP9AA0P/PwA//0AAQP8/AED/QgJA/1kfU/9jL2P/ThdU/z8AQP9AAED/QABA/0AA 150 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP89AD7/fjxj//Ho5v/18fX/9PH0/+Tg6/+ikrT/SxdT/z0A 151 | PP+KS23/8+3r//Tx9f/08PT/4t3p/5qIrP9IEU//PwA//0YFQf+fcIf/6t/h//Xy9f/Uz+H/bUyD/z4A 152 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/z0APv+DQGb/+ffy/6+dwv+SbZH/xKi3//n2 153 | 9f+aj7f/PQBD/49QcP/4+fb/qZS6/5Nvkv/Kr7z/+Pf3/4+ArP88AEH/czNZ//Tp5v/BudP/nHiX/+zZ 154 | 2f/LzeT/SRZZ/z8APv9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/PQA+/4NBZv/19/L/cVaS/zkA 155 | Ov9KCEL/yKOp/9zg8P9NHWH/jk5u//P39f9nRoX/OgA6/08NRP/TsrX/0tXq/0cUWP+QVXD/8fLz/2RB 156 | gf87ADf/rnuK/+ft9v9XLG7/PwA9/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP89AD7/g0Fm//b3 157 | 8v90VpT/PQA9/z0APf+aYHn/8PX2/183ev+NTG3/8/f1/2lGh/8+AD3/PgA9/6dxhf/p8PX/Vylv/5pd 158 | eP/v9Pb/YDh7/zwAOv+iaoH/6/L1/1swdf8+AD3/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/z0A 159 | Pv+DQWb/9vfy/3RWlP89AD3/PQA8/59ofP/t8vf/XDN2/41Mbf/z9/X/aUaH/z0APf8+ADz/rHmJ/+fs 160 | 9f9UJmv/m155/+/09v9gOHz/PAA6/6Nqgf/s8vb/XDF2/z4APf9AAED/QABA/0AAQP9AAED/QABA/0AA 161 | QP9AAED/PQA+/4NBZv/19/L/cVaS/zoAOv9TEEf/0rK1/9TX6/9JF1v/jk5u//P39f9nRoX/OgA6/1kW 162 | Sv/bwMD/ysvk/0UOU/+cYHr/7/T2/2A4fP88ADr/o2qB/+zy9v9cMXb/PgA9/0AAQP9AAED/QABA/0AA 163 | QP9AAED/QABA/0AAQP89AD7/g0Bm//n38v+uncH/mHaW/9S8xf/39vn/i3qp/zwAQP+PUHD/+Pn2/6iU 164 | uv+beZj/2cLK//T1+f+Aa57/PAA+/5xhe//v9Pb/YDh8/zwAOv+jaoH/7PL2/1wxdv8+AD3/QABA/0AA 165 | QP9AAED/QABA/0AAQP9AAED/QABA/z0APv9+PGP/8ejm//Xx9f/y7/P/3Nbj/5F8pv9FDU7/PQA8/4pL 166 | bf/z7ev/9fH1//Hu8v/Y0uH/inKf/0MJSv8+ADz/llt3/+Tl6v9eNHj/PAA6/5xjff/h4+r/Wi5z/z4A 167 | Pf9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/PwBA/0wMR/9jLmH/ZC9k/2AsYf9PF1P/PwJB/z8A 168 | P/9AAED/Tw9J/2MvYv9jL2P/YCxh/04VUv8/AkD/QAA//0AAP/9REkv/YC1i/0YKS/8/AD//UhRM/2At 169 | Yv9FCUr/QAA//0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/PwBA/z4APv8+AD7/PgA+/z8A 170 | P/9AAED/QABA/0AAQP8/AD//PgA+/z4APv8+AD7/PwA//0AAQP9AAED/QABA/z8AP/8+AD7/QAA//0AA 171 | QP8/AD//PgA+/0AAP/9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 172 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 173 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 174 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 175 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 176 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 177 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 178 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 179 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 180 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 181 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 182 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 183 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 184 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 185 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 186 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 187 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 188 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 189 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 190 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 191 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 192 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP8AAAAAAAAAAAAA 193 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 194 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgA 195 | AAAwAAAAYAAAAAEAIAAAAAAAACQAAHQSAAB0EgAAAAAAAAAAAABAAED/QABA/0AAQP9AAED/QABA/0AA 196 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 197 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 198 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 199 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 200 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 201 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 202 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 203 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 204 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 205 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 206 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 207 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 208 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 209 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 210 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 211 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 212 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 213 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 214 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 215 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 216 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 217 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 218 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 219 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 220 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 221 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 222 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 223 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 224 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 225 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 226 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 227 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 228 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 229 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 230 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 231 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 232 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 233 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 234 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 235 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 236 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 237 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 238 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 239 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 240 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 241 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 242 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 243 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 244 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 245 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 246 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 247 | QP9AAED/QABA/0AAQP9AAED/QABA/z8AP/89AD3/PQA9/z0APf89AD3/PgA+/z8APv9AAED/QABA/0AA 248 | QP9AAED/QABA/z4AP/89AD3/PQA9/z0APf89AD3/PgA+/z8AP/9AAED/QABA/0AAQP9AAED/QABA/0AA 249 | QP9AAED/PwBA/z4APv89AD3/PgA+/0AAP/9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 250 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QAA//1QTSv9qOGf/ajhq/2o4av9qOGr/ZDJm/1Ac 251 | Wf8/AkL/PwA//0AAQP9AAED/QAA//1gYTv9rOWn/ajhq/2o4av9qOGr/YjFl/00YVv8+AUH/PwA//0AA 252 | QP9AAED/QABA/0AAQP8/AD//SghC/2MtW/9rOWn/YTFl/0UMTv8/AD//QABA/0AAQP9AAED/QABA/0AA 253 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/PwA+/5lSbf/59u3/+fb5//n3 254 | +f/59/n/8fDz/9fT4/+ZirL/TiBb/z8APv9AAED/QQA9/6prff/7+vP/+fb5//n3+f/59/n/7+7y/9LN 255 | 4P+Qfqj/SRdT/z8APv9AAED/QABA/z8AP/9rKlT/yKSu//Dp5v/6+Pj/7e7z/7my0P9eOnn/PgBA/0AA 256 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/PwA9/5xV 257 | b/////P//f3///Xy9//08fT/+ff4/////v/9////tbbR/0ocXP8/AD//QQA9/65vf/////r//Pz+//Xy 258 | 9v/18fX/+vj5///////7/f//pqXF/0USU/9AAD//PgA//10WR//bvLf///////r7/f/18vX//Pr6//// 259 | ///K0ej/TiVs/z8APv9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 260 | QP9AAED/PwA9/5xVb/////T/2uT0/2xChf9hLGH/d0hx/76Ypv/88+//+v///4uGuf8+AUT/QQA9/65v 261 | f/////v/zdXs/2c3ev9iLmH/fU51/8ikr//++PT/9fv//3twqP8+AEH/PQA+/5JRZP//+PH/7fL8/4p5 262 | qP9iMWX/om2D//nq5P/7////fXSv/z4AQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 263 | QP9AAED/QABA/0AAQP9AAED/PwA9/5xVb/////T/0d/x/0oYaP89ADv/PQA9/0oIP//Dk5f////+/8nS 264 | 6/9HGmL/QQA7/65vf/////v/wczn/0MLW/89ADz/PAA9/1IOQv/Sqaj//////7i/4P9CD1b/PwA8/6x0 265 | fv////v/usLi/0ENVv88ADz/UAo9/9ixrP//////mpvI/z8ARv9AAED/QABA/0AAQP9AAED/QABA/0AA 266 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/PwA9/5xVb/////T/0t/x/0wYav8/AD7/QABA/z0A 267 | Pv+BPFn/++/l/+n1//9fQYb/QAA6/65vf/////v/wszn/0ULXf9AAD7/QABA/z0APf+TUWb///nv/93p 268 | +v9ULnX/QwA7/7uEjf//////sLbb/0ADUv8/AD//SQA+/8iYm///////o6TQ/z8AS/9AAD//QABA/0AA 269 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/PwA9/5xVb/////T/0t/x/0wY 270 | av8/AD7/QABA/z4AP/9tHE7/9OPV//L///9rT5f/PwA8/65vf/////v/wszn/0ULXf9AAD7/QABA/z0A 271 | Pv99Llj/+/Hj/+n3/v9dOIb/RAA7/8CKkf//////sbbb/0EDUv8/AD//SQA+/8iXmv//////qKrU/z8A 272 | Tv9AAD//QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/PwA9/5xV 273 | b/////T/0t/x/0wYav8/AD7/QABA/z4AP/9xI0//9eXZ//D9//9oS5L/PwA7/65vf/////v/wszn/0UL 274 | Xf9AAD7/QABA/z0APv+BNVn//PPm/+bz/f9bNYH/RAA7/8CKkf//////sbbb/0EDUv8/AD//SQA+/8iX 275 | mv//////qKrU/z8ATv9AAD//QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 276 | QP9AAED/PwA9/5xVb/////T/0t/x/0wYav8/AD7/QABA/zwAPv+MS2D///Xt/+Ls/P9XN3r/QAA6/65v 277 | f/////v/wszn/0ULXf9AAD7/QABA/z0APf+eYW7///32/9Tf9f9NJWr/RQA7/8CKkf//////sbbb/0ED 278 | Uv8/AD//SQA+/8iXmv//////qKrU/z8ATv9AAD//QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 279 | QP9AAED/QABA/0AAQP9AAED/PwA9/5xVb/////T/0d/x/0oYaP89ADv/PQA9/1sSRv/Srqz//////7vE 280 | 4/9EElr/QQA8/65vf/////v/wczn/0MLW/89ADz/PQA9/2UcTP/ewbz//////6qv1v9ACVD/RgA8/8CK 281 | kf//////sbbb/0EDUv8/AD//SQA+/8iXmv//////qKrU/z8ATv9AAD//QABA/0AAQP9AAED/QABA/0AA 282 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/PwA9/5xVb/////T/2uT0/2xChf9lMmT/jWSB/9e0 283 | u///+/j/8/n//3doo/8+AEH/QQA9/65vf/////v/zdXs/2Y3ev9nNmb/lWyF/96/xP///vz/7PP8/2hS 284 | kv89AD//RgA9/8CKkf//////sbbb/0EDUv8/AD//SQA+/8iXmv//////qKrU/z8ATv9AAD//QABA/0AA 285 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/PwA9/5xVb/////P//f3///Xy 286 | 9//18vX//Pv7///////3+/7/mpTA/0MPU/8/AD//QQA9/65vf/////r//Pz+//Xy9v/28/b//fz8//// 287 | ///y9/z/i4Gz/0EJTP8/AD//RgA9/8CKkf//////sbbb/0EDUv8/AD//SQA+/8iXmv//////qKrU/z8A 288 | Tv9AAD//QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/PwA+/5lS 289 | bf/59u3/+fb5//n3+f/39ff/6Obu/8i/1P+DcJ//RA5S/z8APv9AAED/QQA9/6prff/7+vP/+fb5//n3 290 | +f/29Pf/5uPs/8K60P96YpX/QglM/0AAP/8/AED/RgA9/7uFjv/9//n/rbDW/0EDUv8/AD//SAA+/8OS 291 | l//8//v/pKTP/z8ATv9AAD//QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 292 | QP9AAED/QAA//1QTSv9qOGf/ajhq/2o4av9pN2n/XSti/0gNTf8+AD//QAA//0AAQP9AAED/QAA//1gY 293 | Tv9rOWn/ajhq/2o4av9oNmj/Wylg/0YKSv8+AD//QAA//0AAQP9AAED/QQA//1weUv9rOmr/WShi/0AB 294 | RP9AAED/QgBA/14hVP9rOmv/VyVg/0AAQ/9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 295 | QP9AAED/QABA/0AAQP9AAED/QABA/z8AP/89AD3/PQA9/z0APf89AD3/PgA+/z8AP/9AAED/QABA/0AA 296 | QP9AAED/QABA/z4AP/89AD3/PQA9/z0APf89AD3/PgA+/0AAP/9AAED/QABA/0AAQP9AAED/QABA/z4A 297 | P/89AD3/PgA+/0AAQP9AAED/QABA/z4AP/89AD3/PgA+/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 298 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 299 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 300 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 301 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 302 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 303 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 304 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 305 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 306 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 307 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 308 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 309 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 310 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 311 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 312 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 313 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 314 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 315 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 316 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 317 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 318 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 319 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 320 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 321 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 322 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 323 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 324 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 325 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 326 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 327 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 328 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 329 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 330 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 331 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 332 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 333 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 334 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 335 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 336 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 337 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 338 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 339 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 340 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 341 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 342 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 343 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 344 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 345 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 346 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 347 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 348 | QP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AAQP9AAED/QABA/0AA 349 | QP9AAED/QABA/0AAQP8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 350 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 351 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 352 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 353 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 354 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 355 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAaQAAANIAAAABAAgAAAAAAEws 356 | AAB0EgAAdBIAAAABAAAAAQAAQABAAIYAQQD//8QA////AOLb4gDE2+IAppDEAGQ6hgDE//8AQQCGAOL/ 357 | /wCGtuIAQQBkAEE6pgBkOmQAppCGAP/bxACm2/8ApjpBAEFmxAD//+IA/7aGAGSQ4gDEZkEAhrb/AOKQ 358 | ZABkAEEA/9umAMSQhgD/2+IAprbiAEE6hgCGOkEAxNv/AGRmpgDEZmQAZGbEAKZmZADi28QAAAAAAAAA 359 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 360 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 361 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 362 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 363 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 364 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 365 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 366 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 367 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 368 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 369 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 370 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 371 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 372 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 373 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 374 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 375 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 376 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 377 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 378 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 379 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 380 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 381 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 382 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 383 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 384 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 385 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 386 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 387 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 388 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 389 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 390 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 391 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 392 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 393 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 394 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 395 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 396 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 397 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 398 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 399 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 400 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 401 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 402 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 403 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 404 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 405 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 406 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 407 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 408 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 409 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 410 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 411 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 412 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 413 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 414 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 415 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 416 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 417 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 418 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 419 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 420 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 421 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 422 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 423 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 424 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 425 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 426 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 427 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 428 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 429 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 430 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 431 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 432 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 433 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 434 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 435 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 436 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 437 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 438 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 439 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 440 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 441 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 442 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 443 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDAwMD 444 | AwMDBAUGHwAAAAAAAAAAAAAAAQIDAwMDAwMDAwMEBQYfAAAAAAAAAAAAAAAAAAAAABolJhQDAwMFIgwA 445 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDAwMDAwMDAwMDAyEiAAAA 446 | AAAAAAAAAQIDAwMDAwMDAwMDAwMDISIAAAAAAAAAAAAAAAAAIxQDAwMDAwMDAwokAAAAAAAAAAAAAAAA 447 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDAwMDAwMDAwMDAwMDCwAAAAAAAAAAAQIDAwMD 448 | AwMDAwMDAwMDAwMLAAAAAAAAAAAAAAAZAwMDAwMDAwMDAwMDFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 449 | AAAAAAAAAAAAAAAAAAAAAAECAwMDAwMDAwMDAwMDAwMDAwsAAAAAAAAAAQIDAwMDAwMDAwMDAwMDAwMD 450 | CwAAAAAAAAAAABcDAwMDAwMDAwMDAwMDAxMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 451 | AAAAAAECAwMDAwMDAwMDAwMDAwMDAwMWAAAAAAAAAQIDAwMDAwMDAwMDAwMDAwMDAxYAAAAAAAAAAQID 452 | AwMDAwMDAwMDAwMDAwgJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDCAkA 453 | AAAADhwdAwMDAwMKDQAAAAAAAQIDAwMICQAAAAAOHB0DAwMDAwoNAAAAAAAAFwMDAwMDHh8AACAQAwMD 454 | AwMTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDCAkAAAAAAAAAGQMDAwMD 455 | GAAAAAAAAQIDAwMICQAAAAAAAAAZAwMDAwMYAAAAAAAAGQMDAwMYAAAAAAAaFQMDAwMYAAAAAAAAAAAA 456 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDCAkAAAAAAAAAABkDAwMDCAkAAAAAAQIDAwMI 457 | CQAAAAAAAAAAGQMDAwMICQAAAAAAFQMDAwoNAAAAAAAAFwMDAwMRDAAAAAAAAAAAAAAAAAAAAAAAAAAA 458 | AAAAAAAAAAAAAAAAAAAAAAECAwMDCAkAAAAAAAAAAAECAwMDAxMAAAAAAQIDAwMICQAAAAAAAAAAAQID 459 | AwMDEwAAAAAaGwMDAwgJAAAAAAAAEhQDAwMRDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 460 | AAAAAAECAwMDCAkAAAAAAAAAAAAZAwMDAxgAAAAAAQIDAwMICQAAAAAAAAAAABkDAwMDGAAAAAAaGwMD 461 | AwgJAAAAAAAAAQIDAwMRDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDCAkA 462 | AAAAAAAAAAASFAMDAxEMAAAAAQIDAwMICQAAAAAAAAAAABIUAwMDEQwAAAABAgMDAwgJAAAAAAAAAQID 463 | AwMICQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDCAkAAAAAAAAAAAABAgMD 464 | AwgJAAAAAQIDAwMICQAAAAAAAAAAAAECAwMDCAkAAAABAgMDAwgJAAAAAAAAAQIDAwMICQAAAAAAAAAA 465 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDCAkAAAAAAAAAAAABAgMDAwgJAAAAAQIDAwMI 466 | CQAAAAAAAAAAAAECAwMDCAkAAAABAgMDAwgJAAAAAAAAAQIDAwMICQAAAAAAAAAAAAAAAAAAAAAAAAAA 467 | AAAAAAAAAAAAAAAAAAAAAAECAwMDCAkAAAAAAAAAAAABAgMDAwgJAAAAAQIDAwMICQAAAAAAAAAAAAEC 468 | AwMDCAkAAAABAgMDAwgJAAAAAAAAAQIDAwMICQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 469 | AAAAAAECAwMDCAkAAAAAAAAAAAABAgMDAwgJAAAAAQIDAwMICQAAAAAAAAAAAAECAwMDCAkAAAABAgMD 470 | AwgJAAAAAAAAAQIDAwMICQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDCAkA 471 | AAAAAAAAAAASFAMDAxEMAAAAAQIDAwMICQAAAAAAAAAAABIUAwMDEQwAAAABAgMDAwgJAAAAAAAAAQID 472 | AwMICQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDCAkAAAAAAAAAAAAXAwMD 473 | AxgAAAAAAQIDAwMICQAAAAAAAAAAABcDAwMDGAAAAAABAgMDAwgJAAAAAAAAAQIDAwMICQAAAAAAAAAA 474 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDCAkAAAAAAAAAAAAVAwMDAxYAAAAAAQIDAwMI 475 | CQAAAAAAAAAAABUDAwMDFgAAAAABAgMDAwgJAAAAAAAAAQIDAwMICQAAAAAAAAAAAAAAAAAAAAAAAAAA 476 | AAAAAAAAAAAAAAAAAAAAAAECAwMDCAkAAAAAAAAAABIUAwMDCg0AAAAAAQIDAwMICQAAAAAAAAAAEhQD 477 | AwMKDQAAAAABAgMDAwgJAAAAAAAAAQIDAwMICQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 478 | AAAAAAECAwMDCAkAAAAAAAAAAQIDAwMDEQwAAAAAAQIDAwMICQAAAAAAAAABAgMDAwMRDAAAAAABAgMD 479 | AwgJAAAAAAAAAQIDAwMICQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDCAkA 480 | AAAAAAASEAMDAwMDEwAAAAAAAQIDAwMICQAAAAAAABIQAwMDAwMTAAAAAAABAgMDAwgJAAAAAAAAAQID 481 | AwMICQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDCAkAAAAODxADAwMDAwMR 482 | DAAAAAAAAQIDAwMICQAAAA4PEAMDAwMDAxEMAAAAAAABAgMDAwgJAAAAAAAAAQIDAwMICQAAAAAAAAAA 483 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDAwMDAwMDAwMDAwMDAwoNAAAAAAAAAQIDAwMD 484 | AwMDAwMDAwMDAwMDCg0AAAAAAAABAgMDAwgJAAAAAAAAAQIDAwMICQAAAAAAAAAAAAAAAAAAAAAAAAAA 485 | AAAAAAAAAAAAAAAAAAAAAAECAwMDAwMDAwMDAwMDAwMDCg0AAAAAAAAAAQIDAwMDAwMDAwMDAwMDAwMK 486 | DQAAAAAAAAABAgMDAwgJAAAAAAAAAQIDAwMICQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 487 | AAAAAAECAwMDAwMDAwMDAwMDAwMKDQAAAAAAAAAAAQIDAwMDAwMDAwMDAwMDAwoNAAAAAAAAAAABAgMD 488 | AwgJAAAAAAAAAQIDAwMICQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDAwMD 489 | AwMDAwMDCgsMAAAAAAAAAAAAAQIDAwMDAwMDAwMDAwMKCwwAAAAAAAAAAAABAgMDAwgJAAAAAAAAAQID 490 | AwMICQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECAwMDAwMDAwMEBQYHAAAAAAAA 491 | AAAAAAAAAQIDAwMDAwMDAwQFBgcAAAAAAAAAAAAAAAABAgMDAwgJAAAAAAAAAQIDAwMICQAAAAAAAAAA 492 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 493 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 494 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 495 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 496 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 497 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 498 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 499 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 500 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 501 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 502 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 503 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 504 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 505 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 506 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 507 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 508 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 509 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 510 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 511 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 512 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 513 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 514 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 515 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 516 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 517 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 518 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 519 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 520 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 521 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 522 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 523 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 524 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 525 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 526 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 527 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 528 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 529 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 530 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 531 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 532 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 533 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 534 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 535 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 536 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 537 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 538 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 539 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 540 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 541 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 542 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 543 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 544 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 545 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 546 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 547 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 548 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 549 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 550 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 551 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 552 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 553 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 554 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 555 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 556 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 557 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 558 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 559 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 560 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 561 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 562 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 563 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 564 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 565 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 566 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 567 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 568 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 569 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 570 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 571 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 572 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 573 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 574 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 575 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 576 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 577 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 578 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 579 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 580 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 581 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 582 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 583 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 584 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 585 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 586 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 587 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 588 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 589 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 590 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 591 | 592 | 593 | -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace WinFormsApp2 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.SetHighDpiMode(HighDpiMode.SystemAware); 18 | Application.EnableVisualStyles(); 19 | Application.SetCompatibleTextRenderingDefault(false); 20 | Application.Run(new Form1()); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | Release 8 | Any CPU 9 | bin\Release\netcoreapp3.1\publish\ 10 | FileSystem 11 | netcoreapp3.1 12 | win-x64 13 | false 14 | True 15 | True 16 | 17 | -------------------------------------------------------------------------------- /Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | False|2022-03-26T10:10:58.7046802Z;False|2022-03-26T11:08:23.9628273+01:00;True|2022-03-11T12:47:03.8501277+01:00;True|2022-03-11T12:45:22.9573248+01:00;True|2022-03-06T01:10:48.2986560+01:00;True|2022-03-06T00:03:37.6089459+01:00;True|2022-03-06T00:00:02.7627241+01:00;True|2022-03-05T23:56:35.5290130+01:00;True|2022-03-05T23:55:48.0152380+01:00;True|2022-03-05T23:53:33.7478956+01:00;True|2022-03-05T23:38:44.1931003+01:00;True|2022-03-05T23:10:54.5335461+01:00;True|2022-03-04T23:57:49.5564516+01:00;True|2022-03-04T23:56:53.9907326+01:00;True|2022-03-04T23:56:24.9689915+01:00;True|2022-03-04T23:48:58.3230809+01:00; 8 | 9 | -------------------------------------------------------------------------------- /Properties/PublishProfiles/FolderProfile1.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | Release 8 | Any CPU 9 | bin\Release\netcoreapp3.1\publish\ 10 | FileSystem 11 | netcoreapp3.1 12 | win-x86 13 | false 14 | True 15 | True 16 | 17 | -------------------------------------------------------------------------------- /Properties/PublishProfiles/FolderProfile1.pubxml.user: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | True|2022-03-26T11:12:05.0880183Z;True|2022-03-26T12:08:06.3457589+01:00;True|2022-03-26T11:39:36.7210638+01:00;True|2022-03-26T11:23:40.0791170+01:00;False|2022-03-26T11:23:15.9197427+01:00;True|2022-03-26T11:20:14.0647064+01:00;True|2022-03-26T11:13:07.7839625+01:00; 8 | 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Driver-Download-Utillity 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Application created for Windows 10/11, looking for drivers that were not installed for some reason. 10 | 11 | (Like couldn't find by windows update etc.) 12 | 13 | Download link: DDU.exe 14 | 15 | ## What it does 16 | 17 | 1) Scan for drivers with error/problem status by powershell command: 18 | ``` 19 | Get-PnpDevice -Status ERROR | select FriendlyName -ExpandProperty Name | ft -hide 20 | ``` 21 | ``` 22 | Get-PnpDevice -Status ERROR | select InstanceId | findstr /c:VEN_ /c:VID_ 23 | ``` 24 | 25 | 2) Extracts data about the name and instance id of the driver: 26 | ``` 27 | 3D Video Controller 28 | PCI\VEN_10DE&DEV_1C8D&SUBSYS_3... 29 | ``` 30 | 31 | 3) Converts device instance id data to VEN_ and DEV_ (PCI) or VID_ and DIV_ (USB_HDI) value: 32 | ``` 33 | 3D Video Controller 34 | VEN_10DE DEV_1C8D 35 | ``` 36 | 4) Checks on the type of selected driver to download for correctly convert its ID 37 | 38 | 5) Then redirect to the download-drivers.net website with the entered converted id data: 39 | ``` 40 | download-drivers.net/search?q=VEN_10DE%26DEV_1C8D 41 | ``` 42 | 43 | ## First look 44 | 45 | 46 | 47 | ## How to install downloaded drivers 48 | 49 | ### Standard installation (Setup.exe) 50 | 51 | ``` 52 | Double click on setup.exe, installation.exe or other setup utility with .exe extension 53 | ``` 54 | 55 | ### Advanced installation without .exe file via Device Manager (.Inf Files) 56 | 57 | ``` 58 | Device Manager -> Right Click on Driver -> Update Driver -> Browse my computer for drivers -> Browse -> Select folder -> Next. 59 | ``` 60 | -------------------------------------------------------------------------------- /WinFormsApp2.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.1 6 | true 7 | app.manifest 8 | DDU 9 | DDU 10 | icn0.ico 11 | Rikey 12 | 1.7 13 | 14 | 15 | -------------------------------------------------------------------------------- /WinFormsApp2.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | <_LastSelectedProfileId>C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\Properties\PublishProfiles\FolderProfile1.pubxml 5 | 6 | 7 | 8 | Form 9 | 10 | 11 | -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 54 | 62 | 63 | 64 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /bin/Debug/net472/DDU.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Debug/net472/DDU.exe -------------------------------------------------------------------------------- /bin/Debug/net472/DDU.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bin/Debug/net472/DDU.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Debug/net472/DDU.pdb -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/DDU.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v3.1", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v3.1": { 9 | "DDU/1.7": { 10 | "runtime": { 11 | "DDU.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "DDU/1.7": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/DDU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Debug/netcoreapp3.1/DDU.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/DDU.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Debug/netcoreapp3.1/DDU.exe -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/DDU.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Debug/netcoreapp3.1/DDU.pdb -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/DDU.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Rikey\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Rikey\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/DDU.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.WindowsDesktop.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/id.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Debug/netcoreapp3.1/id.log -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/name.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Debug/netcoreapp3.1/name.log -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/DDU.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v3.1", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v3.1": { 9 | "DDU/1.7": { 10 | "runtime": { 11 | "DDU.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "DDU/1.7": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/DDU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/DDU.dll -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/DDU.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/DDU.exe -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/DDU.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/DDU.pdb -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/DDU.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Rikey\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Rikey\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/DDU.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.WindowsDesktop.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/publish/DDU.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v3.1", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v3.1": { 9 | "DDU/1.0.0": { 10 | "runtime": { 11 | "DDU.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "DDU/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/publish/DDU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/publish/DDU.dll -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/publish/DDU.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/publish/DDU.exe -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/publish/DDU.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/publish/DDU.pdb -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/publish/DDU.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.WindowsDesktop.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/publish/id.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/publish/id.log -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/publish/name.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/publish/name.log -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/win-x64/DDU.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v3.1/win-x64", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v3.1": {}, 9 | ".NETCoreApp,Version=v3.1/win-x64": { 10 | "DDU/1.0.0": { 11 | "runtime": { 12 | "DDU.dll": {} 13 | } 14 | } 15 | } 16 | }, 17 | "libraries": { 18 | "DDU/1.0.0": { 19 | "type": "project", 20 | "serviceable": false, 21 | "sha512": "" 22 | } 23 | } 24 | } -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/win-x64/DDU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/win-x64/DDU.dll -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/win-x64/DDU.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/win-x64/DDU.exe -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/win-x64/DDU.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/win-x64/DDU.pdb -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/win-x64/DDU.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Rikey\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Rikey\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/win-x64/DDU.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.WindowsDesktop.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/win-x64/id.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/win-x64/id.log -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/win-x64/name.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/win-x64/name.log -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/win-x86/DDU.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v3.1/win-x86", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v3.1": {}, 9 | ".NETCoreApp,Version=v3.1/win-x86": { 10 | "DDU/1.7": { 11 | "runtime": { 12 | "DDU.dll": {} 13 | } 14 | } 15 | } 16 | }, 17 | "libraries": { 18 | "DDU/1.7": { 19 | "type": "project", 20 | "serviceable": false, 21 | "sha512": "" 22 | } 23 | } 24 | } -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/win-x86/DDU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/win-x86/DDU.dll -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/win-x86/DDU.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/win-x86/DDU.exe -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/win-x86/DDU.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/bin/Release/netcoreapp3.1/win-x86/DDU.pdb -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/win-x86/DDU.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Rikey\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Rikey\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /bin/Release/netcoreapp3.1/win-x86/DDU.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.WindowsDesktop.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /icn0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/icn0.ico -------------------------------------------------------------------------------- /obj/Debug/net472/DDU.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Debug/net472/DDU.Form1.resources -------------------------------------------------------------------------------- /obj/Debug/net472/DDU.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Debug/net472/DDU.exe -------------------------------------------------------------------------------- /obj/Debug/net472/DDU.exe.withSupportedRuntime.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /obj/Debug/net472/DDU.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Debug/net472/DDU.pdb -------------------------------------------------------------------------------- /obj/Debug/net472/WinFormsApp2.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Ten kod został wygenerowany przez narzędzie. 4 | // Wersja wykonawcza:4.0.30319.42000 5 | // 6 | // Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli 7 | // kod zostanie ponownie wygenerowany. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("DDU")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("DDU")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("DDU")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Wygenerowane przez klasę WriteCodeFragment programu MSBuild. 23 | 24 | -------------------------------------------------------------------------------- /obj/Debug/net472/WinFormsApp2.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 54755cc1f25d7b16d0597359db204984f94cfdd3 2 | -------------------------------------------------------------------------------- /obj/Debug/net472/WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = DDU 3 | build_property.ProjectDir = C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\ 4 | -------------------------------------------------------------------------------- /obj/Debug/net472/WinFormsApp2.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Debug/net472/WinFormsApp2.assets.cache -------------------------------------------------------------------------------- /obj/Debug/net472/WinFormsApp2.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /obj/Debug/net472/WinFormsApp2.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 80ff8e3e36a8f52826a66095a376704d3a720db7 2 | -------------------------------------------------------------------------------- /obj/Debug/net472/WinFormsApp2.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\net472\WinFormsApp2.csproj.AssemblyReference.cache 2 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\net472\DDU.Form1.resources 3 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\net472\WinFormsApp2.csproj.GenerateResource.cache 4 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\net472\WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig 5 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\net472\WinFormsApp2.AssemblyInfoInputs.cache 6 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\net472\WinFormsApp2.AssemblyInfo.cs 7 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\net472\WinFormsApp2.csproj.CoreCompileInputs.cache 8 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Debug\net472\DDU.exe.config 9 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Debug\net472\DDU.exe 10 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Debug\net472\DDU.pdb 11 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\net472\DDU.exe 12 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\net472\DDU.pdb 13 | -------------------------------------------------------------------------------- /obj/Debug/net472/WinFormsApp2.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Debug/net472/WinFormsApp2.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/DDU.designer.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v3.1", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v3.1": {} 9 | }, 10 | "libraries": {} 11 | } -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/DDU.designer.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.WindowsDesktop.App", 6 | "version": "3.1.0" 7 | }, 8 | "additionalProbingPaths": [ 9 | "C:\\Users\\Rikey\\.dotnet\\store\\|arch|\\|tfm|", 10 | "C:\\Users\\Rikey\\.nuget\\packages" 11 | ], 12 | "configProperties": { 13 | "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/DDU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Debug/netcoreapp3.1/DDU.dll -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/DDU.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Debug/netcoreapp3.1/DDU.pdb -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/PublishOutputs.045e2aa235.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\publish\DDU.exe 2 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\publish\DDU.dll 3 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\publish\DDU.deps.json 4 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\publish\DDU.runtimeconfig.json 5 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\publish\DDU.pdb 6 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/WinFormsApp2.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Ten kod został wygenerowany przez narzędzie. 4 | // Wersja wykonawcza:4.0.30319.42000 5 | // 6 | // Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli 7 | // kod zostanie ponownie wygenerowany. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Rikey")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.7.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.7")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("DDU")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("DDU")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.7.0.0")] 21 | 22 | // Wygenerowane przez klasę WriteCodeFragment programu MSBuild. 23 | 24 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/WinFormsApp2.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 66d8dcebf6701ce1a0df476412b18cfc671203e1 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/WinFormsApp2.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Debug/netcoreapp3.1/WinFormsApp2.Form1.resources -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = DDU 3 | build_property.ProjectDir = C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\ 4 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/WinFormsApp2.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Debug/netcoreapp3.1/WinFormsApp2.assets.cache -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/WinFormsApp2.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/WinFormsApp2.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | fc10404329f19930aa929373836ab01d802090c3 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/WinFormsApp2.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\netcoreapp3.1\WinFormsApp2.csproj.AssemblyReference.cache 2 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\netcoreapp3.1\WinFormsApp2.Form1.resources 3 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\netcoreapp3.1\WinFormsApp2.csproj.GenerateResource.cache 4 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\netcoreapp3.1\WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig 5 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\netcoreapp3.1\WinFormsApp2.AssemblyInfoInputs.cache 6 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\netcoreapp3.1\WinFormsApp2.AssemblyInfo.cs 7 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\netcoreapp3.1\WinFormsApp2.csproj.CoreCompileInputs.cache 8 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\netcoreapp3.1\WinFormsApp2.genruntimeconfig.cache 9 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Debug\netcoreapp3.1\DDU.exe 10 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Debug\netcoreapp3.1\DDU.deps.json 11 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Debug\netcoreapp3.1\DDU.runtimeconfig.json 12 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Debug\netcoreapp3.1\DDU.runtimeconfig.dev.json 13 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Debug\netcoreapp3.1\DDU.dll 14 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Debug\netcoreapp3.1\DDU.pdb 15 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\netcoreapp3.1\DDU.dll 16 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Debug\netcoreapp3.1\DDU.pdb 17 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/WinFormsApp2.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Debug/netcoreapp3.1/WinFormsApp2.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/WinFormsApp2.designer.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v3.1", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v3.1": {} 9 | }, 10 | "libraries": {} 11 | } -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/WinFormsApp2.designer.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.WindowsDesktop.App", 6 | "version": "3.1.0" 7 | }, 8 | "additionalProbingPaths": [ 9 | "C:\\Users\\Rikey\\.dotnet\\store\\|arch|\\|tfm|", 10 | "C:\\Users\\Rikey\\.nuget\\packages" 11 | ], 12 | "configProperties": { 13 | "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/WinFormsApp2.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 07de00220cf5b4cb645bce83e9d7f89cd4728b1d 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/DDU.designer.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v3.1", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v3.1": {} 9 | }, 10 | "libraries": {} 11 | } -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/DDU.designer.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.WindowsDesktop.App", 6 | "version": "3.1.0" 7 | }, 8 | "additionalProbingPaths": [ 9 | "C:\\Users\\Rikey\\.dotnet\\store\\|arch|\\|tfm|", 10 | "C:\\Users\\Rikey\\.nuget\\packages" 11 | ], 12 | "configProperties": { 13 | "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/DDU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/DDU.dll -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/DDU.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/DDU.pdb -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/PublishOutputs.045e2aa235.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\publish\DDU.exe 2 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\publish\DDU.dll 3 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\publish\DDU.deps.json 4 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\publish\DDU.runtimeconfig.json 5 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\publish\DDU.pdb 6 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/WinFormsApp2.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Ten kod został wygenerowany przez narzędzie. 4 | // Wersja wykonawcza:4.0.30319.42000 5 | // 6 | // Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli 7 | // kod zostanie ponownie wygenerowany. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Rikey")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.7.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.7")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("DDU")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("DDU")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.7.0.0")] 21 | 22 | // Wygenerowane przez klasę WriteCodeFragment programu MSBuild. 23 | 24 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/WinFormsApp2.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 5ad56c3356802c1e3aff6a7802c6f40231161423 2 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/WinFormsApp2.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/WinFormsApp2.Form1.resources -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = DDU 3 | build_property.ProjectDir = C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\ 4 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/WinFormsApp2.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/WinFormsApp2.assets.cache -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/WinFormsApp2.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/WinFormsApp2.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/WinFormsApp2.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0c30fe54ab03b51c562ae61a30d2124e6d3ea152 2 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/WinFormsApp2.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\WinFormsApp2.csproj.AssemblyReference.cache 2 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\WinFormsApp2.Form1.resources 3 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\WinFormsApp2.csproj.GenerateResource.cache 4 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig 5 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\WinFormsApp2.AssemblyInfoInputs.cache 6 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\WinFormsApp2.AssemblyInfo.cs 7 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\WinFormsApp2.csproj.CoreCompileInputs.cache 8 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\WinFormsApp2.genruntimeconfig.cache 9 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\DDU.exe 10 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\DDU.deps.json 11 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\DDU.runtimeconfig.json 12 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\DDU.runtimeconfig.dev.json 13 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\DDU.dll 14 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\DDU.pdb 15 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\DDU.dll 16 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\DDU.pdb 17 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/WinFormsApp2.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/WinFormsApp2.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/WinFormsApp2.designer.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v3.1", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v3.1": {} 9 | }, 10 | "libraries": {} 11 | } -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/WinFormsApp2.designer.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.WindowsDesktop.App", 6 | "version": "3.1.0" 7 | }, 8 | "additionalProbingPaths": [ 9 | "C:\\Users\\Rikey\\.dotnet\\store\\|arch|\\|tfm|", 10 | "C:\\Users\\Rikey\\.nuget\\packages" 11 | ], 12 | "configProperties": { 13 | "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/WinFormsApp2.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 07de00220cf5b4cb645bce83e9d7f89cd4728b1d 2 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x64/DDU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/win-x64/DDU.dll -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x64/DDU.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/win-x64/DDU.pdb -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x64/PublishOutputs.045e2aa235.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\publish\DDU.pdb 2 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\publish\DDU.exe 3 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x64/R2R/DDU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/win-x64/R2R/DDU.dll -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x64/R2R/WinFormsApp2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/win-x64/R2R/WinFormsApp2.dll -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x64/WinFormsApp2.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Ten kod został wygenerowany przez narzędzie. 4 | // Wersja wykonawcza:4.0.30319.42000 5 | // 6 | // Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli 7 | // kod zostanie ponownie wygenerowany. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("DDU")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("DDU")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("DDU")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Wygenerowane przez klasę WriteCodeFragment programu MSBuild. 23 | 24 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x64/WinFormsApp2.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 15741281d5af56772d89a244800646fc1176f739 2 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x64/WinFormsApp2.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/win-x64/WinFormsApp2.Form1.resources -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x64/WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = DDU 3 | build_property.ProjectDir = C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\ 4 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x64/WinFormsApp2.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/win-x64/WinFormsApp2.assets.cache -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x64/WinFormsApp2.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6297cd80eacc3106d0ed46c45bc6ebb76266d2aa 2 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x64/WinFormsApp2.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x64\WinFormsApp2.Form1.resources 2 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x64\WinFormsApp2.csproj.GenerateResource.cache 3 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x64\WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig 4 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x64\WinFormsApp2.AssemblyInfoInputs.cache 5 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x64\WinFormsApp2.AssemblyInfo.cs 6 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x64\WinFormsApp2.csproj.CoreCompileInputs.cache 7 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x64\WinFormsApp2.genruntimeconfig.cache 8 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\win-x64\DDU.exe 9 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\win-x64\DDU.deps.json 10 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\win-x64\DDU.runtimeconfig.json 11 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\win-x64\DDU.runtimeconfig.dev.json 12 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\win-x64\DDU.dll 13 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\win-x64\DDU.pdb 14 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x64\DDU.dll 15 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x64\DDU.pdb 16 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x64/WinFormsApp2.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/win-x64/WinFormsApp2.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x64/WinFormsApp2.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 0d33960a906f390b9e53ffbac99b87f98572bfe8 2 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x64/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/win-x64/apphost.exe -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x86/DDU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/win-x86/DDU.dll -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x86/DDU.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/win-x86/DDU.pdb -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x86/PublishOutputs.045e2aa235.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\publish\DDU.pdb 2 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\publish\DDU.exe 3 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x86/R2R/DDU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/win-x86/R2R/DDU.dll -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x86/WinFormsApp2.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Ten kod został wygenerowany przez narzędzie. 4 | // Wersja wykonawcza:4.0.30319.42000 5 | // 6 | // Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli 7 | // kod zostanie ponownie wygenerowany. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Rikey")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.7.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.7")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("DDU")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("DDU")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.7.0.0")] 21 | 22 | // Wygenerowane przez klasę WriteCodeFragment programu MSBuild. 23 | 24 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x86/WinFormsApp2.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 5ad56c3356802c1e3aff6a7802c6f40231161423 2 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x86/WinFormsApp2.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/win-x86/WinFormsApp2.Form1.resources -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x86/WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = DDU 3 | build_property.ProjectDir = C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\ 4 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x86/WinFormsApp2.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/win-x86/WinFormsApp2.assets.cache -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x86/WinFormsApp2.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9d5026b9fba4aa86dd5651b5ebdf5907131faaf7 2 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x86/WinFormsApp2.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\win-x86\DDU.exe 2 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\win-x86\DDU.deps.json 3 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\win-x86\DDU.runtimeconfig.json 4 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\win-x86\DDU.runtimeconfig.dev.json 5 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\win-x86\DDU.dll 6 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\bin\Release\netcoreapp3.1\win-x86\DDU.pdb 7 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x86\WinFormsApp2.Form1.resources 8 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x86\WinFormsApp2.csproj.GenerateResource.cache 9 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x86\WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig 10 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x86\WinFormsApp2.AssemblyInfoInputs.cache 11 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x86\WinFormsApp2.AssemblyInfo.cs 12 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x86\WinFormsApp2.csproj.CoreCompileInputs.cache 13 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x86\DDU.dll 14 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x86\DDU.pdb 15 | C:\Users\Rikey\source\repos\DEVCsharp\WinFormsApp2\obj\Release\netcoreapp3.1\win-x86\WinFormsApp2.genruntimeconfig.cache 16 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x86/WinFormsApp2.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/win-x86/WinFormsApp2.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x86/WinFormsApp2.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | d8b36e45e5025cbbc8b73a806568df9888ef6289 2 | -------------------------------------------------------------------------------- /obj/Release/netcoreapp3.1/win-x86/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semazurek/Driver-Download-Utillity/8879a1e7a0e1b2d26618487e5e705a57766299db/obj/Release/netcoreapp3.1/win-x86/apphost.exe -------------------------------------------------------------------------------- /obj/WinFormsApp2.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj": { 8 | "version": "1.7.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj", 11 | "projectName": "DDU", 12 | "projectPath": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj", 13 | "packagesPath": "C:\\Users\\Rikey\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\Rikey\\AppData\\Roaming\\NuGet\\NuGet.Config" 18 | ], 19 | "originalTargetFrameworks": [ 20 | "netcoreapp3.1" 21 | ], 22 | "sources": { 23 | "https://api.nuget.org/v3/index.json": {} 24 | }, 25 | "frameworks": { 26 | "netcoreapp3.1": { 27 | "targetAlias": "netcoreapp3.1", 28 | "projectReferences": {} 29 | } 30 | }, 31 | "warningProperties": { 32 | "warnAsError": [ 33 | "NU1605" 34 | ] 35 | } 36 | }, 37 | "frameworks": { 38 | "netcoreapp3.1": { 39 | "targetAlias": "netcoreapp3.1", 40 | "imports": [ 41 | "net461", 42 | "net462", 43 | "net47", 44 | "net471", 45 | "net472", 46 | "net48" 47 | ], 48 | "assetTargetFallback": true, 49 | "warn": true, 50 | "frameworkReferences": { 51 | "Microsoft.NETCore.App": { 52 | "privateAssets": "all" 53 | }, 54 | "Microsoft.WindowsDesktop.App.WindowsForms": { 55 | "privateAssets": "none" 56 | } 57 | }, 58 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" 59 | } 60 | } 61 | } 62 | } 63 | } -------------------------------------------------------------------------------- /obj/WinFormsApp2.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Rikey\.nuget\packages\ 9 | PackageReference 10 | 5.11.1 11 | 12 | 13 | 14 | 15 | 16 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 17 | 18 | -------------------------------------------------------------------------------- /obj/WinFormsApp2.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETCoreApp,Version=v3.1": {} 5 | }, 6 | "libraries": {}, 7 | "projectFileDependencyGroups": { 8 | ".NETCoreApp,Version=v3.1": [] 9 | }, 10 | "packageFolders": { 11 | "C:\\Users\\Rikey\\.nuget\\packages\\": {} 12 | }, 13 | "project": { 14 | "version": "1.7.0", 15 | "restore": { 16 | "projectUniqueName": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj", 17 | "projectName": "DDU", 18 | "projectPath": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj", 19 | "packagesPath": "C:\\Users\\Rikey\\.nuget\\packages\\", 20 | "outputPath": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\obj\\", 21 | "projectStyle": "PackageReference", 22 | "configFilePaths": [ 23 | "C:\\Users\\Rikey\\AppData\\Roaming\\NuGet\\NuGet.Config" 24 | ], 25 | "originalTargetFrameworks": [ 26 | "netcoreapp3.1" 27 | ], 28 | "sources": { 29 | "https://api.nuget.org/v3/index.json": {} 30 | }, 31 | "frameworks": { 32 | "netcoreapp3.1": { 33 | "targetAlias": "netcoreapp3.1", 34 | "projectReferences": {} 35 | } 36 | }, 37 | "warningProperties": { 38 | "warnAsError": [ 39 | "NU1605" 40 | ] 41 | } 42 | }, 43 | "frameworks": { 44 | "netcoreapp3.1": { 45 | "targetAlias": "netcoreapp3.1", 46 | "imports": [ 47 | "net461", 48 | "net462", 49 | "net47", 50 | "net471", 51 | "net472", 52 | "net48" 53 | ], 54 | "assetTargetFallback": true, 55 | "warn": true, 56 | "frameworkReferences": { 57 | "Microsoft.NETCore.App": { 58 | "privateAssets": "all" 59 | }, 60 | "Microsoft.WindowsDesktop.App.WindowsForms": { 61 | "privateAssets": "none" 62 | } 63 | }, 64 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" 65 | } 66 | } 67 | } 68 | } -------------------------------------------------------------------------------- /obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "mxqjQ/4w1nffgrBqi3YLWjfSADAURA/sAg9Gwim5IU0pHp4fptY6IlsVchaJ8yB23Uq2qreH6qlR+XZupGmWsQ==", 4 | "success": true, 5 | "projectFilePath": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /obj/publish/win-x64/WinFormsApp2.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj", 11 | "projectName": "DDU", 12 | "projectPath": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj", 13 | "packagesPath": "C:\\Users\\Rikey\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\obj\\publish\\win-x64\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\Rikey\\AppData\\Roaming\\NuGet\\NuGet.Config" 18 | ], 19 | "originalTargetFrameworks": [ 20 | "netcoreapp3.1" 21 | ], 22 | "sources": { 23 | "https://api.nuget.org/v3/index.json": {} 24 | }, 25 | "frameworks": { 26 | "netcoreapp3.1": { 27 | "targetAlias": "netcoreapp3.1", 28 | "projectReferences": {} 29 | } 30 | }, 31 | "warningProperties": { 32 | "warnAsError": [ 33 | "NU1605" 34 | ] 35 | } 36 | }, 37 | "frameworks": { 38 | "netcoreapp3.1": { 39 | "targetAlias": "netcoreapp3.1", 40 | "imports": [ 41 | "net461", 42 | "net462", 43 | "net47", 44 | "net471", 45 | "net472", 46 | "net48" 47 | ], 48 | "assetTargetFallback": true, 49 | "warn": true, 50 | "downloadDependencies": [ 51 | { 52 | "name": "Microsoft.AspNetCore.App.Runtime.win-x64", 53 | "version": "[3.1.22, 3.1.22]" 54 | }, 55 | { 56 | "name": "Microsoft.NETCore.App.Runtime.win-x64", 57 | "version": "[3.1.22, 3.1.22]" 58 | }, 59 | { 60 | "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", 61 | "version": "[3.1.22, 3.1.22]" 62 | } 63 | ], 64 | "frameworkReferences": { 65 | "Microsoft.NETCore.App": { 66 | "privateAssets": "all" 67 | }, 68 | "Microsoft.WindowsDesktop.App.WindowsForms": { 69 | "privateAssets": "none" 70 | } 71 | }, 72 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" 73 | } 74 | }, 75 | "runtimes": { 76 | "win-x64": { 77 | "#import": [] 78 | } 79 | } 80 | } 81 | } 82 | } -------------------------------------------------------------------------------- /obj/publish/win-x64/WinFormsApp2.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Rikey\.nuget\packages\ 9 | PackageReference 10 | 5.11.1 11 | 12 | 13 | 14 | 15 | 16 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 17 | 18 | -------------------------------------------------------------------------------- /obj/publish/win-x64/WinFormsApp2.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /obj/publish/win-x64/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETCoreApp,Version=v3.1": {}, 5 | ".NETCoreApp,Version=v3.1/win-x64": {} 6 | }, 7 | "libraries": {}, 8 | "projectFileDependencyGroups": { 9 | ".NETCoreApp,Version=v3.1": [] 10 | }, 11 | "packageFolders": { 12 | "C:\\Users\\Rikey\\.nuget\\packages\\": {} 13 | }, 14 | "project": { 15 | "version": "1.0.0", 16 | "restore": { 17 | "projectUniqueName": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj", 18 | "projectName": "DDU", 19 | "projectPath": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj", 20 | "packagesPath": "C:\\Users\\Rikey\\.nuget\\packages\\", 21 | "outputPath": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\obj\\publish\\win-x64\\", 22 | "projectStyle": "PackageReference", 23 | "configFilePaths": [ 24 | "C:\\Users\\Rikey\\AppData\\Roaming\\NuGet\\NuGet.Config" 25 | ], 26 | "originalTargetFrameworks": [ 27 | "netcoreapp3.1" 28 | ], 29 | "sources": { 30 | "https://api.nuget.org/v3/index.json": {} 31 | }, 32 | "frameworks": { 33 | "netcoreapp3.1": { 34 | "targetAlias": "netcoreapp3.1", 35 | "projectReferences": {} 36 | } 37 | }, 38 | "warningProperties": { 39 | "warnAsError": [ 40 | "NU1605" 41 | ] 42 | } 43 | }, 44 | "frameworks": { 45 | "netcoreapp3.1": { 46 | "targetAlias": "netcoreapp3.1", 47 | "imports": [ 48 | "net461", 49 | "net462", 50 | "net47", 51 | "net471", 52 | "net472", 53 | "net48" 54 | ], 55 | "assetTargetFallback": true, 56 | "warn": true, 57 | "downloadDependencies": [ 58 | { 59 | "name": "Microsoft.AspNetCore.App.Runtime.win-x64", 60 | "version": "[3.1.22, 3.1.22]" 61 | }, 62 | { 63 | "name": "Microsoft.NETCore.App.Runtime.win-x64", 64 | "version": "[3.1.22, 3.1.22]" 65 | }, 66 | { 67 | "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", 68 | "version": "[3.1.22, 3.1.22]" 69 | } 70 | ], 71 | "frameworkReferences": { 72 | "Microsoft.NETCore.App": { 73 | "privateAssets": "all" 74 | }, 75 | "Microsoft.WindowsDesktop.App.WindowsForms": { 76 | "privateAssets": "none" 77 | } 78 | }, 79 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" 80 | } 81 | }, 82 | "runtimes": { 83 | "win-x64": { 84 | "#import": [] 85 | } 86 | } 87 | } 88 | } -------------------------------------------------------------------------------- /obj/publish/win-x64/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "krnaKFSYt0kdk7qmHInYIM+1+neCnA2m8mnFPwltGlWI8HMUMl9ADehGbVQGwNJFfJ5SXyt+RjvFbwVFy4Rlww==", 4 | "success": true, 5 | "projectFilePath": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Users\\Rikey\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\3.1.22\\microsoft.netcore.app.runtime.win-x64.3.1.22.nupkg.sha512", 8 | "C:\\Users\\Rikey\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\3.1.22\\microsoft.windowsdesktop.app.runtime.win-x64.3.1.22.nupkg.sha512", 9 | "C:\\Users\\Rikey\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\3.1.22\\microsoft.aspnetcore.app.runtime.win-x64.3.1.22.nupkg.sha512" 10 | ], 11 | "logs": [] 12 | } -------------------------------------------------------------------------------- /obj/publish/win-x86/WinFormsApp2.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj": { 8 | "version": "1.7.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj", 11 | "projectName": "DDU", 12 | "projectPath": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj", 13 | "packagesPath": "C:\\Users\\Rikey\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\obj\\publish\\win-x86\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\Rikey\\AppData\\Roaming\\NuGet\\NuGet.Config" 18 | ], 19 | "originalTargetFrameworks": [ 20 | "netcoreapp3.1" 21 | ], 22 | "sources": { 23 | "https://api.nuget.org/v3/index.json": {} 24 | }, 25 | "frameworks": { 26 | "netcoreapp3.1": { 27 | "targetAlias": "netcoreapp3.1", 28 | "projectReferences": {} 29 | } 30 | }, 31 | "warningProperties": { 32 | "warnAsError": [ 33 | "NU1605" 34 | ] 35 | } 36 | }, 37 | "frameworks": { 38 | "netcoreapp3.1": { 39 | "targetAlias": "netcoreapp3.1", 40 | "imports": [ 41 | "net461", 42 | "net462", 43 | "net47", 44 | "net471", 45 | "net472", 46 | "net48" 47 | ], 48 | "assetTargetFallback": true, 49 | "warn": true, 50 | "downloadDependencies": [ 51 | { 52 | "name": "Microsoft.AspNetCore.App.Runtime.win-x86", 53 | "version": "[3.1.22, 3.1.22]" 54 | }, 55 | { 56 | "name": "Microsoft.NETCore.App.Runtime.win-x86", 57 | "version": "[3.1.22, 3.1.22]" 58 | }, 59 | { 60 | "name": "Microsoft.WindowsDesktop.App.Runtime.win-x86", 61 | "version": "[3.1.22, 3.1.22]" 62 | } 63 | ], 64 | "frameworkReferences": { 65 | "Microsoft.NETCore.App": { 66 | "privateAssets": "all" 67 | }, 68 | "Microsoft.WindowsDesktop.App.WindowsForms": { 69 | "privateAssets": "none" 70 | } 71 | }, 72 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" 73 | } 74 | }, 75 | "runtimes": { 76 | "win-x86": { 77 | "#import": [] 78 | } 79 | } 80 | } 81 | } 82 | } -------------------------------------------------------------------------------- /obj/publish/win-x86/WinFormsApp2.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Rikey\.nuget\packages\ 9 | PackageReference 10 | 5.11.1 11 | 12 | 13 | 14 | 15 | 16 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 17 | 18 | -------------------------------------------------------------------------------- /obj/publish/win-x86/WinFormsApp2.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /obj/publish/win-x86/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETCoreApp,Version=v3.1": {}, 5 | ".NETCoreApp,Version=v3.1/win-x86": {} 6 | }, 7 | "libraries": {}, 8 | "projectFileDependencyGroups": { 9 | ".NETCoreApp,Version=v3.1": [] 10 | }, 11 | "packageFolders": { 12 | "C:\\Users\\Rikey\\.nuget\\packages\\": {} 13 | }, 14 | "project": { 15 | "version": "1.7.0", 16 | "restore": { 17 | "projectUniqueName": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj", 18 | "projectName": "DDU", 19 | "projectPath": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj", 20 | "packagesPath": "C:\\Users\\Rikey\\.nuget\\packages\\", 21 | "outputPath": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\obj\\publish\\win-x86\\", 22 | "projectStyle": "PackageReference", 23 | "configFilePaths": [ 24 | "C:\\Users\\Rikey\\AppData\\Roaming\\NuGet\\NuGet.Config" 25 | ], 26 | "originalTargetFrameworks": [ 27 | "netcoreapp3.1" 28 | ], 29 | "sources": { 30 | "https://api.nuget.org/v3/index.json": {} 31 | }, 32 | "frameworks": { 33 | "netcoreapp3.1": { 34 | "targetAlias": "netcoreapp3.1", 35 | "projectReferences": {} 36 | } 37 | }, 38 | "warningProperties": { 39 | "warnAsError": [ 40 | "NU1605" 41 | ] 42 | } 43 | }, 44 | "frameworks": { 45 | "netcoreapp3.1": { 46 | "targetAlias": "netcoreapp3.1", 47 | "imports": [ 48 | "net461", 49 | "net462", 50 | "net47", 51 | "net471", 52 | "net472", 53 | "net48" 54 | ], 55 | "assetTargetFallback": true, 56 | "warn": true, 57 | "downloadDependencies": [ 58 | { 59 | "name": "Microsoft.AspNetCore.App.Runtime.win-x86", 60 | "version": "[3.1.22, 3.1.22]" 61 | }, 62 | { 63 | "name": "Microsoft.NETCore.App.Runtime.win-x86", 64 | "version": "[3.1.22, 3.1.22]" 65 | }, 66 | { 67 | "name": "Microsoft.WindowsDesktop.App.Runtime.win-x86", 68 | "version": "[3.1.22, 3.1.22]" 69 | } 70 | ], 71 | "frameworkReferences": { 72 | "Microsoft.NETCore.App": { 73 | "privateAssets": "all" 74 | }, 75 | "Microsoft.WindowsDesktop.App.WindowsForms": { 76 | "privateAssets": "none" 77 | } 78 | }, 79 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.404\\RuntimeIdentifierGraph.json" 80 | } 81 | }, 82 | "runtimes": { 83 | "win-x86": { 84 | "#import": [] 85 | } 86 | } 87 | } 88 | } -------------------------------------------------------------------------------- /obj/publish/win-x86/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "HO0jXqI1Y2FmPnQ/x98nMUBIZKxSRp0XjJ4qU1/A0TZs51I9TVoX5OlCfgcKRvmsNRmFlSYU4WyQ29bfor0Hdg==", 4 | "success": true, 5 | "projectFilePath": "C:\\Users\\Rikey\\source\\repos\\DEVCsharp\\WinFormsApp2\\WinFormsApp2.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Users\\Rikey\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x86\\3.1.22\\microsoft.netcore.app.runtime.win-x86.3.1.22.nupkg.sha512", 8 | "C:\\Users\\Rikey\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x86\\3.1.22\\microsoft.windowsdesktop.app.runtime.win-x86.3.1.22.nupkg.sha512", 9 | "C:\\Users\\Rikey\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x86\\3.1.22\\microsoft.aspnetcore.app.runtime.win-x86.3.1.22.nupkg.sha512" 10 | ], 11 | "logs": [] 12 | } --------------------------------------------------------------------------------