diff --git a/MP4/JoesAutomotive_CalebFontenot.pdf b/MP4/JoesAutomotive_CalebFontenot.pdf new file mode 100644 index 0000000..ea986cc Binary files /dev/null and b/MP4/JoesAutomotive_CalebFontenot.pdf differ diff --git a/MP4/JoesAutomotive_CalebFontenot.zip b/MP4/JoesAutomotive_CalebFontenot.zip new file mode 100644 index 0000000..f0f2f9d Binary files /dev/null and b/MP4/JoesAutomotive_CalebFontenot.zip differ diff --git a/MP4/JoesAutomotive_CalebFontenot/.vs/JoesAutomotive_CalebFontenot/FileContentIndex/6590e638-095b-4c9f-bee8-02c11d7f28fc.vsidx b/MP4/JoesAutomotive_CalebFontenot/.vs/JoesAutomotive_CalebFontenot/FileContentIndex/6590e638-095b-4c9f-bee8-02c11d7f28fc.vsidx deleted file mode 100755 index 74fd791..0000000 Binary files a/MP4/JoesAutomotive_CalebFontenot/.vs/JoesAutomotive_CalebFontenot/FileContentIndex/6590e638-095b-4c9f-bee8-02c11d7f28fc.vsidx and /dev/null differ diff --git a/MP4/JoesAutomotive_CalebFontenot/.vs/JoesAutomotive_CalebFontenot/FileContentIndex/f3794fa3-6372-462d-a20a-d061d7b7cd8f.vsidx b/MP4/JoesAutomotive_CalebFontenot/.vs/JoesAutomotive_CalebFontenot/FileContentIndex/f3794fa3-6372-462d-a20a-d061d7b7cd8f.vsidx new file mode 100755 index 0000000..545dd74 Binary files /dev/null and b/MP4/JoesAutomotive_CalebFontenot/.vs/JoesAutomotive_CalebFontenot/FileContentIndex/f3794fa3-6372-462d-a20a-d061d7b7cd8f.vsidx differ diff --git a/MP4/JoesAutomotive_CalebFontenot/.vs/JoesAutomotive_CalebFontenot/v17/.futdcache.v2 b/MP4/JoesAutomotive_CalebFontenot/.vs/JoesAutomotive_CalebFontenot/v17/.futdcache.v2 index ed39fd2..bebd886 100755 Binary files a/MP4/JoesAutomotive_CalebFontenot/.vs/JoesAutomotive_CalebFontenot/v17/.futdcache.v2 and b/MP4/JoesAutomotive_CalebFontenot/.vs/JoesAutomotive_CalebFontenot/v17/.futdcache.v2 differ diff --git a/MP4/JoesAutomotive_CalebFontenot/.vs/JoesAutomotive_CalebFontenot/v17/.suo b/MP4/JoesAutomotive_CalebFontenot/.vs/JoesAutomotive_CalebFontenot/v17/.suo index 49de056..2f2b3d2 100755 Binary files a/MP4/JoesAutomotive_CalebFontenot/.vs/JoesAutomotive_CalebFontenot/v17/.suo and b/MP4/JoesAutomotive_CalebFontenot/.vs/JoesAutomotive_CalebFontenot/v17/.suo differ diff --git a/MP4/JoesAutomotive_CalebFontenot/.vs/ProjectEvaluation/joesautomotive_calebfontenot.metadata.v5.1 b/MP4/JoesAutomotive_CalebFontenot/.vs/ProjectEvaluation/joesautomotive_calebfontenot.metadata.v5.1 index d69576a..3065177 100755 Binary files a/MP4/JoesAutomotive_CalebFontenot/.vs/ProjectEvaluation/joesautomotive_calebfontenot.metadata.v5.1 and b/MP4/JoesAutomotive_CalebFontenot/.vs/ProjectEvaluation/joesautomotive_calebfontenot.metadata.v5.1 differ diff --git a/MP4/JoesAutomotive_CalebFontenot/.vs/ProjectEvaluation/joesautomotive_calebfontenot.projects.v5.1 b/MP4/JoesAutomotive_CalebFontenot/.vs/ProjectEvaluation/joesautomotive_calebfontenot.projects.v5.1 index b0d1f14..73ad02a 100755 Binary files a/MP4/JoesAutomotive_CalebFontenot/.vs/ProjectEvaluation/joesautomotive_calebfontenot.projects.v5.1 and b/MP4/JoesAutomotive_CalebFontenot/.vs/ProjectEvaluation/joesautomotive_calebfontenot.projects.v5.1 differ diff --git a/MP4/JoesAutomotive_CalebFontenot/Form1.Designer.cs b/MP4/JoesAutomotive_CalebFontenot/Form1.Designer.cs index 13cd88d..af8c901 100755 --- a/MP4/JoesAutomotive_CalebFontenot/Form1.Designer.cs +++ b/MP4/JoesAutomotive_CalebFontenot/Form1.Designer.cs @@ -318,6 +318,7 @@ this.clearButton.TabIndex = 6; this.clearButton.Text = "Clear"; this.clearButton.UseVisualStyleBackColor = true; + this.clearButton.Click += new System.EventHandler(this.clearButton_Click); // // exitButton // @@ -327,6 +328,7 @@ this.exitButton.TabIndex = 7; this.exitButton.Text = "Exit"; this.exitButton.UseVisualStyleBackColor = true; + this.exitButton.Click += new System.EventHandler(this.exitButton_Click); // // Form1 // diff --git a/MP4/JoesAutomotive_CalebFontenot/Form1.cs b/MP4/JoesAutomotive_CalebFontenot/Form1.cs index c30ae39..480d649 100755 --- a/MP4/JoesAutomotive_CalebFontenot/Form1.cs +++ b/MP4/JoesAutomotive_CalebFontenot/Form1.cs @@ -62,8 +62,7 @@ namespace JoesAutomotive_CalebFontenot } private decimal TaxCharges() { - decimal total = 0m; - total = MiscCharges(total); + decimal.TryParse(partsInputTextBox.Text, out decimal total); decimal tax = total * 0.06m; return tax; } @@ -82,8 +81,34 @@ namespace JoesAutomotive_CalebFontenot // Set textboxes servicesAndLaborTextBox.Text = total.ToString("c"); - totalFeesTextBox.Text = (total + tax + outputOtherCharges).ToString("c"); + totalFeesTextBox.Text = (total + tax).ToString("c"); taxTextBox.Text = tax.ToString("c"); + partsTextBox.Text = partsInputTextBox.Text; + } + + private void exitButton_Click(object sender, EventArgs e) + { + Close(); + } + + private void clearButton_Click(object sender, EventArgs e) + { + // Clear EVERYTHING + servicesAndLaborTextBox.Text = ""; + partsTextBox.Text = ""; + partsInputTextBox.Text = ""; + taxTextBox.Text = ""; + totalFeesTextBox.Text = ""; + laborInputTextBox.Text = ""; + // Now for the checkboxes. + oilChangeCheckBox.Checked = false; + lubeJobCheckBox.Checked = false; + radiatorFlushCheckBox.Checked = false; + transmissionFlushCheckBox.Checked = false; + inspectionCheckBox.Checked = false; + replaceMufflerCheckBox.Checked = false; + tireRotationCheckBox.Checked = false; + } } diff --git a/MP4/JoesAutomotive_CalebFontenot/bin/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.dll b/MP4/JoesAutomotive_CalebFontenot/bin/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.dll index a889a30..eda9da7 100755 Binary files a/MP4/JoesAutomotive_CalebFontenot/bin/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.dll and b/MP4/JoesAutomotive_CalebFontenot/bin/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.dll differ diff --git a/MP4/JoesAutomotive_CalebFontenot/bin/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.pdb b/MP4/JoesAutomotive_CalebFontenot/bin/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.pdb index 51e75fa..e483593 100755 Binary files a/MP4/JoesAutomotive_CalebFontenot/bin/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.pdb and b/MP4/JoesAutomotive_CalebFontenot/bin/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.pdb differ diff --git a/MP4/JoesAutomotive_CalebFontenot/obj/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.csproj.GenerateResource.cache b/MP4/JoesAutomotive_CalebFontenot/obj/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.csproj.GenerateResource.cache index 867a230..0327e18 100755 Binary files a/MP4/JoesAutomotive_CalebFontenot/obj/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.csproj.GenerateResource.cache and b/MP4/JoesAutomotive_CalebFontenot/obj/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.csproj.GenerateResource.cache differ diff --git a/MP4/JoesAutomotive_CalebFontenot/obj/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.dll b/MP4/JoesAutomotive_CalebFontenot/obj/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.dll index a889a30..eda9da7 100755 Binary files a/MP4/JoesAutomotive_CalebFontenot/obj/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.dll and b/MP4/JoesAutomotive_CalebFontenot/obj/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.dll differ diff --git a/MP4/JoesAutomotive_CalebFontenot/obj/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.pdb b/MP4/JoesAutomotive_CalebFontenot/obj/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.pdb index 51e75fa..e483593 100755 Binary files a/MP4/JoesAutomotive_CalebFontenot/obj/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.pdb and b/MP4/JoesAutomotive_CalebFontenot/obj/Debug/net6.0-windows/JoesAutomotive_CalebFontenot.pdb differ diff --git a/MP4/RPS_CalebFontenot.pdf b/MP4/RPS_CalebFontenot.pdf new file mode 100644 index 0000000..2eb31ef Binary files /dev/null and b/MP4/RPS_CalebFontenot.pdf differ diff --git a/MP4/RPS_CalebFontenot.zip b/MP4/RPS_CalebFontenot.zip new file mode 100644 index 0000000..dc33b7f Binary files /dev/null and b/MP4/RPS_CalebFontenot.zip differ diff --git a/MP4/RPS_CalebFontenot/.vs/ProjectEvaluation/rcs_calebfontenot.metadata.v5.1 b/MP4/RPS_CalebFontenot/.vs/ProjectEvaluation/rcs_calebfontenot.metadata.v5.1 index 105b1b2..e30bbb7 100755 Binary files a/MP4/RPS_CalebFontenot/.vs/ProjectEvaluation/rcs_calebfontenot.metadata.v5.1 and b/MP4/RPS_CalebFontenot/.vs/ProjectEvaluation/rcs_calebfontenot.metadata.v5.1 differ diff --git a/MP4/RPS_CalebFontenot/.vs/ProjectEvaluation/rcs_calebfontenot.projects.v5.1 b/MP4/RPS_CalebFontenot/.vs/ProjectEvaluation/rcs_calebfontenot.projects.v5.1 index 8bbdde7..aa015ef 100755 Binary files a/MP4/RPS_CalebFontenot/.vs/ProjectEvaluation/rcs_calebfontenot.projects.v5.1 and b/MP4/RPS_CalebFontenot/.vs/ProjectEvaluation/rcs_calebfontenot.projects.v5.1 differ diff --git a/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/DesignTimeBuild/.dtbcache.v2 b/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/DesignTimeBuild/.dtbcache.v2 index c797d6d..dacad1f 100755 Binary files a/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/DesignTimeBuild/.dtbcache.v2 and b/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/DesignTimeBuild/.dtbcache.v2 differ diff --git a/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/ae2527d2-f54b-4c7a-9d5f-e7d7a23bc46f.vsidx b/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/46f56169-08a8-4f3d-9f91-2c9d8848e2ee.vsidx similarity index 59% rename from MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/ae2527d2-f54b-4c7a-9d5f-e7d7a23bc46f.vsidx rename to MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/46f56169-08a8-4f3d-9f91-2c9d8848e2ee.vsidx index cb984ca..8908463 100755 Binary files a/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/ae2527d2-f54b-4c7a-9d5f-e7d7a23bc46f.vsidx and b/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/46f56169-08a8-4f3d-9f91-2c9d8848e2ee.vsidx differ diff --git a/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/49264e07-d53a-45e3-9cf1-9fcbe91036d4.vsidx b/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/b44c4551-0854-4a8f-a825-a3e0407233ea.vsidx similarity index 100% rename from MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/49264e07-d53a-45e3-9cf1-9fcbe91036d4.vsidx rename to MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/b44c4551-0854-4a8f-a825-a3e0407233ea.vsidx diff --git a/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/bd4e320e-839b-4c88-94b1-8e926a84b647.vsidx b/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/bd4e320e-839b-4c88-94b1-8e926a84b647.vsidx deleted file mode 100755 index 2041c99..0000000 Binary files a/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/bd4e320e-839b-4c88-94b1-8e926a84b647.vsidx and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/c0f24352-d4af-4e8e-808c-8e6e08ed9d9e.vsidx b/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/c0f24352-d4af-4e8e-808c-8e6e08ed9d9e.vsidx new file mode 100755 index 0000000..c0fe08d Binary files /dev/null and b/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/FileContentIndex/c0f24352-d4af-4e8e-808c-8e6e08ed9d9e.vsidx differ diff --git a/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/v17/.futdcache.v2 b/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/v17/.futdcache.v2 index 4c1a176..18d4989 100755 Binary files a/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/v17/.futdcache.v2 and b/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/v17/.futdcache.v2 differ diff --git a/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/v17/.suo b/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/v17/.suo index 743940f..e430ad4 100755 Binary files a/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/v17/.suo and b/MP4/RPS_CalebFontenot/.vs/RCS_CalebFontenot/v17/.suo differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/Form1.cs b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/Form1.cs index 8eb5b93..4c1bad3 100755 --- a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/Form1.cs +++ b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/Form1.cs @@ -199,14 +199,9 @@ namespace RCS_CalebFontenot private void rockPictureBox_Click(object sender, EventArgs e) { - statusLabel.Text = "You clicked Rock!"; playRound(0); } - private void exitButton_Click(object sender, EventArgs e) - { - this.Close(); - } private void paperPictureBox_Click(object sender, EventArgs e) { @@ -217,5 +212,9 @@ namespace RCS_CalebFontenot { playRound(2); } + private void exitButton_Click(object sender, EventArgs e) + { + this.Close(); + } } -} \ No newline at end of file +} diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/Rock Paper Scissors - Caleb Fontenot.zip b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/Rock Paper Scissors - Caleb Fontenot.zip deleted file mode 100644 index c19a238..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/Rock Paper Scissors - Caleb Fontenot.zip and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/RCS_CalebFontenot.deps.json b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/RCS_CalebFontenot.deps.json deleted file mode 100755 index f4392b2..0000000 --- a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/RCS_CalebFontenot.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "RCS_CalebFontenot/1.0.0": { - "runtime": { - "RCS_CalebFontenot.dll": {} - } - } - } - }, - "libraries": { - "RCS_CalebFontenot/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/RCS_CalebFontenot.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/RCS_CalebFontenot.dll deleted file mode 100755 index a9fdf35..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/RCS_CalebFontenot.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/RCS_CalebFontenot.exe b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/RCS_CalebFontenot.exe deleted file mode 100755 index 99182d9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/RCS_CalebFontenot.exe and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/RCS_CalebFontenot.pdb b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/RCS_CalebFontenot.pdb deleted file mode 100755 index dc55c2c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/RCS_CalebFontenot.pdb and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/RCS_CalebFontenot.runtimeconfig.json b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/RCS_CalebFontenot.runtimeconfig.json deleted file mode 100755 index 383c312..0000000 --- a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/RCS_CalebFontenot.runtimeconfig.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net6.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "6.0.0" - }, - { - "name": "Microsoft.WindowsDesktop.App", - "version": "6.0.0" - } - ], - "configProperties": { - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false - } - } -} \ No newline at end of file diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Accessibility.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Accessibility.dll deleted file mode 100755 index fe93e5f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Accessibility.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/D3DCompiler_47_cor3.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/D3DCompiler_47_cor3.dll deleted file mode 100755 index e21b65b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/D3DCompiler_47_cor3.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/DirectWriteForwarder.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/DirectWriteForwarder.dll deleted file mode 100755 index 1561994..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/DirectWriteForwarder.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.CSharp.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.CSharp.dll deleted file mode 100755 index a08efc4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.CSharp.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.DiaSymReader.Native.amd64.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.DiaSymReader.Native.amd64.dll deleted file mode 100755 index 78c90cd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.DiaSymReader.Native.amd64.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.VisualBasic.Core.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.VisualBasic.Core.dll deleted file mode 100755 index e4001c0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.VisualBasic.Core.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.VisualBasic.Forms.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.VisualBasic.Forms.dll deleted file mode 100755 index 23c0c34..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.VisualBasic.Forms.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.VisualBasic.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.VisualBasic.dll deleted file mode 100755 index 777cfe7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.VisualBasic.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.Win32.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.Win32.Primitives.dll deleted file mode 100755 index 15655db..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.Win32.Registry.AccessControl.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.Win32.Registry.AccessControl.dll deleted file mode 100755 index ee67862..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.Win32.Registry.AccessControl.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.Win32.Registry.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.Win32.Registry.dll deleted file mode 100755 index df90f92..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.Win32.Registry.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.Win32.SystemEvents.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.Win32.SystemEvents.dll deleted file mode 100755 index a944c8f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PenImc_cor3.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PenImc_cor3.dll deleted file mode 100755 index 2804461..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PenImc_cor3.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationCore.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationCore.dll deleted file mode 100755 index a6cc14e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationCore.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework-SystemCore.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework-SystemCore.dll deleted file mode 100755 index 6bba1a0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework-SystemCore.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework-SystemData.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework-SystemData.dll deleted file mode 100755 index cf3f6d4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework-SystemData.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework-SystemDrawing.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework-SystemDrawing.dll deleted file mode 100755 index f67dbae..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework-SystemDrawing.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework-SystemXml.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework-SystemXml.dll deleted file mode 100755 index e0135ad..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework-SystemXml.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework-SystemXmlLinq.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework-SystemXmlLinq.dll deleted file mode 100755 index 7ea6ca8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework-SystemXmlLinq.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.Aero.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.Aero.dll deleted file mode 100755 index 6fddabf..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.Aero.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.Aero2.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.Aero2.dll deleted file mode 100755 index 74dfc0c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.Aero2.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.AeroLite.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.AeroLite.dll deleted file mode 100755 index 8c4e868..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.AeroLite.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.Classic.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.Classic.dll deleted file mode 100755 index 36a79d7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.Classic.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.Luna.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.Luna.dll deleted file mode 100755 index 8e8c494..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.Luna.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.Royale.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.Royale.dll deleted file mode 100755 index 8419990..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.Royale.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.dll deleted file mode 100755 index 0070523..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationFramework.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationNative_cor3.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationNative_cor3.dll deleted file mode 100755 index bd49d7c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationNative_cor3.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationUI.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationUI.dll deleted file mode 100755 index 9b7181b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/PresentationUI.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/RCS_CalebFontenot.deps.json b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/RCS_CalebFontenot.deps.json deleted file mode 100755 index a3016c8..0000000 --- a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/RCS_CalebFontenot.deps.json +++ /dev/null @@ -1,1227 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0/win-x64", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": {}, - ".NETCoreApp,Version=v6.0/win-x64": { - "RCS_CalebFontenot/1.0.0": { - "dependencies": { - "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "6.0.10", - "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "6.0.10" - }, - "runtime": { - "RCS_CalebFontenot.dll": {} - } - }, - "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.10": { - "runtime": { - "Microsoft.CSharp.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "Microsoft.VisualBasic.Core.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.100.1022.47605" - }, - "Microsoft.Win32.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "Microsoft.Win32.Registry.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.AppContext.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Buffers.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Collections.Concurrent.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Collections.Immutable.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Collections.NonGeneric.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Collections.Specialized.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Collections.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ComponentModel.Annotations.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ComponentModel.DataAnnotations.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ComponentModel.EventBasedAsync.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ComponentModel.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ComponentModel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Configuration.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Console.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Data.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Data.DataSetExtensions.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Data.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.Contracts.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.Debug.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.FileVersionInfo.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.Process.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.StackTrace.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.TextWriterTraceListener.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.Tools.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.TraceSource.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.Tracing.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Drawing.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Dynamic.Runtime.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Formats.Asn1.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Globalization.Calendars.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Globalization.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Globalization.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.Compression.Brotli.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.Compression.FileSystem.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.Compression.ZipFile.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.Compression.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.FileSystem.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.FileSystem.DriveInfo.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.FileSystem.Watcher.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.FileSystem.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.IsolatedStorage.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.MemoryMappedFiles.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.Pipes.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.Pipes.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.UnmanagedMemoryStream.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Linq.Expressions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Linq.Parallel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Linq.Queryable.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Linq.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Memory.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Http.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Http.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.HttpListener.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Mail.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.NameResolution.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.NetworkInformation.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Ping.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Quic.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Requests.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Security.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.ServicePoint.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Sockets.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.WebClient.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.WebHeaderCollection.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.WebProxy.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.WebSockets.Client.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.WebSockets.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Numerics.Vectors.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Numerics.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ObjectModel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Private.CoreLib.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Private.DataContractSerialization.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Private.Uri.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Private.Xml.Linq.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Private.Xml.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.DispatchProxy.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.Emit.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.Metadata.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Resources.Reader.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Resources.ResourceManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Resources.Writer.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.CompilerServices.VisualC.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Handles.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.InteropServices.RuntimeInformation.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.InteropServices.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Intrinsics.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Loader.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Numerics.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Serialization.Formatters.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Serialization.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Serialization.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Serialization.Xml.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Claims.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.Algorithms.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.Cng.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.Csp.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.Encoding.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.OpenSsl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.X509Certificates.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Principal.Windows.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Principal.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.SecureString.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ServiceModel.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ServiceProcess.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Text.Encoding.CodePages.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Text.Encoding.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Text.Encoding.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Text.Encodings.Web.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Text.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Text.RegularExpressions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Channels.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Overlapped.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Tasks.Dataflow.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Tasks.Parallel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Tasks.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Thread.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.ThreadPool.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Timer.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Transactions.Local.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Transactions.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ValueTuple.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Web.HttpUtility.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Windows.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.Linq.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.ReaderWriter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.XDocument.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.XPath.XDocument.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.XPath.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.XmlDocument.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.XmlSerializer.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "mscorlib.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "netstandard.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "6.0.1022.47605" - } - }, - "native": { - "Microsoft.DiaSymReader.Native.amd64.dll": { - "fileVersion": "14.28.29715.1" - }, - "System.IO.Compression.Native.dll": { - "fileVersion": "42.42.42.42424" - }, - "api-ms-win-core-console-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-console-l1-2-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-datetime-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-debug-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-errorhandling-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-fibers-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-file-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-file-l1-2-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-file-l2-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-handle-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-heap-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-interlocked-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-libraryloader-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-localization-l1-2-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-memory-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-namedpipe-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-processenvironment-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-processthreads-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-processthreads-l1-1-1.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-profile-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-rtlsupport-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-string-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-synch-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-synch-l1-2-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-sysinfo-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-timezone-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-util-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-conio-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-convert-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-environment-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-filesystem-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-heap-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-locale-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-math-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-multibyte-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-private-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-process-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-runtime-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-stdio-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-string-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-time-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-utility-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "clretwrc.dll": { - "fileVersion": "6.0.1022.47605" - }, - "clrjit.dll": { - "fileVersion": "6.0.1022.47605" - }, - "coreclr.dll": { - "fileVersion": "6.0.1022.47605" - }, - "createdump.exe": { - "fileVersion": "6.0.1022.47605" - }, - "dbgshim.dll": { - "fileVersion": "6.0.1022.47605" - }, - "hostfxr.dll": { - "fileVersion": "6.0.1022.47605" - }, - "hostpolicy.dll": { - "fileVersion": "6.0.1022.47605" - }, - "mscordaccore.dll": { - "fileVersion": "6.0.1022.47605" - }, - "mscordaccore_amd64_amd64_6.0.1022.47605.dll": { - "fileVersion": "6.0.1022.47605" - }, - "mscordbi.dll": { - "fileVersion": "6.0.1022.47605" - }, - "mscorrc.dll": { - "fileVersion": "6.0.1022.47605" - }, - "msquic.dll": { - "fileVersion": "1.7.0.0" - }, - "ucrtbase.dll": { - "fileVersion": "10.0.22000.194" - } - } - }, - "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/6.0.10": { - "runtime": { - "Accessibility.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47606" - }, - "DirectWriteForwarder.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "Microsoft.VisualBasic.Forms.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "Microsoft.VisualBasic.dll": { - "assemblyVersion": "10.1.0.0", - "fileVersion": "6.0.1022.47606" - }, - "Microsoft.Win32.Registry.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "PresentationCore.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework-SystemCore.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework-SystemData.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework-SystemDrawing.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework-SystemXml.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework-SystemXmlLinq.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework.Aero.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework.Aero2.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework.AeroLite.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework.Classic.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework.Luna.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework.Royale.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationUI.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "ReachFramework.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "System.CodeDom.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Design.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "System.Diagnostics.EventLog.Messages.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "0.0.0.0" - }, - "System.Diagnostics.EventLog.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.PerformanceCounter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.DirectoryServices.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Drawing.Design.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "System.Drawing.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "System.IO.Packaging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Printing.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "System.Resources.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.Pkcs.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.Xml.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Windows.Controls.Ribbon.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Windows.Forms.Design.Editors.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "System.Windows.Forms.Design.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "System.Windows.Forms.Primitives.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "System.Windows.Forms.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "System.Windows.Input.Manipulations.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "System.Windows.Presentation.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "System.Xaml.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "UIAutomationClient.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "UIAutomationClientSideProviders.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "UIAutomationProvider.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "UIAutomationTypes.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "WindowsBase.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "WindowsFormsIntegration.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - } - }, - "native": { - "D3DCompiler_47_cor3.dll": { - "fileVersion": "10.0.22621.1" - }, - "PenImc_cor3.dll": { - "fileVersion": "6.0.1022.47604" - }, - "PresentationNative_cor3.dll": { - "fileVersion": "6.0.22.46403" - }, - "vcruntime140_cor3.dll": { - "fileVersion": "14.32.31332.0" - }, - "wpfgfx_cor3.dll": { - "fileVersion": "6.0.1022.47604" - } - } - } - } - }, - "libraries": { - "RCS_CalebFontenot/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.10": { - "type": "runtimepack", - "serviceable": false, - "sha512": "" - }, - "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/6.0.10": { - "type": "runtimepack", - "serviceable": false, - "sha512": "" - } - }, - "runtimes": { - "win-x64": [ - "win", - "any", - "base" - ], - "win-x64-aot": [ - "win-aot", - "win-x64", - "win", - "aot", - "any", - "base" - ], - "win10-x64": [ - "win10", - "win81-x64", - "win81", - "win8-x64", - "win8", - "win7-x64", - "win7", - "win-x64", - "win", - "any", - "base" - ], - "win10-x64-aot": [ - "win10-aot", - "win10-x64", - "win10", - "win81-x64-aot", - "win81-aot", - "win81-x64", - "win81", - "win8-x64-aot", - "win8-aot", - "win8-x64", - "win8", - "win7-x64-aot", - "win7-aot", - "win7-x64", - "win7", - "win-x64-aot", - "win-aot", - "win-x64", - "win", - "aot", - "any", - "base" - ], - "win7-x64": [ - "win7", - "win-x64", - "win", - "any", - "base" - ], - "win7-x64-aot": [ - "win7-aot", - "win7-x64", - "win7", - "win-x64-aot", - "win-aot", - "win-x64", - "win", - "aot", - "any", - "base" - ], - "win8-x64": [ - "win8", - "win7-x64", - "win7", - "win-x64", - "win", - "any", - "base" - ], - "win8-x64-aot": [ - "win8-aot", - "win8-x64", - "win8", - "win7-x64-aot", - "win7-aot", - "win7-x64", - "win7", - "win-x64-aot", - "win-aot", - "win-x64", - "win", - "aot", - "any", - "base" - ], - "win81-x64": [ - "win81", - "win8-x64", - "win8", - "win7-x64", - "win7", - "win-x64", - "win", - "any", - "base" - ], - "win81-x64-aot": [ - "win81-aot", - "win81-x64", - "win81", - "win8-x64-aot", - "win8-aot", - "win8-x64", - "win8", - "win7-x64-aot", - "win7-aot", - "win7-x64", - "win7", - "win-x64-aot", - "win-aot", - "win-x64", - "win", - "aot", - "any", - "base" - ] - } -} \ No newline at end of file diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/RCS_CalebFontenot.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/RCS_CalebFontenot.dll deleted file mode 100755 index c62019d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/RCS_CalebFontenot.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/RCS_CalebFontenot.exe b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/RCS_CalebFontenot.exe deleted file mode 100755 index 99182d9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/RCS_CalebFontenot.exe and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/RCS_CalebFontenot.pdb b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/RCS_CalebFontenot.pdb deleted file mode 100755 index 53d0c43..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/RCS_CalebFontenot.pdb and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/RCS_CalebFontenot.runtimeconfig.json b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/RCS_CalebFontenot.runtimeconfig.json deleted file mode 100755 index 6857619..0000000 --- a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/RCS_CalebFontenot.runtimeconfig.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net6.0", - "includedFrameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "6.0.0" - }, - { - "name": "Microsoft.WindowsDesktop.App", - "version": "6.0.0" - } - ], - "configProperties": { - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false - } - } -} \ No newline at end of file diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ReachFramework.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ReachFramework.dll deleted file mode 100755 index 278d0bd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ReachFramework.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.AppContext.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.AppContext.dll deleted file mode 100755 index b47c8dc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.AppContext.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Buffers.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Buffers.dll deleted file mode 100755 index 2215772..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Buffers.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.CodeDom.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.CodeDom.dll deleted file mode 100755 index 2413045..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.CodeDom.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Collections.Concurrent.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Collections.Concurrent.dll deleted file mode 100755 index 209e802..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Collections.Concurrent.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Collections.Immutable.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Collections.Immutable.dll deleted file mode 100755 index 10053c1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Collections.Immutable.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Collections.NonGeneric.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Collections.NonGeneric.dll deleted file mode 100755 index 96d32d8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Collections.Specialized.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Collections.Specialized.dll deleted file mode 100755 index 1c163cf..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Collections.Specialized.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Collections.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Collections.dll deleted file mode 100755 index d142052..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Collections.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.Annotations.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.Annotations.dll deleted file mode 100755 index 2a2da2f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.DataAnnotations.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.DataAnnotations.dll deleted file mode 100755 index 333aa3c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.DataAnnotations.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.EventBasedAsync.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.EventBasedAsync.dll deleted file mode 100755 index 3b62100..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.EventBasedAsync.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.Primitives.dll deleted file mode 100755 index a1da3ca..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.TypeConverter.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.TypeConverter.dll deleted file mode 100755 index 1c096d4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.dll deleted file mode 100755 index 2ed4803..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ComponentModel.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Configuration.ConfigurationManager.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Configuration.ConfigurationManager.dll deleted file mode 100755 index a805ce2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Configuration.ConfigurationManager.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Configuration.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Configuration.dll deleted file mode 100755 index f0371b0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Configuration.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Console.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Console.dll deleted file mode 100755 index 3d8e070..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Console.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Core.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Core.dll deleted file mode 100755 index 0ae6931..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Core.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Data.Common.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Data.Common.dll deleted file mode 100755 index 5404790..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Data.Common.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Data.DataSetExtensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Data.DataSetExtensions.dll deleted file mode 100755 index 53d5de0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Data.DataSetExtensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Data.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Data.dll deleted file mode 100755 index 29d641a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Data.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Design.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Design.dll deleted file mode 100755 index df49d70..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Design.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.Contracts.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.Contracts.dll deleted file mode 100755 index 018671b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.Contracts.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.Debug.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.Debug.dll deleted file mode 100755 index d81d7e0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.Debug.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.DiagnosticSource.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.DiagnosticSource.dll deleted file mode 100755 index f111c48..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.EventLog.Messages.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.EventLog.Messages.dll deleted file mode 100755 index 71daa43..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.EventLog.Messages.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.EventLog.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.EventLog.dll deleted file mode 100755 index cb2fa56..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.EventLog.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.FileVersionInfo.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.FileVersionInfo.dll deleted file mode 100755 index 8d28447..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.PerformanceCounter.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.PerformanceCounter.dll deleted file mode 100755 index 82ec202..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.PerformanceCounter.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.Process.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.Process.dll deleted file mode 100755 index 1148b5b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.Process.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.StackTrace.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.StackTrace.dll deleted file mode 100755 index 3cd226a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.TextWriterTraceListener.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.TextWriterTraceListener.dll deleted file mode 100755 index 546d494..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.TextWriterTraceListener.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.Tools.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.Tools.dll deleted file mode 100755 index e02faae..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.Tools.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.TraceSource.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.TraceSource.dll deleted file mode 100755 index 18b541a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.Tracing.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.Tracing.dll deleted file mode 100755 index c35836b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Diagnostics.Tracing.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.DirectoryServices.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.DirectoryServices.dll deleted file mode 100755 index dbd535d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.DirectoryServices.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Drawing.Common.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Drawing.Common.dll deleted file mode 100755 index 414e183..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Drawing.Common.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Drawing.Design.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Drawing.Design.dll deleted file mode 100755 index 0eff663..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Drawing.Design.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Drawing.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Drawing.Primitives.dll deleted file mode 100755 index 7dd8a85..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Drawing.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Drawing.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Drawing.dll deleted file mode 100755 index 04505fc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Drawing.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Dynamic.Runtime.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Dynamic.Runtime.dll deleted file mode 100755 index 73dffbc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Dynamic.Runtime.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Formats.Asn1.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Formats.Asn1.dll deleted file mode 100755 index 898e92d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Formats.Asn1.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Globalization.Calendars.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Globalization.Calendars.dll deleted file mode 100755 index 3eae604..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Globalization.Calendars.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Globalization.Extensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Globalization.Extensions.dll deleted file mode 100755 index d43e757..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Globalization.Extensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Globalization.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Globalization.dll deleted file mode 100755 index cf401d1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Globalization.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Compression.Brotli.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Compression.Brotli.dll deleted file mode 100755 index b8e4a34..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Compression.Brotli.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Compression.FileSystem.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Compression.FileSystem.dll deleted file mode 100755 index 4a27328..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Compression.FileSystem.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Compression.Native.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Compression.Native.dll deleted file mode 100755 index 002f3c0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Compression.Native.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Compression.ZipFile.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Compression.ZipFile.dll deleted file mode 100755 index 41dcc01..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Compression.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Compression.dll deleted file mode 100755 index a8eb38a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Compression.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.FileSystem.AccessControl.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.FileSystem.AccessControl.dll deleted file mode 100755 index c0b4ec6..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.FileSystem.DriveInfo.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.FileSystem.DriveInfo.dll deleted file mode 100755 index 279bf33..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.FileSystem.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.FileSystem.Primitives.dll deleted file mode 100755 index faa5270..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.FileSystem.Watcher.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.FileSystem.Watcher.dll deleted file mode 100755 index fea3399..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.FileSystem.Watcher.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.FileSystem.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.FileSystem.dll deleted file mode 100755 index 1e59e2d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.FileSystem.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.IsolatedStorage.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.IsolatedStorage.dll deleted file mode 100755 index c2ed7fa..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.IsolatedStorage.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.MemoryMappedFiles.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.MemoryMappedFiles.dll deleted file mode 100755 index f555a5f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.MemoryMappedFiles.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Packaging.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Packaging.dll deleted file mode 100755 index a418739..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Packaging.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Pipes.AccessControl.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Pipes.AccessControl.dll deleted file mode 100755 index 88f99c6..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Pipes.AccessControl.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Pipes.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Pipes.dll deleted file mode 100755 index 0c2b76b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.Pipes.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.UnmanagedMemoryStream.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.UnmanagedMemoryStream.dll deleted file mode 100755 index 58ec386..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.UnmanagedMemoryStream.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.dll deleted file mode 100755 index 4f7c34e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.IO.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Linq.Expressions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Linq.Expressions.dll deleted file mode 100755 index 1e862d4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Linq.Expressions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Linq.Parallel.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Linq.Parallel.dll deleted file mode 100755 index a8b7492..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Linq.Parallel.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Linq.Queryable.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Linq.Queryable.dll deleted file mode 100755 index dc8a96c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Linq.Queryable.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Linq.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Linq.dll deleted file mode 100755 index 3d6cbab..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Linq.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Memory.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Memory.dll deleted file mode 100755 index 51e769c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Memory.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Http.Json.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Http.Json.dll deleted file mode 100755 index a8ee64d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Http.Json.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Http.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Http.dll deleted file mode 100755 index 52dfb46..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Http.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.HttpListener.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.HttpListener.dll deleted file mode 100755 index c14dbfa..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.HttpListener.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Mail.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Mail.dll deleted file mode 100755 index 02ba440..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Mail.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.NameResolution.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.NameResolution.dll deleted file mode 100755 index 8ecd638..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.NameResolution.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.NetworkInformation.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.NetworkInformation.dll deleted file mode 100755 index b2170c7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.NetworkInformation.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Ping.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Ping.dll deleted file mode 100755 index 55d54a0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Ping.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Primitives.dll deleted file mode 100755 index 5715e73..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Quic.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Quic.dll deleted file mode 100755 index 0975d45..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Quic.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Requests.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Requests.dll deleted file mode 100755 index 043fa4b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Requests.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Security.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Security.dll deleted file mode 100755 index 90aa0ed..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Security.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.ServicePoint.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.ServicePoint.dll deleted file mode 100755 index 053d825..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.ServicePoint.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Sockets.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Sockets.dll deleted file mode 100755 index 87fa52e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.Sockets.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.WebClient.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.WebClient.dll deleted file mode 100755 index 8afa105..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.WebClient.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.WebHeaderCollection.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.WebHeaderCollection.dll deleted file mode 100755 index d42e5d6..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.WebHeaderCollection.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.WebProxy.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.WebProxy.dll deleted file mode 100755 index a0002ac..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.WebProxy.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.WebSockets.Client.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.WebSockets.Client.dll deleted file mode 100755 index 964d453..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.WebSockets.Client.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.WebSockets.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.WebSockets.dll deleted file mode 100755 index 96f5d02..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.WebSockets.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.dll deleted file mode 100755 index a81cd63..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Net.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Numerics.Vectors.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Numerics.Vectors.dll deleted file mode 100755 index 383ed2f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Numerics.Vectors.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Numerics.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Numerics.dll deleted file mode 100755 index d000244..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Numerics.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ObjectModel.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ObjectModel.dll deleted file mode 100755 index 245f241..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ObjectModel.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Printing.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Printing.dll deleted file mode 100755 index dca2c19..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Printing.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Private.CoreLib.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Private.CoreLib.dll deleted file mode 100755 index fa1b5f3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Private.CoreLib.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Private.DataContractSerialization.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Private.DataContractSerialization.dll deleted file mode 100755 index 3901d16..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Private.DataContractSerialization.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Private.Uri.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Private.Uri.dll deleted file mode 100755 index 8531110..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Private.Uri.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Private.Xml.Linq.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Private.Xml.Linq.dll deleted file mode 100755 index b95784b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Private.Xml.Linq.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Private.Xml.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Private.Xml.dll deleted file mode 100755 index ffc147a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Private.Xml.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.DispatchProxy.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.DispatchProxy.dll deleted file mode 100755 index 4b0ada9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.DispatchProxy.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Emit.ILGeneration.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Emit.ILGeneration.dll deleted file mode 100755 index ce2bd5a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Emit.Lightweight.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Emit.Lightweight.dll deleted file mode 100755 index 36a2498..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Emit.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Emit.dll deleted file mode 100755 index 9e0be34..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Emit.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Extensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Extensions.dll deleted file mode 100755 index ddbbf55..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Extensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Metadata.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Metadata.dll deleted file mode 100755 index 0bb20f4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Metadata.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Primitives.dll deleted file mode 100755 index f842610..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.TypeExtensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.TypeExtensions.dll deleted file mode 100755 index 1f0190a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.dll deleted file mode 100755 index 29f3cff..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Reflection.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Resources.Extensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Resources.Extensions.dll deleted file mode 100755 index cd911cf..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Resources.Extensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Resources.Reader.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Resources.Reader.dll deleted file mode 100755 index 5b06899..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Resources.Reader.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Resources.ResourceManager.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Resources.ResourceManager.dll deleted file mode 100755 index 107dda4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Resources.ResourceManager.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Resources.Writer.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Resources.Writer.dll deleted file mode 100755 index 285982b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Resources.Writer.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.CompilerServices.Unsafe.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100755 index 718b066..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.CompilerServices.VisualC.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.CompilerServices.VisualC.dll deleted file mode 100755 index e616b32..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.CompilerServices.VisualC.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Extensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Extensions.dll deleted file mode 100755 index c36aea1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Extensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Handles.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Handles.dll deleted file mode 100755 index 1bd0e2f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Handles.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100755 index 0e7ab52..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.InteropServices.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.InteropServices.dll deleted file mode 100755 index 1646425..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.InteropServices.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Intrinsics.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Intrinsics.dll deleted file mode 100755 index c01e95f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Intrinsics.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Loader.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Loader.dll deleted file mode 100755 index 22dc8e8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Loader.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Numerics.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Numerics.dll deleted file mode 100755 index 5fa9b7d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Numerics.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Serialization.Formatters.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Serialization.Formatters.dll deleted file mode 100755 index 7ed3339..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Serialization.Formatters.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Serialization.Json.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Serialization.Json.dll deleted file mode 100755 index cde53e8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Serialization.Json.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Serialization.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Serialization.Primitives.dll deleted file mode 100755 index 2d8cc12..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Serialization.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Serialization.Xml.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Serialization.Xml.dll deleted file mode 100755 index c7d4e1c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Serialization.Xml.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Serialization.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Serialization.dll deleted file mode 100755 index 0b5d8cf..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.Serialization.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.dll deleted file mode 100755 index 230470d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Runtime.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.AccessControl.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.AccessControl.dll deleted file mode 100755 index 59cb739..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.AccessControl.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Claims.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Claims.dll deleted file mode 100755 index 5f9db36..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Claims.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Algorithms.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Algorithms.dll deleted file mode 100755 index 608ed98..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Cng.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Cng.dll deleted file mode 100755 index 8a3a27f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Csp.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Csp.dll deleted file mode 100755 index b4ecf7a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Csp.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Encoding.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Encoding.dll deleted file mode 100755 index a373c86..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.OpenSsl.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.OpenSsl.dll deleted file mode 100755 index b0fa045..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Pkcs.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Pkcs.dll deleted file mode 100755 index 27f58d4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Pkcs.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Primitives.dll deleted file mode 100755 index a72318f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.ProtectedData.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.ProtectedData.dll deleted file mode 100755 index 99e8dce..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.X509Certificates.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.X509Certificates.dll deleted file mode 100755 index 81a125b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Xml.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Xml.dll deleted file mode 100755 index bdc0acc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Cryptography.Xml.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Permissions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Permissions.dll deleted file mode 100755 index b93d1c9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Permissions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Principal.Windows.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Principal.Windows.dll deleted file mode 100755 index 4c56568..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Principal.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Principal.dll deleted file mode 100755 index 3c5919b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.Principal.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.SecureString.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.SecureString.dll deleted file mode 100755 index bea56f2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.SecureString.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.dll deleted file mode 100755 index 56ba54e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Security.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ServiceModel.Web.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ServiceModel.Web.dll deleted file mode 100755 index 99c4fe8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ServiceModel.Web.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ServiceProcess.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ServiceProcess.dll deleted file mode 100755 index 7445524..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ServiceProcess.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.Encoding.CodePages.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.Encoding.CodePages.dll deleted file mode 100755 index 15e74e6..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.Encoding.Extensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.Encoding.Extensions.dll deleted file mode 100755 index 517650e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.Encoding.Extensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.Encoding.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.Encoding.dll deleted file mode 100755 index a774241..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.Encoding.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.Encodings.Web.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.Encodings.Web.dll deleted file mode 100755 index 2815298..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.Json.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.Json.dll deleted file mode 100755 index 88324b8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.Json.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.RegularExpressions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.RegularExpressions.dll deleted file mode 100755 index 401f384..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.AccessControl.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.AccessControl.dll deleted file mode 100755 index 02ddddb..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.AccessControl.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Channels.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Channels.dll deleted file mode 100755 index 7ebb8f0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Channels.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Overlapped.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Overlapped.dll deleted file mode 100755 index 97adb1b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Overlapped.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Tasks.Dataflow.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Tasks.Dataflow.dll deleted file mode 100755 index e6b6674..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Tasks.Dataflow.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Tasks.Extensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Tasks.Extensions.dll deleted file mode 100755 index d85f796..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Tasks.Parallel.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Tasks.Parallel.dll deleted file mode 100755 index 5f3b917..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Tasks.Parallel.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Tasks.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Tasks.dll deleted file mode 100755 index cbc1bca..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Tasks.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Thread.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Thread.dll deleted file mode 100755 index 27c2eaf..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Thread.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.ThreadPool.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.ThreadPool.dll deleted file mode 100755 index abcfe9a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Timer.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Timer.dll deleted file mode 100755 index e11c2ed..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.Timer.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.dll deleted file mode 100755 index aeba96c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Threading.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Transactions.Local.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Transactions.Local.dll deleted file mode 100755 index 94064d5..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Transactions.Local.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Transactions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Transactions.dll deleted file mode 100755 index bf54131..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Transactions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ValueTuple.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ValueTuple.dll deleted file mode 100755 index 0eb2ea0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.ValueTuple.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Web.HttpUtility.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Web.HttpUtility.dll deleted file mode 100755 index b11d83a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Web.HttpUtility.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Web.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Web.dll deleted file mode 100755 index 8f3cdb7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Web.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Controls.Ribbon.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Controls.Ribbon.dll deleted file mode 100755 index 6e97200..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Controls.Ribbon.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Extensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Extensions.dll deleted file mode 100755 index 963ba98..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Extensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Forms.Design.Editors.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Forms.Design.Editors.dll deleted file mode 100755 index dbb4b4d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Forms.Design.Editors.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Forms.Design.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Forms.Design.dll deleted file mode 100755 index da55350..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Forms.Design.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Forms.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Forms.Primitives.dll deleted file mode 100755 index f7e587c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Forms.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Forms.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Forms.dll deleted file mode 100755 index 144e914..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Forms.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Input.Manipulations.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Input.Manipulations.dll deleted file mode 100755 index 1db3f31..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Input.Manipulations.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Presentation.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Presentation.dll deleted file mode 100755 index dfc12f4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.Presentation.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.dll deleted file mode 100755 index c53d404..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Windows.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xaml.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xaml.dll deleted file mode 100755 index 6be69de..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xaml.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.Linq.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.Linq.dll deleted file mode 100755 index b7740be..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.Linq.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.ReaderWriter.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.ReaderWriter.dll deleted file mode 100755 index 7e9bc5a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.Serialization.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.Serialization.dll deleted file mode 100755 index cf53227..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.Serialization.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.XDocument.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.XDocument.dll deleted file mode 100755 index 8125452..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.XDocument.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.XPath.XDocument.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.XPath.XDocument.dll deleted file mode 100755 index 08d14cb..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.XPath.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.XPath.dll deleted file mode 100755 index 14e9027..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.XPath.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.XmlDocument.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.XmlDocument.dll deleted file mode 100755 index 31f8d1e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.XmlSerializer.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.XmlSerializer.dll deleted file mode 100755 index dfa29ba..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.dll deleted file mode 100755 index d194078..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.Xml.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.dll deleted file mode 100755 index 8b145d3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/System.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/UIAutomationClient.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/UIAutomationClient.dll deleted file mode 100755 index 4f670e5..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/UIAutomationClient.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/UIAutomationClientSideProviders.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/UIAutomationClientSideProviders.dll deleted file mode 100755 index e7950bd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/UIAutomationClientSideProviders.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/UIAutomationProvider.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/UIAutomationProvider.dll deleted file mode 100755 index 0a14a62..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/UIAutomationProvider.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/UIAutomationTypes.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/UIAutomationTypes.dll deleted file mode 100755 index 791ba93..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/UIAutomationTypes.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/WindowsBase.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/WindowsBase.dll deleted file mode 100755 index 9c9c1b9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/WindowsBase.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/WindowsFormsIntegration.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/WindowsFormsIntegration.dll deleted file mode 100755 index 9c100f9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/WindowsFormsIntegration.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-console-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-console-l1-1-0.dll deleted file mode 100755 index 726b975..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-console-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-console-l1-2-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-console-l1-2-0.dll deleted file mode 100755 index b9d1ed4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-console-l1-2-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-datetime-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-datetime-l1-1-0.dll deleted file mode 100755 index f2ecfa7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-datetime-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-debug-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-debug-l1-1-0.dll deleted file mode 100755 index 7bd075b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-debug-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll deleted file mode 100755 index 3bafba9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-fibers-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-fibers-l1-1-0.dll deleted file mode 100755 index 651ffe1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-fibers-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-file-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-file-l1-1-0.dll deleted file mode 100755 index 12bf0b6..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-file-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-file-l1-2-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-file-l1-2-0.dll deleted file mode 100755 index da64db3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-file-l1-2-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-file-l2-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-file-l2-1-0.dll deleted file mode 100755 index 9246b98..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-file-l2-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-handle-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-handle-l1-1-0.dll deleted file mode 100755 index c96e31d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-handle-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-heap-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-heap-l1-1-0.dll deleted file mode 100755 index baa932f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-heap-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-interlocked-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-interlocked-l1-1-0.dll deleted file mode 100755 index 7aa0639..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-interlocked-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll deleted file mode 100755 index ddd5e27..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-localization-l1-2-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-localization-l1-2-0.dll deleted file mode 100755 index 7b90b7c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-localization-l1-2-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-memory-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-memory-l1-1-0.dll deleted file mode 100755 index 63e54f3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-memory-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll deleted file mode 100755 index 37e956e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll deleted file mode 100755 index a2f3605..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-processthreads-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-processthreads-l1-1-0.dll deleted file mode 100755 index f4d3a03..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-processthreads-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-processthreads-l1-1-1.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-processthreads-l1-1-1.dll deleted file mode 100755 index 7bc40e0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-processthreads-l1-1-1.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-profile-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-profile-l1-1-0.dll deleted file mode 100755 index da2b687..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-profile-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll deleted file mode 100755 index ae6dce5..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-string-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-string-l1-1-0.dll deleted file mode 100755 index 32b52be..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-string-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-synch-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-synch-l1-1-0.dll deleted file mode 100755 index b88f76a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-synch-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-synch-l1-2-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-synch-l1-2-0.dll deleted file mode 100755 index a17135a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-synch-l1-2-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll deleted file mode 100755 index 527d1a1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-timezone-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-timezone-l1-1-0.dll deleted file mode 100755 index bab2d02..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-timezone-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-util-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-util-l1-1-0.dll deleted file mode 100755 index 080a9c9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-core-util-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-conio-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-conio-l1-1-0.dll deleted file mode 100755 index 2355a62..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-conio-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-convert-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-convert-l1-1-0.dll deleted file mode 100755 index ddd2b4c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-convert-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-environment-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-environment-l1-1-0.dll deleted file mode 100755 index e2fe9ef..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-environment-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll deleted file mode 100755 index 97ea465..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-heap-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-heap-l1-1-0.dll deleted file mode 100755 index 4e3af05..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-heap-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-locale-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-locale-l1-1-0.dll deleted file mode 100755 index 5fcd98b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-locale-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-math-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-math-l1-1-0.dll deleted file mode 100755 index c3f2800..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-math-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll deleted file mode 100755 index e86ce81..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-private-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-private-l1-1-0.dll deleted file mode 100755 index 62c45dd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-private-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-process-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-process-l1-1-0.dll deleted file mode 100755 index bc346dc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-process-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-runtime-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-runtime-l1-1-0.dll deleted file mode 100755 index d0a43f8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-runtime-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-stdio-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-stdio-l1-1-0.dll deleted file mode 100755 index 59e68c0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-stdio-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-string-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-string-l1-1-0.dll deleted file mode 100755 index 08015e2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-string-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-time-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-time-l1-1-0.dll deleted file mode 100755 index 6e3ba53..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-time-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-utility-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-utility-l1-1-0.dll deleted file mode 100755 index eaa7204..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/api-ms-win-crt-utility-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/clretwrc.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/clretwrc.dll deleted file mode 100755 index 9ef9034..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/clretwrc.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/clrjit.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/clrjit.dll deleted file mode 100755 index 5dc041b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/clrjit.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/coreclr.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/coreclr.dll deleted file mode 100755 index ec3b5f7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/coreclr.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/createdump.exe b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/createdump.exe deleted file mode 100755 index 050c1c4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/createdump.exe and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index ee4eeb2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/PresentationCore.resources.dll deleted file mode 100755 index f02f52a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/PresentationFramework.resources.dll deleted file mode 100755 index df1f315..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/PresentationUI.resources.dll deleted file mode 100755 index 3ab247e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/ReachFramework.resources.dll deleted file mode 100755 index 664b297..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index 8196ede..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index dc15ab7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 9eaa7f3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Windows.Forms.resources.dll deleted file mode 100755 index 4dd1fd0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index df3012e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Xaml.resources.dll deleted file mode 100755 index 38e6cb7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/UIAutomationClient.resources.dll deleted file mode 100755 index 0e763b0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index c4adc69..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/UIAutomationProvider.resources.dll deleted file mode 100755 index ec39001..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/UIAutomationTypes.resources.dll deleted file mode 100755 index 51ee3aa..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/WindowsBase.resources.dll deleted file mode 100755 index 6dbb7aa..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/WindowsFormsIntegration.resources.dll deleted file mode 100755 index e1de19f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/cs/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/dbgshim.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/dbgshim.dll deleted file mode 100755 index 9de454c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/dbgshim.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index 1d8f4e9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/PresentationCore.resources.dll deleted file mode 100755 index e572131..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/PresentationFramework.resources.dll deleted file mode 100755 index d16c9de..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/PresentationUI.resources.dll deleted file mode 100755 index d9b9902..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/ReachFramework.resources.dll deleted file mode 100755 index 99b5e43..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index dab2925..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 8227e3b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 1300fad..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Windows.Forms.resources.dll deleted file mode 100755 index e4a23a3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index 8b4707e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Xaml.resources.dll deleted file mode 100755 index 665b215..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/UIAutomationClient.resources.dll deleted file mode 100755 index fcc77e0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index ee054aa..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/UIAutomationProvider.resources.dll deleted file mode 100755 index c073453..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/UIAutomationTypes.resources.dll deleted file mode 100755 index 57341e3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/WindowsBase.resources.dll deleted file mode 100755 index 4687ecc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 2566962..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/de/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index 5ca9c80..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/PresentationCore.resources.dll deleted file mode 100755 index 96f446d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/PresentationFramework.resources.dll deleted file mode 100755 index 574f9d1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/PresentationUI.resources.dll deleted file mode 100755 index c10053d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/ReachFramework.resources.dll deleted file mode 100755 index 09dba4c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index 7545c29..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 0f66d69..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 6bcc241..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Windows.Forms.resources.dll deleted file mode 100755 index 1940eb1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index d75a9d5..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Xaml.resources.dll deleted file mode 100755 index 11ab255..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/UIAutomationClient.resources.dll deleted file mode 100755 index 665b748..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index 792efe1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/UIAutomationProvider.resources.dll deleted file mode 100755 index 67d87a7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/UIAutomationTypes.resources.dll deleted file mode 100755 index 9615372..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/WindowsBase.resources.dll deleted file mode 100755 index d330660..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/WindowsFormsIntegration.resources.dll deleted file mode 100755 index d557739..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/es/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index b6b870b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/PresentationCore.resources.dll deleted file mode 100755 index 79fdfec..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/PresentationFramework.resources.dll deleted file mode 100755 index 5d80d69..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/PresentationUI.resources.dll deleted file mode 100755 index ab51556..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/ReachFramework.resources.dll deleted file mode 100755 index 2dcc192..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index c989ee2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index fb73ccf..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index d99f1f2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Windows.Forms.resources.dll deleted file mode 100755 index 06f0303..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index d3ad48d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Xaml.resources.dll deleted file mode 100755 index 4d7a564..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/UIAutomationClient.resources.dll deleted file mode 100755 index 4278e84..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index adb9ade..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/UIAutomationProvider.resources.dll deleted file mode 100755 index efbedca..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/UIAutomationTypes.resources.dll deleted file mode 100755 index d05eaa6..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/WindowsBase.resources.dll deleted file mode 100755 index 08c9a62..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 612bb19..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/fr/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/hostfxr.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/hostfxr.dll deleted file mode 100755 index 57c6380..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/hostfxr.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/hostpolicy.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/hostpolicy.dll deleted file mode 100755 index 0019df3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/hostpolicy.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index 0193faa..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/PresentationCore.resources.dll deleted file mode 100755 index 95088f0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/PresentationFramework.resources.dll deleted file mode 100755 index e0766da..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/PresentationUI.resources.dll deleted file mode 100755 index 7239a5b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/ReachFramework.resources.dll deleted file mode 100755 index 0570a2f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index c5d779f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index dddcf72..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 1bfc69e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Windows.Forms.resources.dll deleted file mode 100755 index 4125cb4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index 562ec77..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Xaml.resources.dll deleted file mode 100755 index d8bb7ea..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/UIAutomationClient.resources.dll deleted file mode 100755 index 2bab78c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index a53cf91..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/UIAutomationProvider.resources.dll deleted file mode 100755 index 890c590..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/UIAutomationTypes.resources.dll deleted file mode 100755 index 5db50bc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/WindowsBase.resources.dll deleted file mode 100755 index d454ade..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/WindowsFormsIntegration.resources.dll deleted file mode 100755 index a9cdb55..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/it/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index eece68e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/PresentationCore.resources.dll deleted file mode 100755 index eb1173a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/PresentationFramework.resources.dll deleted file mode 100755 index 3f8d911..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/PresentationUI.resources.dll deleted file mode 100755 index 92e6a27..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/ReachFramework.resources.dll deleted file mode 100755 index 374b788..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index 95abc2e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index d840926..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 97b6881..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Windows.Forms.resources.dll deleted file mode 100755 index 6533d46..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index 6211052..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Xaml.resources.dll deleted file mode 100755 index 22e91cc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/UIAutomationClient.resources.dll deleted file mode 100755 index 45fdeee..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index 3923978..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/UIAutomationProvider.resources.dll deleted file mode 100755 index 05696a2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/UIAutomationTypes.resources.dll deleted file mode 100755 index 622a37a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/WindowsBase.resources.dll deleted file mode 100755 index 6f8bd0d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 62015f8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ja/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index 8971bce..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/PresentationCore.resources.dll deleted file mode 100755 index 4a7c889..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/PresentationFramework.resources.dll deleted file mode 100755 index 1d06df1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/PresentationUI.resources.dll deleted file mode 100755 index 3727ad5..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/ReachFramework.resources.dll deleted file mode 100755 index d07d8b0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index 43ce67c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 9e25364..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 889aa63..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Windows.Forms.resources.dll deleted file mode 100755 index 3311a49..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index e9f2e9a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Xaml.resources.dll deleted file mode 100755 index 6405b22..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/UIAutomationClient.resources.dll deleted file mode 100755 index 49f5ef1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index b857027..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/UIAutomationProvider.resources.dll deleted file mode 100755 index d36f099..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/UIAutomationTypes.resources.dll deleted file mode 100755 index 3950b59..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/WindowsBase.resources.dll deleted file mode 100755 index 0a49c8e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 75a66cf..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ko/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/mscordaccore.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/mscordaccore.dll deleted file mode 100755 index ace6596..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/mscordaccore.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/mscordaccore_amd64_amd64_6.0.1022.47605.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/mscordaccore_amd64_amd64_6.0.1022.47605.dll deleted file mode 100755 index ace6596..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/mscordaccore_amd64_amd64_6.0.1022.47605.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/mscordbi.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/mscordbi.dll deleted file mode 100755 index 5efccb9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/mscordbi.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/mscorlib.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/mscorlib.dll deleted file mode 100755 index dc85f68..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/mscorlib.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/mscorrc.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/mscorrc.dll deleted file mode 100755 index a8196b2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/mscorrc.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/msquic.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/msquic.dll deleted file mode 100755 index e5565ec..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/msquic.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/netstandard.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/netstandard.dll deleted file mode 100755 index a593a2a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/netstandard.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index 71f62b1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/PresentationCore.resources.dll deleted file mode 100755 index aa5265f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/PresentationFramework.resources.dll deleted file mode 100755 index 629d69e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/PresentationUI.resources.dll deleted file mode 100755 index 33c2003..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/ReachFramework.resources.dll deleted file mode 100755 index bb111c4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index e150e67..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 6de46ae..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 10179f0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Windows.Forms.resources.dll deleted file mode 100755 index 623bbc0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index c93a586..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Xaml.resources.dll deleted file mode 100755 index f904e72..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/UIAutomationClient.resources.dll deleted file mode 100755 index 25578fc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index 79e505f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/UIAutomationProvider.resources.dll deleted file mode 100755 index e3e951a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/UIAutomationTypes.resources.dll deleted file mode 100755 index faa5f75..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/WindowsBase.resources.dll deleted file mode 100755 index cbe39f8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/WindowsFormsIntegration.resources.dll deleted file mode 100755 index c2dd8eb..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pl/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index c9a36e9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/PresentationCore.resources.dll deleted file mode 100755 index d463ebe..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/PresentationFramework.resources.dll deleted file mode 100755 index cd6aec3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/PresentationUI.resources.dll deleted file mode 100755 index c3385de..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/ReachFramework.resources.dll deleted file mode 100755 index 4dfa371..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index 83ae86a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 2f7be50..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 7882e0b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Windows.Forms.resources.dll deleted file mode 100755 index 2305748..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index 595b18e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Xaml.resources.dll deleted file mode 100755 index ff7856a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/UIAutomationClient.resources.dll deleted file mode 100755 index f3ae228..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index 5106217..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/UIAutomationProvider.resources.dll deleted file mode 100755 index 03b62f5..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/UIAutomationTypes.resources.dll deleted file mode 100755 index 87d781b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/WindowsBase.resources.dll deleted file mode 100755 index 5ddf7bd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 2644f14..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/pt-BR/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index 075f372..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/PresentationCore.resources.dll deleted file mode 100755 index 9664b3b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/PresentationFramework.resources.dll deleted file mode 100755 index ee8f16a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/PresentationUI.resources.dll deleted file mode 100755 index 98ee756..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/ReachFramework.resources.dll deleted file mode 100755 index acba59b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index a941017..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index d3d0b50..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 631ddb7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Windows.Forms.resources.dll deleted file mode 100755 index dabc0c7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index ca3e492..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Xaml.resources.dll deleted file mode 100755 index 7dcfba9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/UIAutomationClient.resources.dll deleted file mode 100755 index c957ab9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index a4650c2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/UIAutomationProvider.resources.dll deleted file mode 100755 index a00798e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/UIAutomationTypes.resources.dll deleted file mode 100755 index 6b53c7f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/WindowsBase.resources.dll deleted file mode 100755 index 19dbfb3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 115788d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ru/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index bfbfb6c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/PresentationCore.resources.dll deleted file mode 100755 index 2a8a5a4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/PresentationFramework.resources.dll deleted file mode 100755 index 2b0743a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/PresentationUI.resources.dll deleted file mode 100755 index b97d8c5..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/ReachFramework.resources.dll deleted file mode 100755 index 2b68102..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index 14ca0bd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 175d43e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index d8c011d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Windows.Forms.resources.dll deleted file mode 100755 index ee32a2b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index 774c572..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Xaml.resources.dll deleted file mode 100755 index bf099b9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/UIAutomationClient.resources.dll deleted file mode 100755 index 7ab7277..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index 077168d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/UIAutomationProvider.resources.dll deleted file mode 100755 index 2495535..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/UIAutomationTypes.resources.dll deleted file mode 100755 index d54cb14..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/WindowsBase.resources.dll deleted file mode 100755 index 49c4d0f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 096f0c0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/tr/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ucrtbase.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ucrtbase.dll deleted file mode 100755 index 0b41078..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/ucrtbase.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/vcruntime140_cor3.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/vcruntime140_cor3.dll deleted file mode 100755 index 9cda5ce..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/vcruntime140_cor3.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/wpfgfx_cor3.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/wpfgfx_cor3.dll deleted file mode 100755 index 2e7588d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/wpfgfx_cor3.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index b4e855b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/PresentationCore.resources.dll deleted file mode 100755 index ddd44d4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/PresentationFramework.resources.dll deleted file mode 100755 index 9dc6d57..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/PresentationUI.resources.dll deleted file mode 100755 index 795951b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/ReachFramework.resources.dll deleted file mode 100755 index b73c345..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index a8ac9f2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 35c0242..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 2aa0c3e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Windows.Forms.resources.dll deleted file mode 100755 index 50356c1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index 2065fbd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Xaml.resources.dll deleted file mode 100755 index 11a1a93..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/UIAutomationClient.resources.dll deleted file mode 100755 index eff08f2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index 66730f9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/UIAutomationProvider.resources.dll deleted file mode 100755 index 486545e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/UIAutomationTypes.resources.dll deleted file mode 100755 index 29956a8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/WindowsBase.resources.dll deleted file mode 100755 index 019d909..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/WindowsFormsIntegration.resources.dll deleted file mode 100755 index be9adb8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hans/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index e854558..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/PresentationCore.resources.dll deleted file mode 100755 index 7ac2a1f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/PresentationFramework.resources.dll deleted file mode 100755 index b09134a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/PresentationUI.resources.dll deleted file mode 100755 index 42a8f05..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/ReachFramework.resources.dll deleted file mode 100755 index 0572c3f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index 8fb64f4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 0cd1a1d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index e362660..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Windows.Forms.resources.dll deleted file mode 100755 index 315b5ef..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index fab0bb0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Xaml.resources.dll deleted file mode 100755 index 08790e7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/UIAutomationClient.resources.dll deleted file mode 100755 index daca843..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index b493abd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/UIAutomationProvider.resources.dll deleted file mode 100755 index 7130d63..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/UIAutomationTypes.resources.dll deleted file mode 100755 index 0d8b864..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/WindowsBase.resources.dll deleted file mode 100755 index 68c27db..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 140bad3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/publish/win-x64/zh-Hant/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Accessibility.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Accessibility.dll deleted file mode 100755 index fe93e5f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Accessibility.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/D3DCompiler_47_cor3.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/D3DCompiler_47_cor3.dll deleted file mode 100755 index e21b65b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/D3DCompiler_47_cor3.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/DirectWriteForwarder.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/DirectWriteForwarder.dll deleted file mode 100755 index 1561994..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/DirectWriteForwarder.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.CSharp.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.CSharp.dll deleted file mode 100755 index a08efc4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.CSharp.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.DiaSymReader.Native.amd64.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.DiaSymReader.Native.amd64.dll deleted file mode 100755 index 78c90cd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.DiaSymReader.Native.amd64.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.Core.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.Core.dll deleted file mode 100755 index e4001c0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.Core.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.Forms.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.Forms.dll deleted file mode 100755 index 23c0c34..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.Forms.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.dll deleted file mode 100755 index 777cfe7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.VisualBasic.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Primitives.dll deleted file mode 100755 index 15655db..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Registry.AccessControl.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Registry.AccessControl.dll deleted file mode 100755 index ee67862..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Registry.AccessControl.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Registry.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Registry.dll deleted file mode 100755 index df90f92..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.Registry.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.SystemEvents.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.SystemEvents.dll deleted file mode 100755 index a944c8f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PenImc_cor3.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PenImc_cor3.dll deleted file mode 100755 index 2804461..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PenImc_cor3.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationCore.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationCore.dll deleted file mode 100755 index a6cc14e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationCore.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemCore.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemCore.dll deleted file mode 100755 index 6bba1a0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemCore.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemData.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemData.dll deleted file mode 100755 index cf3f6d4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemData.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemDrawing.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemDrawing.dll deleted file mode 100755 index f67dbae..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemDrawing.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemXml.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemXml.dll deleted file mode 100755 index e0135ad..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemXml.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemXmlLinq.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemXmlLinq.dll deleted file mode 100755 index 7ea6ca8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework-SystemXmlLinq.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.Aero.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.Aero.dll deleted file mode 100755 index 6fddabf..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.Aero.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.Aero2.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.Aero2.dll deleted file mode 100755 index 74dfc0c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.Aero2.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.AeroLite.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.AeroLite.dll deleted file mode 100755 index 8c4e868..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.AeroLite.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.Classic.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.Classic.dll deleted file mode 100755 index 36a79d7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.Classic.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.Luna.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.Luna.dll deleted file mode 100755 index 8e8c494..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.Luna.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.Royale.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.Royale.dll deleted file mode 100755 index 8419990..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.Royale.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.dll deleted file mode 100755 index 0070523..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationFramework.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationNative_cor3.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationNative_cor3.dll deleted file mode 100755 index bd49d7c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationNative_cor3.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationUI.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationUI.dll deleted file mode 100755 index 9b7181b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/PresentationUI.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/RCS_CalebFontenot.deps.json b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/RCS_CalebFontenot.deps.json deleted file mode 100755 index a3016c8..0000000 --- a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/RCS_CalebFontenot.deps.json +++ /dev/null @@ -1,1227 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0/win-x64", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": {}, - ".NETCoreApp,Version=v6.0/win-x64": { - "RCS_CalebFontenot/1.0.0": { - "dependencies": { - "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "6.0.10", - "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "6.0.10" - }, - "runtime": { - "RCS_CalebFontenot.dll": {} - } - }, - "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.10": { - "runtime": { - "Microsoft.CSharp.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "Microsoft.VisualBasic.Core.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.100.1022.47605" - }, - "Microsoft.Win32.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "Microsoft.Win32.Registry.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.AppContext.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Buffers.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Collections.Concurrent.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Collections.Immutable.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Collections.NonGeneric.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Collections.Specialized.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Collections.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ComponentModel.Annotations.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ComponentModel.DataAnnotations.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ComponentModel.EventBasedAsync.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ComponentModel.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ComponentModel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Configuration.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Console.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Data.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Data.DataSetExtensions.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Data.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.Contracts.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.Debug.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.FileVersionInfo.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.Process.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.StackTrace.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.TextWriterTraceListener.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.Tools.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.TraceSource.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.Tracing.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Drawing.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Dynamic.Runtime.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Formats.Asn1.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Globalization.Calendars.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Globalization.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Globalization.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.Compression.Brotli.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.Compression.FileSystem.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.Compression.ZipFile.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.Compression.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.FileSystem.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.FileSystem.DriveInfo.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.FileSystem.Watcher.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.FileSystem.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.IsolatedStorage.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.MemoryMappedFiles.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.Pipes.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.Pipes.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.UnmanagedMemoryStream.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.IO.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Linq.Expressions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Linq.Parallel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Linq.Queryable.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Linq.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Memory.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Http.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Http.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.HttpListener.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Mail.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.NameResolution.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.NetworkInformation.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Ping.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Quic.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Requests.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Security.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.ServicePoint.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.Sockets.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.WebClient.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.WebHeaderCollection.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.WebProxy.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.WebSockets.Client.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.WebSockets.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Net.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Numerics.Vectors.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Numerics.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ObjectModel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Private.CoreLib.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Private.DataContractSerialization.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Private.Uri.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Private.Xml.Linq.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Private.Xml.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.DispatchProxy.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.Emit.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.Metadata.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Reflection.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Resources.Reader.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Resources.ResourceManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Resources.Writer.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.CompilerServices.VisualC.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Handles.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.InteropServices.RuntimeInformation.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.InteropServices.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Intrinsics.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Loader.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Numerics.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Serialization.Formatters.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Serialization.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Serialization.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Serialization.Xml.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Runtime.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Claims.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.Algorithms.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.Cng.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.Csp.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.Encoding.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.OpenSsl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.X509Certificates.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Principal.Windows.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Principal.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.SecureString.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ServiceModel.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ServiceProcess.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Text.Encoding.CodePages.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Text.Encoding.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Text.Encoding.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Text.Encodings.Web.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Text.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Text.RegularExpressions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Channels.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Overlapped.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Tasks.Dataflow.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Tasks.Parallel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Tasks.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Thread.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.ThreadPool.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.Timer.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Transactions.Local.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Transactions.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.ValueTuple.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Web.HttpUtility.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Windows.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.Linq.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.ReaderWriter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.XDocument.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.XPath.XDocument.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.XPath.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.XmlDocument.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.XmlSerializer.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Xml.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "mscorlib.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "netstandard.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "6.0.1022.47605" - } - }, - "native": { - "Microsoft.DiaSymReader.Native.amd64.dll": { - "fileVersion": "14.28.29715.1" - }, - "System.IO.Compression.Native.dll": { - "fileVersion": "42.42.42.42424" - }, - "api-ms-win-core-console-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-console-l1-2-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-datetime-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-debug-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-errorhandling-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-fibers-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-file-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-file-l1-2-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-file-l2-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-handle-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-heap-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-interlocked-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-libraryloader-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-localization-l1-2-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-memory-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-namedpipe-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-processenvironment-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-processthreads-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-processthreads-l1-1-1.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-profile-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-rtlsupport-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-string-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-synch-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-synch-l1-2-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-sysinfo-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-timezone-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-core-util-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-conio-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-convert-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-environment-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-filesystem-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-heap-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-locale-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-math-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-multibyte-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-private-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-process-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-runtime-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-stdio-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-string-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-time-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "api-ms-win-crt-utility-l1-1-0.dll": { - "fileVersion": "10.0.22000.194" - }, - "clretwrc.dll": { - "fileVersion": "6.0.1022.47605" - }, - "clrjit.dll": { - "fileVersion": "6.0.1022.47605" - }, - "coreclr.dll": { - "fileVersion": "6.0.1022.47605" - }, - "createdump.exe": { - "fileVersion": "6.0.1022.47605" - }, - "dbgshim.dll": { - "fileVersion": "6.0.1022.47605" - }, - "hostfxr.dll": { - "fileVersion": "6.0.1022.47605" - }, - "hostpolicy.dll": { - "fileVersion": "6.0.1022.47605" - }, - "mscordaccore.dll": { - "fileVersion": "6.0.1022.47605" - }, - "mscordaccore_amd64_amd64_6.0.1022.47605.dll": { - "fileVersion": "6.0.1022.47605" - }, - "mscordbi.dll": { - "fileVersion": "6.0.1022.47605" - }, - "mscorrc.dll": { - "fileVersion": "6.0.1022.47605" - }, - "msquic.dll": { - "fileVersion": "1.7.0.0" - }, - "ucrtbase.dll": { - "fileVersion": "10.0.22000.194" - } - } - }, - "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/6.0.10": { - "runtime": { - "Accessibility.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47606" - }, - "DirectWriteForwarder.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "Microsoft.VisualBasic.Forms.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "Microsoft.VisualBasic.dll": { - "assemblyVersion": "10.1.0.0", - "fileVersion": "6.0.1022.47606" - }, - "Microsoft.Win32.Registry.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "PresentationCore.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework-SystemCore.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework-SystemData.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework-SystemDrawing.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework-SystemXml.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework-SystemXmlLinq.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework.Aero.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework.Aero2.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework.AeroLite.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework.Classic.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework.Luna.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework.Royale.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationFramework.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "PresentationUI.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "ReachFramework.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "System.CodeDom.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Design.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "System.Diagnostics.EventLog.Messages.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "0.0.0.0" - }, - "System.Diagnostics.EventLog.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Diagnostics.PerformanceCounter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.DirectoryServices.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Drawing.Design.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "System.Drawing.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "System.IO.Packaging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Printing.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "System.Resources.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.Pkcs.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Cryptography.Xml.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Threading.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Windows.Controls.Ribbon.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1022.47605" - }, - "System.Windows.Forms.Design.Editors.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "System.Windows.Forms.Design.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "System.Windows.Forms.Primitives.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "System.Windows.Forms.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47606" - }, - "System.Windows.Input.Manipulations.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "System.Windows.Presentation.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "System.Xaml.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "UIAutomationClient.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "UIAutomationClientSideProviders.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "UIAutomationProvider.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "UIAutomationTypes.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "WindowsBase.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - }, - "WindowsFormsIntegration.dll": { - "assemblyVersion": "6.0.2.0", - "fileVersion": "6.0.1022.47604" - } - }, - "native": { - "D3DCompiler_47_cor3.dll": { - "fileVersion": "10.0.22621.1" - }, - "PenImc_cor3.dll": { - "fileVersion": "6.0.1022.47604" - }, - "PresentationNative_cor3.dll": { - "fileVersion": "6.0.22.46403" - }, - "vcruntime140_cor3.dll": { - "fileVersion": "14.32.31332.0" - }, - "wpfgfx_cor3.dll": { - "fileVersion": "6.0.1022.47604" - } - } - } - } - }, - "libraries": { - "RCS_CalebFontenot/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.10": { - "type": "runtimepack", - "serviceable": false, - "sha512": "" - }, - "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/6.0.10": { - "type": "runtimepack", - "serviceable": false, - "sha512": "" - } - }, - "runtimes": { - "win-x64": [ - "win", - "any", - "base" - ], - "win-x64-aot": [ - "win-aot", - "win-x64", - "win", - "aot", - "any", - "base" - ], - "win10-x64": [ - "win10", - "win81-x64", - "win81", - "win8-x64", - "win8", - "win7-x64", - "win7", - "win-x64", - "win", - "any", - "base" - ], - "win10-x64-aot": [ - "win10-aot", - "win10-x64", - "win10", - "win81-x64-aot", - "win81-aot", - "win81-x64", - "win81", - "win8-x64-aot", - "win8-aot", - "win8-x64", - "win8", - "win7-x64-aot", - "win7-aot", - "win7-x64", - "win7", - "win-x64-aot", - "win-aot", - "win-x64", - "win", - "aot", - "any", - "base" - ], - "win7-x64": [ - "win7", - "win-x64", - "win", - "any", - "base" - ], - "win7-x64-aot": [ - "win7-aot", - "win7-x64", - "win7", - "win-x64-aot", - "win-aot", - "win-x64", - "win", - "aot", - "any", - "base" - ], - "win8-x64": [ - "win8", - "win7-x64", - "win7", - "win-x64", - "win", - "any", - "base" - ], - "win8-x64-aot": [ - "win8-aot", - "win8-x64", - "win8", - "win7-x64-aot", - "win7-aot", - "win7-x64", - "win7", - "win-x64-aot", - "win-aot", - "win-x64", - "win", - "aot", - "any", - "base" - ], - "win81-x64": [ - "win81", - "win8-x64", - "win8", - "win7-x64", - "win7", - "win-x64", - "win", - "any", - "base" - ], - "win81-x64-aot": [ - "win81-aot", - "win81-x64", - "win81", - "win8-x64-aot", - "win8-aot", - "win8-x64", - "win8", - "win7-x64-aot", - "win7-aot", - "win7-x64", - "win7", - "win-x64-aot", - "win-aot", - "win-x64", - "win", - "aot", - "any", - "base" - ] - } -} \ No newline at end of file diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/RCS_CalebFontenot.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/RCS_CalebFontenot.dll deleted file mode 100755 index c62019d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/RCS_CalebFontenot.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/RCS_CalebFontenot.exe b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/RCS_CalebFontenot.exe deleted file mode 100755 index 99182d9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/RCS_CalebFontenot.exe and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/RCS_CalebFontenot.pdb b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/RCS_CalebFontenot.pdb deleted file mode 100755 index 53d0c43..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/RCS_CalebFontenot.pdb and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/RCS_CalebFontenot.runtimeconfig.json b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/RCS_CalebFontenot.runtimeconfig.json deleted file mode 100755 index 6857619..0000000 --- a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/RCS_CalebFontenot.runtimeconfig.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net6.0", - "includedFrameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "6.0.0" - }, - { - "name": "Microsoft.WindowsDesktop.App", - "version": "6.0.0" - } - ], - "configProperties": { - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false - } - } -} \ No newline at end of file diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ReachFramework.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ReachFramework.dll deleted file mode 100755 index 278d0bd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ReachFramework.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.AppContext.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.AppContext.dll deleted file mode 100755 index b47c8dc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.AppContext.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Buffers.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Buffers.dll deleted file mode 100755 index 2215772..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Buffers.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.CodeDom.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.CodeDom.dll deleted file mode 100755 index 2413045..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.CodeDom.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Collections.Concurrent.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Collections.Concurrent.dll deleted file mode 100755 index 209e802..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Collections.Concurrent.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Collections.Immutable.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Collections.Immutable.dll deleted file mode 100755 index 10053c1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Collections.Immutable.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Collections.NonGeneric.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Collections.NonGeneric.dll deleted file mode 100755 index 96d32d8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Collections.Specialized.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Collections.Specialized.dll deleted file mode 100755 index 1c163cf..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Collections.Specialized.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Collections.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Collections.dll deleted file mode 100755 index d142052..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Collections.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.Annotations.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.Annotations.dll deleted file mode 100755 index 2a2da2f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.DataAnnotations.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.DataAnnotations.dll deleted file mode 100755 index 333aa3c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.DataAnnotations.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.EventBasedAsync.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.EventBasedAsync.dll deleted file mode 100755 index 3b62100..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.EventBasedAsync.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.Primitives.dll deleted file mode 100755 index a1da3ca..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.TypeConverter.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.TypeConverter.dll deleted file mode 100755 index 1c096d4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.dll deleted file mode 100755 index 2ed4803..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ComponentModel.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Configuration.ConfigurationManager.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Configuration.ConfigurationManager.dll deleted file mode 100755 index a805ce2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Configuration.ConfigurationManager.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Configuration.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Configuration.dll deleted file mode 100755 index f0371b0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Configuration.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Console.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Console.dll deleted file mode 100755 index 3d8e070..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Console.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Core.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Core.dll deleted file mode 100755 index 0ae6931..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Core.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Data.Common.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Data.Common.dll deleted file mode 100755 index 5404790..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Data.Common.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Data.DataSetExtensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Data.DataSetExtensions.dll deleted file mode 100755 index 53d5de0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Data.DataSetExtensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Data.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Data.dll deleted file mode 100755 index 29d641a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Data.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Design.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Design.dll deleted file mode 100755 index df49d70..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Design.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Contracts.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Contracts.dll deleted file mode 100755 index 018671b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Contracts.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Debug.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Debug.dll deleted file mode 100755 index d81d7e0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Debug.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.DiagnosticSource.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.DiagnosticSource.dll deleted file mode 100755 index f111c48..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.EventLog.Messages.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.EventLog.Messages.dll deleted file mode 100755 index 71daa43..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.EventLog.Messages.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.EventLog.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.EventLog.dll deleted file mode 100755 index cb2fa56..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.EventLog.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.FileVersionInfo.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.FileVersionInfo.dll deleted file mode 100755 index 8d28447..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.PerformanceCounter.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.PerformanceCounter.dll deleted file mode 100755 index 82ec202..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.PerformanceCounter.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Process.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Process.dll deleted file mode 100755 index 1148b5b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Process.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.StackTrace.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.StackTrace.dll deleted file mode 100755 index 3cd226a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.TextWriterTraceListener.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.TextWriterTraceListener.dll deleted file mode 100755 index 546d494..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.TextWriterTraceListener.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Tools.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Tools.dll deleted file mode 100755 index e02faae..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Tools.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.TraceSource.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.TraceSource.dll deleted file mode 100755 index 18b541a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Tracing.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Tracing.dll deleted file mode 100755 index c35836b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Diagnostics.Tracing.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.DirectoryServices.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.DirectoryServices.dll deleted file mode 100755 index dbd535d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.DirectoryServices.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Drawing.Common.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Drawing.Common.dll deleted file mode 100755 index 414e183..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Drawing.Common.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Drawing.Design.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Drawing.Design.dll deleted file mode 100755 index 0eff663..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Drawing.Design.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Drawing.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Drawing.Primitives.dll deleted file mode 100755 index 7dd8a85..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Drawing.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Drawing.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Drawing.dll deleted file mode 100755 index 04505fc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Drawing.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Dynamic.Runtime.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Dynamic.Runtime.dll deleted file mode 100755 index 73dffbc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Dynamic.Runtime.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Formats.Asn1.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Formats.Asn1.dll deleted file mode 100755 index 898e92d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Formats.Asn1.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Globalization.Calendars.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Globalization.Calendars.dll deleted file mode 100755 index 3eae604..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Globalization.Calendars.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Globalization.Extensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Globalization.Extensions.dll deleted file mode 100755 index d43e757..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Globalization.Extensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Globalization.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Globalization.dll deleted file mode 100755 index cf401d1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Globalization.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Compression.Brotli.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Compression.Brotli.dll deleted file mode 100755 index b8e4a34..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Compression.Brotli.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Compression.FileSystem.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Compression.FileSystem.dll deleted file mode 100755 index 4a27328..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Compression.FileSystem.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Compression.Native.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Compression.Native.dll deleted file mode 100755 index 002f3c0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Compression.Native.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Compression.ZipFile.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Compression.ZipFile.dll deleted file mode 100755 index 41dcc01..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Compression.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Compression.dll deleted file mode 100755 index a8eb38a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Compression.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.AccessControl.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.AccessControl.dll deleted file mode 100755 index c0b4ec6..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.DriveInfo.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.DriveInfo.dll deleted file mode 100755 index 279bf33..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.Primitives.dll deleted file mode 100755 index faa5270..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.Watcher.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.Watcher.dll deleted file mode 100755 index fea3399..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.Watcher.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.dll deleted file mode 100755 index 1e59e2d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.FileSystem.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.IsolatedStorage.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.IsolatedStorage.dll deleted file mode 100755 index c2ed7fa..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.IsolatedStorage.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.MemoryMappedFiles.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.MemoryMappedFiles.dll deleted file mode 100755 index f555a5f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.MemoryMappedFiles.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Packaging.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Packaging.dll deleted file mode 100755 index a418739..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Packaging.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Pipes.AccessControl.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Pipes.AccessControl.dll deleted file mode 100755 index 88f99c6..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Pipes.AccessControl.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Pipes.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Pipes.dll deleted file mode 100755 index 0c2b76b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.Pipes.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.UnmanagedMemoryStream.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.UnmanagedMemoryStream.dll deleted file mode 100755 index 58ec386..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.UnmanagedMemoryStream.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.dll deleted file mode 100755 index 4f7c34e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.IO.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Linq.Expressions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Linq.Expressions.dll deleted file mode 100755 index 1e862d4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Linq.Expressions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Linq.Parallel.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Linq.Parallel.dll deleted file mode 100755 index a8b7492..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Linq.Parallel.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Linq.Queryable.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Linq.Queryable.dll deleted file mode 100755 index dc8a96c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Linq.Queryable.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Linq.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Linq.dll deleted file mode 100755 index 3d6cbab..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Linq.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Memory.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Memory.dll deleted file mode 100755 index 51e769c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Memory.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Http.Json.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Http.Json.dll deleted file mode 100755 index a8ee64d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Http.Json.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Http.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Http.dll deleted file mode 100755 index 52dfb46..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Http.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.HttpListener.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.HttpListener.dll deleted file mode 100755 index c14dbfa..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.HttpListener.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Mail.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Mail.dll deleted file mode 100755 index 02ba440..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Mail.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.NameResolution.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.NameResolution.dll deleted file mode 100755 index 8ecd638..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.NameResolution.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.NetworkInformation.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.NetworkInformation.dll deleted file mode 100755 index b2170c7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.NetworkInformation.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Ping.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Ping.dll deleted file mode 100755 index 55d54a0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Ping.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Primitives.dll deleted file mode 100755 index 5715e73..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Quic.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Quic.dll deleted file mode 100755 index 0975d45..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Quic.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Requests.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Requests.dll deleted file mode 100755 index 043fa4b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Requests.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Security.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Security.dll deleted file mode 100755 index 90aa0ed..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Security.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.ServicePoint.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.ServicePoint.dll deleted file mode 100755 index 053d825..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.ServicePoint.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Sockets.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Sockets.dll deleted file mode 100755 index 87fa52e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.Sockets.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.WebClient.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.WebClient.dll deleted file mode 100755 index 8afa105..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.WebClient.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.WebHeaderCollection.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.WebHeaderCollection.dll deleted file mode 100755 index d42e5d6..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.WebHeaderCollection.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.WebProxy.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.WebProxy.dll deleted file mode 100755 index a0002ac..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.WebProxy.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.WebSockets.Client.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.WebSockets.Client.dll deleted file mode 100755 index 964d453..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.WebSockets.Client.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.WebSockets.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.WebSockets.dll deleted file mode 100755 index 96f5d02..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.WebSockets.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.dll deleted file mode 100755 index a81cd63..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Net.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Numerics.Vectors.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Numerics.Vectors.dll deleted file mode 100755 index 383ed2f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Numerics.Vectors.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Numerics.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Numerics.dll deleted file mode 100755 index d000244..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Numerics.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ObjectModel.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ObjectModel.dll deleted file mode 100755 index 245f241..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ObjectModel.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Printing.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Printing.dll deleted file mode 100755 index dca2c19..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Printing.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Private.CoreLib.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Private.CoreLib.dll deleted file mode 100755 index fa1b5f3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Private.CoreLib.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Private.DataContractSerialization.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Private.DataContractSerialization.dll deleted file mode 100755 index 3901d16..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Private.DataContractSerialization.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Private.Uri.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Private.Uri.dll deleted file mode 100755 index 8531110..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Private.Uri.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Private.Xml.Linq.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Private.Xml.Linq.dll deleted file mode 100755 index b95784b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Private.Xml.Linq.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Private.Xml.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Private.Xml.dll deleted file mode 100755 index ffc147a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Private.Xml.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.DispatchProxy.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.DispatchProxy.dll deleted file mode 100755 index 4b0ada9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.DispatchProxy.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.ILGeneration.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.ILGeneration.dll deleted file mode 100755 index ce2bd5a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.Lightweight.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.Lightweight.dll deleted file mode 100755 index 36a2498..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.dll deleted file mode 100755 index 9e0be34..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Emit.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Extensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Extensions.dll deleted file mode 100755 index ddbbf55..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Extensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Metadata.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Metadata.dll deleted file mode 100755 index 0bb20f4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Metadata.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Primitives.dll deleted file mode 100755 index f842610..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.TypeExtensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.TypeExtensions.dll deleted file mode 100755 index 1f0190a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.dll deleted file mode 100755 index 29f3cff..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Reflection.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Resources.Extensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Resources.Extensions.dll deleted file mode 100755 index cd911cf..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Resources.Extensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Resources.Reader.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Resources.Reader.dll deleted file mode 100755 index 5b06899..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Resources.Reader.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Resources.ResourceManager.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Resources.ResourceManager.dll deleted file mode 100755 index 107dda4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Resources.ResourceManager.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Resources.Writer.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Resources.Writer.dll deleted file mode 100755 index 285982b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Resources.Writer.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.CompilerServices.Unsafe.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100755 index 718b066..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.CompilerServices.VisualC.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.CompilerServices.VisualC.dll deleted file mode 100755 index e616b32..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.CompilerServices.VisualC.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Extensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Extensions.dll deleted file mode 100755 index c36aea1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Extensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Handles.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Handles.dll deleted file mode 100755 index 1bd0e2f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Handles.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100755 index 0e7ab52..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.InteropServices.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.InteropServices.dll deleted file mode 100755 index 1646425..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.InteropServices.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Intrinsics.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Intrinsics.dll deleted file mode 100755 index c01e95f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Intrinsics.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Loader.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Loader.dll deleted file mode 100755 index 22dc8e8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Loader.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Numerics.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Numerics.dll deleted file mode 100755 index 5fa9b7d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Numerics.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Formatters.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Formatters.dll deleted file mode 100755 index 7ed3339..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Formatters.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Json.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Json.dll deleted file mode 100755 index cde53e8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Json.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Primitives.dll deleted file mode 100755 index 2d8cc12..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Xml.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Xml.dll deleted file mode 100755 index c7d4e1c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.Xml.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.dll deleted file mode 100755 index 0b5d8cf..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.Serialization.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.dll deleted file mode 100755 index 230470d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Runtime.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.AccessControl.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.AccessControl.dll deleted file mode 100755 index 59cb739..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.AccessControl.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Claims.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Claims.dll deleted file mode 100755 index 5f9db36..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Claims.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Algorithms.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Algorithms.dll deleted file mode 100755 index 608ed98..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Cng.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Cng.dll deleted file mode 100755 index 8a3a27f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Csp.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Csp.dll deleted file mode 100755 index b4ecf7a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Csp.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Encoding.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Encoding.dll deleted file mode 100755 index a373c86..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.OpenSsl.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.OpenSsl.dll deleted file mode 100755 index b0fa045..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Pkcs.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Pkcs.dll deleted file mode 100755 index 27f58d4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Pkcs.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Primitives.dll deleted file mode 100755 index a72318f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.ProtectedData.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.ProtectedData.dll deleted file mode 100755 index 99e8dce..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.X509Certificates.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.X509Certificates.dll deleted file mode 100755 index 81a125b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Xml.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Xml.dll deleted file mode 100755 index bdc0acc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Cryptography.Xml.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Permissions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Permissions.dll deleted file mode 100755 index b93d1c9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Permissions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Principal.Windows.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Principal.Windows.dll deleted file mode 100755 index 4c56568..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Principal.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Principal.dll deleted file mode 100755 index 3c5919b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.Principal.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.SecureString.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.SecureString.dll deleted file mode 100755 index bea56f2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.SecureString.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.dll deleted file mode 100755 index 56ba54e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Security.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ServiceModel.Web.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ServiceModel.Web.dll deleted file mode 100755 index 99c4fe8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ServiceModel.Web.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ServiceProcess.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ServiceProcess.dll deleted file mode 100755 index 7445524..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ServiceProcess.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.CodePages.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.CodePages.dll deleted file mode 100755 index 15e74e6..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.Extensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.Extensions.dll deleted file mode 100755 index 517650e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.Extensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.dll deleted file mode 100755 index a774241..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.Encoding.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.Encodings.Web.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.Encodings.Web.dll deleted file mode 100755 index 2815298..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.Json.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.Json.dll deleted file mode 100755 index 88324b8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.Json.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.RegularExpressions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.RegularExpressions.dll deleted file mode 100755 index 401f384..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.AccessControl.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.AccessControl.dll deleted file mode 100755 index 02ddddb..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.AccessControl.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Channels.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Channels.dll deleted file mode 100755 index 7ebb8f0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Channels.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Overlapped.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Overlapped.dll deleted file mode 100755 index 97adb1b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Overlapped.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Dataflow.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Dataflow.dll deleted file mode 100755 index e6b6674..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Dataflow.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Extensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Extensions.dll deleted file mode 100755 index d85f796..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Parallel.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Parallel.dll deleted file mode 100755 index 5f3b917..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.Parallel.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.dll deleted file mode 100755 index cbc1bca..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Tasks.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Thread.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Thread.dll deleted file mode 100755 index 27c2eaf..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Thread.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.ThreadPool.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.ThreadPool.dll deleted file mode 100755 index abcfe9a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Timer.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Timer.dll deleted file mode 100755 index e11c2ed..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.Timer.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.dll deleted file mode 100755 index aeba96c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Threading.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Transactions.Local.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Transactions.Local.dll deleted file mode 100755 index 94064d5..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Transactions.Local.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Transactions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Transactions.dll deleted file mode 100755 index bf54131..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Transactions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ValueTuple.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ValueTuple.dll deleted file mode 100755 index 0eb2ea0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.ValueTuple.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Web.HttpUtility.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Web.HttpUtility.dll deleted file mode 100755 index b11d83a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Web.HttpUtility.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Web.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Web.dll deleted file mode 100755 index 8f3cdb7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Web.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Controls.Ribbon.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Controls.Ribbon.dll deleted file mode 100755 index 6e97200..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Controls.Ribbon.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Extensions.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Extensions.dll deleted file mode 100755 index 963ba98..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Extensions.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Design.Editors.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Design.Editors.dll deleted file mode 100755 index dbb4b4d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Design.Editors.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Design.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Design.dll deleted file mode 100755 index da55350..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Design.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Primitives.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Primitives.dll deleted file mode 100755 index f7e587c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.Primitives.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.dll deleted file mode 100755 index 144e914..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Forms.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Input.Manipulations.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Input.Manipulations.dll deleted file mode 100755 index 1db3f31..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Input.Manipulations.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Presentation.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Presentation.dll deleted file mode 100755 index dfc12f4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.Presentation.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.dll deleted file mode 100755 index c53d404..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Windows.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xaml.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xaml.dll deleted file mode 100755 index 6be69de..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xaml.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.Linq.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.Linq.dll deleted file mode 100755 index b7740be..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.Linq.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.ReaderWriter.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.ReaderWriter.dll deleted file mode 100755 index 7e9bc5a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.Serialization.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.Serialization.dll deleted file mode 100755 index cf53227..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.Serialization.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.XDocument.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.XDocument.dll deleted file mode 100755 index 8125452..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.XDocument.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.XPath.XDocument.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.XPath.XDocument.dll deleted file mode 100755 index 08d14cb..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.XPath.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.XPath.dll deleted file mode 100755 index 14e9027..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.XPath.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.XmlDocument.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.XmlDocument.dll deleted file mode 100755 index 31f8d1e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.XmlSerializer.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.XmlSerializer.dll deleted file mode 100755 index dfa29ba..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.dll deleted file mode 100755 index d194078..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.Xml.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.dll deleted file mode 100755 index 8b145d3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/System.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/UIAutomationClient.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/UIAutomationClient.dll deleted file mode 100755 index 4f670e5..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/UIAutomationClient.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/UIAutomationClientSideProviders.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/UIAutomationClientSideProviders.dll deleted file mode 100755 index e7950bd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/UIAutomationClientSideProviders.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/UIAutomationProvider.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/UIAutomationProvider.dll deleted file mode 100755 index 0a14a62..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/UIAutomationProvider.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/UIAutomationTypes.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/UIAutomationTypes.dll deleted file mode 100755 index 791ba93..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/UIAutomationTypes.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/WindowsBase.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/WindowsBase.dll deleted file mode 100755 index 9c9c1b9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/WindowsBase.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/WindowsFormsIntegration.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/WindowsFormsIntegration.dll deleted file mode 100755 index 9c100f9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/WindowsFormsIntegration.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-console-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-console-l1-1-0.dll deleted file mode 100755 index 726b975..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-console-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-console-l1-2-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-console-l1-2-0.dll deleted file mode 100755 index b9d1ed4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-console-l1-2-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-datetime-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-datetime-l1-1-0.dll deleted file mode 100755 index f2ecfa7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-datetime-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-debug-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-debug-l1-1-0.dll deleted file mode 100755 index 7bd075b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-debug-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll deleted file mode 100755 index 3bafba9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-fibers-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-fibers-l1-1-0.dll deleted file mode 100755 index 651ffe1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-fibers-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l1-1-0.dll deleted file mode 100755 index 12bf0b6..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l1-2-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l1-2-0.dll deleted file mode 100755 index da64db3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l1-2-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l2-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l2-1-0.dll deleted file mode 100755 index 9246b98..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-file-l2-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-handle-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-handle-l1-1-0.dll deleted file mode 100755 index c96e31d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-handle-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-heap-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-heap-l1-1-0.dll deleted file mode 100755 index baa932f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-heap-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-interlocked-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-interlocked-l1-1-0.dll deleted file mode 100755 index 7aa0639..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-interlocked-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll deleted file mode 100755 index ddd5e27..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-localization-l1-2-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-localization-l1-2-0.dll deleted file mode 100755 index 7b90b7c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-localization-l1-2-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-memory-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-memory-l1-1-0.dll deleted file mode 100755 index 63e54f3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-memory-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll deleted file mode 100755 index 37e956e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll deleted file mode 100755 index a2f3605..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-0.dll deleted file mode 100755 index f4d3a03..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-1.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-1.dll deleted file mode 100755 index 7bc40e0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-1.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-profile-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-profile-l1-1-0.dll deleted file mode 100755 index da2b687..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-profile-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll deleted file mode 100755 index ae6dce5..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-string-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-string-l1-1-0.dll deleted file mode 100755 index 32b52be..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-string-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-synch-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-synch-l1-1-0.dll deleted file mode 100755 index b88f76a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-synch-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-synch-l1-2-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-synch-l1-2-0.dll deleted file mode 100755 index a17135a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-synch-l1-2-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll deleted file mode 100755 index 527d1a1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-timezone-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-timezone-l1-1-0.dll deleted file mode 100755 index bab2d02..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-timezone-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-util-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-util-l1-1-0.dll deleted file mode 100755 index 080a9c9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-core-util-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-conio-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-conio-l1-1-0.dll deleted file mode 100755 index 2355a62..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-conio-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-convert-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-convert-l1-1-0.dll deleted file mode 100755 index ddd2b4c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-convert-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-environment-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-environment-l1-1-0.dll deleted file mode 100755 index e2fe9ef..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-environment-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll deleted file mode 100755 index 97ea465..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-heap-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-heap-l1-1-0.dll deleted file mode 100755 index 4e3af05..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-heap-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-locale-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-locale-l1-1-0.dll deleted file mode 100755 index 5fcd98b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-locale-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-math-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-math-l1-1-0.dll deleted file mode 100755 index c3f2800..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-math-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll deleted file mode 100755 index e86ce81..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-private-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-private-l1-1-0.dll deleted file mode 100755 index 62c45dd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-private-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-process-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-process-l1-1-0.dll deleted file mode 100755 index bc346dc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-process-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-runtime-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-runtime-l1-1-0.dll deleted file mode 100755 index d0a43f8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-runtime-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-stdio-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-stdio-l1-1-0.dll deleted file mode 100755 index 59e68c0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-stdio-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-string-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-string-l1-1-0.dll deleted file mode 100755 index 08015e2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-string-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-time-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-time-l1-1-0.dll deleted file mode 100755 index 6e3ba53..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-time-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-utility-l1-1-0.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-utility-l1-1-0.dll deleted file mode 100755 index eaa7204..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/api-ms-win-crt-utility-l1-1-0.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/clretwrc.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/clretwrc.dll deleted file mode 100755 index 9ef9034..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/clretwrc.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/clrjit.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/clrjit.dll deleted file mode 100755 index 5dc041b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/clrjit.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/coreclr.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/coreclr.dll deleted file mode 100755 index ec3b5f7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/coreclr.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/createdump.exe b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/createdump.exe deleted file mode 100755 index 050c1c4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/createdump.exe and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index ee4eeb2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/PresentationCore.resources.dll deleted file mode 100755 index f02f52a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/PresentationFramework.resources.dll deleted file mode 100755 index df1f315..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/PresentationUI.resources.dll deleted file mode 100755 index 3ab247e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/ReachFramework.resources.dll deleted file mode 100755 index 664b297..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index 8196ede..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index dc15ab7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 9eaa7f3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.resources.dll deleted file mode 100755 index 4dd1fd0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index df3012e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Xaml.resources.dll deleted file mode 100755 index 38e6cb7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/UIAutomationClient.resources.dll deleted file mode 100755 index 0e763b0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index c4adc69..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/UIAutomationProvider.resources.dll deleted file mode 100755 index ec39001..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/UIAutomationTypes.resources.dll deleted file mode 100755 index 51ee3aa..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/WindowsBase.resources.dll deleted file mode 100755 index 6dbb7aa..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/WindowsFormsIntegration.resources.dll deleted file mode 100755 index e1de19f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/cs/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/dbgshim.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/dbgshim.dll deleted file mode 100755 index 9de454c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/dbgshim.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index 1d8f4e9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/PresentationCore.resources.dll deleted file mode 100755 index e572131..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/PresentationFramework.resources.dll deleted file mode 100755 index d16c9de..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/PresentationUI.resources.dll deleted file mode 100755 index d9b9902..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/ReachFramework.resources.dll deleted file mode 100755 index 99b5e43..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index dab2925..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 8227e3b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 1300fad..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.resources.dll deleted file mode 100755 index e4a23a3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index 8b4707e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Xaml.resources.dll deleted file mode 100755 index 665b215..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/UIAutomationClient.resources.dll deleted file mode 100755 index fcc77e0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index ee054aa..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/UIAutomationProvider.resources.dll deleted file mode 100755 index c073453..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/UIAutomationTypes.resources.dll deleted file mode 100755 index 57341e3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/WindowsBase.resources.dll deleted file mode 100755 index 4687ecc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 2566962..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/de/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index 5ca9c80..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/PresentationCore.resources.dll deleted file mode 100755 index 96f446d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/PresentationFramework.resources.dll deleted file mode 100755 index 574f9d1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/PresentationUI.resources.dll deleted file mode 100755 index c10053d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/ReachFramework.resources.dll deleted file mode 100755 index 09dba4c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index 7545c29..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 0f66d69..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 6bcc241..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.resources.dll deleted file mode 100755 index 1940eb1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index d75a9d5..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Xaml.resources.dll deleted file mode 100755 index 11ab255..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/UIAutomationClient.resources.dll deleted file mode 100755 index 665b748..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index 792efe1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/UIAutomationProvider.resources.dll deleted file mode 100755 index 67d87a7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/UIAutomationTypes.resources.dll deleted file mode 100755 index 9615372..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/WindowsBase.resources.dll deleted file mode 100755 index d330660..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/WindowsFormsIntegration.resources.dll deleted file mode 100755 index d557739..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/es/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index b6b870b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/PresentationCore.resources.dll deleted file mode 100755 index 79fdfec..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/PresentationFramework.resources.dll deleted file mode 100755 index 5d80d69..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/PresentationUI.resources.dll deleted file mode 100755 index ab51556..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/ReachFramework.resources.dll deleted file mode 100755 index 2dcc192..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index c989ee2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index fb73ccf..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index d99f1f2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.resources.dll deleted file mode 100755 index 06f0303..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index d3ad48d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Xaml.resources.dll deleted file mode 100755 index 4d7a564..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/UIAutomationClient.resources.dll deleted file mode 100755 index 4278e84..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index adb9ade..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/UIAutomationProvider.resources.dll deleted file mode 100755 index efbedca..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/UIAutomationTypes.resources.dll deleted file mode 100755 index d05eaa6..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/WindowsBase.resources.dll deleted file mode 100755 index 08c9a62..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 612bb19..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/fr/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/hostfxr.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/hostfxr.dll deleted file mode 100755 index 57c6380..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/hostfxr.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/hostpolicy.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/hostpolicy.dll deleted file mode 100755 index 0019df3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/hostpolicy.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index 0193faa..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/PresentationCore.resources.dll deleted file mode 100755 index 95088f0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/PresentationFramework.resources.dll deleted file mode 100755 index e0766da..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/PresentationUI.resources.dll deleted file mode 100755 index 7239a5b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/ReachFramework.resources.dll deleted file mode 100755 index 0570a2f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index c5d779f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index dddcf72..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 1bfc69e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.resources.dll deleted file mode 100755 index 4125cb4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index 562ec77..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Xaml.resources.dll deleted file mode 100755 index d8bb7ea..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/UIAutomationClient.resources.dll deleted file mode 100755 index 2bab78c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index a53cf91..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/UIAutomationProvider.resources.dll deleted file mode 100755 index 890c590..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/UIAutomationTypes.resources.dll deleted file mode 100755 index 5db50bc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/WindowsBase.resources.dll deleted file mode 100755 index d454ade..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/WindowsFormsIntegration.resources.dll deleted file mode 100755 index a9cdb55..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/it/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index eece68e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/PresentationCore.resources.dll deleted file mode 100755 index eb1173a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/PresentationFramework.resources.dll deleted file mode 100755 index 3f8d911..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/PresentationUI.resources.dll deleted file mode 100755 index 92e6a27..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/ReachFramework.resources.dll deleted file mode 100755 index 374b788..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index 95abc2e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index d840926..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 97b6881..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.resources.dll deleted file mode 100755 index 6533d46..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index 6211052..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Xaml.resources.dll deleted file mode 100755 index 22e91cc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/UIAutomationClient.resources.dll deleted file mode 100755 index 45fdeee..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index 3923978..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/UIAutomationProvider.resources.dll deleted file mode 100755 index 05696a2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/UIAutomationTypes.resources.dll deleted file mode 100755 index 622a37a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/WindowsBase.resources.dll deleted file mode 100755 index 6f8bd0d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 62015f8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ja/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index 8971bce..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/PresentationCore.resources.dll deleted file mode 100755 index 4a7c889..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/PresentationFramework.resources.dll deleted file mode 100755 index 1d06df1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/PresentationUI.resources.dll deleted file mode 100755 index 3727ad5..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/ReachFramework.resources.dll deleted file mode 100755 index d07d8b0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index 43ce67c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 9e25364..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 889aa63..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.resources.dll deleted file mode 100755 index 3311a49..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index e9f2e9a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Xaml.resources.dll deleted file mode 100755 index 6405b22..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/UIAutomationClient.resources.dll deleted file mode 100755 index 49f5ef1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index b857027..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/UIAutomationProvider.resources.dll deleted file mode 100755 index d36f099..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/UIAutomationTypes.resources.dll deleted file mode 100755 index 3950b59..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/WindowsBase.resources.dll deleted file mode 100755 index 0a49c8e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 75a66cf..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ko/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/mscordaccore.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/mscordaccore.dll deleted file mode 100755 index ace6596..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/mscordaccore.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/mscordaccore_amd64_amd64_6.0.1022.47605.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/mscordaccore_amd64_amd64_6.0.1022.47605.dll deleted file mode 100755 index ace6596..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/mscordaccore_amd64_amd64_6.0.1022.47605.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/mscordbi.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/mscordbi.dll deleted file mode 100755 index 5efccb9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/mscordbi.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/mscorlib.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/mscorlib.dll deleted file mode 100755 index dc85f68..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/mscorlib.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/mscorrc.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/mscorrc.dll deleted file mode 100755 index a8196b2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/mscorrc.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/msquic.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/msquic.dll deleted file mode 100755 index e5565ec..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/msquic.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/netstandard.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/netstandard.dll deleted file mode 100755 index a593a2a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/netstandard.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index 71f62b1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/PresentationCore.resources.dll deleted file mode 100755 index aa5265f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/PresentationFramework.resources.dll deleted file mode 100755 index 629d69e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/PresentationUI.resources.dll deleted file mode 100755 index 33c2003..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/ReachFramework.resources.dll deleted file mode 100755 index bb111c4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index e150e67..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 6de46ae..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 10179f0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.resources.dll deleted file mode 100755 index 623bbc0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index c93a586..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Xaml.resources.dll deleted file mode 100755 index f904e72..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/UIAutomationClient.resources.dll deleted file mode 100755 index 25578fc..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index 79e505f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/UIAutomationProvider.resources.dll deleted file mode 100755 index e3e951a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/UIAutomationTypes.resources.dll deleted file mode 100755 index faa5f75..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/WindowsBase.resources.dll deleted file mode 100755 index cbe39f8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/WindowsFormsIntegration.resources.dll deleted file mode 100755 index c2dd8eb..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pl/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index c9a36e9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationCore.resources.dll deleted file mode 100755 index d463ebe..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationFramework.resources.dll deleted file mode 100755 index cd6aec3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationUI.resources.dll deleted file mode 100755 index c3385de..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/ReachFramework.resources.dll deleted file mode 100755 index 4dfa371..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index 83ae86a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 2f7be50..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 7882e0b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.resources.dll deleted file mode 100755 index 2305748..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index 595b18e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Xaml.resources.dll deleted file mode 100755 index ff7856a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationClient.resources.dll deleted file mode 100755 index f3ae228..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index 5106217..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationProvider.resources.dll deleted file mode 100755 index 03b62f5..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationTypes.resources.dll deleted file mode 100755 index 87d781b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/WindowsBase.resources.dll deleted file mode 100755 index 5ddf7bd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 2644f14..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/pt-BR/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index 075f372..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/PresentationCore.resources.dll deleted file mode 100755 index 9664b3b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/PresentationFramework.resources.dll deleted file mode 100755 index ee8f16a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/PresentationUI.resources.dll deleted file mode 100755 index 98ee756..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/ReachFramework.resources.dll deleted file mode 100755 index acba59b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index a941017..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index d3d0b50..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 631ddb7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.resources.dll deleted file mode 100755 index dabc0c7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index ca3e492..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Xaml.resources.dll deleted file mode 100755 index 7dcfba9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/UIAutomationClient.resources.dll deleted file mode 100755 index c957ab9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index a4650c2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/UIAutomationProvider.resources.dll deleted file mode 100755 index a00798e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/UIAutomationTypes.resources.dll deleted file mode 100755 index 6b53c7f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/WindowsBase.resources.dll deleted file mode 100755 index 19dbfb3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 115788d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ru/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index bfbfb6c..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/PresentationCore.resources.dll deleted file mode 100755 index 2a8a5a4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/PresentationFramework.resources.dll deleted file mode 100755 index 2b0743a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/PresentationUI.resources.dll deleted file mode 100755 index b97d8c5..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/ReachFramework.resources.dll deleted file mode 100755 index 2b68102..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index 14ca0bd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 175d43e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index d8c011d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.resources.dll deleted file mode 100755 index ee32a2b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index 774c572..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Xaml.resources.dll deleted file mode 100755 index bf099b9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/UIAutomationClient.resources.dll deleted file mode 100755 index 7ab7277..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index 077168d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/UIAutomationProvider.resources.dll deleted file mode 100755 index 2495535..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/UIAutomationTypes.resources.dll deleted file mode 100755 index d54cb14..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/WindowsBase.resources.dll deleted file mode 100755 index 49c4d0f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 096f0c0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/tr/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ucrtbase.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ucrtbase.dll deleted file mode 100755 index 0b41078..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/ucrtbase.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/vcruntime140_cor3.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/vcruntime140_cor3.dll deleted file mode 100755 index 9cda5ce..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/vcruntime140_cor3.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/wpfgfx_cor3.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/wpfgfx_cor3.dll deleted file mode 100755 index 2e7588d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/wpfgfx_cor3.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index b4e855b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationCore.resources.dll deleted file mode 100755 index ddd44d4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationFramework.resources.dll deleted file mode 100755 index 9dc6d57..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationUI.resources.dll deleted file mode 100755 index 795951b..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/ReachFramework.resources.dll deleted file mode 100755 index b73c345..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index a8ac9f2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 35c0242..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index 2aa0c3e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.resources.dll deleted file mode 100755 index 50356c1..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index 2065fbd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Xaml.resources.dll deleted file mode 100755 index 11a1a93..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationClient.resources.dll deleted file mode 100755 index eff08f2..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index 66730f9..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationProvider.resources.dll deleted file mode 100755 index 486545e..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationTypes.resources.dll deleted file mode 100755 index 29956a8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/WindowsBase.resources.dll deleted file mode 100755 index 019d909..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/WindowsFormsIntegration.resources.dll deleted file mode 100755 index be9adb8..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hans/WindowsFormsIntegration.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll deleted file mode 100755 index e854558..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationCore.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationCore.resources.dll deleted file mode 100755 index 7ac2a1f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationCore.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationFramework.resources.dll deleted file mode 100755 index b09134a..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationUI.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationUI.resources.dll deleted file mode 100755 index 42a8f05..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/PresentationUI.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/ReachFramework.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/ReachFramework.resources.dll deleted file mode 100755 index 0572c3f..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/ReachFramework.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll deleted file mode 100755 index 8fb64f4..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Design.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Design.resources.dll deleted file mode 100755 index 0cd1a1d..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Design.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Primitives.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Primitives.resources.dll deleted file mode 100755 index e362660..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Primitives.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.resources.dll deleted file mode 100755 index 315b5ef..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll deleted file mode 100755 index fab0bb0..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Xaml.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Xaml.resources.dll deleted file mode 100755 index 08790e7..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/System.Xaml.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationClient.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationClient.resources.dll deleted file mode 100755 index daca843..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationClient.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll deleted file mode 100755 index b493abd..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationProvider.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationProvider.resources.dll deleted file mode 100755 index 7130d63..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationProvider.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationTypes.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationTypes.resources.dll deleted file mode 100755 index 0d8b864..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/UIAutomationTypes.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/WindowsBase.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/WindowsBase.resources.dll deleted file mode 100755 index 68c27db..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/WindowsBase.resources.dll and /dev/null differ diff --git a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/WindowsFormsIntegration.resources.dll b/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/WindowsFormsIntegration.resources.dll deleted file mode 100755 index 140bad3..0000000 Binary files a/MP4/RPS_CalebFontenot/RCS_CalebFontenot/bin/Release/net6.0-windows/win-x64/zh-Hant/WindowsFormsIntegration.resources.dll and /dev/null differ