├── .dockerignore ├── .vs ├── InternetSpeed │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ ├── FileContentIndex │ │ ├── 64f0f3dd-88e4-40ff-a0fd-93265d7a0d5f.vsidx │ │ ├── 8abf6928-a280-4d64-95c3-95050cfe14f0.vsidx │ │ ├── 9ce2ee46-5edf-4e88-8eef-3eb9d6ce6532.vsidx │ │ ├── 9fc93142-d916-433b-9e39-1aadee39c695.vsidx │ │ └── c3ec88d4-5086-46f1-8685-7b9323092933.vsidx │ ├── config │ │ └── applicationhost.config │ └── v17 │ │ ├── .futdcache.v2 │ │ ├── .suo │ │ ├── DocumentLayout.backup.json │ │ └── DocumentLayout.json └── ProjectEvaluation │ ├── internetspeed.metadata.v9.bin │ ├── internetspeed.projects.v9.bin │ └── internetspeed.strings.v9.bin ├── Demo.html ├── InternetSpeed.Core ├── InternetSpeed.Core.csproj ├── PiNetwork │ ├── PiNetworkClient.cs │ └── PiNetworkSettings.cs ├── Services │ ├── Implementations │ │ └── PiNetworkService.cs │ └── Interfaces │ │ └── IPiNetworkService.cs ├── bin │ ├── Debug │ │ └── net8.0 │ │ │ ├── InternetSpeed.Core.deps.json │ │ │ ├── InternetSpeed.Core.dll │ │ │ ├── InternetSpeed.Core.pdb │ │ │ ├── InternetSpeed.DataLayer.dll │ │ │ └── InternetSpeed.DataLayer.pdb │ └── Release │ │ └── net8.0 │ │ ├── InternetSpeed.Core.deps.json │ │ ├── InternetSpeed.Core.dll │ │ ├── InternetSpeed.Core.pdb │ │ ├── InternetSpeed.DataLayer.dll │ │ └── InternetSpeed.DataLayer.pdb └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── Internet.0E44CBF8.Up2Date │ │ ├── InternetSpeed.Core.AssemblyInfo.cs │ │ ├── InternetSpeed.Core.AssemblyInfoInputs.cache │ │ ├── InternetSpeed.Core.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── InternetSpeed.Core.GlobalUsings.g.cs │ │ ├── InternetSpeed.Core.assets.cache │ │ ├── InternetSpeed.Core.csproj.AssemblyReference.cache │ │ ├── InternetSpeed.Core.csproj.BuildWithSkipAnalyzers │ │ ├── InternetSpeed.Core.csproj.CopyComplete │ │ ├── InternetSpeed.Core.csproj.CoreCompileInputs.cache │ │ ├── InternetSpeed.Core.csproj.FileListAbsolute.txt │ │ ├── InternetSpeed.Core.dll │ │ ├── InternetSpeed.Core.pdb │ │ ├── ref │ │ └── InternetSpeed.Core.dll │ │ └── refint │ │ └── InternetSpeed.Core.dll │ ├── InternetSpeed.Core.csproj.nuget.dgspec.json │ ├── InternetSpeed.Core.csproj.nuget.g.props │ ├── InternetSpeed.Core.csproj.nuget.g.targets │ ├── Release │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── InternetSpeed.Core.AssemblyInfo.cs │ │ ├── InternetSpeed.Core.AssemblyInfoInputs.cache │ │ ├── InternetSpeed.Core.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── InternetSpeed.Core.GlobalUsings.g.cs │ │ ├── InternetSpeed.Core.assets.cache │ │ ├── InternetSpeed.Core.csproj.AssemblyReference.cache │ │ ├── InternetSpeed.Core.csproj.CopyComplete │ │ ├── InternetSpeed.Core.csproj.CoreCompileInputs.cache │ │ ├── InternetSpeed.Core.csproj.FileListAbsolute.txt │ │ ├── InternetSpeed.Core.dll │ │ ├── InternetSpeed.Core.pdb │ │ ├── ref │ │ └── InternetSpeed.Core.dll │ │ └── refint │ │ └── InternetSpeed.Core.dll │ ├── project.assets.json │ └── project.nuget.cache ├── InternetSpeed.DataLayer ├── DTOs │ └── DonationDto.cs ├── InternetSpeed.DataLayer.csproj ├── PiModels │ └── PaymentDataModel.cs ├── bin │ ├── Debug │ │ └── net8.0 │ │ │ ├── InternetSpeed.DataLayer.deps.json │ │ │ ├── InternetSpeed.DataLayer.dll │ │ │ └── InternetSpeed.DataLayer.pdb │ └── Release │ │ └── net8.0 │ │ ├── InternetSpeed.DataLayer.deps.json │ │ ├── InternetSpeed.DataLayer.dll │ │ └── InternetSpeed.DataLayer.pdb └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── InternetSpeed.DataLayer.AssemblyInfo.cs │ │ ├── InternetSpeed.DataLayer.AssemblyInfoInputs.cache │ │ ├── InternetSpeed.DataLayer.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── InternetSpeed.DataLayer.GlobalUsings.g.cs │ │ ├── InternetSpeed.DataLayer.assets.cache │ │ ├── InternetSpeed.DataLayer.csproj.AssemblyReference.cache │ │ ├── InternetSpeed.DataLayer.csproj.BuildWithSkipAnalyzers │ │ ├── InternetSpeed.DataLayer.csproj.CoreCompileInputs.cache │ │ ├── InternetSpeed.DataLayer.csproj.FileListAbsolute.txt │ │ ├── InternetSpeed.DataLayer.dll │ │ ├── InternetSpeed.DataLayer.pdb │ │ ├── ref │ │ └── InternetSpeed.DataLayer.dll │ │ └── refint │ │ └── InternetSpeed.DataLayer.dll │ ├── InternetSpeed.DataLayer.csproj.nuget.dgspec.json │ ├── InternetSpeed.DataLayer.csproj.nuget.g.props │ ├── InternetSpeed.DataLayer.csproj.nuget.g.targets │ ├── Release │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── InternetSpeed.DataLayer.AssemblyInfo.cs │ │ ├── InternetSpeed.DataLayer.AssemblyInfoInputs.cache │ │ ├── InternetSpeed.DataLayer.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── InternetSpeed.DataLayer.GlobalUsings.g.cs │ │ ├── InternetSpeed.DataLayer.assets.cache │ │ ├── InternetSpeed.DataLayer.csproj.AssemblyReference.cache │ │ ├── InternetSpeed.DataLayer.csproj.CoreCompileInputs.cache │ │ ├── InternetSpeed.DataLayer.csproj.FileListAbsolute.txt │ │ ├── InternetSpeed.DataLayer.dll │ │ ├── InternetSpeed.DataLayer.pdb │ │ ├── ref │ │ └── InternetSpeed.DataLayer.dll │ │ └── refint │ │ └── InternetSpeed.DataLayer.dll │ ├── project.assets.json │ └── project.nuget.cache ├── InternetSpeed.Web ├── .config │ └── dotnet-tools.json ├── Controllers │ ├── HomeController.cs │ └── PiPaymentController.cs ├── Dockerfile ├── Dockerfile.original ├── InternetSpeed.Web.csproj ├── InternetSpeed.Web.csproj.user ├── Models │ └── ErrorViewModel.cs ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ ├── FolderProfile.pubxml.user │ │ ├── IISProfile.pubxml │ │ ├── IISProfile.pubxml.user │ │ ├── internetspeed.top.pubxml │ │ └── internetspeed.top.pubxml.user │ └── launchSettings.json ├── Views │ ├── Home │ │ ├── ContactUs.cshtml │ │ ├── Index.cshtml │ │ ├── Maintenance.cshtml │ │ ├── Privacy.cshtml │ │ ├── SpeedTest.cshtml │ │ └── TermsOfService.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── Errors │ │ │ ├── Error.cshtml │ │ │ └── Error404.cshtml │ │ ├── Footer │ │ │ ├── _Footer.cshtml │ │ │ └── _FooterRefrences.cshtml │ │ ├── Header │ │ │ ├── _Header.cshtml │ │ │ ├── _HeaderRefrences.cshtml │ │ │ └── _MetaTags.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ ├── _PiNetworkScripts.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bin │ ├── Debug │ │ └── net8.0 │ │ │ ├── Common.Logging.Core.dll │ │ │ ├── Common.Logging.dll │ │ │ ├── Humanizer.dll │ │ │ ├── InternetSpeed.Core.dll │ │ │ ├── InternetSpeed.Core.pdb │ │ │ ├── InternetSpeed.DataLayer.dll │ │ │ ├── InternetSpeed.DataLayer.pdb │ │ │ ├── InternetSpeed.Web.deps.json │ │ │ ├── InternetSpeed.Web.dll │ │ │ ├── InternetSpeed.Web.exe │ │ │ ├── InternetSpeed.Web.pdb │ │ │ ├── InternetSpeed.Web.runtimeconfig.json │ │ │ ├── InternetSpeed.Web.staticwebassets.endpoints.json │ │ │ ├── InternetSpeed.Web.staticwebassets.runtime.json │ │ │ ├── LaunchDarkly.EventSource.dll │ │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.Build.Framework.dll │ │ │ ├── Microsoft.Build.dll │ │ │ ├── Microsoft.CodeAnalysis.AnalyzerUtilities.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Features.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ │ ├── Microsoft.CodeAnalysis.Elfie.dll │ │ │ ├── Microsoft.CodeAnalysis.Features.dll │ │ │ ├── Microsoft.CodeAnalysis.Razor.dll │ │ │ ├── Microsoft.CodeAnalysis.Scripting.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ │ ├── Microsoft.CodeAnalysis.dll │ │ │ ├── Microsoft.DiaSymReader.dll │ │ │ ├── Microsoft.DotNet.Scaffolding.Shared.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Microsoft.NET.StringTools.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ ├── Mono.TextTemplating.dll │ │ │ ├── NSec.Cryptography.dll │ │ │ ├── Nett.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── NuGet.Common.dll │ │ │ ├── NuGet.Configuration.dll │ │ │ ├── NuGet.DependencyResolver.Core.dll │ │ │ ├── NuGet.Frameworks.dll │ │ │ ├── NuGet.LibraryModel.dll │ │ │ ├── NuGet.Packaging.dll │ │ │ ├── NuGet.ProjectModel.dll │ │ │ ├── NuGet.Protocol.dll │ │ │ ├── NuGet.Versioning.dll │ │ │ ├── RestSharp.dll │ │ │ ├── System.CodeDom.dll │ │ │ ├── System.Composition.AttributedModel.dll │ │ │ ├── System.Composition.Convention.dll │ │ │ ├── System.Composition.Hosting.dll │ │ │ ├── System.Composition.Runtime.dll │ │ │ ├── System.Composition.TypedParts.dll │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ ├── System.Drawing.Common.dll │ │ │ ├── System.Reflection.MetadataLoadContext.dll │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ ├── System.Security.Permissions.dll │ │ │ ├── System.Windows.Extensions.dll │ │ │ ├── af │ │ │ └── Humanizer.resources.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── ar │ │ │ └── Humanizer.resources.dll │ │ │ ├── az │ │ │ └── Humanizer.resources.dll │ │ │ ├── bg │ │ │ └── Humanizer.resources.dll │ │ │ ├── bn-BD │ │ │ └── Humanizer.resources.dll │ │ │ ├── cs │ │ │ ├── Humanizer.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── da │ │ │ └── Humanizer.resources.dll │ │ │ ├── de │ │ │ ├── Humanizer.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── dotnet-aspnet-codegenerator-design.dll │ │ │ ├── dotnetstandard-bip32.dll │ │ │ ├── dotnetstandard-bip39.dll │ │ │ ├── el │ │ │ └── Humanizer.resources.dll │ │ │ ├── es │ │ │ ├── Humanizer.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── fa │ │ │ └── Humanizer.resources.dll │ │ │ ├── fi-FI │ │ │ └── Humanizer.resources.dll │ │ │ ├── fr-BE │ │ │ └── Humanizer.resources.dll │ │ │ ├── fr │ │ │ ├── Humanizer.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── he │ │ │ └── Humanizer.resources.dll │ │ │ ├── hr │ │ │ └── Humanizer.resources.dll │ │ │ ├── hu │ │ │ └── Humanizer.resources.dll │ │ │ ├── hy │ │ │ └── Humanizer.resources.dll │ │ │ ├── id │ │ │ └── Humanizer.resources.dll │ │ │ ├── is │ │ │ └── Humanizer.resources.dll │ │ │ ├── it │ │ │ ├── Humanizer.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ja │ │ │ ├── Humanizer.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ko-KR │ │ │ └── Humanizer.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ku │ │ │ └── Humanizer.resources.dll │ │ │ ├── lv │ │ │ └── Humanizer.resources.dll │ │ │ ├── ms-MY │ │ │ └── Humanizer.resources.dll │ │ │ ├── mt │ │ │ └── Humanizer.resources.dll │ │ │ ├── nb-NO │ │ │ └── Humanizer.resources.dll │ │ │ ├── nb │ │ │ └── Humanizer.resources.dll │ │ │ ├── nl │ │ │ └── Humanizer.resources.dll │ │ │ ├── pl │ │ │ ├── Humanizer.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── pt │ │ │ └── Humanizer.resources.dll │ │ │ ├── ro │ │ │ └── Humanizer.resources.dll │ │ │ ├── ru │ │ │ ├── Humanizer.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── runtimes │ │ │ ├── linux-x64 │ │ │ │ └── native │ │ │ │ │ └── libsodium.so │ │ │ ├── osx-x64 │ │ │ │ └── native │ │ │ │ │ └── libsodium.dylib │ │ │ ├── win-x64 │ │ │ │ └── native │ │ │ │ │ └── libsodium.dll │ │ │ ├── win-x86 │ │ │ │ └── native │ │ │ │ │ └── libsodium.dll │ │ │ └── win │ │ │ │ └── lib │ │ │ │ └── net7.0 │ │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ │ ├── System.Drawing.Common.dll │ │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ │ └── System.Windows.Extensions.dll │ │ │ ├── sk │ │ │ └── Humanizer.resources.dll │ │ │ ├── sl │ │ │ └── Humanizer.resources.dll │ │ │ ├── sr-Latn │ │ │ └── Humanizer.resources.dll │ │ │ ├── sr │ │ │ └── Humanizer.resources.dll │ │ │ ├── stellar-dotnet-sdk-xdr.dll │ │ │ ├── stellar-dotnet-sdk.dll │ │ │ ├── sv │ │ │ └── Humanizer.resources.dll │ │ │ ├── th-TH │ │ │ └── Humanizer.resources.dll │ │ │ ├── tr │ │ │ ├── Humanizer.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── uk │ │ │ └── Humanizer.resources.dll │ │ │ ├── uz-Cyrl-UZ │ │ │ └── Humanizer.resources.dll │ │ │ ├── uz-Latn-UZ │ │ │ └── Humanizer.resources.dll │ │ │ ├── vi │ │ │ └── Humanizer.resources.dll │ │ │ ├── zh-CN │ │ │ └── Humanizer.resources.dll │ │ │ ├── zh-Hans │ │ │ ├── Humanizer.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ └── zh-Hant │ │ │ ├── Humanizer.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ └── Release │ │ └── net8.0 │ │ ├── Common.Logging.Core.dll │ │ ├── Common.Logging.dll │ │ ├── InternetSpeed.Core.dll │ │ ├── InternetSpeed.Core.pdb │ │ ├── InternetSpeed.DataLayer.dll │ │ ├── InternetSpeed.DataLayer.pdb │ │ ├── InternetSpeed.Web.deps.json │ │ ├── InternetSpeed.Web.dll │ │ ├── InternetSpeed.Web.exe │ │ ├── InternetSpeed.Web.pdb │ │ ├── InternetSpeed.Web.runtimeconfig.json │ │ ├── InternetSpeed.Web.staticwebassets.runtime.json │ │ ├── LaunchDarkly.EventSource.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── NSec.Cryptography.dll │ │ ├── Nett.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── RestSharp.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── dotnetstandard-bip32.dll │ │ ├── dotnetstandard-bip39.dll │ │ ├── runtimes │ │ ├── linux-x64 │ │ │ └── native │ │ │ │ └── libsodium.so │ │ ├── osx-x64 │ │ │ └── native │ │ │ │ └── libsodium.dylib │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── libsodium.dll │ │ └── win-x86 │ │ │ └── native │ │ │ └── libsodium.dll │ │ ├── stellar-dotnet-sdk-xdr.dll │ │ └── stellar-dotnet-sdk.dll ├── obj │ ├── Container │ │ ├── ContainerDevelopmentMode.cache │ │ ├── ContainerId.cache │ │ ├── ContainerName.cache │ │ └── ContainerRunContext.cache │ ├── Debug │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── ApiEndpoints.json │ │ │ ├── Internet.1A306A9B.Up2Date │ │ │ ├── InternetSpeed.Web.AssemblyInfo.cs │ │ │ ├── InternetSpeed.Web.AssemblyInfoInputs.cache │ │ │ ├── InternetSpeed.Web.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── InternetSpeed.Web.GlobalUsings.g.cs │ │ │ ├── InternetSpeed.Web.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── InternetSpeed.Web.RazorAssemblyInfo.cache │ │ │ ├── InternetSpeed.Web.RazorAssemblyInfo.cs │ │ │ ├── InternetSpeed.Web.assets.cache │ │ │ ├── InternetSpeed.Web.csproj.AssemblyReference.cache │ │ │ ├── InternetSpeed.Web.csproj.BuildWithSkipAnalyzers │ │ │ ├── InternetSpeed.Web.csproj.CoreCompileInputs.cache │ │ │ ├── InternetSpeed.Web.csproj.FileListAbsolute.txt │ │ │ ├── InternetSpeed.Web.dll │ │ │ ├── InternetSpeed.Web.genruntimeconfig.cache │ │ │ ├── InternetSpeed.Web.pdb │ │ │ ├── apphost.exe │ │ │ ├── project.razor.vs.bin │ │ │ ├── ref │ │ │ └── InternetSpeed.Web.dll │ │ │ ├── refint │ │ │ └── InternetSpeed.Web.dll │ │ │ ├── scopedcss │ │ │ ├── Views │ │ │ │ └── Shared │ │ │ │ │ └── _Layout.cshtml.rz.scp.css │ │ │ ├── bundle │ │ │ │ └── InternetSpeed.Web.styles.css │ │ │ └── projectbundle │ │ │ │ └── InternetSpeed.Web.bundle.scp.css │ │ │ ├── staticwebassets.build.endpoints.json │ │ │ ├── staticwebassets.build.json │ │ │ ├── staticwebassets.development.json │ │ │ ├── staticwebassets.pack.json │ │ │ ├── staticwebassets.references.upToDateCheck.txt │ │ │ ├── staticwebassets.removed.txt │ │ │ ├── staticwebassets.upToDateCheck.txt │ │ │ └── staticwebassets │ │ │ ├── msbuild.InternetSpeed.Web.Microsoft.AspNetCore.StaticWebAssetEndpoints.props │ │ │ ├── msbuild.InternetSpeed.Web.Microsoft.AspNetCore.StaticWebAssets.props │ │ │ ├── msbuild.build.InternetSpeed.Web.props │ │ │ ├── msbuild.buildMultiTargeting.InternetSpeed.Web.props │ │ │ └── msbuild.buildTransitive.InternetSpeed.Web.props │ ├── InternetSpeed.Web.csproj.nuget.dgspec.json │ ├── InternetSpeed.Web.csproj.nuget.g.props │ ├── InternetSpeed.Web.csproj.nuget.g.targets │ ├── Release │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── InternetSpeed.Web.AssemblyInfo.cs │ │ │ ├── InternetSpeed.Web.AssemblyInfoInputs.cache │ │ │ ├── InternetSpeed.Web.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── InternetSpeed.Web.GlobalUsings.g.cs │ │ │ ├── InternetSpeed.Web.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── InternetSpeed.Web.RazorAssemblyInfo.cache │ │ │ ├── InternetSpeed.Web.RazorAssemblyInfo.cs │ │ │ ├── InternetSpeed.Web.assets.cache │ │ │ ├── InternetSpeed.Web.csproj.AssemblyReference.cache │ │ │ ├── InternetSpeed.Web.csproj.CopyComplete │ │ │ ├── InternetSpeed.Web.csproj.CoreCompileInputs.cache │ │ │ ├── InternetSpeed.Web.csproj.FileListAbsolute.txt │ │ │ ├── InternetSpeed.Web.dll │ │ │ ├── InternetSpeed.Web.genruntimeconfig.cache │ │ │ ├── InternetSpeed.Web.pdb │ │ │ ├── PubTmp │ │ │ └── Out │ │ │ │ ├── Common.Logging.Core.dll │ │ │ │ ├── Common.Logging.dll │ │ │ │ ├── InternetSpeed.Core.dll │ │ │ │ ├── InternetSpeed.Core.pdb │ │ │ │ ├── InternetSpeed.DataLayer.dll │ │ │ │ ├── InternetSpeed.DataLayer.pdb │ │ │ │ ├── InternetSpeed.Web.deps.json │ │ │ │ ├── InternetSpeed.Web.dll │ │ │ │ ├── InternetSpeed.Web.exe │ │ │ │ ├── InternetSpeed.Web.pdb │ │ │ │ ├── InternetSpeed.Web.runtimeconfig.json │ │ │ │ ├── LaunchDarkly.EventSource.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── NSec.Cryptography.dll │ │ │ │ ├── Nett.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── RestSharp.dll │ │ │ │ ├── appsettings.Development.json │ │ │ │ ├── appsettings.json │ │ │ │ ├── dotnetstandard-bip32.dll │ │ │ │ ├── dotnetstandard-bip39.dll │ │ │ │ ├── runtimes │ │ │ │ ├── linux-x64 │ │ │ │ │ └── native │ │ │ │ │ │ └── libsodium.so │ │ │ │ ├── osx-x64 │ │ │ │ │ └── native │ │ │ │ │ │ └── libsodium.dylib │ │ │ │ ├── win-x64 │ │ │ │ │ └── native │ │ │ │ │ │ └── libsodium.dll │ │ │ │ └── win-x86 │ │ │ │ │ └── native │ │ │ │ │ └── libsodium.dll │ │ │ │ ├── stellar-dotnet-sdk-xdr.dll │ │ │ │ ├── stellar-dotnet-sdk.dll │ │ │ │ ├── web.config │ │ │ │ └── wwwroot │ │ │ │ ├── InternetSpeed.Web.styles.css │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── images │ │ │ │ └── Under_contruction_icon-red.svg │ │ │ │ ├── js │ │ │ │ ├── PiScript.js │ │ │ │ └── site.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.esm.js │ │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ │ ├── PublishOutputs.c770cff0b6.txt │ │ │ ├── apphost.exe │ │ │ ├── linux-x64 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── InternetSpeed.Web.AssemblyInfo.cs │ │ │ ├── InternetSpeed.Web.AssemblyInfoInputs.cache │ │ │ ├── InternetSpeed.Web.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── InternetSpeed.Web.GlobalUsings.g.cs │ │ │ ├── InternetSpeed.Web.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── InternetSpeed.Web.RazorAssemblyInfo.cache │ │ │ ├── InternetSpeed.Web.RazorAssemblyInfo.cs │ │ │ ├── InternetSpeed.Web.assets.cache │ │ │ ├── InternetSpeed.Web.csproj.AssemblyReference.cache │ │ │ ├── InternetSpeed.Web.csproj.CopyComplete │ │ │ ├── InternetSpeed.Web.csproj.CoreCompileInputs.cache │ │ │ ├── InternetSpeed.Web.csproj.FileListAbsolute.txt │ │ │ ├── InternetSpeed.Web.dll │ │ │ ├── InternetSpeed.Web.genruntimeconfig.cache │ │ │ ├── InternetSpeed.Web.pdb │ │ │ ├── PubTmp │ │ │ │ └── Out │ │ │ │ │ ├── Common.Logging.Core.dll │ │ │ │ │ ├── Common.Logging.dll │ │ │ │ │ ├── InternetSpeed.Core.dll │ │ │ │ │ ├── InternetSpeed.Core.pdb │ │ │ │ │ ├── InternetSpeed.DataLayer.dll │ │ │ │ │ ├── InternetSpeed.DataLayer.pdb │ │ │ │ │ ├── InternetSpeed.Web │ │ │ │ │ ├── InternetSpeed.Web.deps.json │ │ │ │ │ ├── InternetSpeed.Web.dll │ │ │ │ │ ├── InternetSpeed.Web.pdb │ │ │ │ │ ├── InternetSpeed.Web.runtimeconfig.json │ │ │ │ │ ├── LaunchDarkly.EventSource.dll │ │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ │ ├── NSec.Cryptography.dll │ │ │ │ │ ├── Nett.dll │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ ├── RestSharp.dll │ │ │ │ │ ├── appsettings.Development.json │ │ │ │ │ ├── appsettings.json │ │ │ │ │ ├── dotnetstandard-bip32.dll │ │ │ │ │ ├── dotnetstandard-bip39.dll │ │ │ │ │ ├── libsodium.so │ │ │ │ │ ├── stellar-dotnet-sdk-xdr.dll │ │ │ │ │ ├── stellar-dotnet-sdk.dll │ │ │ │ │ └── wwwroot │ │ │ │ │ ├── InternetSpeed.Web.styles.css │ │ │ │ │ ├── css │ │ │ │ │ └── site.css │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── images │ │ │ │ │ └── Under_contruction_icon-red.svg │ │ │ │ │ ├── js │ │ │ │ │ ├── PiScript.js │ │ │ │ │ └── site.js │ │ │ │ │ └── lib │ │ │ │ │ ├── bootstrap │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ │ ├── bootstrap.esm.js │ │ │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── bootstrap.min.js.map │ │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ │ ├── jquery-validation │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── dist │ │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ │ └── jquery │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── dist │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ └── jquery.min.map │ │ │ ├── PublishOutputs.ee2d0e7305.txt │ │ │ ├── apphost │ │ │ ├── ref │ │ │ │ └── InternetSpeed.Web.dll │ │ │ ├── refint │ │ │ │ └── InternetSpeed.Web.dll │ │ │ ├── scopedcss │ │ │ │ ├── Views │ │ │ │ │ └── Shared │ │ │ │ │ │ └── _Layout.cshtml.rz.scp.css │ │ │ │ ├── bundle │ │ │ │ │ └── InternetSpeed.Web.styles.css │ │ │ │ └── projectbundle │ │ │ │ │ └── InternetSpeed.Web.bundle.scp.css │ │ │ ├── staticwebassets.build.json │ │ │ ├── staticwebassets.development.json │ │ │ ├── staticwebassets.pack.json │ │ │ ├── staticwebassets.publish.json │ │ │ └── staticwebassets │ │ │ │ ├── msbuild.InternetSpeed.Web.Microsoft.AspNetCore.StaticWebAssets.props │ │ │ │ ├── msbuild.build.InternetSpeed.Web.props │ │ │ │ ├── msbuild.buildMultiTargeting.InternetSpeed.Web.props │ │ │ │ └── msbuild.buildTransitive.InternetSpeed.Web.props │ │ │ ├── project.razor.vs.bin │ │ │ ├── ref │ │ │ └── InternetSpeed.Web.dll │ │ │ ├── refint │ │ │ └── InternetSpeed.Web.dll │ │ │ ├── scopedcss │ │ │ ├── Views │ │ │ │ └── Shared │ │ │ │ │ └── _Layout.cshtml.rz.scp.css │ │ │ ├── bundle │ │ │ │ └── InternetSpeed.Web.styles.css │ │ │ └── projectbundle │ │ │ │ └── InternetSpeed.Web.bundle.scp.css │ │ │ ├── staticwebassets.build.json │ │ │ ├── staticwebassets.development.json │ │ │ ├── staticwebassets.pack.json │ │ │ ├── staticwebassets.publish.json │ │ │ └── staticwebassets │ │ │ ├── msbuild.InternetSpeed.Web.Microsoft.AspNetCore.StaticWebAssets.props │ │ │ ├── msbuild.build.InternetSpeed.Web.props │ │ │ ├── msbuild.buildMultiTargeting.InternetSpeed.Web.props │ │ │ └── msbuild.buildTransitive.InternetSpeed.Web.props │ ├── project.assets.json │ ├── project.nuget.cache │ └── publish │ │ └── linux-x64 │ │ ├── InternetSpeed.Web.csproj.nuget.dgspec.json │ │ ├── InternetSpeed.Web.csproj.nuget.g.props │ │ ├── InternetSpeed.Web.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── wwwroot │ ├── css │ ├── plugins │ │ └── plugins.css │ ├── site.css │ ├── style.css │ └── vendor │ │ ├── base.css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.css │ │ ├── slick-theme.css │ │ └── slick.css │ ├── fonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-brands-400d41dd41d.eot │ ├── fa-duotone-900.eot │ ├── fa-duotone-900.svg │ ├── fa-duotone-900.ttf │ ├── fa-duotone-900.woff │ ├── fa-duotone-900.woff2 │ ├── fa-duotone-900d41dd41d.eot │ ├── fa-light-300.eot │ ├── fa-light-300.svg │ ├── fa-light-300.ttf │ ├── fa-light-300.woff │ ├── fa-light-300.woff2 │ ├── fa-light-300d41dd41d.eot │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-regular-400d41dd41d.eot │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ ├── fa-solid-900.woff2 │ ├── fa-solid-900d41dd41d.eot │ ├── slick.eot │ ├── slick.svg │ ├── slick.ttf │ ├── slick.woff │ └── slickd41dd41d.eot │ ├── images │ ├── Under_contruction_icon-red.svg │ ├── ajax-loader.gif │ ├── banner │ │ └── post-hover-image-03.jpg │ ├── bg │ │ └── bg-image-4.jpg │ ├── favicon.png │ ├── icons │ │ ├── arrow-icon.png │ │ ├── light-close.png │ │ ├── shape-01.png │ │ └── shape-02.png │ ├── logo │ │ ├── logo-black.png │ │ ├── logo-white.png │ │ └── logo-white2.png │ ├── others │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 404.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── author.png │ │ └── maintenence.png │ └── small-images │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ └── 6.png │ ├── js │ ├── PiScript.js │ ├── main.js │ ├── site.js │ └── vendor │ │ ├── bootstrap.min.js │ │ ├── jquery.js │ │ ├── jquery.style.switcher.js │ │ ├── js.cookie.js │ │ ├── modernizr.min.js │ │ ├── slick.min.js │ │ └── tweenmax.min.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── InternetSpeed.sln ├── LICENSE.md ├── README.md ├── docker-compose.dcproj ├── docker-compose.override.yml ├── docker-compose.yml ├── launchSettings.json └── obj └── Docker ├── CachedComposeConfigFilePaths.cache ├── ContainerToolsExceptions.json ├── DOCKER_REGISTRY.cache ├── MergedDockerCompose.cache ├── PrerequisiteFailureTelemetry.json └── TargetOS.cache /.dockerignore: -------------------------------------------------------------------------------- 1 | **/.classpath 2 | **/.dockerignore 3 | **/.env 4 | **/.git 5 | **/.gitignore 6 | **/.project 7 | **/.settings 8 | **/.toolstarget 9 | **/.vs 10 | **/.vscode 11 | **/*.*proj.user 12 | **/*.dbmdl 13 | **/*.jfm 14 | **/azds.yaml 15 | **/bin 16 | **/charts 17 | **/docker-compose* 18 | **/Dockerfile* 19 | **/node_modules 20 | **/npm-debug.log 21 | **/obj 22 | **/secrets.dev.yaml 23 | **/values.dev.yaml 24 | LICENSE 25 | README.md 26 | !**/.gitignore 27 | !.git/HEAD 28 | !.git/config 29 | !.git/packed-refs 30 | !.git/refs/heads/** -------------------------------------------------------------------------------- /.vs/InternetSpeed/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/.vs/InternetSpeed/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/InternetSpeed/FileContentIndex/64f0f3dd-88e4-40ff-a0fd-93265d7a0d5f.vsidx: -------------------------------------------------------------------------------- 1 | CDGG '3 -------------------------------------------------------------------------------- /.vs/InternetSpeed/FileContentIndex/8abf6928-a280-4d64-95c3-95050cfe14f0.vsidx: -------------------------------------------------------------------------------- 1 | CDGG '3 -------------------------------------------------------------------------------- /.vs/InternetSpeed/FileContentIndex/9ce2ee46-5edf-4e88-8eef-3eb9d6ce6532.vsidx: -------------------------------------------------------------------------------- 1 | CDGG '3 -------------------------------------------------------------------------------- /.vs/InternetSpeed/FileContentIndex/9fc93142-d916-433b-9e39-1aadee39c695.vsidx: -------------------------------------------------------------------------------- 1 | CDGG '3 -------------------------------------------------------------------------------- /.vs/InternetSpeed/FileContentIndex/c3ec88d4-5086-46f1-8685-7b9323092933.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/.vs/InternetSpeed/FileContentIndex/c3ec88d4-5086-46f1-8685-7b9323092933.vsidx -------------------------------------------------------------------------------- /.vs/InternetSpeed/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/.vs/InternetSpeed/v17/.futdcache.v2 -------------------------------------------------------------------------------- /.vs/InternetSpeed/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/.vs/InternetSpeed/v17/.suo -------------------------------------------------------------------------------- /.vs/InternetSpeed/v17/DocumentLayout.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 1, 3 | "WorkspaceRootPath": "B:\\InternetSpeed\\", 4 | "Documents": [], 5 | "DocumentGroupContainers": [ 6 | { 7 | "Orientation": 0, 8 | "VerticalTabListWidth": 256, 9 | "DocumentGroups": [] 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/internetspeed.metadata.v9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/.vs/ProjectEvaluation/internetspeed.metadata.v9.bin -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/internetspeed.projects.v9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/.vs/ProjectEvaluation/internetspeed.projects.v9.bin -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/internetspeed.strings.v9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/.vs/ProjectEvaluation/internetspeed.strings.v9.bin -------------------------------------------------------------------------------- /Demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Internet Speed 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /InternetSpeed.Core/InternetSpeed.Core.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /InternetSpeed.Core/PiNetwork/PiNetworkSettings.cs: -------------------------------------------------------------------------------- 1 | namespace InternetSpeed.Core.PiNetwork; 2 | 3 | public class PiNetworkSettings 4 | { 5 | public required string ApiKey { get; set; } 6 | } -------------------------------------------------------------------------------- /InternetSpeed.Core/Services/Interfaces/IPiNetworkService.cs: -------------------------------------------------------------------------------- 1 | using InternetSpeed.DataLayer.PiModels; 2 | using stellar_dotnet_sdk.responses; 3 | 4 | namespace InternetSpeed.Services.Interfaces; 5 | 6 | public interface IPiNetworkService 7 | { 8 | Task AuthenticateAsync(string accessToken); 9 | Task GetPaymentAsync(string identifier); 10 | Task> GetIncompletePaymentsAsync(); 11 | Task CreatePaymentAsync(PaymentDataModel.CreatePaymentDto dto); 12 | Task ApprovePaymentAsync(string identifier); 13 | Task CancelPaymentAsync(string identifier); 14 | Task CompletePaymentAsync(string identifier, string tx); 15 | Task GetAccountBalanceAsync(string network, string account); 16 | Task SendAssetsAsync(string network, string seed, PaymentDataModel.TransactionData data, uint fee = 100000); 17 | } -------------------------------------------------------------------------------- /InternetSpeed.Core/bin/Debug/net8.0/InternetSpeed.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/bin/Debug/net8.0/InternetSpeed.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Core/bin/Debug/net8.0/InternetSpeed.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/bin/Debug/net8.0/InternetSpeed.Core.pdb -------------------------------------------------------------------------------- /InternetSpeed.Core/bin/Debug/net8.0/InternetSpeed.DataLayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/bin/Debug/net8.0/InternetSpeed.DataLayer.dll -------------------------------------------------------------------------------- /InternetSpeed.Core/bin/Debug/net8.0/InternetSpeed.DataLayer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/bin/Debug/net8.0/InternetSpeed.DataLayer.pdb -------------------------------------------------------------------------------- /InternetSpeed.Core/bin/Release/net8.0/InternetSpeed.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/bin/Release/net8.0/InternetSpeed.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Core/bin/Release/net8.0/InternetSpeed.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/bin/Release/net8.0/InternetSpeed.Core.pdb -------------------------------------------------------------------------------- /InternetSpeed.Core/bin/Release/net8.0/InternetSpeed.DataLayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/bin/Release/net8.0/InternetSpeed.DataLayer.dll -------------------------------------------------------------------------------- /InternetSpeed.Core/bin/Release/net8.0/InternetSpeed.DataLayer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/bin/Release/net8.0/InternetSpeed.DataLayer.pdb -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Debug/net8.0/Internet.0E44CBF8.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Debug/net8.0/Internet.0E44CBF8.Up2Date -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ed452c115de8328dafeb50206af182ad1866b1b9c6fea6bf1602b49a2cacaf7f 2 | -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net8.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = InternetSpeed.Core 11 | build_property.ProjectDir = B:\InternetSpeed\InternetSpeed.Core\ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | build_property.EffectiveAnalysisLevelStyle = 8.0 15 | build_property.EnableCodeStyleSeverity = 16 | -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.assets.cache -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.csproj.BuildWithSkipAnalyzers -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.csproj.CopyComplete -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b4e3539e60af495b69eb884e625d59a426d63ffb8a4d0ae3f77b88b539c011b9 2 | -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Debug/net8.0/InternetSpeed.Core.pdb -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Debug/net8.0/ref/InternetSpeed.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Debug/net8.0/ref/InternetSpeed.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Debug/net8.0/refint/InternetSpeed.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Debug/net8.0/refint/InternetSpeed.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/InternetSpeed.Core.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Release/net8.0/InternetSpeed.Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 06ec985cacdd2541465d0ffe4d4b7b66dd3c0108fbad3819310948bfaf118b44 2 | -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Release/net8.0/InternetSpeed.Core.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net8.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = InternetSpeed.Core 11 | build_property.ProjectDir = D:\Program\C#\Project\InternetSpeed\InternetSpeed.Core\ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Release/net8.0/InternetSpeed.Core.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Release/net8.0/InternetSpeed.Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Release/net8.0/InternetSpeed.Core.assets.cache -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Release/net8.0/InternetSpeed.Core.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Release/net8.0/InternetSpeed.Core.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Release/net8.0/InternetSpeed.Core.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Release/net8.0/InternetSpeed.Core.csproj.CopyComplete -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Release/net8.0/InternetSpeed.Core.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 00d4d4c062c4bfca3c1bccd7883e11b95db83d78511c3c93150cbc245f03f2ee 2 | -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Release/net8.0/InternetSpeed.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Release/net8.0/InternetSpeed.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Release/net8.0/InternetSpeed.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Release/net8.0/InternetSpeed.Core.pdb -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Release/net8.0/ref/InternetSpeed.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Release/net8.0/ref/InternetSpeed.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Core/obj/Release/net8.0/refint/InternetSpeed.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Core/obj/Release/net8.0/refint/InternetSpeed.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/DTOs/DonationDto.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace InternetSpeed.DataLayer.DTOs 9 | { 10 | public class DonationDto 11 | { 12 | [Display(Name = "َAmount")] 13 | [Required] 14 | [Range(1,10000000)] 15 | public int AmountDonation { get; set; } 16 | 17 | [Display(Name = "Message")] 18 | [Required] 19 | public string Message { get; set; } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/InternetSpeed.DataLayer.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/bin/Debug/net8.0/InternetSpeed.DataLayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/bin/Debug/net8.0/InternetSpeed.DataLayer.dll -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/bin/Debug/net8.0/InternetSpeed.DataLayer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/bin/Debug/net8.0/InternetSpeed.DataLayer.pdb -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/bin/Release/net8.0/InternetSpeed.DataLayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/bin/Release/net8.0/InternetSpeed.DataLayer.dll -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/bin/Release/net8.0/InternetSpeed.DataLayer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/bin/Release/net8.0/InternetSpeed.DataLayer.pdb -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Debug/net8.0/InternetSpeed.DataLayer.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 96163ad96f89d915180c14505856e1137a99bc4cd896bc3d9cd6bac498ed4cb9 2 | -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Debug/net8.0/InternetSpeed.DataLayer.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net8.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = InternetSpeed.DataLayer 11 | build_property.ProjectDir = B:\InternetSpeed\InternetSpeed.DataLayer\ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | build_property.EffectiveAnalysisLevelStyle = 8.0 15 | build_property.EnableCodeStyleSeverity = 16 | -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Debug/net8.0/InternetSpeed.DataLayer.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Debug/net8.0/InternetSpeed.DataLayer.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/obj/Debug/net8.0/InternetSpeed.DataLayer.assets.cache -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Debug/net8.0/InternetSpeed.DataLayer.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/obj/Debug/net8.0/InternetSpeed.DataLayer.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Debug/net8.0/InternetSpeed.DataLayer.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/obj/Debug/net8.0/InternetSpeed.DataLayer.csproj.BuildWithSkipAnalyzers -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Debug/net8.0/InternetSpeed.DataLayer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 999f6874b8ebc576f007983bc6bf9b89af96af4125308149294eccef09bd72ff 2 | -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Debug/net8.0/InternetSpeed.DataLayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/obj/Debug/net8.0/InternetSpeed.DataLayer.dll -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Debug/net8.0/InternetSpeed.DataLayer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/obj/Debug/net8.0/InternetSpeed.DataLayer.pdb -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Debug/net8.0/ref/InternetSpeed.DataLayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/obj/Debug/net8.0/ref/InternetSpeed.DataLayer.dll -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Debug/net8.0/refint/InternetSpeed.DataLayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/obj/Debug/net8.0/refint/InternetSpeed.DataLayer.dll -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/InternetSpeed.DataLayer.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Release/net8.0/InternetSpeed.DataLayer.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 877792957decd908cf043f2a5795c4af342af53a8d99d602b3ad3a66d2ac6e70 2 | -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Release/net8.0/InternetSpeed.DataLayer.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net8.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = InternetSpeed.DataLayer 11 | build_property.ProjectDir = D:\Program\C#\Project\InternetSpeed\InternetSpeed.DataLayer\ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Release/net8.0/InternetSpeed.DataLayer.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Release/net8.0/InternetSpeed.DataLayer.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/obj/Release/net8.0/InternetSpeed.DataLayer.assets.cache -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Release/net8.0/InternetSpeed.DataLayer.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/obj/Release/net8.0/InternetSpeed.DataLayer.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Release/net8.0/InternetSpeed.DataLayer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c50762b683d567af67488eb957b7da243a13370dce61dbd60140e9bca46d897a 2 | -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Release/net8.0/InternetSpeed.DataLayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/obj/Release/net8.0/InternetSpeed.DataLayer.dll -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Release/net8.0/InternetSpeed.DataLayer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/obj/Release/net8.0/InternetSpeed.DataLayer.pdb -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Release/net8.0/ref/InternetSpeed.DataLayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/obj/Release/net8.0/ref/InternetSpeed.DataLayer.dll -------------------------------------------------------------------------------- /InternetSpeed.DataLayer/obj/Release/net8.0/refint/InternetSpeed.DataLayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.DataLayer/obj/Release/net8.0/refint/InternetSpeed.DataLayer.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/.config/dotnet-tools.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "isRoot": true, 4 | "tools": { 5 | "dotnet-ef": { 6 | "version": "9.0.0", 7 | "commands": [ 8 | "dotnet-ef" 9 | ] 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /InternetSpeed.Web/Dockerfile.original: -------------------------------------------------------------------------------- 1 | #See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. 2 | 3 | FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base 4 | USER app 5 | WORKDIR /app 6 | EXPOSE 8080 7 | EXPOSE 8081 8 | 9 | FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build 10 | ARG BUILD_CONFIGURATION=Release 11 | WORKDIR /src 12 | COPY ["InternetSpeed.Web/InternetSpeed.Web.csproj", "InternetSpeed.Web/"] 13 | RUN dotnet restore "./InternetSpeed.Web/./InternetSpeed.Web.csproj" 14 | COPY . . 15 | WORKDIR "/src/InternetSpeed.Web" 16 | RUN dotnet build "./InternetSpeed.Web.csproj" -c $BUILD_CONFIGURATION -o /app/build 17 | 18 | FROM build AS publish 19 | ARG BUILD_CONFIGURATION=Release 20 | RUN dotnet publish "./InternetSpeed.Web.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false 21 | 22 | FROM base AS final 23 | WORKDIR /app 24 | COPY --from=publish /app/publish . 25 | ENTRYPOINT ["dotnet", "InternetSpeed.Web.dll"] -------------------------------------------------------------------------------- /InternetSpeed.Web/InternetSpeed.Web.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 82fd61cd-74f2-4e14-b7eb-4079aebfc3ef 8 | Linux 9 | ..\docker-compose.dcproj 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace InternetSpeed.Web.Models 2 | { 3 | public class ErrorViewModel 4 | { 5 | public string? RequestId { get; set; } 6 | 7 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Program.cs: -------------------------------------------------------------------------------- 1 | using InternetSpeed.Core.PiNetwork; 2 | using InternetSpeed.Services.Implementations; 3 | using InternetSpeed.Services.Interfaces; 4 | 5 | var builder = WebApplication.CreateBuilder(args); 6 | 7 | // Add services to the container. 8 | builder.Services.AddControllersWithViews(); 9 | 10 | builder.Services.Configure(builder.Configuration.GetSection("PiNetwork")); 11 | 12 | builder.Services.AddScoped(); 13 | 14 | 15 | var app = builder.Build(); 16 | 17 | 18 | 19 | // Configure the HTTP request pipeline. 20 | if (!app.Environment.IsDevelopment()) 21 | { 22 | app.UseExceptionHandler("/Home/Error"); 23 | app.UseHsts(); 24 | } 25 | 26 | 27 | app.UseHttpsRedirection(); 28 | app.UseStaticFiles(); 29 | app.UseRouting(); 30 | app.UseAuthorization(); 31 | app.UseStatusCodePagesWithReExecute("/Error/{0}"); 32 | app.MapControllerRoute( 33 | name: "default", 34 | pattern: "{controller=Home}/{action=Index}/{id?}"); 35 | 36 | app.Run(); 37 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | false 8 | false 9 | true 10 | Release 11 | Any CPU 12 | FileSystem 13 | bin\Release\net8.0\publish\internetspeed 14 | FileSystem 15 | <_TargetId>Folder 16 | 17 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | <_PublishTargetUrl>D:\Program\C#\Project\InternetSpeed\InternetSpeed.Web\bin\Release\net8.0\publish\internetspeed 8 | True|2024-12-18T19:57:00.2520809Z; 9 | 10 | 11 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Properties/PublishProfiles/IISProfile.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | Package 8 | Release 9 | Any CPU 10 | 11 | true 12 | false 13 | 20a3922d-86d4-487c-9187-6f15c6ff5959 14 | C:\Users\MahDi\Desktop\InternetSpeed.Web.zip 15 | true 16 | internetspeed 17 | <_TargetId>IISWebDeployPackage 18 | 19 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Properties/PublishProfiles/IISProfile.pubxml.user: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | 8 | True|2024-12-18T20:44:14.3135374Z; 9 | 10 | 11 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Properties/PublishProfiles/internetspeed.top.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | Container 8 | NetSdk 9 | internetspeed.top 10 | 11 | latest 12 | ContainerRegistry 13 | Release 14 | Any CPU 15 | linux-x64 16 | 20a3922d-86d4-487c-9187-6f15c6ff5959 17 | <_IsDockerfilePresent>true 18 | <_TargetId>NetSdkCustomContainerRegistry 19 | 20 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Properties/PublishProfiles/internetspeed.top.pubxml.user: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | 8 | True|2024-12-18T19:39:45.8417196Z; 9 | 10 | 11 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Views/Home/SpeedTest.cshtml: -------------------------------------------------------------------------------- 1 |  2 | @{ 3 | ViewData["Title"] = "Speed Test"; 4 | } 5 | 6 |
7 |
8 |
9 | 10 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model ErrorViewModel 2 | @{ 3 | ViewData["Title"] = "Error"; 4 | } 5 | 6 |

Error.

7 |

An error occurred while processing your request.

8 | 9 | @if (Model.ShowRequestId) 10 | { 11 |

12 | Request ID: @Model.RequestId 13 |

14 | } 15 | 16 |

Development Mode

17 |

18 | Swapping to Development environment will display more detailed information about the error that occurred. 19 |

20 |

21 | The Development environment shouldn't be enabled for deployed applications. 22 | It can result in displaying sensitive information from exceptions to end users. 23 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 24 | and restarting the app. 25 |

26 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Views/Shared/Errors/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model ErrorViewModel 2 | @{ 3 | ViewData["Title"] = "Error"; 4 | } 5 | 6 |

Error.

7 |

An error occurred while processing your request.

8 | 9 | @if (Model.ShowRequestId) 10 | { 11 |

12 | Request ID: @Model.RequestId 13 |

14 | } 15 | 16 |

Development Mode

17 |

18 | Swapping to Development environment will display more detailed information about the error that occurred. 19 |

20 |

21 | The Development environment shouldn't be enabled for deployed applications. 22 | It can result in displaying sensitive information from exceptions to end users. 23 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 24 | and restarting the app. 25 |

26 | 27 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Views/Shared/Footer/_FooterRefrences.cshtml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Views/Shared/Header/_HeaderRefrences.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Views/Shared/Header/_MetaTags.cshtml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /InternetSpeed.Web/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- 1 | /* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | for details on configuring this project to bundle and minify static web assets. */ 3 | 4 | a.navbar-brand { 5 | white-space: normal; 6 | text-align: center; 7 | word-break: break-all; 8 | } 9 | 10 | a { 11 | color: #0077cc; 12 | } 13 | 14 | .btn-primary { 15 | color: #fff; 16 | background-color: #1b6ec2; 17 | border-color: #1861ac; 18 | } 19 | 20 | .nav-pills .nav-link.active, .nav-pills .show > .nav-link { 21 | color: #fff; 22 | background-color: #1b6ec2; 23 | border-color: #1861ac; 24 | } 25 | 26 | .border-top { 27 | border-top: 1px solid #e5e5e5; 28 | } 29 | .border-bottom { 30 | border-bottom: 1px solid #e5e5e5; 31 | } 32 | 33 | .box-shadow { 34 | box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); 35 | } 36 | 37 | button.accept-policy { 38 | font-size: 1rem; 39 | line-height: inherit; 40 | } 41 | 42 | .footer { 43 | position: absolute; 44 | bottom: 0; 45 | width: 100%; 46 | white-space: nowrap; 47 | line-height: 60px; 48 | } 49 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Views/Shared/_PiNetworkScripts.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using InternetSpeed.Web 2 | @using InternetSpeed.Web.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /InternetSpeed.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /InternetSpeed.Web/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /InternetSpeed.Web/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*", 9 | "ConnectionStrings": { 10 | "SourceConnectionString": "Your-connetion-string" 11 | }, 12 | "PiNetwork": { 13 | "ApiKey": "Your-api-key" 14 | } 15 | , 16 | 17 | "Kestrel": { 18 | "Endpoints": { 19 | "Http": { 20 | "Url": "http://+:80" 21 | }, 22 | "Https": { 23 | "Url": "https://+:443", 24 | "Certificate": { 25 | "Path": "/https/example.crt", 26 | "KeyPath": "/https/example.key" 27 | } 28 | } 29 | } 30 | } 31 | } -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Common.Logging.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Common.Logging.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Common.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Common.Logging.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Humanizer.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/InternetSpeed.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/InternetSpeed.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/InternetSpeed.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/InternetSpeed.Core.pdb -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/InternetSpeed.DataLayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/InternetSpeed.DataLayer.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/InternetSpeed.DataLayer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/InternetSpeed.DataLayer.pdb -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/InternetSpeed.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/InternetSpeed.Web.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/InternetSpeed.Web.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/InternetSpeed.Web.exe -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/InternetSpeed.Web.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/InternetSpeed.Web.pdb -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/InternetSpeed.Web.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "frameworks": [ 5 | { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | { 10 | "name": "Microsoft.AspNetCore.App", 11 | "version": "8.0.0" 12 | } 13 | ], 14 | "configProperties": { 15 | "System.GC.Server": true, 16 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/LaunchDarkly.EventSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/LaunchDarkly.EventSource.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Build.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Build.Framework.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Build.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Build.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Features.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.Elfie.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.Elfie.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.Features.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.DiaSymReader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.DiaSymReader.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.DotNet.Scaffolding.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.DotNet.Scaffolding.Shared.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.NET.StringTools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.NET.StringTools.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Mono.TextTemplating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Mono.TextTemplating.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/NSec.Cryptography.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/NSec.Cryptography.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Nett.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Nett.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/NuGet.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/NuGet.Common.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/NuGet.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/NuGet.Configuration.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/NuGet.DependencyResolver.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/NuGet.DependencyResolver.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/NuGet.LibraryModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/NuGet.LibraryModel.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/NuGet.Packaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/NuGet.Packaging.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/NuGet.ProjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/NuGet.ProjectModel.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/NuGet.Protocol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/NuGet.Protocol.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/NuGet.Versioning.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/NuGet.Versioning.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/RestSharp.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/System.CodeDom.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/System.Reflection.MetadataLoadContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/System.Reflection.MetadataLoadContext.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/af/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/af/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*", 9 | "ConnectionStrings": { 10 | "SourceConnectionString": "Data Source=.;Initial Catalog=Source_DB;Integrated Security=true;TrustServerCertificate=true;MultipleActiveResultSets=true" 11 | }, 12 | "PiNetwork": { 13 | "ApiKey": "xb45fxgfhoo5waqkue2xcykk7pkubcm50kyr737jw0mqbq9ikkzyoyukofvidaj6" 14 | } 15 | , 16 | 17 | "Kestrel": { 18 | "Endpoints": { 19 | "Http": { 20 | "Url": "http://+:80" 21 | }, 22 | "Https": { 23 | "Url": "https://+:443", 24 | "Certificate": { 25 | "Path": "/https/InternetSpeed.crt", 26 | "KeyPath": "/https/InternetSpeed.key" 27 | } 28 | } 29 | } 30 | } 31 | } -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ar/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ar/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/az/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/az/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/bg/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/bg/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/bn-BD/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/bn-BD/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/cs/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/cs/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/da/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/da/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/de/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/de/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/dotnetstandard-bip32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/dotnetstandard-bip32.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/dotnetstandard-bip39.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/dotnetstandard-bip39.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/el/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/el/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/es/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/es/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/fa/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/fa/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/fi-FI/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/fi-FI/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/fr-BE/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/fr-BE/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/fr/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/fr/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/he/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/he/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/hr/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/hr/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/hu/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/hu/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/hy/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/hy/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/id/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/id/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/is/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/is/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/it/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/it/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ja/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ja/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ko-KR/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ko-KR/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ku/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ku/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/lv/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/lv/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ms-MY/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ms-MY/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/mt/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/mt/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/nb-NO/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/nb-NO/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/nb/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/nb/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/nl/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/nl/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pl/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pl/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/pt/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/pt/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ro/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ro/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ru/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ru/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/runtimes/linux-x64/native/libsodium.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/runtimes/linux-x64/native/libsodium.so -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/runtimes/osx-x64/native/libsodium.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/runtimes/osx-x64/native/libsodium.dylib -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/runtimes/win-x64/native/libsodium.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/runtimes/win-x64/native/libsodium.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/runtimes/win-x86/native/libsodium.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/runtimes/win-x86/native/libsodium.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/runtimes/win/lib/net7.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/runtimes/win/lib/net7.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/sk/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/sk/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/sl/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/sl/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/sr-Latn/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/sr-Latn/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/sr/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/sr/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/stellar-dotnet-sdk-xdr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/stellar-dotnet-sdk-xdr.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/stellar-dotnet-sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/stellar-dotnet-sdk.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/sv/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/sv/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/th-TH/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/th-TH/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/tr/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/tr/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/uk/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/uk/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/uz-Cyrl-UZ/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/uz-Cyrl-UZ/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/uz-Latn-UZ/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/uz-Latn-UZ/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/vi/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/vi/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-CN/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-CN/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Humanizer.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Humanizer.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/Common.Logging.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/Common.Logging.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/Common.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/Common.Logging.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/InternetSpeed.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/InternetSpeed.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/InternetSpeed.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/InternetSpeed.Core.pdb -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/InternetSpeed.DataLayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/InternetSpeed.DataLayer.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/InternetSpeed.DataLayer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/InternetSpeed.DataLayer.pdb -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/InternetSpeed.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/InternetSpeed.Web.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/InternetSpeed.Web.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/InternetSpeed.Web.exe -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/InternetSpeed.Web.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/InternetSpeed.Web.pdb -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/InternetSpeed.Web.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "frameworks": [ 5 | { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | { 10 | "name": "Microsoft.AspNetCore.App", 11 | "version": "8.0.0" 12 | } 13 | ], 14 | "configProperties": { 15 | "System.GC.Server": true, 16 | "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, 17 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/LaunchDarkly.EventSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/LaunchDarkly.EventSource.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/NSec.Cryptography.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/NSec.Cryptography.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/Nett.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/Nett.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/RestSharp.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*", 9 | "ConnectionStrings": { 10 | "SourceConnectionString": "Data Source=.;Initial Catalog=Source_DB;Integrated Security=true;TrustServerCertificate=true;MultipleActiveResultSets=true" 11 | }, 12 | 13 | "PiNetwork": { 14 | "ApiKey": "z2qihzjkcm0ggnsyf4zfykmh8vqetxzvlszqlxsggzc9wqaoxu6iiesznehvtaze" 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/dotnetstandard-bip32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/dotnetstandard-bip32.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/dotnetstandard-bip39.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/dotnetstandard-bip39.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/runtimes/linux-x64/native/libsodium.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/runtimes/linux-x64/native/libsodium.so -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/runtimes/osx-x64/native/libsodium.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/runtimes/osx-x64/native/libsodium.dylib -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/runtimes/win-x64/native/libsodium.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/runtimes/win-x64/native/libsodium.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/runtimes/win-x86/native/libsodium.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/runtimes/win-x86/native/libsodium.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/stellar-dotnet-sdk-xdr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/stellar-dotnet-sdk-xdr.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/bin/Release/net8.0/stellar-dotnet-sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/bin/Release/net8.0/stellar-dotnet-sdk.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Container/ContainerDevelopmentMode.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Container/ContainerDevelopmentMode.cache -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Container/ContainerId.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Container/ContainerId.cache -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Container/ContainerName.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Container/ContainerName.cache -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Container/ContainerRunContext.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Container/ContainerRunContext.cache -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/Internet.1A306A9B.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Debug/net8.0/Internet.1A306A9B.Up2Date -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7c856c0d713f6705d36fbd7cd15486324e01ab0021a295065724dd8f69cb8553 2 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::Microsoft.AspNetCore.Builder; 3 | global using global::Microsoft.AspNetCore.Hosting; 4 | global using global::Microsoft.AspNetCore.Http; 5 | global using global::Microsoft.AspNetCore.Routing; 6 | global using global::Microsoft.Extensions.Configuration; 7 | global using global::Microsoft.Extensions.DependencyInjection; 8 | global using global::Microsoft.Extensions.Hosting; 9 | global using global::Microsoft.Extensions.Logging; 10 | global using global::System; 11 | global using global::System.Collections.Generic; 12 | global using global::System.IO; 13 | global using global::System.Linq; 14 | global using global::System.Net.Http; 15 | global using global::System.Net.Http.Json; 16 | global using global::System.Threading; 17 | global using global::System.Threading.Tasks; 18 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0 2 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + 15 | "ory, Microsoft.AspNetCore.Mvc.Razor")] 16 | 17 | // Generated by the MSBuild WriteCodeFragment class. 18 | 19 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.assets.cache -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.csproj.BuildWithSkipAnalyzers -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | cc53c5317dfa2d26b5bf703d28dbd97d27d6b94de863548fb50f9c821759aa16 2 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 06a7973f4bb9584f291b28c8419cff1f0384eef22f533227435871033cdf46ca 2 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Debug/net8.0/InternetSpeed.Web.pdb -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Debug/net8.0/apphost.exe -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/project.razor.vs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Debug/net8.0/project.razor.vs.bin -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/ref/InternetSpeed.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Debug/net8.0/ref/InternetSpeed.Web.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/refint/InternetSpeed.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Debug/net8.0/refint/InternetSpeed.Web.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/staticwebassets.references.upToDateCheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Debug/net8.0/staticwebassets.references.upToDateCheck.txt -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/staticwebassets.removed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Debug/net8.0/staticwebassets.removed.txt -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/staticwebassets/msbuild.build.InternetSpeed.Web.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.InternetSpeed.Web.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.InternetSpeed.Web.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f8a99995909f1179dc7ca23e421dee5627671ce923d3e6648f955e51d14bba24 2 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::Microsoft.AspNetCore.Builder; 3 | global using global::Microsoft.AspNetCore.Hosting; 4 | global using global::Microsoft.AspNetCore.Http; 5 | global using global::Microsoft.AspNetCore.Routing; 6 | global using global::Microsoft.Extensions.Configuration; 7 | global using global::Microsoft.Extensions.DependencyInjection; 8 | global using global::Microsoft.Extensions.Hosting; 9 | global using global::Microsoft.Extensions.Logging; 10 | global using global::System; 11 | global using global::System.Collections.Generic; 12 | global using global::System.IO; 13 | global using global::System.Linq; 14 | global using global::System.Net.Http; 15 | global using global::System.Net.Http.Json; 16 | global using global::System.Threading; 17 | global using global::System.Threading.Tasks; 18 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0 2 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + 15 | "ory, Microsoft.AspNetCore.Mvc.Razor")] 16 | 17 | // Generated by the MSBuild WriteCodeFragment class. 18 | 19 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.assets.cache -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.csproj.CopyComplete -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 10a6eaeb0d79008ea92696b39488887d48e267260c6f969ba76e5a8ea0630aeb 2 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | af389b540cf7da8a2c30967ad13ecee5c98c50849c9fb49d9817fe741654717b 2 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/InternetSpeed.Web.pdb -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/Common.Logging.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/Common.Logging.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/Common.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/Common.Logging.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/InternetSpeed.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/InternetSpeed.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/InternetSpeed.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/InternetSpeed.Core.pdb -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/InternetSpeed.DataLayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/InternetSpeed.DataLayer.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/InternetSpeed.DataLayer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/InternetSpeed.DataLayer.pdb -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/InternetSpeed.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/InternetSpeed.Web.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/InternetSpeed.Web.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/InternetSpeed.Web.exe -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/InternetSpeed.Web.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/InternetSpeed.Web.pdb -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/InternetSpeed.Web.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "frameworks": [ 5 | { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | { 10 | "name": "Microsoft.AspNetCore.App", 11 | "version": "8.0.0" 12 | } 13 | ], 14 | "configProperties": { 15 | "System.GC.Server": true, 16 | "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, 17 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/LaunchDarkly.EventSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/LaunchDarkly.EventSource.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/NSec.Cryptography.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/NSec.Cryptography.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/Nett.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/Nett.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/RestSharp.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*", 9 | "ConnectionStrings": { 10 | "SourceConnectionString": "Data Source=.;Initial Catalog=Source_DB;Integrated Security=true;TrustServerCertificate=true;MultipleActiveResultSets=true" 11 | }, 12 | 13 | "PiNetwork": { 14 | "ApiKey": "z2qihzjkcm0ggnsyf4zfykmh8vqetxzvlszqlxsggzc9wqaoxu6iiesznehvtaze" 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/dotnetstandard-bip32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/dotnetstandard-bip32.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/dotnetstandard-bip39.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/dotnetstandard-bip39.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/runtimes/linux-x64/native/libsodium.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/runtimes/linux-x64/native/libsodium.so -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/runtimes/osx-x64/native/libsodium.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/runtimes/osx-x64/native/libsodium.dylib -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/runtimes/win-x64/native/libsodium.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/runtimes/win-x64/native/libsodium.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/runtimes/win-x86/native/libsodium.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/runtimes/win-x86/native/libsodium.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/stellar-dotnet-sdk-xdr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/stellar-dotnet-sdk-xdr.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/stellar-dotnet-sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/stellar-dotnet-sdk.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/web.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/wwwroot/css/site.css: -------------------------------------------------------------------------------- 1 | html { 2 | font-size: 14px; 3 | } 4 | 5 | @media (min-width: 768px) { 6 | html { 7 | font-size: 16px; 8 | } 9 | } 10 | 11 | .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus { 12 | box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb; 13 | } 14 | 15 | html { 16 | position: relative; 17 | min-height: 100%; 18 | } 19 | 20 | body { 21 | margin-bottom: 60px; 22 | } -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/wwwroot/favicon.ico -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/PubTmp/Out/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | // for details on configuring this project to bundle and minify static web assets. 3 | 4 | // Write your JavaScript code. 5 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/apphost.exe -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f8a99995909f1179dc7ca23e421dee5627671ce923d3e6648f955e51d14bba24 2 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::Microsoft.AspNetCore.Builder; 3 | global using global::Microsoft.AspNetCore.Hosting; 4 | global using global::Microsoft.AspNetCore.Http; 5 | global using global::Microsoft.AspNetCore.Routing; 6 | global using global::Microsoft.Extensions.Configuration; 7 | global using global::Microsoft.Extensions.DependencyInjection; 8 | global using global::Microsoft.Extensions.Hosting; 9 | global using global::Microsoft.Extensions.Logging; 10 | global using global::System; 11 | global using global::System.Collections.Generic; 12 | global using global::System.IO; 13 | global using global::System.Linq; 14 | global using global::System.Net.Http; 15 | global using global::System.Net.Http.Json; 16 | global using global::System.Threading; 17 | global using global::System.Threading.Tasks; 18 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0 2 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + 15 | "ory, Microsoft.AspNetCore.Mvc.Razor")] 16 | 17 | // Generated by the MSBuild WriteCodeFragment class. 18 | 19 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.assets.cache -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.csproj.CopyComplete -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4219ecb68b01421c71c982e3e81bd777b9a396c5edc0044bcef25a0be9568108 2 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 4033df91200acafa8afd6cdb0c2cc4404a392791cc34efa3e41f485bfc30ba9b 2 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/InternetSpeed.Web.pdb -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/Common.Logging.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/Common.Logging.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/Common.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/Common.Logging.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/InternetSpeed.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/InternetSpeed.Core.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/InternetSpeed.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/InternetSpeed.Core.pdb -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/InternetSpeed.DataLayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/InternetSpeed.DataLayer.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/InternetSpeed.DataLayer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/InternetSpeed.DataLayer.pdb -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/InternetSpeed.Web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/InternetSpeed.Web -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/InternetSpeed.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/InternetSpeed.Web.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/InternetSpeed.Web.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/InternetSpeed.Web.pdb -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/InternetSpeed.Web.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "frameworks": [ 5 | { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | { 10 | "name": "Microsoft.AspNetCore.App", 11 | "version": "8.0.0" 12 | } 13 | ], 14 | "configProperties": { 15 | "System.GC.Server": true, 16 | "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, 17 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/LaunchDarkly.EventSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/LaunchDarkly.EventSource.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/NSec.Cryptography.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/NSec.Cryptography.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/Nett.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/Nett.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/RestSharp.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*", 9 | "ConnectionStrings": { 10 | "SourceConnectionString": "Data Source=.;Initial Catalog=Source_DB;Integrated Security=true;TrustServerCertificate=true;MultipleActiveResultSets=true" 11 | }, 12 | 13 | "PiNetwork": { 14 | "ApiKey": "z2qihzjkcm0ggnsyf4zfykmh8vqetxzvlszqlxsggzc9wqaoxu6iiesznehvtaze" 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/dotnetstandard-bip32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/dotnetstandard-bip32.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/dotnetstandard-bip39.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/dotnetstandard-bip39.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/libsodium.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/libsodium.so -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/stellar-dotnet-sdk-xdr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/stellar-dotnet-sdk-xdr.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/stellar-dotnet-sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/stellar-dotnet-sdk.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/wwwroot/css/site.css: -------------------------------------------------------------------------------- 1 | html { 2 | font-size: 14px; 3 | } 4 | 5 | @media (min-width: 768px) { 6 | html { 7 | font-size: 16px; 8 | } 9 | } 10 | 11 | .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus { 12 | box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb; 13 | } 14 | 15 | html { 16 | position: relative; 17 | min-height: 100%; 18 | } 19 | 20 | body { 21 | margin-bottom: 60px; 22 | } -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/wwwroot/favicon.ico -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/PubTmp/Out/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | // for details on configuring this project to bundle and minify static web assets. 3 | 4 | // Write your JavaScript code. 5 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/apphost -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/ref/InternetSpeed.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/ref/InternetSpeed.Web.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/refint/InternetSpeed.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/linux-x64/refint/InternetSpeed.Web.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/staticwebassets/msbuild.build.InternetSpeed.Web.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/staticwebassets/msbuild.buildMultiTargeting.InternetSpeed.Web.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/linux-x64/staticwebassets/msbuild.buildTransitive.InternetSpeed.Web.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/project.razor.vs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/project.razor.vs.bin -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/ref/InternetSpeed.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/ref/InternetSpeed.Web.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/refint/InternetSpeed.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/obj/Release/net8.0/refint/InternetSpeed.Web.dll -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/staticwebassets/msbuild.build.InternetSpeed.Web.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.InternetSpeed.Web.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.InternetSpeed.Web.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /InternetSpeed.Web/obj/publish/linux-x64/InternetSpeed.Web.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/css/plugins/plugins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/css/plugins/plugins.css -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- 1 | html { 2 | font-size: 14px; 3 | } 4 | 5 | @media (min-width: 768px) { 6 | html { 7 | font-size: 16px; 8 | } 9 | } 10 | 11 | .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus { 12 | box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb; 13 | } 14 | 15 | html { 16 | position: relative; 17 | min-height: 100%; 18 | } 19 | 20 | body { 21 | margin-bottom: 60px; 22 | } -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-brands-400d41dd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-brands-400d41dd41d.eot -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-duotone-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-duotone-900.eot -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-duotone-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-duotone-900.ttf -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-duotone-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-duotone-900.woff -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-duotone-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-duotone-900.woff2 -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-duotone-900d41dd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-duotone-900d41dd41d.eot -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-light-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-light-300.eot -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-light-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-light-300.ttf -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-light-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-light-300.woff -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-light-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-light-300.woff2 -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-light-300d41dd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-light-300d41dd41d.eot -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-regular-400d41dd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-regular-400d41dd41d.eot -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/fa-solid-900d41dd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/fa-solid-900d41dd41d.eot -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/slick.eot -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/slick.ttf -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/slick.woff -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/fonts/slickd41dd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/fonts/slickd41dd41d.eot -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/ajax-loader.gif -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/banner/post-hover-image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/banner/post-hover-image-03.jpg -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/bg/bg-image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/bg/bg-image-4.jpg -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/favicon.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/icons/arrow-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/icons/arrow-icon.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/icons/light-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/icons/light-close.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/icons/shape-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/icons/shape-01.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/icons/shape-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/icons/shape-02.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/logo/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/logo/logo-black.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/logo/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/logo/logo-white.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/logo/logo-white2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/logo/logo-white2.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/others/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/others/1.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/others/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/others/2.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/others/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/others/3.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/others/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/others/4.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/others/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/others/404.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/others/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/others/5.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/others/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/others/6.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/others/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/others/7.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/others/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/others/8.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/others/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/others/9.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/others/author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/others/author.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/others/maintenence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/others/maintenence.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/small-images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/small-images/1.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/small-images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/small-images/2.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/small-images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/small-images/3.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/small-images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/small-images/4.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/small-images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/small-images/5.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/images/small-images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/InternetSpeed.Web/wwwroot/images/small-images/6.png -------------------------------------------------------------------------------- /InternetSpeed.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | // for details on configuring this project to bundle and minify static web assets. 3 | 4 | // Write your JavaScript code. 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # internet-speed 2 | - For the testnet: **[test.internetspeed.top](https://test.internetspeed.top/)** 3 | - The preview for the mainnet: **[internetspeed.top](https://internetspeed.top/)** 4 | - The code will be available once we have completely published the website. 5 | > [!NOTE] 6 | > Development in progress 🚀 7 | > We are rebuilding the project from scratch, changing the speed test engine, and adding new features! 8 | -------------------------------------------------------------------------------- /docker-compose.dcproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 2.1 5 | Linux 6 | False 7 | 513ac65f-9c80-4e4b-9a44-c6514076b6b4 8 | LaunchBrowser 9 | {Scheme}://localhost:{ServicePort} 10 | internetspeed.web 11 | 12 | 13 | 14 | docker-compose.yml 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- 1 | services: 2 | internetspeed.web: 3 | environment: 4 | - ASPNETCORE_ENVIRONMENT=Development 5 | - ASPNETCORE_HTTP_PORTS=8080 6 | - ASPNETCORE_HTTPS_PORTS=8081 7 | ports: 8 | - "8080" 9 | - "8081" 10 | volumes: 11 | - ${APPDATA}/Microsoft/UserSecrets:/home/app/.microsoft/usersecrets:ro 12 | - ${APPDATA}/ASP.NET/Https:/home/app/.aspnet/https:ro -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | services: 2 | internetspeed.web: 3 | image: ${DOCKER_REGISTRY-}internetspeedweb 4 | build: 5 | context: . 6 | dockerfile: InternetSpeed.Web/Dockerfile 7 | ports: 8 | - "80:80" 9 | - "443:443" 10 | environment: 11 | ASPNETCORE_URLS: "https://+;http://+" 12 | ASPNETCORE_HTTPS_PORT: "443" 13 | ASPNETCORE_ENVIRONMENT: Production 14 | volumes: 15 | - /root/example.crt:/https/example.crt:ro 16 | - /root/example.key:/https/example.key:ro -------------------------------------------------------------------------------- /launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Docker Compose": { 4 | "commandName": "DockerCompose", 5 | "commandVersion": "1.0", 6 | "serviceActions": { 7 | "InternetSpeed.Web": "Start" 8 | }, 9 | "environmentVariables": { 10 | "ASPNETCORE_ENVIRONMENT": "Production" 11 | } 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /obj/Docker/CachedComposeConfigFilePaths.cache: -------------------------------------------------------------------------------- 1 | TT82C9ARmZdEzi4x6IR/1WWEpLXU+q0l+jJJpw7zcBQ=>B:\InternetSpeed\obj\Docker\MergedDockerCompose.cache 2 | -------------------------------------------------------------------------------- /obj/Docker/DOCKER_REGISTRY.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/internet-speed/5396320e53f72014bc8c80728f5fed772b6896e3/obj/Docker/DOCKER_REGISTRY.cache -------------------------------------------------------------------------------- /obj/Docker/PrerequisiteFailureTelemetry.json: -------------------------------------------------------------------------------- 1 | {"PrerequisiteCheckName":"Microsoft.Docker.Prerequisites.DockerForWindowsRunningPrerequisite","HasWarning":false,"HasError":true,"Properties":null} -------------------------------------------------------------------------------- /obj/Docker/TargetOS.cache: -------------------------------------------------------------------------------- 1 | Linux --------------------------------------------------------------------------------