├── .gitattributes ├── .gitignore ├── .vs ├── Mnemonics │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ ├── FileContentIndex │ │ ├── 015dd9be-2103-434f-af62-7dfc1a4c84ef.vsidx │ │ ├── 2a098cda-0232-4e0f-9d2a-0547a9045326.vsidx │ │ └── read.lock │ ├── project-colors.json │ └── v17 │ │ ├── .futdcache.v1 │ │ └── .suo ├── ProjectEvaluation │ ├── mnemonics.metadata.v2 │ └── mnemonics.projects.v2 ├── ProjectSettings.json ├── VSWorkspaceState.json └── slnx.sqlite ├── Cryptography.ECDSA ├── .gitignore ├── .travis.yml ├── Automation │ └── delete_obj_bin.bat ├── LICENSE ├── README.md └── Sources │ ├── Cryptography.ECDSA.Tests │ ├── Base58Test.cs │ ├── BaseTest.cs │ ├── Cryptography.ECDSA.Tests.csproj │ ├── HexTest.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Ripemd160ManagerTest.cs │ ├── Secp256k1ManagerTest.cs │ └── packages.config │ └── Cryptography.ECDSA │ ├── Base58.cs │ ├── Callback.cs │ ├── Cryptography.ECDSA.csproj │ ├── Hex.cs │ ├── Internal │ ├── Secp256K1 │ │ ├── Const.cs │ │ ├── Context.cs │ │ ├── ContextStruct.cs │ │ ├── ECKey.cs │ │ ├── ECMult.cs │ │ ├── ECMultGen.cs │ │ ├── EcMultGenContext.cs │ │ ├── EcdsaRecoverableSignature.cs │ │ ├── EcmultContext.cs │ │ ├── Fe.cs │ │ ├── FeStorage.cs │ │ ├── Field.cs │ │ ├── Field_10x26.cs │ │ ├── Ge.cs │ │ ├── GeJ.cs │ │ ├── GeStorage.cs │ │ ├── Group.cs │ │ ├── NonceFunction.cs │ │ ├── Options.cs │ │ ├── PubKey.cs │ │ ├── Scalar.cs │ │ ├── Secp256K1T.cs │ │ └── Util.cs │ └── Sha256 │ │ ├── Hash.cs │ │ ├── HmacSha256T.cs │ │ ├── Rfc6979HmacSha256T.cs │ │ └── Sha256T.cs │ ├── Ripemd160Manager.cs │ ├── Secp256k1Manager.cs │ └── Sha256Manager.cs ├── ERROR_OSX.md ├── GeneratorMnemonics ├── .vs │ ├── Mnemonics │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ ├── FileContentIndex │ │ │ ├── 2e1dd2fc-2f9d-4f15-97e2-db64e7e628a6.vsidx │ │ │ ├── 98ca2f32-98e5-4ff6-a4cf-a38e233ddead.vsidx │ │ │ ├── d95d6b4c-4cfe-4d89-bb5d-57882b3e0b2c.vsidx │ │ │ └── read.lock │ │ ├── project-colors.json │ │ └── v17 │ │ │ ├── .futdcache.v1 │ │ │ └── .suo │ └── ProjectEvaluation │ │ ├── mnemonics.metadata.v2 │ │ └── mnemonics.projects.v2 ├── Common.cs ├── Generator_Mnemonics.csproj ├── Generator_Mnemonics.csproj.user ├── Mnemonics.sln ├── Program.cs ├── Properties │ └── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ └── FolderProfile.pubxml.user ├── Words │ ├── chinese_simplified.txt │ ├── chinese_traditional.txt │ ├── english.txt │ ├── french.txt │ ├── italian.txt │ ├── japanese.txt │ ├── korean.txt │ └── spanish.txt ├── bin │ └── Release │ │ └── net6.0 │ │ └── publish │ │ ├── android-arm64 │ │ ├── C#-Mnemonic │ │ ├── C#-Mnemonic.deps.json │ │ ├── C#-Mnemonic.dll │ │ ├── C#-Mnemonic.runtimeconfig.json │ │ ├── Cryptography.ECDSA.dll │ │ ├── Epoche.Keccak256.dll │ │ ├── Microsoft.CSharp.dll │ │ ├── Microsoft.VisualBasic.Core.dll │ │ ├── Microsoft.VisualBasic.dll │ │ ├── Microsoft.Win32.Primitives.dll │ │ ├── Microsoft.Win32.Registry.dll │ │ ├── System.AppContext.dll │ │ ├── System.Buffers.dll │ │ ├── System.Collections.Concurrent.dll │ │ ├── System.Collections.Immutable.dll │ │ ├── System.Collections.NonGeneric.dll │ │ ├── System.Collections.Specialized.dll │ │ ├── System.Collections.dll │ │ ├── System.ComponentModel.Annotations.dll │ │ ├── System.ComponentModel.DataAnnotations.dll │ │ ├── System.ComponentModel.EventBasedAsync.dll │ │ ├── System.ComponentModel.Primitives.dll │ │ ├── System.ComponentModel.TypeConverter.dll │ │ ├── System.ComponentModel.dll │ │ ├── System.Configuration.dll │ │ ├── System.Console.dll │ │ ├── System.Core.dll │ │ ├── System.Data.Common.dll │ │ ├── System.Data.DataSetExtensions.dll │ │ ├── System.Data.dll │ │ ├── System.Diagnostics.Contracts.dll │ │ ├── System.Diagnostics.Debug.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ ├── System.Diagnostics.Process.dll │ │ ├── System.Diagnostics.StackTrace.dll │ │ ├── System.Diagnostics.TextWriterTraceListener.dll │ │ ├── System.Diagnostics.Tools.dll │ │ ├── System.Diagnostics.TraceSource.dll │ │ ├── System.Diagnostics.Tracing.dll │ │ ├── System.Drawing.Primitives.dll │ │ ├── System.Drawing.dll │ │ ├── System.Dynamic.Runtime.dll │ │ ├── System.Formats.Asn1.dll │ │ ├── System.Globalization.Calendars.dll │ │ ├── System.Globalization.Extensions.dll │ │ ├── System.Globalization.dll │ │ ├── System.IO.Compression.Brotli.dll │ │ ├── System.IO.Compression.FileSystem.dll │ │ ├── System.IO.Compression.ZipFile.dll │ │ ├── System.IO.Compression.dll │ │ ├── System.IO.FileSystem.AccessControl.dll │ │ ├── System.IO.FileSystem.DriveInfo.dll │ │ ├── System.IO.FileSystem.Primitives.dll │ │ ├── System.IO.FileSystem.Watcher.dll │ │ ├── System.IO.FileSystem.dll │ │ ├── System.IO.IsolatedStorage.dll │ │ ├── System.IO.MemoryMappedFiles.dll │ │ ├── System.IO.Pipes.AccessControl.dll │ │ ├── System.IO.Pipes.dll │ │ ├── System.IO.UnmanagedMemoryStream.dll │ │ ├── System.IO.dll │ │ ├── System.Linq.Expressions.dll │ │ ├── System.Linq.Parallel.dll │ │ ├── System.Linq.Queryable.dll │ │ ├── System.Linq.dll │ │ ├── System.Memory.dll │ │ ├── System.Net.Http.Json.dll │ │ ├── System.Net.Http.dll │ │ ├── System.Net.HttpListener.dll │ │ ├── System.Net.Mail.dll │ │ ├── System.Net.NameResolution.dll │ │ ├── System.Net.NetworkInformation.dll │ │ ├── System.Net.Ping.dll │ │ ├── System.Net.Primitives.dll │ │ ├── System.Net.Quic.dll │ │ ├── System.Net.Requests.dll │ │ ├── System.Net.Security.dll │ │ ├── System.Net.ServicePoint.dll │ │ ├── System.Net.Sockets.dll │ │ ├── System.Net.WebClient.dll │ │ ├── System.Net.WebHeaderCollection.dll │ │ ├── System.Net.WebProxy.dll │ │ ├── System.Net.WebSockets.Client.dll │ │ ├── System.Net.WebSockets.dll │ │ ├── System.Net.dll │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.Numerics.dll │ │ ├── System.ObjectModel.dll │ │ ├── System.Private.CoreLib.dll │ │ ├── System.Private.DataContractSerialization.dll │ │ ├── System.Private.Uri.dll │ │ ├── System.Private.Xml.Linq.dll │ │ ├── System.Private.Xml.dll │ │ ├── System.Reflection.DispatchProxy.dll │ │ ├── System.Reflection.Emit.ILGeneration.dll │ │ ├── System.Reflection.Emit.Lightweight.dll │ │ ├── System.Reflection.Emit.dll │ │ ├── System.Reflection.Extensions.dll │ │ ├── System.Reflection.Metadata.dll │ │ ├── System.Reflection.Primitives.dll │ │ ├── System.Reflection.TypeExtensions.dll │ │ ├── System.Reflection.dll │ │ ├── System.Resources.Reader.dll │ │ ├── System.Resources.ResourceManager.dll │ │ ├── System.Resources.Writer.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.CompilerServices.VisualC.dll │ │ ├── System.Runtime.Extensions.dll │ │ ├── System.Runtime.Handles.dll │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ ├── System.Runtime.InteropServices.dll │ │ ├── System.Runtime.Intrinsics.dll │ │ ├── System.Runtime.Loader.dll │ │ ├── System.Runtime.Numerics.dll │ │ ├── System.Runtime.Serialization.Formatters.dll │ │ ├── System.Runtime.Serialization.Json.dll │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ ├── System.Runtime.Serialization.Xml.dll │ │ ├── System.Runtime.Serialization.dll │ │ ├── System.Runtime.dll │ │ ├── System.Security.AccessControl.dll │ │ ├── System.Security.Claims.dll │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ ├── System.Security.Cryptography.Cng.dll │ │ ├── System.Security.Cryptography.Csp.dll │ │ ├── System.Security.Cryptography.Encoding.dll │ │ ├── System.Security.Cryptography.OpenSsl.dll │ │ ├── System.Security.Cryptography.Primitives.dll │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Security.Principal.Windows.dll │ │ ├── System.Security.Principal.dll │ │ ├── System.Security.SecureString.dll │ │ ├── System.Security.dll │ │ ├── System.ServiceModel.Web.dll │ │ ├── System.ServiceProcess.dll │ │ ├── System.Text.Encoding.CodePages.dll │ │ ├── System.Text.Encoding.Extensions.dll │ │ ├── System.Text.Encoding.dll │ │ ├── System.Text.Encodings.Web.dll │ │ ├── System.Text.Json.dll │ │ ├── System.Text.RegularExpressions.dll │ │ ├── System.Threading.Channels.dll │ │ ├── System.Threading.Overlapped.dll │ │ ├── System.Threading.Tasks.Dataflow.dll │ │ ├── System.Threading.Tasks.Extensions.dll │ │ ├── System.Threading.Tasks.Parallel.dll │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Thread.dll │ │ ├── System.Threading.ThreadPool.dll │ │ ├── System.Threading.Timer.dll │ │ ├── System.Threading.dll │ │ ├── System.Transactions.Local.dll │ │ ├── System.Transactions.dll │ │ ├── System.ValueTuple.dll │ │ ├── System.Web.HttpUtility.dll │ │ ├── System.Web.dll │ │ ├── System.Windows.dll │ │ ├── System.Xml.Linq.dll │ │ ├── System.Xml.ReaderWriter.dll │ │ ├── System.Xml.Serialization.dll │ │ ├── System.Xml.XDocument.dll │ │ ├── System.Xml.XPath.XDocument.dll │ │ ├── System.Xml.XPath.dll │ │ ├── System.Xml.XmlDocument.dll │ │ ├── System.Xml.XmlSerializer.dll │ │ ├── System.Xml.dll │ │ ├── System.dll │ │ ├── WindowsBase.dll │ │ ├── createdump │ │ ├── libSystem.Globalization.Native.so │ │ ├── libSystem.IO.Compression.Native.so │ │ ├── libSystem.Native.so │ │ ├── libSystem.Net.Security.Native.so │ │ ├── libSystem.Security.Cryptography.Native.OpenSsl.so │ │ ├── libclrjit.so │ │ ├── libcoreclr.so │ │ ├── libcoreclrtraceptprovider.so │ │ ├── libdbgshim.so │ │ ├── libhostfxr.so │ │ ├── libhostpolicy.so │ │ ├── libmscordaccore.so │ │ ├── libmscordbi.so │ │ ├── mscorlib.dll │ │ ├── netstandard.dll │ │ └── publish │ │ │ └── C#-Mnemonic │ │ ├── linux-arm │ │ └── C#-Mnemonic │ │ ├── linux-arm64 │ │ └── C#-Mnemonic │ │ ├── linux-x64 │ │ └── C#-Mnemonic │ │ ├── osx-arm64 │ │ └── C#-Mnemonic │ │ ├── osx-x64 │ │ └── C#-Mnemonic │ │ ├── win-arm │ │ └── C#-Mnemonic.exe │ │ ├── win-arm64 │ │ └── C#-Mnemonic.exe │ │ ├── win-x64 │ │ └── C#-Mnemonic.exe │ │ └── win-x86 │ │ └── C#-Mnemonic.exe └── icon.ico ├── LICENSE ├── Links.txt ├── Mnemonics.sln ├── README.md └── icon.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/Mnemonics/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/.vs/Mnemonics/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/Mnemonics/FileContentIndex/015dd9be-2103-434f-af62-7dfc1a4c84ef.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/.vs/Mnemonics/FileContentIndex/015dd9be-2103-434f-af62-7dfc1a4c84ef.vsidx -------------------------------------------------------------------------------- /.vs/Mnemonics/FileContentIndex/2a098cda-0232-4e0f-9d2a-0547a9045326.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/.vs/Mnemonics/FileContentIndex/2a098cda-0232-4e0f-9d2a-0547a9045326.vsidx -------------------------------------------------------------------------------- /.vs/Mnemonics/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/Mnemonics/project-colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/.vs/Mnemonics/project-colors.json -------------------------------------------------------------------------------- /.vs/Mnemonics/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/.vs/Mnemonics/v17/.futdcache.v1 -------------------------------------------------------------------------------- /.vs/Mnemonics/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/.vs/Mnemonics/v17/.suo -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/mnemonics.metadata.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/.vs/ProjectEvaluation/mnemonics.metadata.v2 -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/mnemonics.projects.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/.vs/ProjectEvaluation/mnemonics.projects.v2 -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /Cryptography.ECDSA/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/.gitignore -------------------------------------------------------------------------------- /Cryptography.ECDSA/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/.travis.yml -------------------------------------------------------------------------------- /Cryptography.ECDSA/Automation/delete_obj_bin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Automation/delete_obj_bin.bat -------------------------------------------------------------------------------- /Cryptography.ECDSA/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/LICENSE -------------------------------------------------------------------------------- /Cryptography.ECDSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/README.md -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/Base58Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/Base58Test.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/BaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/BaseTest.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/Cryptography.ECDSA.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/Cryptography.ECDSA.Tests.csproj -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/HexTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/HexTest.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/Ripemd160ManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/Ripemd160ManagerTest.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/Secp256k1ManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/Secp256k1ManagerTest.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA.Tests/packages.config -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Base58.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Base58.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Callback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Callback.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Cryptography.ECDSA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Cryptography.ECDSA.csproj -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Hex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Hex.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Const.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Const.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Context.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/ContextStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/ContextStruct.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/ECKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/ECKey.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/ECMult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/ECMult.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/ECMultGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/ECMultGen.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/EcMultGenContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/EcMultGenContext.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/EcdsaRecoverableSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/EcdsaRecoverableSignature.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/EcmultContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/EcmultContext.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Fe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Fe.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/FeStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/FeStorage.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Field.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Field_10x26.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Field_10x26.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Ge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Ge.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/GeJ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/GeJ.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/GeStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/GeStorage.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Group.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/NonceFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/NonceFunction.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Options.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/PubKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/PubKey.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Scalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Scalar.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Secp256K1T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Secp256K1T.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Secp256K1/Util.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Sha256/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Sha256/Hash.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Sha256/HmacSha256T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Sha256/HmacSha256T.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Sha256/Rfc6979HmacSha256T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Sha256/Rfc6979HmacSha256T.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Sha256/Sha256T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Internal/Sha256/Sha256T.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Ripemd160Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Ripemd160Manager.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Secp256k1Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Secp256k1Manager.cs -------------------------------------------------------------------------------- /Cryptography.ECDSA/Sources/Cryptography.ECDSA/Sha256Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Cryptography.ECDSA/Sources/Cryptography.ECDSA/Sha256Manager.cs -------------------------------------------------------------------------------- /ERROR_OSX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/ERROR_OSX.md -------------------------------------------------------------------------------- /GeneratorMnemonics/.vs/Mnemonics/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/.vs/Mnemonics/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /GeneratorMnemonics/.vs/Mnemonics/FileContentIndex/2e1dd2fc-2f9d-4f15-97e2-db64e7e628a6.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/.vs/Mnemonics/FileContentIndex/2e1dd2fc-2f9d-4f15-97e2-db64e7e628a6.vsidx -------------------------------------------------------------------------------- /GeneratorMnemonics/.vs/Mnemonics/FileContentIndex/98ca2f32-98e5-4ff6-a4cf-a38e233ddead.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/.vs/Mnemonics/FileContentIndex/98ca2f32-98e5-4ff6-a4cf-a38e233ddead.vsidx -------------------------------------------------------------------------------- /GeneratorMnemonics/.vs/Mnemonics/FileContentIndex/d95d6b4c-4cfe-4d89-bb5d-57882b3e0b2c.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/.vs/Mnemonics/FileContentIndex/d95d6b4c-4cfe-4d89-bb5d-57882b3e0b2c.vsidx -------------------------------------------------------------------------------- /GeneratorMnemonics/.vs/Mnemonics/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeneratorMnemonics/.vs/Mnemonics/project-colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/.vs/Mnemonics/project-colors.json -------------------------------------------------------------------------------- /GeneratorMnemonics/.vs/Mnemonics/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/.vs/Mnemonics/v17/.futdcache.v1 -------------------------------------------------------------------------------- /GeneratorMnemonics/.vs/Mnemonics/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/.vs/Mnemonics/v17/.suo -------------------------------------------------------------------------------- /GeneratorMnemonics/.vs/ProjectEvaluation/mnemonics.metadata.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/.vs/ProjectEvaluation/mnemonics.metadata.v2 -------------------------------------------------------------------------------- /GeneratorMnemonics/.vs/ProjectEvaluation/mnemonics.projects.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/.vs/ProjectEvaluation/mnemonics.projects.v2 -------------------------------------------------------------------------------- /GeneratorMnemonics/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/Common.cs -------------------------------------------------------------------------------- /GeneratorMnemonics/Generator_Mnemonics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/Generator_Mnemonics.csproj -------------------------------------------------------------------------------- /GeneratorMnemonics/Generator_Mnemonics.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/Generator_Mnemonics.csproj.user -------------------------------------------------------------------------------- /GeneratorMnemonics/Mnemonics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/Mnemonics.sln -------------------------------------------------------------------------------- /GeneratorMnemonics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/Program.cs -------------------------------------------------------------------------------- /GeneratorMnemonics/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /GeneratorMnemonics/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/Properties/PublishProfiles/FolderProfile.pubxml.user -------------------------------------------------------------------------------- /GeneratorMnemonics/Words/chinese_simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/Words/chinese_simplified.txt -------------------------------------------------------------------------------- /GeneratorMnemonics/Words/chinese_traditional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/Words/chinese_traditional.txt -------------------------------------------------------------------------------- /GeneratorMnemonics/Words/english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/Words/english.txt -------------------------------------------------------------------------------- /GeneratorMnemonics/Words/french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/Words/french.txt -------------------------------------------------------------------------------- /GeneratorMnemonics/Words/italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/Words/italian.txt -------------------------------------------------------------------------------- /GeneratorMnemonics/Words/japanese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/Words/japanese.txt -------------------------------------------------------------------------------- /GeneratorMnemonics/Words/korean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/Words/korean.txt -------------------------------------------------------------------------------- /GeneratorMnemonics/Words/spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/Words/spanish.txt -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/C#-Mnemonic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/C#-Mnemonic -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/C#-Mnemonic.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/C#-Mnemonic.deps.json -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/C#-Mnemonic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/C#-Mnemonic.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/C#-Mnemonic.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/C#-Mnemonic.runtimeconfig.json -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/Cryptography.ECDSA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/Cryptography.ECDSA.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/Epoche.Keccak256.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/Epoche.Keccak256.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/Microsoft.VisualBasic.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/Microsoft.VisualBasic.Core.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/Microsoft.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/Microsoft.VisualBasic.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.AppContext.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Buffers.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Collections.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ComponentModel.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ComponentModel.Annotations.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ComponentModel.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ComponentModel.DataAnnotations.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ComponentModel.EventBasedAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ComponentModel.EventBasedAsync.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ComponentModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ComponentModel.Primitives.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ComponentModel.TypeConverter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ComponentModel.TypeConverter.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ComponentModel.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Configuration.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Console.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Core.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Data.Common.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Data.DataSetExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Data.DataSetExtensions.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Data.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.Contracts.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.Process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.Process.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.TextWriterTraceListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.TextWriterTraceListener.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.Tools.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.TraceSource.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Diagnostics.Tracing.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Drawing.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Drawing.Primitives.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Drawing.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Dynamic.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Dynamic.Runtime.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Formats.Asn1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Formats.Asn1.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Globalization.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Globalization.Extensions.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Globalization.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.Compression.Brotli.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.Compression.Brotli.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.Compression.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.Compression.FileSystem.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.Compression.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.FileSystem.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.FileSystem.AccessControl.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.FileSystem.DriveInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.FileSystem.DriveInfo.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.FileSystem.Watcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.FileSystem.Watcher.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.IsolatedStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.IsolatedStorage.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.MemoryMappedFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.MemoryMappedFiles.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.Pipes.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.Pipes.AccessControl.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.Pipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.Pipes.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.UnmanagedMemoryStream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.UnmanagedMemoryStream.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.IO.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Linq.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Linq.Parallel.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Linq.Queryable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Linq.Queryable.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Linq.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Memory.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Http.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Http.Json.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Http.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.HttpListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.HttpListener.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Mail.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Mail.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.NameResolution.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.NameResolution.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.NetworkInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.NetworkInformation.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Ping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Ping.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Primitives.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Quic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Quic.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Requests.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Security.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.ServicePoint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.ServicePoint.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.Sockets.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.WebClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.WebClient.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.WebHeaderCollection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.WebHeaderCollection.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.WebProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.WebProxy.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.WebSockets.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Net.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Numerics.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ObjectModel.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Private.CoreLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Private.CoreLib.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Private.DataContractSerialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Private.DataContractSerialization.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Private.Uri.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Private.Uri.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Private.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Private.Xml.Linq.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Private.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Private.Xml.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.DispatchProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.DispatchProxy.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.Emit.ILGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.Emit.ILGeneration.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.Emit.Lightweight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.Emit.Lightweight.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.Emit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.Emit.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.Extensions.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.Primitives.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Reflection.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Resources.Reader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Resources.Reader.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Resources.Writer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Resources.Writer.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.CompilerServices.VisualC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.CompilerServices.VisualC.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Handles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Handles.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.InteropServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.InteropServices.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Intrinsics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Intrinsics.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Loader.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Numerics.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Serialization.Formatters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Serialization.Formatters.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Serialization.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Serialization.Json.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Serialization.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Serialization.Xml.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.Serialization.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Runtime.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Claims.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Cryptography.Cng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Cryptography.Cng.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Cryptography.Csp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Cryptography.Csp.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Cryptography.OpenSsl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Cryptography.OpenSsl.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Principal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.Principal.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.SecureString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.SecureString.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Security.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ServiceModel.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ServiceModel.Web.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ServiceProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ServiceProcess.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Text.Encoding.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Text.Encoding.Extensions.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Text.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Text.Encoding.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Text.Json.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Channels.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Channels.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Overlapped.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Overlapped.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Tasks.Dataflow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Tasks.Dataflow.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Tasks.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Tasks.Parallel.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Thread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Thread.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.ThreadPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.ThreadPool.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.Timer.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Threading.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Transactions.Local.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Transactions.Local.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Transactions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Transactions.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.ValueTuple.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Web.HttpUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Web.HttpUtility.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Web.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Windows.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.Linq.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.Serialization.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.XPath.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.XmlSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.XmlSerializer.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.Xml.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/System.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/WindowsBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/WindowsBase.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/createdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/createdump -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libSystem.Globalization.Native.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libSystem.Globalization.Native.so -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libSystem.IO.Compression.Native.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libSystem.IO.Compression.Native.so -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libSystem.Native.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libSystem.Native.so -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libSystem.Net.Security.Native.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libSystem.Net.Security.Native.so -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libSystem.Security.Cryptography.Native.OpenSsl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libSystem.Security.Cryptography.Native.OpenSsl.so -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libclrjit.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libclrjit.so -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libcoreclr.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libcoreclr.so -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libcoreclrtraceptprovider.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libcoreclrtraceptprovider.so -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libdbgshim.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libdbgshim.so -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libhostfxr.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libhostfxr.so -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libhostpolicy.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libhostpolicy.so -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libmscordaccore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libmscordaccore.so -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libmscordbi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/libmscordbi.so -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/mscorlib.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/netstandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/netstandard.dll -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/publish/C#-Mnemonic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/android-arm64/publish/C#-Mnemonic -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/linux-arm/C#-Mnemonic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/linux-arm/C#-Mnemonic -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/linux-arm64/C#-Mnemonic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/linux-arm64/C#-Mnemonic -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/linux-x64/C#-Mnemonic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/linux-x64/C#-Mnemonic -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/osx-arm64/C#-Mnemonic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/osx-arm64/C#-Mnemonic -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/osx-x64/C#-Mnemonic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/osx-x64/C#-Mnemonic -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/win-arm/C#-Mnemonic.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/win-arm/C#-Mnemonic.exe -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/win-arm64/C#-Mnemonic.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/win-arm64/C#-Mnemonic.exe -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/win-x64/C#-Mnemonic.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/win-x64/C#-Mnemonic.exe -------------------------------------------------------------------------------- /GeneratorMnemonics/bin/Release/net6.0/publish/win-x86/C#-Mnemonic.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/bin/Release/net6.0/publish/win-x86/C#-Mnemonic.exe -------------------------------------------------------------------------------- /GeneratorMnemonics/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/GeneratorMnemonics/icon.ico -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/LICENSE -------------------------------------------------------------------------------- /Links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Links.txt -------------------------------------------------------------------------------- /Mnemonics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/Mnemonics.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/README.md -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/C-Sharp-Mnemonic/HEAD/icon.ico --------------------------------------------------------------------------------