diff --git a/Directory.Packages.props b/Directory.Packages.props
deleted file mode 100644
index 9a38de1..0000000
--- a/Directory.Packages.props
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
- true
- true
- 8.0.1
- 8.1.0
- 8.0.1
- 8.0.0-preview.3.24105.21
- 2.59.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/kill b/kill
new file mode 100644
index 0000000..e69de29
diff --git a/labs/1-Create-Catalog-API/README.md b/labs/1-Create-Catalog-API/README.md
index e3d5c97..034f111 100644
--- a/labs/1-Create-Catalog-API/README.md
+++ b/labs/1-Create-Catalog-API/README.md
@@ -144,6 +144,7 @@ Now that we've setup the solution to use Aspire for composing our distributed ap
![VS Web API project template options](./img/vs-web-api-template-options.png)
+1. In the newly created project, update the package reference to `Swashbuckle.AspNetCore` to version `6.5.0`
1. Open the `Program.cs` file of the `eShop.AppHost` project, and update it so the API project you just added is named `"catalog-api"` and has a reference to the `CatalogDB`:
```csharp
@@ -194,6 +195,7 @@ Now that we've setup the solution to use Aspire for composing our distributed ap
```
This method will define the endpoint routes for the Catalog API.
+
1. In the method, add a call to `app.MapGet` to define an endpoint that responds to GET requests to the `/items` path, and is handled by an async lambda that accepts two parameters: a `PaginationRequest` type that will represent the shape of the request, and the `CatalogDbContext` instance that will come from the DI container:
```csharp
diff --git a/labs/1-Create-Catalog-API/end/Catalog.API/Catalog.API.csproj b/labs/1-Create-Catalog-API/end/Catalog.API/Catalog.API.csproj
index 9fcf54c..2f86045 100644
--- a/labs/1-Create-Catalog-API/end/Catalog.API/Catalog.API.csproj
+++ b/labs/1-Create-Catalog-API/end/Catalog.API/Catalog.API.csproj
@@ -5,7 +5,7 @@
enable
enable
true
- false
+
diff --git a/labs/1-Create-Catalog-API/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj b/labs/1-Create-Catalog-API/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj
index 54e5a9c..66c18e9 100644
--- a/labs/1-Create-Catalog-API/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj
+++ b/labs/1-Create-Catalog-API/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj
@@ -5,7 +5,7 @@
eShop.Catalog.Data.Manager
enable
enable
- false
+
diff --git a/labs/1-Create-Catalog-API/end/Catalog.Data/Catalog.Data.csproj b/labs/1-Create-Catalog-API/end/Catalog.Data/Catalog.Data.csproj
index bb561cb..9bd24ff 100644
--- a/labs/1-Create-Catalog-API/end/Catalog.Data/Catalog.Data.csproj
+++ b/labs/1-Create-Catalog-API/end/Catalog.Data/Catalog.Data.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.Data
enable
enable
- false
diff --git a/labs/1-Create-Catalog-API/end/eShop.AppHost/eShop.AppHost.csproj b/labs/1-Create-Catalog-API/end/eShop.AppHost/eShop.AppHost.csproj
index 4dfe304..dcbbc70 100644
--- a/labs/1-Create-Catalog-API/end/eShop.AppHost/eShop.AppHost.csproj
+++ b/labs/1-Create-Catalog-API/end/eShop.AppHost/eShop.AppHost.csproj
@@ -6,7 +6,6 @@
enable
enable
true
- false
diff --git a/labs/1-Create-Catalog-API/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj b/labs/1-Create-Catalog-API/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
index b7c2a71..3080588 100644
--- a/labs/1-Create-Catalog-API/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
+++ b/labs/1-Create-Catalog-API/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
@@ -6,7 +6,6 @@
enable
enable
true
- false
diff --git a/labs/1-Create-Catalog-API/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj b/labs/1-Create-Catalog-API/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj
index b84327c..0d55d31 100644
--- a/labs/1-Create-Catalog-API/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj
+++ b/labs/1-Create-Catalog-API/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.Data.Manager
enable
enable
- false
diff --git a/labs/1-Create-Catalog-API/src/Catalog.Data/Catalog.Data.csproj b/labs/1-Create-Catalog-API/src/Catalog.Data/Catalog.Data.csproj
index bb561cb..9bd24ff 100644
--- a/labs/1-Create-Catalog-API/src/Catalog.Data/Catalog.Data.csproj
+++ b/labs/1-Create-Catalog-API/src/Catalog.Data/Catalog.Data.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.Data
enable
enable
- false
diff --git a/labs/2-Create-Blazor-Frontend/end/Catalog.API/Catalog.API.csproj b/labs/2-Create-Blazor-Frontend/end/Catalog.API/Catalog.API.csproj
index a7096fe..9b3e732 100644
--- a/labs/2-Create-Blazor-Frontend/end/Catalog.API/Catalog.API.csproj
+++ b/labs/2-Create-Blazor-Frontend/end/Catalog.API/Catalog.API.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.API
d1b521ec-3411-4d39-98c6-8509466ed471
enable
- false
diff --git a/labs/2-Create-Blazor-Frontend/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj b/labs/2-Create-Blazor-Frontend/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj
index 54e5a9c..c9ef4cd 100644
--- a/labs/2-Create-Blazor-Frontend/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj
+++ b/labs/2-Create-Blazor-Frontend/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.Data.Manager
enable
enable
- false
diff --git a/labs/2-Create-Blazor-Frontend/end/Catalog.Data/Catalog.Data.csproj b/labs/2-Create-Blazor-Frontend/end/Catalog.Data/Catalog.Data.csproj
index bb561cb..9bd24ff 100644
--- a/labs/2-Create-Blazor-Frontend/end/Catalog.Data/Catalog.Data.csproj
+++ b/labs/2-Create-Blazor-Frontend/end/Catalog.Data/Catalog.Data.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.Data
enable
enable
- false
diff --git a/labs/2-Create-Blazor-Frontend/end/WebApp/WebApp.csproj b/labs/2-Create-Blazor-Frontend/end/WebApp/WebApp.csproj
index 9ad03b7..17b2494 100644
--- a/labs/2-Create-Blazor-Frontend/end/WebApp/WebApp.csproj
+++ b/labs/2-Create-Blazor-Frontend/end/WebApp/WebApp.csproj
@@ -5,7 +5,6 @@
2d86f364-a439-47c5-9468-3b85a7d9a18e
enable
eShop.WebApp
- false
diff --git a/labs/2-Create-Blazor-Frontend/end/eShop.AppHost/eShop.AppHost.csproj b/labs/2-Create-Blazor-Frontend/end/eShop.AppHost/eShop.AppHost.csproj
index 40fbb33..383fa4c 100644
--- a/labs/2-Create-Blazor-Frontend/end/eShop.AppHost/eShop.AppHost.csproj
+++ b/labs/2-Create-Blazor-Frontend/end/eShop.AppHost/eShop.AppHost.csproj
@@ -7,7 +7,6 @@
true
false
b99dbce4-17d4-41d2-858a-2b0529d60bb8
- false
diff --git a/labs/2-Create-Blazor-Frontend/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj b/labs/2-Create-Blazor-Frontend/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
index 45a03d1..896d3cc 100644
--- a/labs/2-Create-Blazor-Frontend/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
+++ b/labs/2-Create-Blazor-Frontend/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
@@ -6,7 +6,6 @@
enable
enable
true
- false
diff --git a/labs/2-Create-Blazor-Frontend/src/Catalog.API/Catalog.API.csproj b/labs/2-Create-Blazor-Frontend/src/Catalog.API/Catalog.API.csproj
index a7096fe..9b3e732 100644
--- a/labs/2-Create-Blazor-Frontend/src/Catalog.API/Catalog.API.csproj
+++ b/labs/2-Create-Blazor-Frontend/src/Catalog.API/Catalog.API.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.API
d1b521ec-3411-4d39-98c6-8509466ed471
enable
- false
diff --git a/labs/2-Create-Blazor-Frontend/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj b/labs/2-Create-Blazor-Frontend/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj
index 54e5a9c..c9ef4cd 100644
--- a/labs/2-Create-Blazor-Frontend/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj
+++ b/labs/2-Create-Blazor-Frontend/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.Data.Manager
enable
enable
- false
diff --git a/labs/2-Create-Blazor-Frontend/src/Catalog.Data/Catalog.Data.csproj b/labs/2-Create-Blazor-Frontend/src/Catalog.Data/Catalog.Data.csproj
index bb561cb..9bd24ff 100644
--- a/labs/2-Create-Blazor-Frontend/src/Catalog.Data/Catalog.Data.csproj
+++ b/labs/2-Create-Blazor-Frontend/src/Catalog.Data/Catalog.Data.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.Data
enable
enable
- false
diff --git a/labs/2-Create-Blazor-Frontend/src/WebApp/WebApp.csproj b/labs/2-Create-Blazor-Frontend/src/WebApp/WebApp.csproj
index 6eabd61..5e633d9 100644
--- a/labs/2-Create-Blazor-Frontend/src/WebApp/WebApp.csproj
+++ b/labs/2-Create-Blazor-Frontend/src/WebApp/WebApp.csproj
@@ -5,7 +5,6 @@
2d86f364-a439-47c5-9468-3b85a7d9a18e
enable
eShop.WebApp
- false
diff --git a/labs/2-Create-Blazor-Frontend/src/eShop.AppHost/eShop.AppHost.csproj b/labs/2-Create-Blazor-Frontend/src/eShop.AppHost/eShop.AppHost.csproj
index 28089e3..dc26e8a 100644
--- a/labs/2-Create-Blazor-Frontend/src/eShop.AppHost/eShop.AppHost.csproj
+++ b/labs/2-Create-Blazor-Frontend/src/eShop.AppHost/eShop.AppHost.csproj
@@ -7,7 +7,6 @@
true
false
b99dbce4-17d4-41d2-858a-2b0529d60bb8
- false
diff --git a/labs/2-Create-Blazor-Frontend/src/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj b/labs/2-Create-Blazor-Frontend/src/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
index 45a03d1..896d3cc 100644
--- a/labs/2-Create-Blazor-Frontend/src/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
+++ b/labs/2-Create-Blazor-Frontend/src/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
@@ -6,7 +6,6 @@
enable
enable
true
- false
diff --git a/labs/3-Add-Identity/end/Catalog.API/Catalog.API.csproj b/labs/3-Add-Identity/end/Catalog.API/Catalog.API.csproj
index a7096fe..9b3e732 100644
--- a/labs/3-Add-Identity/end/Catalog.API/Catalog.API.csproj
+++ b/labs/3-Add-Identity/end/Catalog.API/Catalog.API.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.API
d1b521ec-3411-4d39-98c6-8509466ed471
enable
- false
diff --git a/labs/3-Add-Identity/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj b/labs/3-Add-Identity/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj
index 54e5a9c..c9ef4cd 100644
--- a/labs/3-Add-Identity/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj
+++ b/labs/3-Add-Identity/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.Data.Manager
enable
enable
- false
diff --git a/labs/3-Add-Identity/end/Catalog.Data/Catalog.Data.csproj b/labs/3-Add-Identity/end/Catalog.Data/Catalog.Data.csproj
index bb561cb..9bd24ff 100644
--- a/labs/3-Add-Identity/end/Catalog.Data/Catalog.Data.csproj
+++ b/labs/3-Add-Identity/end/Catalog.Data/Catalog.Data.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.Data
enable
enable
- false
diff --git a/labs/3-Add-Identity/end/WebApp/WebApp.csproj b/labs/3-Add-Identity/end/WebApp/WebApp.csproj
index 5b13236..19ee27b 100644
--- a/labs/3-Add-Identity/end/WebApp/WebApp.csproj
+++ b/labs/3-Add-Identity/end/WebApp/WebApp.csproj
@@ -5,7 +5,6 @@
2d86f364-a439-47c5-9468-3b85a7d9a18e
enable
eShop.WebApp
- false
diff --git a/labs/3-Add-Identity/end/eShop.AppHost/eShop.AppHost.csproj b/labs/3-Add-Identity/end/eShop.AppHost/eShop.AppHost.csproj
index 40fbb33..383fa4c 100644
--- a/labs/3-Add-Identity/end/eShop.AppHost/eShop.AppHost.csproj
+++ b/labs/3-Add-Identity/end/eShop.AppHost/eShop.AppHost.csproj
@@ -7,7 +7,6 @@
true
false
b99dbce4-17d4-41d2-858a-2b0529d60bb8
- false
diff --git a/labs/3-Add-Identity/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj b/labs/3-Add-Identity/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
index 9e2c916..e86eaa1 100644
--- a/labs/3-Add-Identity/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
+++ b/labs/3-Add-Identity/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
@@ -6,7 +6,6 @@
enable
enable
true
- false
diff --git a/labs/3-Add-Identity/src/Catalog.API/Catalog.API.csproj b/labs/3-Add-Identity/src/Catalog.API/Catalog.API.csproj
index a7096fe..9b3e732 100644
--- a/labs/3-Add-Identity/src/Catalog.API/Catalog.API.csproj
+++ b/labs/3-Add-Identity/src/Catalog.API/Catalog.API.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.API
d1b521ec-3411-4d39-98c6-8509466ed471
enable
- false
diff --git a/labs/3-Add-Identity/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj b/labs/3-Add-Identity/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj
index 54e5a9c..c9ef4cd 100644
--- a/labs/3-Add-Identity/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj
+++ b/labs/3-Add-Identity/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.Data.Manager
enable
enable
- false
diff --git a/labs/3-Add-Identity/src/Catalog.Data/Catalog.Data.csproj b/labs/3-Add-Identity/src/Catalog.Data/Catalog.Data.csproj
index bb561cb..9bd24ff 100644
--- a/labs/3-Add-Identity/src/Catalog.Data/Catalog.Data.csproj
+++ b/labs/3-Add-Identity/src/Catalog.Data/Catalog.Data.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.Data
enable
enable
- false
diff --git a/labs/3-Add-Identity/src/WebApp/WebApp.csproj b/labs/3-Add-Identity/src/WebApp/WebApp.csproj
index 35cda67..54c9da7 100644
--- a/labs/3-Add-Identity/src/WebApp/WebApp.csproj
+++ b/labs/3-Add-Identity/src/WebApp/WebApp.csproj
@@ -5,7 +5,6 @@
2d86f364-a439-47c5-9468-3b85a7d9a18e
enable
eShop.WebApp
- false
diff --git a/labs/3-Add-Identity/src/eShop.AppHost/eShop.AppHost.csproj b/labs/3-Add-Identity/src/eShop.AppHost/eShop.AppHost.csproj
index 40fbb33..383fa4c 100644
--- a/labs/3-Add-Identity/src/eShop.AppHost/eShop.AppHost.csproj
+++ b/labs/3-Add-Identity/src/eShop.AppHost/eShop.AppHost.csproj
@@ -7,7 +7,6 @@
true
false
b99dbce4-17d4-41d2-858a-2b0529d60bb8
- false
diff --git a/labs/3-Add-Identity/src/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj b/labs/3-Add-Identity/src/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
index 9e2c916..e86eaa1 100644
--- a/labs/3-Add-Identity/src/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
+++ b/labs/3-Add-Identity/src/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
@@ -6,7 +6,6 @@
enable
enable
true
- false
diff --git a/labs/4-Add-Shopping-Basket/README.md b/labs/4-Add-Shopping-Basket/README.md
index 4d2b7f9..fef9aad 100644
--- a/labs/4-Add-Shopping-Basket/README.md
+++ b/labs/4-Add-Shopping-Basket/README.md
@@ -205,10 +205,6 @@ In previous labs, we have created a web site that shoppers can use to browser a
{
public int ProductId { get; set; }
- public string? ProductName { get; set; }
-
- public decimal UnitPrice { get; set; }
-
public int Quantity { get; set; }
}
```
diff --git a/labs/4-Add-Shopping-Basket/end/Basket.API/Basket.API.csproj b/labs/4-Add-Shopping-Basket/end/Basket.API/Basket.API.csproj
index 663b631..8e2155f 100644
--- a/labs/4-Add-Shopping-Basket/end/Basket.API/Basket.API.csproj
+++ b/labs/4-Add-Shopping-Basket/end/Basket.API/Basket.API.csproj
@@ -5,7 +5,6 @@
eShop.Basket.API
enable
enable
- false
diff --git a/labs/4-Add-Shopping-Basket/end/Basket.API/Models/BasketItem.cs b/labs/4-Add-Shopping-Basket/end/Basket.API/Models/BasketItem.cs
index 2dcfca2..7697402 100644
--- a/labs/4-Add-Shopping-Basket/end/Basket.API/Models/BasketItem.cs
+++ b/labs/4-Add-Shopping-Basket/end/Basket.API/Models/BasketItem.cs
@@ -4,9 +4,5 @@ public class BasketItem
{
public int ProductId { get; set; }
- //public string? ProductName { get; set; }
-
- //public decimal UnitPrice { get; set; }
-
public int Quantity { get; set; }
}
diff --git a/labs/4-Add-Shopping-Basket/end/Catalog.API/Catalog.API.csproj b/labs/4-Add-Shopping-Basket/end/Catalog.API/Catalog.API.csproj
index a7096fe..9b3e732 100644
--- a/labs/4-Add-Shopping-Basket/end/Catalog.API/Catalog.API.csproj
+++ b/labs/4-Add-Shopping-Basket/end/Catalog.API/Catalog.API.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.API
d1b521ec-3411-4d39-98c6-8509466ed471
enable
- false
diff --git a/labs/4-Add-Shopping-Basket/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj b/labs/4-Add-Shopping-Basket/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj
index 54e5a9c..c9ef4cd 100644
--- a/labs/4-Add-Shopping-Basket/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj
+++ b/labs/4-Add-Shopping-Basket/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.Data.Manager
enable
enable
- false
diff --git a/labs/4-Add-Shopping-Basket/end/Catalog.Data/Catalog.Data.csproj b/labs/4-Add-Shopping-Basket/end/Catalog.Data/Catalog.Data.csproj
index bb561cb..9bd24ff 100644
--- a/labs/4-Add-Shopping-Basket/end/Catalog.Data/Catalog.Data.csproj
+++ b/labs/4-Add-Shopping-Basket/end/Catalog.Data/Catalog.Data.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.Data
enable
enable
- false
diff --git a/labs/4-Add-Shopping-Basket/end/GrpcService1/GrpcService1.csproj b/labs/4-Add-Shopping-Basket/end/GrpcService1/GrpcService1.csproj
deleted file mode 100644
index 68ea7a6..0000000
--- a/labs/4-Add-Shopping-Basket/end/GrpcService1/GrpcService1.csproj
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- net8.0
- enable
- enable
-
-
-
-
-
-
-
-
-
-
-
diff --git a/labs/4-Add-Shopping-Basket/end/GrpcService1/Protos/greet.proto b/labs/4-Add-Shopping-Basket/end/GrpcService1/Protos/greet.proto
deleted file mode 100644
index c8965b9..0000000
--- a/labs/4-Add-Shopping-Basket/end/GrpcService1/Protos/greet.proto
+++ /dev/null
@@ -1,21 +0,0 @@
-syntax = "proto3";
-
-option csharp_namespace = "GrpcService1";
-
-package greet;
-
-// The greeting service definition.
-service Greeter {
- // Sends a greeting
- rpc SayHello (HelloRequest) returns (HelloReply);
-}
-
-// The request message containing the user's name.
-message HelloRequest {
- string name = 1;
-}
-
-// The response message containing the greetings.
-message HelloReply {
- string message = 1;
-}
diff --git a/labs/4-Add-Shopping-Basket/end/GrpcService1/Services/GreeterService.cs b/labs/4-Add-Shopping-Basket/end/GrpcService1/Services/GreeterService.cs
deleted file mode 100644
index f02d09c..0000000
--- a/labs/4-Add-Shopping-Basket/end/GrpcService1/Services/GreeterService.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using Grpc.Core;
-using GrpcService1;
-
-namespace GrpcService1.Services;
-
-public class GreeterService : Greeter.GreeterBase
-{
- private readonly ILogger _logger;
- public GreeterService(ILogger logger)
- {
- _logger = logger;
- }
-
- public override Task SayHello(HelloRequest request, ServerCallContext context)
- {
- return Task.FromResult(new HelloReply
- {
- Message = "Hello " + request.Name
- });
- }
-}
diff --git a/labs/4-Add-Shopping-Basket/end/WebApp/WebApp.csproj b/labs/4-Add-Shopping-Basket/end/WebApp/WebApp.csproj
index 44620a3..06b8257 100644
--- a/labs/4-Add-Shopping-Basket/end/WebApp/WebApp.csproj
+++ b/labs/4-Add-Shopping-Basket/end/WebApp/WebApp.csproj
@@ -5,7 +5,6 @@
2d86f364-a439-47c5-9468-3b85a7d9a18e
enable
eShop.WebApp
- false
diff --git a/labs/4-Add-Shopping-Basket/end/eShop.AppHost/eShop.AppHost.csproj b/labs/4-Add-Shopping-Basket/end/eShop.AppHost/eShop.AppHost.csproj
index 2f3769c..dc6df60 100644
--- a/labs/4-Add-Shopping-Basket/end/eShop.AppHost/eShop.AppHost.csproj
+++ b/labs/4-Add-Shopping-Basket/end/eShop.AppHost/eShop.AppHost.csproj
@@ -7,7 +7,6 @@
true
false
b99dbce4-17d4-41d2-858a-2b0529d60bb8
- false
diff --git a/labs/4-Add-Shopping-Basket/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj b/labs/4-Add-Shopping-Basket/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
index 9e2c916..e86eaa1 100644
--- a/labs/4-Add-Shopping-Basket/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
+++ b/labs/4-Add-Shopping-Basket/end/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
@@ -6,7 +6,6 @@
enable
enable
true
- false
diff --git a/labs/4-Add-Shopping-Basket/src/Catalog.API/Catalog.API.csproj b/labs/4-Add-Shopping-Basket/src/Catalog.API/Catalog.API.csproj
index a7096fe..9b3e732 100644
--- a/labs/4-Add-Shopping-Basket/src/Catalog.API/Catalog.API.csproj
+++ b/labs/4-Add-Shopping-Basket/src/Catalog.API/Catalog.API.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.API
d1b521ec-3411-4d39-98c6-8509466ed471
enable
- false
diff --git a/labs/4-Add-Shopping-Basket/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj b/labs/4-Add-Shopping-Basket/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj
index 54e5a9c..c9ef4cd 100644
--- a/labs/4-Add-Shopping-Basket/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj
+++ b/labs/4-Add-Shopping-Basket/src/Catalog.Data.Manager/Catalog.Data.Manager.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.Data.Manager
enable
enable
- false
diff --git a/labs/4-Add-Shopping-Basket/src/Catalog.Data/Catalog.Data.csproj b/labs/4-Add-Shopping-Basket/src/Catalog.Data/Catalog.Data.csproj
index bb561cb..9bd24ff 100644
--- a/labs/4-Add-Shopping-Basket/src/Catalog.Data/Catalog.Data.csproj
+++ b/labs/4-Add-Shopping-Basket/src/Catalog.Data/Catalog.Data.csproj
@@ -5,7 +5,6 @@
eShop.Catalog.Data
enable
enable
- false
diff --git a/labs/4-Add-Shopping-Basket/src/WebApp/WebApp.csproj b/labs/4-Add-Shopping-Basket/src/WebApp/WebApp.csproj
index 5b13236..19ee27b 100644
--- a/labs/4-Add-Shopping-Basket/src/WebApp/WebApp.csproj
+++ b/labs/4-Add-Shopping-Basket/src/WebApp/WebApp.csproj
@@ -5,7 +5,6 @@
2d86f364-a439-47c5-9468-3b85a7d9a18e
enable
eShop.WebApp
- false
diff --git a/labs/4-Add-Shopping-Basket/src/eShop.AppHost/eShop.AppHost.csproj b/labs/4-Add-Shopping-Basket/src/eShop.AppHost/eShop.AppHost.csproj
index 40fbb33..383fa4c 100644
--- a/labs/4-Add-Shopping-Basket/src/eShop.AppHost/eShop.AppHost.csproj
+++ b/labs/4-Add-Shopping-Basket/src/eShop.AppHost/eShop.AppHost.csproj
@@ -7,7 +7,6 @@
true
false
b99dbce4-17d4-41d2-858a-2b0529d60bb8
- false
diff --git a/labs/4-Add-Shopping-Basket/src/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj b/labs/4-Add-Shopping-Basket/src/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
index 9e2c916..e86eaa1 100644
--- a/labs/4-Add-Shopping-Basket/src/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
+++ b/labs/4-Add-Shopping-Basket/src/eShop.ServiceDefaults/eShop.ServiceDefaults.csproj
@@ -6,7 +6,6 @@
enable
enable
true
- false
diff --git a/labs/5-Add-Checkout/README.md b/labs/5-Add-Checkout/README.md
new file mode 100644
index 0000000..23a625c
--- /dev/null
+++ b/labs/5-Add-Checkout/README.md
@@ -0,0 +1,199 @@
+# Add checkout functionality to the web site
+
+Similar to [lab 1](../1-Create-Catalog-API/README.md), a database has already been defined to store order details for eShop, along with an Entity Framework Core model, and a web app that ensures the database is created and updated to the latest schema by running migrations on startup.
+
+![ERD for the Ordering database](./img/ordering-db-erd.png)
+
+## Getting familiar with the Ordering Database
+
+1. Open the [`eShop.sln`](./src/eShop.sln) in Visual Studio or VS Code.
+1. An Entity Framework Core model is already defined for this database in the `Ordering.Data` project. Open the `OrderingDbContext.cs` file in this project and look at the code to see that the the various tables are defined via properties and [classes implementing `IEntityTypeConfiguration`](https://learn.microsoft.com/ef/core/modeling/#grouping-configuration).
+1. The `Ordering.Data` project only defines the `DbContext` and entity types. The [EF Core migrations](https://learn.microsoft.com/ef/core/managing-schemas/migrations/) are defined and managed in the `Ordering.Data.Manager` project. This is a web project that includes some custom code to facilitate creating and seeding the database when the application starts.
+1. The AppHost has already been configured to create a PostgreSQL container resource named `OrderingDB` and had the `Ordering.Data.Manager` project added to it as a resource named `ordering-db-mgr` with a reference to the `OrderingDB` database.
+1. Run the AppHost project and verify using the dashboard and the **pgAdmin** tool that the `OrderingDB` database has been created and contains the tables defined by the Entity Framework Core migrations.
+
+ ![pgAdmin UI showing the created tables](./img/pgadmin-ordering-db-tables.png)
+
+## Create the Ordering API project
+
+Now that we've verified the Ordering database is working, let's add an HTTP API that provides the ordering capabilities to our system.
+
+1. Add a new project to the solution using the **ASP.NET Core Web API** project template and call it `Ordering.API`, and ensure the following options are configured
+ - Framework: **.NET 8.0 (Long Term Support)**
+ - Configure for HTTPS: **disabled**
+ - Enable Docker: **disabled**
+ - Enable OpenAPI support: **enabled**
+ - Do not use top-level statements: **disabled**
+ - Use controllers: **disabled**
+ - Enlist in .NET Aspire orchestration: **enabled**
+
+ ![VS Web API project template options](./img/vs-web-api-template-options.png)
+
+1. In the newly created project, update the package reference to `Swashbuckle.AspNetCore` to version `6.5.0`
+1. Open the `Program.cs` file of the `eShop.AppHost` project, and update it so the API project you just added is named `"ordering-api"` and has a reference to the `OrderingDB` and the IdP:
+
+ ```csharp
+ var orderingApi = builder.AddProject("ordering-api")
+ .WithReference(orderDb)
+ .WithReference(idp);
+ ```
+
+1. Towards the bottom of the `Program.cs` file, udpate the line that adds the `"ORDERINGAPI_HTTP"` envionment variable to the `idp` resource so that it now passes in the `http` endpoint from the `orderingApi` resource. This will ensure the IdP is configured correctly to support authentication requests from the `Ordering.API` project:
+
+ ```csharp
+ idp.WithEnvironment("ORDERINGAPI_HTTP", () => orderingApi.GetEndpoint("http").UriString);
+ ```
+
+1. Add a project reference from the `Ordering.API` project to the `Ordering.Data` project so that it can use Entity Framework Core to access the database.
+1. Open the `Program.cs` file of the `Ordering.API` project and delete the sample code that defines the weather forecasts API.
+1. Immediately after the line that calls `builder.AddServiceDefaults()`, add lines to register the default OpenAPI services, and the default authentication services. Reminder, these methods are defined in the `eShop.ServiceDefaults` project and make it easy to add common services to an API project and ensure they're configured consistently:
+
+ ```csharp
+ builder.AddServiceDefaults();
+ builder.AddDefaultOpenApi();
+ builder.AddDefaultAuthentication();
+ ```
+
+1. Add a line to configure the `OrderingDbContext` in the application's DI container using the [**Npgsql Entity Framework Core Provider**](https://www.npgsql.org/efcore/index.html) for PostgreSQL. Ensure that the name passed to the method matches the name defined for the database in the AppHost project's `Program.cs` file (`"OrderingDB"`). The `AddNpgsqlDbContext` method comes from the [`Aspire.Npgsql.EntityFrameworkCore.PostgreSQL` Aspire component](https://learn.microsoft.com/dotnet/aspire/database/postgresql-entity-framework-component):
+
+ ```csharp
+ builder.AddNpgsqlDbContext("OrderingDB");
+ ```
+
+1. Create a new file called `OrderingApi.cs` and define a static class inside of it called `OrderingApi` in the `Microsoft.AspNetCore.Builder` namespace:
+
+ ```csharp
+ namespace Microsoft.AspNetCore.Builder;
+
+ public static class OrderingApi
+ {
+
+ }
+ ```
+
+1. In this class, add an extension method named `MapOrdersApi` on the `RouteGroupBuilder` type, returning that same type:
+
+ ```csharp
+ public static RouteGroupBuilder MapOrdersApi(this RouteGroupBuilder app)
+ {
+
+ return app;
+ }
+ ```
+
+ This method will define the endpoint routes for the Ordering API.
+
+1. Create a `Models` directory and inside it create a new file `OrderSummary.cs`. In this, define a class called `OrderSummary` with properties to represent the order number, date, status, and total price, and a static method to create an instance of this class from an `Order` entity from the `Ordering.Data` project:
+
+ ```csharp
+ using eShop.Ordering.Data;
+
+ namespace eShop.Ordering.API.Model;
+
+ public class OrderSummary
+ {
+ public int OrderNumber { get; init; }
+
+ public DateTime Date { get; init; }
+
+ public required string Status { get; init; }
+
+ public decimal Total { get; init; }
+
+ public static OrderSummary FromOrder(Order order)
+ {
+ return new OrderSummary
+ {
+ OrderNumber = order.Id,
+ Date = order.OrderDate,
+ Status = order.OrderStatus.ToString(),
+ Total = order.GetTotal()
+ };
+ }
+ }
+ ```
+
+ This class will be used to represent a summary of an order in the API responses.
+
+1. Back in the `OrderingApi.cs` file, in the `MapOrdersApi` method, add a call to `app.MapGet` to define an endpoint that responds to GET requests to the `/` path, and is handled by an async lambda that accepts two parameters: a `ClaimsPrincipal` type that will be auto-populated with the current user, and the `OrderingDbContext` instance that will come from the DI container:
+
+ ```csharp
+ app.MapGet("/", async (ClaimsPrincipal user, OrderingDbContext dbContext) =>
+ {
+
+ });
+ ```
+
+1. Add code to the lambda body to extract the user ID from the `ClaimsPrincipal` and use it to query the database for the orders that belong to that user. If the user ID is null, throw an exception with a relevant message, otherwise return an instance of `OrderSummary` representing the user's orders:
+
+ ```csharp
+ app.MapGet("/", async (ClaimsPrincipal user, OrderingDbContext dbContext) =>
+ {
+ var userId = user.GetUserId()
+ ?? throw new InvalidOperationException("User identity could not be found. This endpoint requires authorization.");
+
+ var orders = await dbContext.Orders
+ .Include(o => o.OrderItems)
+ .Include(o => o.Buyer)
+ .Where(o => o.Buyer.IdentityGuid == userId)
+ .Select(o => OrderSummary.FromOrder(o))
+ .AsNoTracking()
+ .ToArrayAsync();
+
+ return TypedResults.Ok(orders);
+ });
+ ```
+
+1. In `Program.cs`, immediately before the call to `app.Run()` at the end of the file, add a line to map a route group for the path `/api/v1/orders` and call the `MapOrdersApi` method on it, followed by a call to `RequireAuthorization` to ensure that the endpoint requires a user to be authenticated to access it. This will ensure that the endpoint is only accessible to authenticated users, and that the user's identity is available in the `ClaimsPrincipal` parameter of the lambda in the `MapGet` method:
+
+ ```csharp
+ app.MapGroup("/api/v1/orders")
+ .MapOrdersApi()
+ .RequireAuthorization();
+ ```
+
+1. Open the `appsettings.json` file and add the following configuration sections:
+
+ ```json
+ {
+ // Add the following sections
+ "OpenApi": {
+ "Endpoint": {
+ "Name": "Ordering.API v1"
+ },
+ "Document": {
+ "Description": "The Ordering Service HTTP API",
+ "Title": "eShop - Ordering HTTP API",
+ "Version": "v1"
+ },
+ "Auth": {
+ "ClientId": "orderingswaggerui",
+ "AppName": "Ordering Swagger UI"
+ }
+ },
+ "Identity": {
+ "Audience": "orders"
+ }
+ }
+ ```
+
+ The `"OpenApi"` section will ensure the call to `builder.AddDefaultOpenApi()` in the `Program.cs` file configures the Swagger UI for authentication against our IdP. The `"Identity"` section will ensure the call to `builder.AddDefaultAuthentication()` in the `Program.cs` file configures the API for authentication bia JWT Bearer (similar to what we did for the Basket API).
+
+1. Run the AppHost project and verify that the `Ordering.API` project is running and that the `/api/v1/orders` endpoint is visible in the Swagger UI. There should be an **Authorize** button displayed with an open padlock, indicating that the endpoint requires authentication.
+
+ ![Swagger UI showing the endpoint and 'Authorize' button](./img/ordering-api-swagger-unauthenticated.png)
+
+1. Click the **Authorize** button and in the **Available authorizations** dialog opened, click the **Authorize** button to be taken to the sign-in form for the IdP. Sign in with the same test user you used to sign in to the web site in the previous lab (*test@example.com / P@$$w0rd1*). You should be redirected back to the Swagger UI and see the **Available authorizations** dialog again indicating you are now authorized.
+
+ ![Swagger UI showing the 'Available authorizations' dialog in authorized state](./img/ordering-api-swagger-authorizations-dialog.png)
+
+1. Click the **Close** button to close the **Available authorizations** dialog and then click the **Try it out** button for the `/api/v1/orders` endpoint. You should see a response with an empty array of orders, indicating that the endpoint is working and returning the expected response.
+
+ ![Swagger UI showing the endpoint and 'Authorize' button](./img/ordering-api-swagger-try-it-out-response.png)
+
+## Add an API endpoint to create an order
+
+1.
+
+## Add the Checkout feature to the web site
+
diff --git a/labs/5-Add-Checkout/end/Basket.API/Basket.API.csproj b/labs/5-Add-Checkout/end/Basket.API/Basket.API.csproj
new file mode 100644
index 0000000..9b2eeb2
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Basket.API/Basket.API.csproj
@@ -0,0 +1,23 @@
+
+
+
+ net8.0
+ eShop.Basket.API
+ enable
+ enable
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/labs/5-Add-Checkout/src/Basket.API/Extensions/ServerCallContextIdentityExtensions.cs b/labs/5-Add-Checkout/end/Basket.API/Extensions/GrpcExtensions.cs
similarity index 50%
rename from labs/5-Add-Checkout/src/Basket.API/Extensions/ServerCallContextIdentityExtensions.cs
rename to labs/5-Add-Checkout/end/Basket.API/Extensions/GrpcExtensions.cs
index d0df69f..2c3607d 100644
--- a/labs/5-Add-Checkout/src/Basket.API/Extensions/ServerCallContextIdentityExtensions.cs
+++ b/labs/5-Add-Checkout/end/Basket.API/Extensions/GrpcExtensions.cs
@@ -2,8 +2,7 @@
namespace Grpc.Core;
-internal static class ServerCallContextIdentityExtensions
+internal static class GrpcExtensions
{
public static string? GetUserIdentity(this ServerCallContext context) => context.GetHttpContext().User.GetUserId();
- public static string? GetUserName(this ServerCallContext context) => context.GetHttpContext().User.GetUserName();
-}
+}
\ No newline at end of file
diff --git a/labs/5-Add-Checkout/end/Basket.API/Extensions/HostingExtensions.cs b/labs/5-Add-Checkout/end/Basket.API/Extensions/HostingExtensions.cs
new file mode 100644
index 0000000..6674219
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Basket.API/Extensions/HostingExtensions.cs
@@ -0,0 +1,17 @@
+using eShop.Basket.API.Storage;
+
+namespace Microsoft.Extensions.Hosting;
+
+public static class HostingExtensions
+{
+ public static IHostApplicationBuilder AddApplicationServices(this IHostApplicationBuilder builder)
+ {
+ builder.AddDefaultAuthentication();
+
+ builder.AddRedis("BasketStore");
+
+ builder.Services.AddSingleton();
+
+ return builder;
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Basket.API/Grpc/BasketService.cs b/labs/5-Add-Checkout/end/Basket.API/Grpc/BasketService.cs
new file mode 100644
index 0000000..e179957
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Basket.API/Grpc/BasketService.cs
@@ -0,0 +1,99 @@
+using System.Diagnostics.CodeAnalysis;
+using eShop.Basket.API.Models;
+using eShop.Basket.API.Storage;
+using Grpc.Core;
+
+namespace eShop.Basket.API.Grpc;
+
+public class BasketService(RedisBasketStore basketStore) : Basket.BasketBase
+{
+ public override async Task GetBasket(GetBasketRequest request, ServerCallContext context)
+ {
+ var userId = context.GetUserIdentity();
+
+ if (string.IsNullOrEmpty(userId))
+ {
+ ThrowNotAuthenticated();
+ }
+
+ var data = await basketStore.GetBasketAsync(userId);
+
+ return data is not null
+ ? MapToCustomerBasketResponse(data)
+ : new();
+ }
+
+ public override async Task UpdateBasket(UpdateBasketRequest request, ServerCallContext context)
+ {
+ var userId = context.GetUserIdentity();
+
+ if (string.IsNullOrEmpty(userId))
+ {
+ ThrowNotAuthenticated();
+ }
+
+ var customerBasket = MapToCustomerBasket(userId, request);
+ var response = await basketStore.UpdateBasketAsync(customerBasket);
+
+ if (response is null)
+ {
+ ThrowBasketDoesNotExist(userId);
+ }
+
+ return MapToCustomerBasketResponse(response);
+ }
+
+ public override async Task DeleteBasket(DeleteBasketRequest request, ServerCallContext context)
+ {
+ var userId = context.GetUserIdentity();
+
+ if (string.IsNullOrEmpty(userId))
+ {
+ ThrowNotAuthenticated();
+ }
+
+ await basketStore.DeleteBasketAsync(userId);
+
+ return new();
+ }
+
+ [DoesNotReturn]
+ private static void ThrowNotAuthenticated()
+ => throw new RpcException(new Status(StatusCode.Unauthenticated, "The caller is not authenticated."));
+
+ [DoesNotReturn]
+ private static void ThrowBasketDoesNotExist(string userId)
+ => throw new RpcException(new Status(StatusCode.NotFound, $"Basket with buyer ID {userId} does not exist"));
+
+ private static CustomerBasketResponse MapToCustomerBasketResponse(CustomerBasket customerBasket)
+ {
+ var response = new CustomerBasketResponse();
+
+ foreach (var item in customerBasket.Items)
+ {
+ response.Items.Add(new BasketItem
+ {
+ ProductId = item.ProductId,
+ Quantity = item.Quantity,
+ });
+ }
+
+ return response;
+ }
+
+ private static CustomerBasket MapToCustomerBasket(string userId, UpdateBasketRequest customerBasketRequest)
+ {
+ var response = new CustomerBasket { BuyerId = userId };
+
+ foreach (var item in customerBasketRequest.Items)
+ {
+ response.Items.Add(new()
+ {
+ ProductId = item.ProductId,
+ Quantity = item.Quantity,
+ });
+ }
+
+ return response;
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Basket.API/Models/BasketItem.cs b/labs/5-Add-Checkout/end/Basket.API/Models/BasketItem.cs
new file mode 100644
index 0000000..7697402
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Basket.API/Models/BasketItem.cs
@@ -0,0 +1,8 @@
+namespace eShop.Basket.API.Models;
+
+public class BasketItem
+{
+ public int ProductId { get; set; }
+
+ public int Quantity { get; set; }
+}
diff --git a/labs/5-Add-Checkout/end/Basket.API/Models/CustomerBasket.cs b/labs/5-Add-Checkout/end/Basket.API/Models/CustomerBasket.cs
new file mode 100644
index 0000000..fcfaceb
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Basket.API/Models/CustomerBasket.cs
@@ -0,0 +1,8 @@
+namespace eShop.Basket.API.Models;
+
+public class CustomerBasket
+{
+ public required string BuyerId { get; set; }
+
+ public List Items { get; set; } = [];
+}
diff --git a/labs/4-Add-Shopping-Basket/end/GrpcService1/Program.cs b/labs/5-Add-Checkout/end/Basket.API/Program.cs
similarity index 72%
rename from labs/4-Add-Shopping-Basket/end/GrpcService1/Program.cs
rename to labs/5-Add-Checkout/end/Basket.API/Program.cs
index 0248aff..e720aaa 100644
--- a/labs/4-Add-Shopping-Basket/end/GrpcService1/Program.cs
+++ b/labs/5-Add-Checkout/end/Basket.API/Program.cs
@@ -1,18 +1,18 @@
-using GrpcService1.Services;
+using eShop.Basket.API.Grpc;
var builder = WebApplication.CreateBuilder(args);
builder.AddServiceDefaults();
+builder.AddApplicationServices();
-// Add services to the container.
builder.Services.AddGrpc();
var app = builder.Build();
app.MapDefaultEndpoints();
-// Configure the HTTP request pipeline.
-app.MapGrpcService();
+app.MapGrpcService();
+
app.MapGet("/", () => "Communication with gRPC endpoints must be made through a gRPC client. To learn how to create a client, visit: https://go.microsoft.com/fwlink/?linkid=2086909");
app.Run();
diff --git a/labs/4-Add-Shopping-Basket/end/GrpcService1/Properties/launchSettings.json b/labs/5-Add-Checkout/end/Basket.API/Properties/launchSettings.json
similarity index 80%
rename from labs/4-Add-Shopping-Basket/end/GrpcService1/Properties/launchSettings.json
rename to labs/5-Add-Checkout/end/Basket.API/Properties/launchSettings.json
index 32f6dca..d347cc0 100644
--- a/labs/4-Add-Shopping-Basket/end/GrpcService1/Properties/launchSettings.json
+++ b/labs/5-Add-Checkout/end/Basket.API/Properties/launchSettings.json
@@ -5,7 +5,7 @@
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": false,
- "applicationUrl": "http://localhost:5208",
+ "applicationUrl": "http://localhost:5288",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
@@ -14,7 +14,7 @@
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": false,
- "applicationUrl": "https://localhost:7259;http://localhost:5208",
+ "applicationUrl": "https://localhost:7106;http://localhost:5288",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
diff --git a/labs/5-Add-Checkout/end/Basket.API/Proto/basket.proto b/labs/5-Add-Checkout/end/Basket.API/Proto/basket.proto
new file mode 100644
index 0000000..32b6889
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Basket.API/Proto/basket.proto
@@ -0,0 +1,33 @@
+syntax = "proto3";
+
+option csharp_namespace = "eShop.Basket.API.Grpc";
+
+package BasketApi;
+
+service Basket {
+ rpc GetBasket(GetBasketRequest) returns (CustomerBasketResponse) {}
+ rpc UpdateBasket(UpdateBasketRequest) returns (CustomerBasketResponse) {}
+ rpc DeleteBasket(DeleteBasketRequest) returns (DeleteBasketResponse) {}
+}
+
+message GetBasketRequest {
+}
+
+message UpdateBasketRequest {
+ repeated BasketItem items = 1;
+}
+
+message DeleteBasketRequest {
+}
+
+message BasketItem {
+ int32 product_id = 1;
+ int32 quantity = 2;
+}
+
+message CustomerBasketResponse {
+ repeated BasketItem items = 1;
+}
+
+message DeleteBasketResponse {
+}
\ No newline at end of file
diff --git a/labs/5-Add-Checkout/end/Basket.API/Storage/RedisBasketStore.cs b/labs/5-Add-Checkout/end/Basket.API/Storage/RedisBasketStore.cs
new file mode 100644
index 0000000..e353d29
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Basket.API/Storage/RedisBasketStore.cs
@@ -0,0 +1,47 @@
+using eShop.Basket.API.Models;
+using System.Text.Json;
+using StackExchange.Redis;
+
+namespace eShop.Basket.API.Storage;
+
+public class RedisBasketStore(IConnectionMultiplexer redis)
+{
+ private readonly IDatabase _database = redis.GetDatabase();
+
+ private readonly JsonSerializerOptions _jsonOptions = new()
+ {
+ PropertyNameCaseInsensitive = true,
+ };
+
+ private static readonly RedisKey BasketKeyPrefix = "/basket/";
+
+ private static RedisKey GetBasketKey(string buyerId) => BasketKeyPrefix.Append(buyerId);
+
+ public async Task GetBasketAsync(string customerId)
+ {
+ var key = GetBasketKey(customerId);
+
+ using var data = await _database.StringGetLeaseAsync(key);
+
+ return data is { Length: > 0 }
+ ? JsonSerializer.Deserialize(data.Span, _jsonOptions)
+ : null;
+ }
+
+ public async Task UpdateBasketAsync(CustomerBasket basket)
+ {
+ var json = JsonSerializer.SerializeToUtf8Bytes(basket, _jsonOptions);
+ var key = GetBasketKey(basket.BuyerId);
+
+ var created = await _database.StringSetAsync(key, json);
+
+ return created
+ ? await GetBasketAsync(basket.BuyerId)
+ : null;
+ }
+
+ public async Task DeleteBasketAsync(string id)
+ {
+ return await _database.KeyDeleteAsync(GetBasketKey(id));
+ }
+}
diff --git a/labs/4-Add-Shopping-Basket/end/GrpcService1/appsettings.Development.json b/labs/5-Add-Checkout/end/Basket.API/appsettings.Development.json
similarity index 100%
rename from labs/4-Add-Shopping-Basket/end/GrpcService1/appsettings.Development.json
rename to labs/5-Add-Checkout/end/Basket.API/appsettings.Development.json
diff --git a/labs/4-Add-Shopping-Basket/end/GrpcService1/appsettings.json b/labs/5-Add-Checkout/end/Basket.API/appsettings.json
similarity index 82%
rename from labs/4-Add-Shopping-Basket/end/GrpcService1/appsettings.json
rename to labs/5-Add-Checkout/end/Basket.API/appsettings.json
index 1aef507..bcc4449 100644
--- a/labs/4-Add-Shopping-Basket/end/GrpcService1/appsettings.json
+++ b/labs/5-Add-Checkout/end/Basket.API/appsettings.json
@@ -10,5 +10,8 @@
"EndpointDefaults": {
"Protocols": "Http2"
}
+ },
+ "Identity": {
+ "Audience": "basket"
}
}
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Apis/CatalogApi.cs b/labs/5-Add-Checkout/end/Catalog.API/Apis/CatalogApi.cs
new file mode 100644
index 0000000..b25e6a0
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.API/Apis/CatalogApi.cs
@@ -0,0 +1,206 @@
+using Microsoft.AspNetCore.Http.HttpResults;
+using Microsoft.AspNetCore.StaticFiles;
+using Microsoft.EntityFrameworkCore;
+using eShop.Catalog.API;
+using eShop.Catalog.API.Model;
+using eShop.Catalog.Data;
+
+namespace Microsoft.AspNetCore.Builder;
+
+public static class CatalogApi
+{
+ private static readonly FileExtensionContentTypeProvider _fileContentTypeProvider = new();
+
+ public static IEndpointRouteBuilder MapCatalogApi(this IEndpointRouteBuilder app)
+ {
+ // Routes for querying catalog items.
+ app.MapGet("/items", GetAllItems);
+ app.MapGet("/items/by", GetItemsByIds);
+ app.MapGet("/items/{id:int}", GetItemById);
+ app.MapGet("/items/by/{name:minlength(1)}", GetItemsByName);
+ app.MapGet("/items/{catalogItemId:int}/pic", GetItemPictureById);
+
+ // Routes for resolving catalog items by type and brand.
+ app.MapGet("/items/type/{typeId}/brand/{brandId?}", GetItemsByBrandAndTypeId);
+ app.MapGet("/items/type/all/brand/{brandId:int?}", GetItemsByBrandId);
+ app.MapGet("/catalogtypes", async (CatalogDbContext context) => await context.CatalogTypes.OrderBy(x => x.Type).AsNoTracking().ToListAsync());
+ app.MapGet("/catalogbrands", async (CatalogDbContext context) => await context.CatalogBrands.OrderBy(x => x.Brand).AsNoTracking().ToListAsync());
+
+ return app;
+ }
+
+ public static async Task>, BadRequest>> GetAllItems(
+ [AsParameters] PaginationRequest paginationRequest,
+ [AsParameters] CatalogServices services)
+ {
+ var pageSize = paginationRequest.PageSize;
+ var pageIndex = paginationRequest.PageIndex;
+
+ var totalItems = await services.DbContext.CatalogItems
+ .LongCountAsync();
+
+ var itemsOnPage = await services.DbContext.CatalogItems
+ .OrderBy(c => c.Name)
+ .Skip(pageSize * pageIndex)
+ .Take(pageSize)
+ .AsNoTracking()
+ .ToListAsync();
+
+ ChangeUriPlaceholder(services.Options.Value, itemsOnPage);
+
+ return TypedResults.Ok(new PaginatedItems(pageIndex, pageSize, totalItems, itemsOnPage));
+ }
+
+ public static async Task>> GetItemsByIds(
+ [AsParameters] CatalogServices services,
+ int[] ids)
+ {
+ var items = await services.DbContext.CatalogItems
+ .Where(item => ids.Contains(item.Id))
+ .AsNoTracking()
+ .ToListAsync();
+
+ ChangeUriPlaceholder(services.Options.Value, items);
+
+ return TypedResults.Ok(items);
+ }
+
+ public static async Task, NotFound, BadRequest>> GetItemById(
+ [AsParameters] CatalogServices services,
+ int id)
+ {
+ if (id <= 0)
+ {
+ return TypedResults.BadRequest("Id is not valid.");
+ }
+
+ var item = await services.DbContext.CatalogItems
+ .Include(ci => ci.CatalogBrand)
+ .AsNoTracking()
+ .SingleOrDefaultAsync(ci => ci.Id == id);
+
+ if (item == null)
+ {
+ return TypedResults.NotFound();
+ }
+
+ item.PictureUri = services.Options.Value.GetPictureUrl(item.Id);
+
+ return TypedResults.Ok(item);
+ }
+
+ public static async Task>> GetItemsByName(
+ [AsParameters] PaginationRequest paginationRequest,
+ [AsParameters] CatalogServices services,
+ string name)
+ {
+ var pageSize = paginationRequest.PageSize;
+ var pageIndex = paginationRequest.PageIndex;
+
+ var totalItems = await services.DbContext.CatalogItems
+ .Where(c => c.Name.StartsWith(name))
+ .LongCountAsync();
+
+ var itemsOnPage = await services.DbContext.CatalogItems
+ .Where(c => c.Name.StartsWith(name))
+ .Skip(pageSize * pageIndex)
+ .Take(pageSize)
+ .AsNoTracking()
+ .ToListAsync();
+
+ ChangeUriPlaceholder(services.Options.Value, itemsOnPage);
+
+ return TypedResults.Ok(new PaginatedItems(pageIndex, pageSize, totalItems, itemsOnPage));
+ }
+
+ public static async Task> GetItemPictureById(CatalogDbContext context, IWebHostEnvironment environment, int catalogItemId)
+ {
+ var item = await context.CatalogItems
+ .AsNoTracking()
+ .FirstOrDefaultAsync(i => i.Id == catalogItemId);
+
+ if (item is null)
+ {
+ return TypedResults.NotFound();
+ }
+
+ var path = GetFullPath(environment.ContentRootPath, item.PictureFileName);
+
+ var imageFileExtension = Path.GetExtension(item.PictureFileName);
+ _fileContentTypeProvider.TryGetContentType(imageFileExtension, out var contentType);
+ var lastModified = File.GetLastWriteTimeUtc(path);
+
+ return TypedResults.PhysicalFile(path, contentType, lastModified: lastModified);
+ }
+
+ public static async Task>> GetItemsByBrandAndTypeId(
+ [AsParameters] PaginationRequest paginationRequest,
+ [AsParameters] CatalogServices services,
+ int typeId,
+ int? brandId)
+ {
+ var pageSize = paginationRequest.PageSize;
+ var pageIndex = paginationRequest.PageIndex;
+
+ var query = services.DbContext.CatalogItems.AsQueryable();
+ query = query.Where(c => c.CatalogTypeId == typeId);
+
+ if (brandId is not null)
+ {
+ query = query.Where(c => c.CatalogBrandId == brandId);
+ }
+
+ var totalItems = await query
+ .LongCountAsync();
+
+ var itemsOnPage = await query
+ .Skip(pageSize * pageIndex)
+ .Take(pageSize)
+ .AsNoTracking()
+ .ToListAsync();
+
+ ChangeUriPlaceholder(services.Options.Value, itemsOnPage);
+
+ return TypedResults.Ok(new PaginatedItems(pageIndex, pageSize, totalItems, itemsOnPage));
+ }
+
+ public static async Task>> GetItemsByBrandId(
+ [AsParameters] PaginationRequest paginationRequest,
+ [AsParameters] CatalogServices services,
+ int? brandId)
+ {
+ var pageSize = paginationRequest.PageSize;
+ var pageIndex = paginationRequest.PageIndex;
+
+ var query = (IQueryable)services.DbContext.CatalogItems;
+
+ if (brandId is not null)
+ {
+ query = query.Where(ci => ci.CatalogBrandId == brandId);
+ }
+
+ var totalItems = await query
+ .LongCountAsync();
+
+ var itemsOnPage = await query
+ .Skip(pageSize * pageIndex)
+ .Take(pageSize)
+ .AsNoTracking()
+ .ToListAsync();
+
+ ChangeUriPlaceholder(services.Options.Value, itemsOnPage);
+
+ return TypedResults.Ok(new PaginatedItems(pageIndex, pageSize, totalItems, itemsOnPage));
+ }
+
+ private static void ChangeUriPlaceholder(CatalogOptions options, List items)
+ {
+ foreach (var item in items)
+ {
+ item.PictureUri = options.GetPictureUrl(item.Id);
+ }
+ }
+
+ public static string GetFullPath(string contentRootPath, string pictureFileName) =>
+ Path.Combine(contentRootPath, "Pics", pictureFileName);
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Catalog.API.csproj b/labs/5-Add-Checkout/end/Catalog.API/Catalog.API.csproj
new file mode 100644
index 0000000..9b3e732
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.API/Catalog.API.csproj
@@ -0,0 +1,15 @@
+
+
+
+ net8.0
+ eShop.Catalog.API
+ d1b521ec-3411-4d39-98c6-8509466ed471
+ enable
+
+
+
+
+
+
+
+
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Catalog.API.http b/labs/5-Add-Checkout/end/Catalog.API/Catalog.API.http
new file mode 100644
index 0000000..17e84a2
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.API/Catalog.API.http
@@ -0,0 +1,10 @@
+@Catalog.API_HostAddress = http://localhost:5222
+
+
+GET {{Catalog.API_HostAddress}}/api/v1/catalog/items
+
+###
+
+GET {{Catalog.API_HostAddress}}/api/v1/catalog/items/type/1/brand/2
+
+###
diff --git a/labs/5-Add-Checkout/end/Catalog.API/CatalogOptions.cs b/labs/5-Add-Checkout/end/Catalog.API/CatalogOptions.cs
new file mode 100644
index 0000000..0e0c2af
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.API/CatalogOptions.cs
@@ -0,0 +1,18 @@
+using System.Globalization;
+
+namespace eShop.Catalog.API;
+
+public class CatalogOptions
+{
+ public string ApiBasePath { get; set; } = "/api/v1/catalog/";
+
+ public string? PicBaseAddress { get; set; } // Set by hosting environment
+
+ public string PicBasePathFormat { get; set; } = "items/{0}/pic/";
+
+ public string GetPictureUrl(int catalogItemId)
+ {
+ // PERF: Not ideal
+ return PicBaseAddress + ApiBasePath + string.Format(CultureInfo.InvariantCulture, PicBasePathFormat, catalogItemId);
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Extensions/HostingExtensions.cs b/labs/5-Add-Checkout/end/Catalog.API/Extensions/HostingExtensions.cs
new file mode 100644
index 0000000..7b8af1e
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.API/Extensions/HostingExtensions.cs
@@ -0,0 +1,21 @@
+using eShop.Catalog.API;
+using eShop.Catalog.Data;
+using Microsoft.Extensions.Options;
+
+namespace Microsoft.Extensions.Hosting;
+
+public static class HostingExtensions
+{
+ public static void AddApplicationServices(this IHostApplicationBuilder builder)
+ {
+ builder.AddNpgsqlDbContext("CatalogDB");
+
+ builder.Services.Configure(builder.Configuration.GetSection(nameof(CatalogOptions)));
+ }
+
+ public static TOptions GetOptions(this IHost host)
+ where TOptions : class, new()
+ {
+ return host.Services.GetRequiredService>().Value;
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Model/CatalogServices.cs b/labs/5-Add-Checkout/end/Catalog.API/Model/CatalogServices.cs
new file mode 100644
index 0000000..1d42ca9
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.API/Model/CatalogServices.cs
@@ -0,0 +1,13 @@
+using Microsoft.Extensions.Options;
+using eShop.Catalog.Data;
+
+namespace eShop.Catalog.API.Model;
+
+public readonly struct CatalogServices(CatalogDbContext dbContext, IOptions options, ILogger logger)
+{
+ public CatalogDbContext DbContext { get; } = dbContext;
+
+ public IOptions Options { get; } = options;
+
+ public ILogger Logger { get; } = logger;
+};
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Model/PaginatedItems.cs b/labs/5-Add-Checkout/end/Catalog.API/Model/PaginatedItems.cs
new file mode 100644
index 0000000..c12d66a
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.API/Model/PaginatedItems.cs
@@ -0,0 +1,12 @@
+namespace eShop.Catalog.API.Model;
+
+public class PaginatedItems(int pageIndex, int pageSize, long count, IEnumerable data) where TItem : class
+{
+ public int PageIndex { get; } = pageIndex;
+
+ public int PageSize { get; } = pageSize;
+
+ public long Count { get; } = count;
+
+ public IEnumerable Data { get;} = data;
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Model/PaginationRequest.cs b/labs/5-Add-Checkout/end/Catalog.API/Model/PaginationRequest.cs
new file mode 100644
index 0000000..1430ef8
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.API/Model/PaginationRequest.cs
@@ -0,0 +1,8 @@
+namespace eShop.Catalog.API.Model;
+
+public readonly struct PaginationRequest(int pageSize = 0, int pageIndex = 0)
+{
+ public readonly int PageSize { get; } = pageSize;
+
+ public readonly int PageIndex { get; } = pageIndex;
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/1.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/1.webp
new file mode 100644
index 0000000..2a0add9
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/1.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/10.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/10.webp
new file mode 100644
index 0000000..b4bcd03
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/10.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/100.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/100.webp
new file mode 100644
index 0000000..5086e44
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/100.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/101.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/101.webp
new file mode 100644
index 0000000..a896dd6
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/101.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/11.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/11.webp
new file mode 100644
index 0000000..5928602
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/11.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/12.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/12.webp
new file mode 100644
index 0000000..1ab9da4
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/12.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/13.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/13.webp
new file mode 100644
index 0000000..4aa3012
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/13.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/14.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/14.webp
new file mode 100644
index 0000000..07fe2aa
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/14.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/15.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/15.webp
new file mode 100644
index 0000000..09e9bbc
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/15.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/16.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/16.webp
new file mode 100644
index 0000000..cb3fb00
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/16.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/17.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/17.webp
new file mode 100644
index 0000000..9044b36
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/17.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/18.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/18.webp
new file mode 100644
index 0000000..afbd17a
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/18.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/19.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/19.webp
new file mode 100644
index 0000000..e09af1b
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/19.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/2.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/2.webp
new file mode 100644
index 0000000..d945a93
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/2.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/20.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/20.webp
new file mode 100644
index 0000000..7188948
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/20.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/21.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/21.webp
new file mode 100644
index 0000000..71cf5fb
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/21.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/22.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/22.webp
new file mode 100644
index 0000000..aeff718
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/22.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/23.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/23.webp
new file mode 100644
index 0000000..42513f8
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/23.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/24.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/24.webp
new file mode 100644
index 0000000..364f3f5
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/24.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/25.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/25.webp
new file mode 100644
index 0000000..0bededd
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/25.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/26.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/26.webp
new file mode 100644
index 0000000..f2f1ac0
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/26.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/27.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/27.webp
new file mode 100644
index 0000000..a3d5097
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/27.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/28.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/28.webp
new file mode 100644
index 0000000..5582582
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/28.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/29.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/29.webp
new file mode 100644
index 0000000..38168f4
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/29.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/3.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/3.webp
new file mode 100644
index 0000000..f477a30
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/3.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/30.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/30.webp
new file mode 100644
index 0000000..0131aa0
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/30.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/31.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/31.webp
new file mode 100644
index 0000000..d4ee853
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/31.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/32.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/32.webp
new file mode 100644
index 0000000..95eec86
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/32.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/33.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/33.webp
new file mode 100644
index 0000000..8fd4136
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/33.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/34.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/34.webp
new file mode 100644
index 0000000..ca12d29
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/34.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/35.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/35.webp
new file mode 100644
index 0000000..eb18abc
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/35.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/36.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/36.webp
new file mode 100644
index 0000000..d67023b
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/36.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/37.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/37.webp
new file mode 100644
index 0000000..10322ac
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/37.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/38.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/38.webp
new file mode 100644
index 0000000..1223d63
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/38.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/39.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/39.webp
new file mode 100644
index 0000000..473022e
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/39.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/4.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/4.webp
new file mode 100644
index 0000000..668a78c
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/4.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/40.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/40.webp
new file mode 100644
index 0000000..54378ef
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/40.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/41.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/41.webp
new file mode 100644
index 0000000..9fa9adf
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/41.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/42.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/42.webp
new file mode 100644
index 0000000..c2cf9be
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/42.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/43.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/43.webp
new file mode 100644
index 0000000..f17a45e
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/43.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/44.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/44.webp
new file mode 100644
index 0000000..2405fdc
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/44.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/45.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/45.webp
new file mode 100644
index 0000000..fdbbb6a
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/45.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/46.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/46.webp
new file mode 100644
index 0000000..c76b188
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/46.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/47.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/47.webp
new file mode 100644
index 0000000..db25fdc
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/47.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/48.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/48.webp
new file mode 100644
index 0000000..7c3dcfb
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/48.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/49.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/49.webp
new file mode 100644
index 0000000..a123c89
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/49.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/5.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/5.webp
new file mode 100644
index 0000000..f032bf0
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/5.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/50.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/50.webp
new file mode 100644
index 0000000..856187d
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/50.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/51.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/51.webp
new file mode 100644
index 0000000..7821cc0
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/51.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/52.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/52.webp
new file mode 100644
index 0000000..b2e7b49
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/52.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/53.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/53.webp
new file mode 100644
index 0000000..277e574
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/53.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/54.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/54.webp
new file mode 100644
index 0000000..eaa9a27
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/54.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/55.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/55.webp
new file mode 100644
index 0000000..4124b92
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/55.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/56.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/56.webp
new file mode 100644
index 0000000..3824617
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/56.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/57.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/57.webp
new file mode 100644
index 0000000..deec6f3
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/57.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/58.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/58.webp
new file mode 100644
index 0000000..b33add1
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/58.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/59.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/59.webp
new file mode 100644
index 0000000..3b82223
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/59.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/6.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/6.webp
new file mode 100644
index 0000000..def4b36
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/6.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/60.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/60.webp
new file mode 100644
index 0000000..7b28b2e
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/60.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/61.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/61.webp
new file mode 100644
index 0000000..3d2f266
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/61.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/62.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/62.webp
new file mode 100644
index 0000000..04f7fdc
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/62.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/63.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/63.webp
new file mode 100644
index 0000000..0b43e3d
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/63.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/64.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/64.webp
new file mode 100644
index 0000000..aeb15c8
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/64.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/65.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/65.webp
new file mode 100644
index 0000000..b4e734a
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/65.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/66.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/66.webp
new file mode 100644
index 0000000..699cfea
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/66.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/67.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/67.webp
new file mode 100644
index 0000000..8cbb756
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/67.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/68.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/68.webp
new file mode 100644
index 0000000..9095ac4
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/68.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/69.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/69.webp
new file mode 100644
index 0000000..7af2b20
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/69.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/7.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/7.webp
new file mode 100644
index 0000000..c7687f6
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/7.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/70.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/70.webp
new file mode 100644
index 0000000..35fe5d8
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/70.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/71.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/71.webp
new file mode 100644
index 0000000..fbb38b4
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/71.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/72.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/72.webp
new file mode 100644
index 0000000..dd5b47f
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/72.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/73.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/73.webp
new file mode 100644
index 0000000..854ac6a
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/73.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/74.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/74.webp
new file mode 100644
index 0000000..c065f1f
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/74.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/75.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/75.webp
new file mode 100644
index 0000000..9f8d786
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/75.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/76.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/76.webp
new file mode 100644
index 0000000..a2b8a67
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/76.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/77.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/77.webp
new file mode 100644
index 0000000..6f59b3a
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/77.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/78.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/78.webp
new file mode 100644
index 0000000..54fa439
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/78.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/79.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/79.webp
new file mode 100644
index 0000000..f5004e3
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/79.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/8.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/8.webp
new file mode 100644
index 0000000..643f061
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/8.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/80.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/80.webp
new file mode 100644
index 0000000..a0ee7a3
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/80.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/81.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/81.webp
new file mode 100644
index 0000000..834f2ef
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/81.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/82.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/82.webp
new file mode 100644
index 0000000..a739362
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/82.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/83.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/83.webp
new file mode 100644
index 0000000..2c0e0af
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/83.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/84.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/84.webp
new file mode 100644
index 0000000..decbfc5
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/84.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/85.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/85.webp
new file mode 100644
index 0000000..ccdfed1
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/85.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/86.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/86.webp
new file mode 100644
index 0000000..7807b13
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/86.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/87.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/87.webp
new file mode 100644
index 0000000..c52d62f
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/87.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/88.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/88.webp
new file mode 100644
index 0000000..00b2e57
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/88.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/89.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/89.webp
new file mode 100644
index 0000000..10b087c
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/89.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/9.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/9.webp
new file mode 100644
index 0000000..33ced39
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/9.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/90.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/90.webp
new file mode 100644
index 0000000..8a5f3b2
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/90.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/91.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/91.webp
new file mode 100644
index 0000000..270389b
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/91.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/92.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/92.webp
new file mode 100644
index 0000000..254770d
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/92.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/93.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/93.webp
new file mode 100644
index 0000000..1ef261b
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/93.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/94.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/94.webp
new file mode 100644
index 0000000..8026a61
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/94.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/95.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/95.webp
new file mode 100644
index 0000000..166833a
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/95.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/96.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/96.webp
new file mode 100644
index 0000000..9e9a5d0
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/96.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/97.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/97.webp
new file mode 100644
index 0000000..7d4f539
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/97.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/98.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/98.webp
new file mode 100644
index 0000000..5f95c84
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/98.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Pics/99.webp b/labs/5-Add-Checkout/end/Catalog.API/Pics/99.webp
new file mode 100644
index 0000000..ed744d0
Binary files /dev/null and b/labs/5-Add-Checkout/end/Catalog.API/Pics/99.webp differ
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Program.cs b/labs/5-Add-Checkout/end/Catalog.API/Program.cs
new file mode 100644
index 0000000..32f1332
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.API/Program.cs
@@ -0,0 +1,21 @@
+using eShop.Catalog.API;
+
+var builder = WebApplication.CreateBuilder(args);
+
+builder.AddServiceDefaults();
+builder.AddDefaultOpenApi();
+builder.AddApplicationServices();
+
+builder.Services.AddProblemDetails();
+
+var app = builder.Build();
+
+app.UseDefaultOpenApi();
+
+app.MapDefaultEndpoints();
+
+app.MapGroup(app.GetOptions().ApiBasePath)
+ .WithTags("Catalog API")
+ .MapCatalogApi();
+
+app.Run();
diff --git a/labs/5-Add-Checkout/end/Catalog.API/Properties/launchSettings.json b/labs/5-Add-Checkout/end/Catalog.API/Properties/launchSettings.json
new file mode 100644
index 0000000..71f0437
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.API/Properties/launchSettings.json
@@ -0,0 +1,12 @@
+{
+ "profiles": {
+ "http": {
+ "commandName": "Project",
+ "launchBrowser": true,
+ "applicationUrl": "http://localhost:5222/",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/labs/5-Add-Checkout/end/Catalog.API/appsettings.Development.json b/labs/5-Add-Checkout/end/Catalog.API/appsettings.Development.json
new file mode 100644
index 0000000..14f85db
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.API/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "ConnectionStrings": {
+ "CatalogDB": "Host=localhost;Database=CatalogDB;Username=postgres"
+ },
+ "CatalogOptions": {
+
+ }
+}
\ No newline at end of file
diff --git a/labs/5-Add-Checkout/end/Catalog.API/appsettings.json b/labs/5-Add-Checkout/end/Catalog.API/appsettings.json
new file mode 100644
index 0000000..9853a92
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.API/appsettings.json
@@ -0,0 +1,21 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "OpenApi": {
+ "Endpoint": {
+ "Name": "Catalog.API v1"
+ },
+ "Document": {
+ "Description": "The Catalog Microservice HTTP API. This is a Data-Driven/CRUD microservice sample",
+ "Title": "eShop - Catalog HTTP API",
+ "Version": "v1"
+ }
+ },
+ "CatalogOptions": {
+ "PicBasePathFormat": "items/{0}/pic/"
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj b/labs/5-Add-Checkout/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj
new file mode 100644
index 0000000..c9ef4cd
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data.Manager/Catalog.Data.Manager.csproj
@@ -0,0 +1,28 @@
+
+
+
+ net8.0
+ eShop.Catalog.Data.Manager
+ enable
+ enable
+
+
+
+
+
+
+
+
+
+
+ all
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+
+
+
+
+
+
+
+
+
diff --git a/labs/5-Add-Checkout/end/Catalog.Data.Manager/CatalogContextSeed.cs b/labs/5-Add-Checkout/end/Catalog.Data.Manager/CatalogContextSeed.cs
new file mode 100644
index 0000000..ed667c7
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data.Manager/CatalogContextSeed.cs
@@ -0,0 +1,70 @@
+using System.Text.Json;
+using Microsoft.EntityFrameworkCore;
+using Npgsql;
+
+namespace eShop.Catalog.Data.Manager;
+
+public partial class CatalogContextSeed(IWebHostEnvironment env, ILogger logger)
+ : IDbSeeder
+{
+ public async Task SeedAsync(CatalogDbContext context)
+ {
+ var contentRootPath = env.ContentRootPath;
+ var picturePath = env.WebRootPath;
+
+ // Workaround from https://github.com/npgsql/efcore.pg/issues/292#issuecomment-388608426
+ context.Database.OpenConnection();
+ ((NpgsqlConnection)context.Database.GetDbConnection()).ReloadTypes();
+
+ if (!context.CatalogItems.Any())
+ {
+ var sourcePath = Path.Combine(contentRootPath, "Setup", "catalog.json");
+ var sourceJson = File.ReadAllText(sourcePath);
+ var sourceItems = JsonSerializer.Deserialize(sourceJson)
+ ?? throw new InvalidOperationException($"Seed data file was found but it contained no data: '{sourcePath}'");
+
+ context.CatalogBrands.RemoveRange(context.CatalogBrands);
+ await context.CatalogBrands.AddRangeAsync(sourceItems.Select(x => x.Brand).Distinct()
+ .Select(brandName => new CatalogBrand { Brand = brandName }));
+ logger.LogInformation("Seeded catalog with {NumBrands} brands", context.CatalogBrands.Count());
+
+ context.CatalogTypes.RemoveRange(context.CatalogTypes);
+ await context.CatalogTypes.AddRangeAsync(sourceItems.Select(x => x.Type).Distinct()
+ .Select(typeName => new CatalogType { Type = typeName }));
+ logger.LogInformation("Seeded catalog with {NumTypes} types", context.CatalogTypes.Count());
+
+ await context.SaveChangesAsync();
+
+ var brandIdsByName = await context.CatalogBrands.ToDictionaryAsync(x => x.Brand, x => x.Id);
+ var typeIdsByName = await context.CatalogTypes.ToDictionaryAsync(x => x.Type, x => x.Id);
+
+ await context.CatalogItems.AddRangeAsync(sourceItems.Select(source => new CatalogItem
+ {
+ Id = source.Id,
+ Name = source.Name,
+ Description = source.Description,
+ Price = source.Price,
+ CatalogBrandId = brandIdsByName[source.Brand],
+ CatalogTypeId = typeIdsByName[source.Type],
+ AvailableStock = 100,
+ MaxStockThreshold = 200,
+ RestockThreshold = 10,
+ PictureFileName = $"{source.Id}.webp"
+ }));
+
+ logger.LogInformation("Seeded catalog with {NumItems} items", context.CatalogItems.Count());
+
+ await context.SaveChangesAsync();
+ }
+ }
+
+ private class CatalogSourceEntry
+ {
+ public int Id { get; set; }
+ public required string Type { get; set; }
+ public required string Brand { get; set; }
+ public required string Name { get; set; }
+ public required string Description { get; set; }
+ public decimal Price { get; set; }
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.Data.Manager/Migrations/20240205033236_Initial.Designer.cs b/labs/5-Add-Checkout/end/Catalog.Data.Manager/Migrations/20240205033236_Initial.Designer.cs
new file mode 100644
index 0000000..41bd4f3
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data.Manager/Migrations/20240205033236_Initial.Designer.cs
@@ -0,0 +1,138 @@
+//
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Migrations;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
+using eShop.Catalog.Data;
+
+#nullable disable
+
+namespace eShop.Catalog.Data.Manager.Migrations
+{
+ [DbContext(typeof(CatalogDbContext))]
+ [Migration("20240205033236_Initial")]
+ partial class Initial
+ {
+ ///
+ protected override void BuildTargetModel(ModelBuilder modelBuilder)
+ {
+#pragma warning disable 612, 618
+ modelBuilder
+ .HasDefaultSchema("catalog")
+ .HasAnnotation("ProductVersion", "8.0.1")
+ .HasAnnotation("Relational:MaxIdentifierLength", 63);
+
+ NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
+
+ modelBuilder.Entity("eShop.Catalog.Data.CatalogBrand", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id"));
+
+ b.Property("Brand")
+ .IsRequired()
+ .HasMaxLength(100)
+ .HasColumnType("character varying(100)");
+
+ b.HasKey("Id");
+
+ b.ToTable("CatalogBrand", "catalog");
+ });
+
+ modelBuilder.Entity("eShop.Catalog.Data.CatalogItem", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id"));
+
+ b.Property("AvailableStock")
+ .HasColumnType("integer");
+
+ b.Property("CatalogBrandId")
+ .HasColumnType("integer");
+
+ b.Property("CatalogTypeId")
+ .HasColumnType("integer");
+
+ b.Property("Description")
+ .IsRequired()
+ .HasColumnType("text");
+
+ b.Property("MaxStockThreshold")
+ .HasColumnType("integer");
+
+ b.Property("Name")
+ .IsRequired()
+ .HasMaxLength(50)
+ .HasColumnType("character varying(50)");
+
+ b.Property("OnReorder")
+ .HasColumnType("boolean");
+
+ b.Property("PictureFileName")
+ .IsRequired()
+ .HasColumnType("text");
+
+ b.Property("Price")
+ .HasColumnType("numeric");
+
+ b.Property("RestockThreshold")
+ .HasColumnType("integer");
+
+ b.HasKey("Id");
+
+ b.HasIndex("CatalogBrandId");
+
+ b.HasIndex("CatalogTypeId");
+
+ b.HasIndex("Name");
+
+ b.ToTable("Catalog", "catalog");
+ });
+
+ modelBuilder.Entity("eShop.Catalog.Data.CatalogType", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id"));
+
+ b.Property("Type")
+ .IsRequired()
+ .HasMaxLength(100)
+ .HasColumnType("character varying(100)");
+
+ b.HasKey("Id");
+
+ b.ToTable("CatalogType", "catalog");
+ });
+
+ modelBuilder.Entity("eShop.Catalog.Data.CatalogItem", b =>
+ {
+ b.HasOne("eShop.Catalog.Data.CatalogBrand", "CatalogBrand")
+ .WithMany()
+ .HasForeignKey("CatalogBrandId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.HasOne("eShop.Catalog.Data.CatalogType", "CatalogType")
+ .WithMany()
+ .HasForeignKey("CatalogTypeId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("CatalogBrand");
+
+ b.Navigation("CatalogType");
+ });
+#pragma warning restore 612, 618
+ }
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.Data.Manager/Migrations/20240205033236_Initial.cs b/labs/5-Add-Checkout/end/Catalog.Data.Manager/Migrations/20240205033236_Initial.cs
new file mode 100644
index 0000000..e8bfa5a
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data.Manager/Migrations/20240205033236_Initial.cs
@@ -0,0 +1,117 @@
+using Microsoft.EntityFrameworkCore.Migrations;
+using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
+
+#nullable disable
+
+namespace eShop.Catalog.Data.Manager.Migrations
+{
+ ///
+ public partial class Initial : Migration
+ {
+ ///
+ protected override void Up(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.EnsureSchema(
+ name: "catalog");
+
+ migrationBuilder.CreateTable(
+ name: "CatalogBrand",
+ schema: "catalog",
+ columns: table => new
+ {
+ Id = table.Column(type: "integer", nullable: false)
+ .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
+ Brand = table.Column(type: "character varying(100)", maxLength: 100, nullable: false)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_CatalogBrand", x => x.Id);
+ });
+
+ migrationBuilder.CreateTable(
+ name: "CatalogType",
+ schema: "catalog",
+ columns: table => new
+ {
+ Id = table.Column(type: "integer", nullable: false)
+ .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
+ Type = table.Column(type: "character varying(100)", maxLength: 100, nullable: false)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_CatalogType", x => x.Id);
+ });
+
+ migrationBuilder.CreateTable(
+ name: "Catalog",
+ schema: "catalog",
+ columns: table => new
+ {
+ Id = table.Column(type: "integer", nullable: false)
+ .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
+ Name = table.Column(type: "character varying(50)", maxLength: 50, nullable: false),
+ Description = table.Column(type: "text", nullable: false),
+ Price = table.Column(type: "numeric", nullable: false),
+ PictureFileName = table.Column(type: "text", nullable: false),
+ CatalogTypeId = table.Column(type: "integer", nullable: false),
+ CatalogBrandId = table.Column(type: "integer", nullable: false),
+ AvailableStock = table.Column(type: "integer", nullable: false),
+ RestockThreshold = table.Column(type: "integer", nullable: false),
+ MaxStockThreshold = table.Column(type: "integer", nullable: false),
+ OnReorder = table.Column(type: "boolean", nullable: false)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_Catalog", x => x.Id);
+ table.ForeignKey(
+ name: "FK_Catalog_CatalogBrand_CatalogBrandId",
+ column: x => x.CatalogBrandId,
+ principalSchema: "catalog",
+ principalTable: "CatalogBrand",
+ principalColumn: "Id",
+ onDelete: ReferentialAction.Cascade);
+ table.ForeignKey(
+ name: "FK_Catalog_CatalogType_CatalogTypeId",
+ column: x => x.CatalogTypeId,
+ principalSchema: "catalog",
+ principalTable: "CatalogType",
+ principalColumn: "Id",
+ onDelete: ReferentialAction.Cascade);
+ });
+
+ migrationBuilder.CreateIndex(
+ name: "IX_Catalog_CatalogBrandId",
+ schema: "catalog",
+ table: "Catalog",
+ column: "CatalogBrandId");
+
+ migrationBuilder.CreateIndex(
+ name: "IX_Catalog_CatalogTypeId",
+ schema: "catalog",
+ table: "Catalog",
+ column: "CatalogTypeId");
+
+ migrationBuilder.CreateIndex(
+ name: "IX_Catalog_Name",
+ schema: "catalog",
+ table: "Catalog",
+ column: "Name");
+ }
+
+ ///
+ protected override void Down(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.DropTable(
+ name: "Catalog",
+ schema: "catalog");
+
+ migrationBuilder.DropTable(
+ name: "CatalogBrand",
+ schema: "catalog");
+
+ migrationBuilder.DropTable(
+ name: "CatalogType",
+ schema: "catalog");
+ }
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.Data.Manager/Migrations/CatalogDbContextModelSnapshot.cs b/labs/5-Add-Checkout/end/Catalog.Data.Manager/Migrations/CatalogDbContextModelSnapshot.cs
new file mode 100644
index 0000000..9edf0ad
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data.Manager/Migrations/CatalogDbContextModelSnapshot.cs
@@ -0,0 +1,135 @@
+//
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
+using eShop.Catalog.Data;
+
+#nullable disable
+
+namespace eShop.Catalog.Data.Manager.Migrations
+{
+ [DbContext(typeof(CatalogDbContext))]
+ partial class CatalogDbContextModelSnapshot : ModelSnapshot
+ {
+ protected override void BuildModel(ModelBuilder modelBuilder)
+ {
+#pragma warning disable 612, 618
+ modelBuilder
+ .HasDefaultSchema("catalog")
+ .HasAnnotation("ProductVersion", "8.0.1")
+ .HasAnnotation("Relational:MaxIdentifierLength", 63);
+
+ NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
+
+ modelBuilder.Entity("eShop.Catalog.Data.CatalogBrand", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id"));
+
+ b.Property("Brand")
+ .IsRequired()
+ .HasMaxLength(100)
+ .HasColumnType("character varying(100)");
+
+ b.HasKey("Id");
+
+ b.ToTable("CatalogBrand", "catalog");
+ });
+
+ modelBuilder.Entity("eShop.Catalog.Data.CatalogItem", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id"));
+
+ b.Property("AvailableStock")
+ .HasColumnType("integer");
+
+ b.Property("CatalogBrandId")
+ .HasColumnType("integer");
+
+ b.Property("CatalogTypeId")
+ .HasColumnType("integer");
+
+ b.Property("Description")
+ .IsRequired()
+ .HasColumnType("text");
+
+ b.Property("MaxStockThreshold")
+ .HasColumnType("integer");
+
+ b.Property("Name")
+ .IsRequired()
+ .HasMaxLength(50)
+ .HasColumnType("character varying(50)");
+
+ b.Property("OnReorder")
+ .HasColumnType("boolean");
+
+ b.Property("PictureFileName")
+ .IsRequired()
+ .HasColumnType("text");
+
+ b.Property("Price")
+ .HasColumnType("numeric");
+
+ b.Property("RestockThreshold")
+ .HasColumnType("integer");
+
+ b.HasKey("Id");
+
+ b.HasIndex("CatalogBrandId");
+
+ b.HasIndex("CatalogTypeId");
+
+ b.HasIndex("Name");
+
+ b.ToTable("Catalog", "catalog");
+ });
+
+ modelBuilder.Entity("eShop.Catalog.Data.CatalogType", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id"));
+
+ b.Property("Type")
+ .IsRequired()
+ .HasMaxLength(100)
+ .HasColumnType("character varying(100)");
+
+ b.HasKey("Id");
+
+ b.ToTable("CatalogType", "catalog");
+ });
+
+ modelBuilder.Entity("eShop.Catalog.Data.CatalogItem", b =>
+ {
+ b.HasOne("eShop.Catalog.Data.CatalogBrand", "CatalogBrand")
+ .WithMany()
+ .HasForeignKey("CatalogBrandId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.HasOne("eShop.Catalog.Data.CatalogType", "CatalogType")
+ .WithMany()
+ .HasForeignKey("CatalogTypeId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("CatalogBrand");
+
+ b.Navigation("CatalogType");
+ });
+#pragma warning restore 612, 618
+ }
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.Data.Manager/Program.cs b/labs/5-Add-Checkout/end/Catalog.Data.Manager/Program.cs
new file mode 100644
index 0000000..4709d4a
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data.Manager/Program.cs
@@ -0,0 +1,19 @@
+using eShop.Catalog.Data;
+using eShop.Catalog.Data.Manager;
+using Microsoft.EntityFrameworkCore;
+
+var builder = WebApplication.CreateBuilder(args);
+
+builder.AddServiceDefaults();
+
+builder.AddNpgsqlDbContext("CatalogDB", null,
+ optionsBuilder => optionsBuilder.UseNpgsql(npgsqlBuilder =>
+ npgsqlBuilder.MigrationsAssembly(typeof(Program).Assembly.GetName().Name)));
+
+builder.Services.AddMigration();
+
+var app = builder.Build();
+
+app.MapDefaultEndpoints();
+
+app.Run();
diff --git a/labs/5-Add-Checkout/end/Catalog.Data.Manager/Properties/launchSettings.json b/labs/5-Add-Checkout/end/Catalog.Data.Manager/Properties/launchSettings.json
new file mode 100644
index 0000000..5d97802
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data.Manager/Properties/launchSettings.json
@@ -0,0 +1,25 @@
+{
+ "$schema": "http://json.schemastore.org/launchsettings.json",
+ "profiles": {
+ "http": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": true,
+ "launchUrl": "health",
+ "applicationUrl": "http://localhost:5035",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "https": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": true,
+ "launchUrl": "health",
+ "applicationUrl": "https://localhost:7014;http://localhost:5035",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.Data.Manager/Setup/catalog.json b/labs/5-Add-Checkout/end/Catalog.Data.Manager/Setup/catalog.json
new file mode 100644
index 0000000..08a1e11
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data.Manager/Setup/catalog.json
@@ -0,0 +1,911 @@
+[
+ {
+ "Id": 1,
+ "Type": "Footwear",
+ "Brand": "Daybird",
+ "Name": "Wanderer Black Hiking Boots",
+ "Description": "Daybird's Wanderer Hiking Boots in sleek black are perfect for all your outdoor adventures. These boots are made with a waterproof leather upper and a durable rubber sole for superior traction. With their cushioned insole and padded collar, these boots will keep you comfortable all day long.",
+ "Price": 109.99,
+ "Embedding": [-0.010269113, -0.01673832, 0.0025070684, -0.009927924, 0.0075596725, 0.0073790434, -0.0090849865, -0.05860419, 0.013500371, -0.050522696, -0.022866337, 0.011172259, -0.011747598, -0.011346199, -0.009192026, 0.022612117, 0.01953473, 0.022745917, 0.018089695, -0.013440161, -0.006673251, 0.025850065, -0.0066765957, -0.0056363046, -0.020457946, -0.020136828, 0.01906643, -0.01911995, 0.010242353, -0.022759298, 0.0061715026, 0.0006464189, -0.013279602, -0.009372656, -0.010657132, 0.0026927153, 0.0042715496, -0.0039403955, 0.014303168, 0.01376797, 0.015841862, 0.00022578667, -0.0026609378, 0.009386036, -0.0010185488, 0.010683891, 0.00019714521, -0.017835476, -0.008623378, 0.026933841, -0.003545687, -0.0003781927, 0.004596013, 0.007646642, 0.011781047, 0.0045525283, 0.0055526798, 0.013560581, 0.029783772, -0.029676732, -0.033369597, 0.002610763, -0.01665804, 0.008027971, -0.0035122372, -0.015493983, -0.028659856, -0.003579137, 0.008509649, 0.01917347, 0.007673402, 0.00095666654, 0.015882002, -0.0033784376, 0.011319439, -0.019722048, -0.024391651, 0.006041048, -0.014182748, -0.009278996, 0.018022794, -0.026304984, -0.018798832, 0.016470721, 0.015601023, 0.0061547775, 0.011486689, 0.0030723712, -0.036875147, -0.017260138, 0.00838923, 0.0048134374, 0.0053018057, 0.002868327, 0.0031743934, 0.008007901, -0.0058938684, 0.015734823, -0.0009968064, -0.02480643, 0.015520743, 0.010877901, 0.002376614, -0.013426781, -0.027335241, 0.0009993151, -0.007459323, 0.010683891, 0.02448531, -0.0013898425, -0.0076198825, 0.023508575, 0.032004844, -0.031897806, 0.00077143783, -0.010315943, -0.011714147, 0.016109461, 0.016885499, -0.031496406, 0.024378272, 0.015734823, 0.014530627, -0.0025137584, 0.0008613344, 0.023455055, -0.011694077, -0.012175756, 0.011379649, 0.0036794867, 0.0070846844, 0.018879112, 0.01920023, -0.032272443, -0.008048041, 0.014932025, -0.018758692, 0.005833659, -0.020163586, -0.0056797895, -0.014811606, 0.014329928, -0.006536106, 0.005803554, 0.012650744, 0.025743026, -0.0053653605, 0.009499765, 0.008536409, -0.0059841834, 0.03002461, 0.005602855, 0.039551135, -0.020324146, -0.005469055, 0.0148651255, 0.023521954, 0.018169973, -0.012242655, -0.026478924, -0.0023548715, -0.010630371, 0.01644396, -0.02498037, 0.04329752, 0.03047953, 0.005750034, 0.0016641314, -0.0012075406, 0.0040106406, 0.005442295, 0.0166179, 0.004920477, 0.042200368, 0.023307875, 0.0023314564, 0.018705172, 0.0020337526, -0.0220234, 0.010643751, -0.03526955, -0.009774054, 0.0118947765, 0.005820279, -0.01886573, -0.031309087, -0.009379346, -0.004331759, 0.002878362, -0.00549916, -0.0037731463, 0.0029268644, 0.014704566, 0.008790628, -0.6602203, 0.0036761416, -0.0056898245, -0.024632491, 0.032192163, 0.00034892405, 0.031014727, 0.017701676, -0.012811303, 0.009546596, 0.017019298, 0.014570767, -0.014383447, 0.009646945, -0.024471931, -0.010202213, 0.003331608, -0.020819204, 0.012135616, 0.0021140324, -0.026465544, 0.010342702, -0.007914241, -0.01898615, -0.013346502, -0.0016173016, 0.004060815, -0.0014433622, -0.00824205, 0.009044847, -0.039845496, 0.04412708, -0.0056363046, -0.007941001, 0.05477752, -0.021421302, -0.014289788, 0.0436454, 0.028954215, 0.056570433, -0.012971863, -0.0042247195, 0.0041711996, -0.0010051689, 0.009586735, 0.016082702, 0.03537659, -0.0025137584, 0.007713542, -0.01388839, 0.0328344, 0.026024004, 0.0059674582, -0.010195523, -0.0051111416, -0.008750488, 0.036473747, -0.010790931, 0.024244472, 0.015092585, -0.017527737, 0.020029787, -0.0019802328, -0.006084533, -0.014891886, 0.0070177843, -0.031710483, -0.019976268, 0.00828219, -0.026144424, 0.021407923, 0.021795942, -0.0002933136, 0.009633565, 0.019601628, 0.018330533, 0.005234906, -0.0072853835, -0.014985546, 0.00075387664, 0.013420091, 0.011533518, -0.013058833, -0.0169524, 0.028820416, -0.007412493, 0.019012911, -0.0023582163, 0.031496406, -0.0019902678, 0.012858133, 0.020872723, -0.025060648, -0.027669739, -0.018571373, 0.010509952, 0.0036661066, -0.012958483, 0.0076131923, -0.009178647, -0.011459928, 0.0012769491, -0.0023080416, -0.00038718234, 0.012637364, 0.028419016, -0.019909367, 0.0043685543, 0.0061547775, -0.021327643, -0.0027713224, -0.0070646144, -0.0027178025, -0.0167517, -0.0008149227, -0.023669133, 0.034199156, -0.010162073, 0.034627315, -0.026759902, 0.015333424, 0.0034854773, -0.006843845, -0.022946617, -0.013507061, 0.0034419924, -0.015627783, -0.010302562, -0.01097825, -0.008723728, -0.008636759, 0.0025605883, 0.020845965, -0.0011255884, 0.011580348, 0.025823306, -0.00087722304, -0.010175453, 0.043244004, 0.0023732688, -0.01086452, 0.0006175684, -0.010309253, -0.01091804, -0.00543226, -0.032540042, -0.041986287, 0.007111444, -0.032540042, -0.00021575172, 0.028097898, -0.017099578, -0.008998017, -0.001103846, 0.015601023, -0.01907981, -0.0037296615, -0.012731024, -0.010643751, 0.016992537, 0.019641768, 0.015052445, -0.00011425224, -0.023414915, -0.019695288, -0.0109448, -0.000100349636, 0.025395148, 0.0005076019, -0.048060786, -0.018745312, -0.011961676, -0.010516642, 0.012256036, 0.017327037, -0.011272609, -0.022438178, -0.008402609, -0.008964567, 0.002167552, -0.0013379952, -0.006549486, -0.026920462, -0.017888995, 0.0022193994, -0.0052516307, -0.0056195795, 0.02511417, 0.0050877263, 0.019093191, -0.019775568, 0.015855242, -0.0016474065, 0.009760674, 0.0040240204, -0.036339946, 0.011794427, 0.018169973, 0.009539905, 0.021541722, 0.028633095, -0.034011837, 0.010215593, -0.0221572, 0.005298461, -0.010329322, -0.0167517, -0.012062026, 0.036420226, 0.014209508, 0.022625498, -0.02498037, -0.004970652, -0.009332516, 0.014557387, 0.008656829, 0.0018062934, 0.024190951, -0.011386339, -0.0138348695, 0.0022210719, -0.0048502325, 0.008917738, -0.007660022, -0.00011874707, 0.0012861479, -0.021300882, 0.013226082, -0.003331608, -0.0078072017, 0.019735428, 0.020350905, 0.028927455, 0.011560278, 0.015788343, -0.017741816, -0.007954381, -0.036875147, 0.05234237, -0.0046127383, 0.039684936, 0.009131817, -0.0118747065, -0.012657434, 0.0070980643, 0.023816314, 0.0021140324, 0.020524845, -0.00059624406, -0.00339349, -0.0005109469, -0.0048401975, -0.0034955123, 0.005549335, 0.020779064, -0.023174075, 0.025850065, 0.007399113, 0.0051278663, 0.014303168, 0.017193237, 0.003010489, 0.006335407, 0.0069308146, 0.026117666, -0.005696514, 0.00045700895, -0.014758087, -0.0034118877, -0.0012016869, 0.0037497315, -0.005810244, 0.0025589156, -0.009111747, -0.011446549, 0.011486689, 0.005308496, -0.0035590671, -0.011312749, 0.022304378, -0.015226385, -0.014985546, 0.018584752, 0.025970485, 0.002864982, 0.0011063548, -0.0119549865, 0.018009415, -0.010550092, 0.04693687, 0.0019518004, 0.021474821, 0.008462819, -0.015614403, 0.031335846, 0.002881707, 0.025649367, -0.022638878, 0.017768575, -0.014089089, -0.012623984, -0.0050910716, -0.021595242, -0.031014727, 0.050174817, -0.026693003, -0.010048344, -0.007833961, 0.0013789713, 0.007238554, -0.025569087, 0.00035665932, 0.01374121, -0.0032078433, -0.00016975813, 0.015895382, -0.024003632, -0.015413704, 0.02726834, 0.019347409, -0.019802328, -0.008850838, 0.0042247195, -0.002035425, 0.09697789, 0.015721442, 0.0010670511, 0.01902629, 0.01116557, -0.017139718, -0.026987363, -0.0009867714, -0.0016206466, 0.014129229, 0.013527131, -0.028204937, -0.005786829, -0.017888995, 0.02745566, 0.0059105936, -0.01360072, -0.024070533, -0.003341643, -0.028231697, -0.006358822, -0.010188833, -0.015761582, 0.015908763, 0.010048344, 0.0018330533, -0.0024067187, -0.014758087, 0.032245684, -0.020993143, 0.001787896, 0.0047900225, 0.0005410518, 0.022946617, -0.008944497, 5.4983237E-05, -0.011734217, -0.014396828, 0.026933841, -0.011640558, 0.02986405, 0.020779064, 0.010443052, -0.031228807, -0.0042682043, -0.018772071, -0.008496269, 0.026706383, -0.010503261, -0.029489413, 0.01914671, 0.025609227, 0.0019451104, -0.0139552895, -0.0024535486, 0.0017427386, 0.013045453, -0.0029937641, 0.007412493, -0.026920462, -0.012316246, -0.037223026, 0.037330065, 0.008904357, 0.0137947295, 0.013098972, -0.021006523, 0.023856454, -0.0274289, 0.0036995565, -0.015333424, -0.00045115524, -0.003856771, 0.0070779943, 0.0018079659, 0.014985546, 0.0027579425, -0.010489882, 0.014008809, 0.0036460368, 0.0139954295, 0.0048401975, 0.022170579, 0.0009491403, 0.005228216, 0.002244487, -0.0068405, -0.014222888, -0.0017527736, 0.020257246, 0.016176362, -0.0019986301, 0.0099747535, -0.0091853365, 0.015828483, -0.00409092, 0.029971091, 0.017032677, 0.006348787, 0.019628389, 0.008656829, 0.0031392712, -0.0059641134, -0.0047465377, 0.01616298, -0.0020387701, 0.0023180766, 0.010329322, 0.00822867, 0.0148651255, 0.005201456, -0.017420696, 0.0034520274, 0.014263028, -0.015039065, 0.008897668, 0.012496875, 0.001629009, 0.0074526328, -0.047070667, 0.0064391014, -0.020069927, 0.031737246, 0.014370068, -0.005495815, 0.019641768, 0.011372958, -0.025809927, -0.0274289, -0.0009667015, 0.013132422, 0.03551039, 0.004773298, -0.020899484, -0.004405349, -0.032272443, -0.020297386, -0.003043939, 0.0016097754, 0.0014818296, 0.0077670617, 0.0219565, 0.01616298, -0.0022495042, -0.017286897, -0.015386944, -0.028579576, 0.009265617, -0.022344518, 0.059674583, -0.008877598, 0.012797924, 0.0015980679, -0.0025672782, -0.013500371, -0.019829087, -0.009138507, -0.007934311, 0.018450953, 0.026880322, -0.017500976, -0.03034573, 0.028900694, 0.0167517, -0.004114335, -0.0031074937, -0.039042696, 0.0020053203, -0.019842468, 0.010108553, -0.003258018, 0.013239462, -0.005602855, -0.009011397, -0.0031392712, -0.0029001045, -0.013560581, -0.008609999, -0.018169973, -0.03545687, 0.0139552895, -0.033717476, -0.0109448, 0.01907981, -0.012630674, -0.0040641604, 0.03604559, -0.0020738924, 0.015092585, 0.013292981, 0.030987967, -0.0021039974, 0.025635988, -0.0021324297, -0.0019735429, -0.009071607, 0.00018177918, -0.04091589, -0.0021290847, 0.03773146, 0.0009365966, -0.018036174, 0.012296176, -0.0032396207, -0.01911995, 0.00025672783, 0.0036828315, -0.025207829, 0.0042581693, -0.019548109, -0.025395148, -0.029088015, -0.045572113, -0.003142616, 0.0077603715, -0.005830314, -0.020819204, 0.008489579, -0.024204332, -0.015279904, -0.009339206, -0.012396525, 0.024418412, -0.0053787404, 0.0328344, 0.018089695, -0.005489125, -0.0043183793, -0.003582482, 0.0055560246, 0.00037840175, -0.0019885954, -0.0101553835, -0.028017618, -0.027040882, 0.017514355, 0.0011807807, -0.010275803, -0.022946617, 0.025702886, 0.012851443, 0.013861629, 0.009800814, 0.004381934, 0.0028181523, 0.0065294164, -0.023588855, 0.018959392, -0.016270021, -0.010202213, 0.0014625959, -0.0064758966, -0.015922142, 0.011346199, 0.0031877735, -0.011366269, -0.018531233, -0.002438496, 0.020551605, 0.011493378, -0.018651651, 0.026278224, -0.008991327, 0.0111053595, 0.01663128, 0.010677201, 0.010262422, 0.005194766, 0.01105853, 0.031175287, -0.013607411, -0.014396828, 0.0035155823, -0.011379649, -0.014249648, 0.0046194284, -0.018263634, -0.020886105, 0.017219998, -0.013413401, 0.010302562, -0.006683286, 0.00018648307, 0.0004666258, -0.01640382, -0.0033165554, -0.020631885, -0.023093795, 0.0010168763, -0.008061421, -0.023040276, -0.002732855, -0.017674915, 0.021046663, -0.011774357, -0.029221814, -0.0016992538, 0.02515431, -0.013032072, 0.004960617, 0.015025686, 0.01926713, -0.010182143, 0.0021223947, -0.009479696, -0.04682983, -0.0028081173, 0.004438799, -0.02436489, -0.029409133, -0.014169369, -0.009854334, 0.021327643, -0.014155989, 0.008643448, -0.0091251265, 0.02464587, -0.003152651, -0.028258458, 0.010376153, 0.00279641, -0.006004253, 0.023495195, -0.011506758, 0.017848855, -0.01636368, 0.014544007, -0.0034754423, -0.0139954295, -0.020658644, -0.0120553365, 0.020618506, -0.011265919, -0.048515704, 0.0015930504, 0.029516174, -0.009693774, 0.0046127383, -0.0053419457, -0.0080748005, 0.026612723, 0.028659856, 0.010757481, 0.022585358, -0.011493378, 0.00010202213, -0.0015219694, -0.009011397, -0.014878506, -0.007874101, 0.0032897955, 0.059299946, -0.0020538226, -0.0074660126, 0.0012710954, 0.014503867, -0.056677476, -0.010081793, 0.02452545, 0.004585978, 0.014089089, -0.009519835, -0.007854031, 0.035082232, -0.0045659086, 0.031442884, -0.006124673, -0.017072817, -0.0110652195, 0.023040276, -0.0037698012, -0.025488807, -0.03585827, -0.009419486, 0.01651086, -0.026037386, 0.015427084, 0.0070579243, -0.037945542, -0.03807934, -0.006104603, 0.0007037018, 0.046321392, 0.013440161, 0.013038763, -0.034948435, -0.020551605, -0.0045224237, -0.011366269, -0.0099346135, -0.014329928, 0.013045453, 0.029034493, -0.0018330533, -0.020110067, -0.01940093, -0.005766759, -0.012503564, 0.010202213, -0.018838972, -0.006890675, 0.011259229, 0.0050375517, -0.025140928, -0.0011180622, 0.01122578, 0.0048401975, -0.0027930648, -0.009513145, -0.02745566, 0.004679638, -0.014597527, 0.020725545, -0.0069977148, -0.0015621093, -0.0167517, 0.0027445625, -0.013466921, 0.010269113, -0.008536409, -0.02515431, -0.004207995, 0.012858133, 0.01364086, -0.0015110982, 0.0008688606, -0.026866943, -0.020203726, 0.017541116, 0.010289183, -0.010302562, 0.007372353, 0.028606337, -0.0016114479, 0.0019384205, 0.026800042, 0.20048518, -0.0075730523, 0.011112049, 0.02223748, 0.0033299355, 0.02211706, 0.013045453, 0.013420091, 0.014998926, -0.020043166, 0.0013396676, 0.018384052, -0.03047953, -0.0015880329, 0.014396828, -0.023495195, -0.034948435, -0.014222888, -0.009198717, -0.0030255415, -0.006776945, -0.0025371732, 0.021474821, -0.029917572, 0.03856102, 0.017393937, -0.00026258154, -0.027094401, -0.00066481635, 0.014570767, -0.012021886, -0.038186383, -0.009352586, 0.020364286, 0.036821626, 0.005422225, 0.017032677, 0.0018146558, -0.001675839, 0.011961676, -0.012082096, -0.011961676, -0.015012305, 0.0023933388, 0.0063855816, 0.0046528783, -0.012831373, 0.00081784953, -0.00038864577, 0.014544007, 0.015882002, -0.012215896, 0.018798832, -0.015922142, -0.006241747, -0.009285687, 0.042521484, -0.019695288, 2.2147478E-05, -0.0025204483, -0.013339811, 0.0059674582, -0.017059438, 0.01645734, 0.0010436362, 0.011988437, 0.006081188, -0.00545233, 0.005218181, 0.0050877263, 0.021193843, 0.012637364, 0.0002535919, 0.03029221, -0.014544007, -0.028258458, 0.0047799875, 0.016310161, 0.012296176, 0.03299496, -0.009733914, -0.015547504, -0.014196129, 0.014664426, -0.017674915, -0.014731326, -0.0024769634, -0.0003294813, -0.019467829, -0.009988134, 0.012088786, 0.011192329, 0.0001456115, 0.020712165, 0.0045291134, 0.013647551, -0.028231697, 0.0139954295, -0.018343912, -0.018624892, -0.017126339, -0.017674915, -0.0023214216, 0.016350301, -0.00839592, 0.0071917237, 0.018129835, -0.006619731, -0.0029703493, -0.0070378543, -0.007733612, -0.0276965, 0.003268053, 0.0036895217, 0.009687085, -0.0017025988, 0.007138204, -0.009559975, -0.01890587, -0.019882608, 0.03636671, -0.0061848825, 0.020083306, 0.014089089, -0.017420696, -0.0099948235, -0.0070244744, 0.0028465847, -0.0030556463, -0.031148527, 0.015159485, -0.0055961646, 0.0037564214, -0.015132725, -0.015105965, 0.015748203, 0.0034654073, -0.023856454, -0.02471277, 0.006051083, -0.014530627, 0.0015646181, 0.011560278, 0.0218896, 0.04982694, -0.0162834, 0.027830299, -0.010697271, -0.022210719, -0.001117226, 0.0034486824, -0.0016649677, -0.025488807, -0.004365209, 0.0074526328, 0.01945445, -0.05030862, -0.008890978, -0.0099546835, 0.0041611646, -0.026693003, -0.009031467, 0.031576686, -0.04185249, -0.014008809, 0.014196129, -0.17094226, 0.004662913, 0.010576852, -0.015105965, 0.02223748, -0.014517247, 0.017554495, 0.015694683, -0.025341628, -0.0032329308, 0.012235966, 0.0059841834, -0.018665032, -0.008342399, -0.010329322, 0.031255566, 0.006506001, 0.02498037, 0.014958786, 0.010570162, 0.009386036, 0.0021424647, 0.0005506686, -0.015948903, -0.007733612, -0.00056237605, 0.01085114, -0.009299066, -0.018330533, -0.007091374, -0.0101152435, -0.007706852, 0.006810395, 0.004907097, 0.017327037, -0.00421803, 0.011172259, 0.0069843344, -0.00211905, 0.02494023, 0.007238554, 0.009319136, 0.03023869, -0.025836686, 0.02237128, -0.002617453, -0.004973997, 0.01945445, -0.024351511, -0.034466755, 0.015413704, 1.7737582E-06, -0.023000136, 0.0029251918, 0.021207223, 0.0069843344, 0.014691186, 0.032941442, 0.0018096385, -0.02986405, 0.005482435, -0.010657132, -0.012115546, -0.0070110946, -0.004669603, 0.005275046, 0.0025722957, 0.00818184, -0.0018263634, 0.00014456619, -0.026304984, -0.010877901, -0.0075262226, -0.01118564, 0.0080145905, 0.02231776, 3.0627543E-05, -0.035403352, -0.017005919, -0.018705172, -0.0027562699, 0.042039808, -0.025194447, 0.021595242, 0.0009357603, 0.011553588, -0.013667621, -0.0009140179, -0.0028114624, -0.024217712, 0.009379346, -0.023936734, -0.00271613, -0.025528947, -0.0055760946, 0.017888995, 0.006592971, -0.015788343, -0.020926245, -0.007900861, 0.009379346, 0.016551, -0.030640088, 0.013400021, 0.026037386, 0.014463727, 0.0091251265, -0.0055861296, 0.026318364, -0.0027278375, 0.011774357, 0.0013940237, -0.0010745773, -0.01086452, 0.0119349165, 0.0028114624, 0.014008809, -0.02156848, 0.0118747065, -0.04602703, 0.014503867, 0.00093994156, -0.03021193, 0.0035155823, -0.020672025, -0.014396828, -0.08643448, -0.0064993114, 0.01941431, -0.013406712, -0.029088015, -0.015253144, 0.003162686, 0.009580045, 0.021260742, -0.0009800814, 0.014731326, 0.0006915762, 0.008576549, -0.0036594167, 0.03874834, 0.009539905, 0.01929389, -0.00039930793, -0.031656966, 0.0059942184, -0.018718552, 0.00082955696, -0.014891886, -0.011767667, -0.008088181, 0.00411099, -0.01916009, -0.0059340084, 0.0385075, 0.019681908, -0.034948435, 0.014878506, -0.010509952, -0.0039638104, -0.007900861, 0.0019685254, -0.025850065, -0.0050542764, 0.02718806, -0.029328853, 0.00035937713, 0.011112049, -0.000111325375, -0.034172397, 0.0058470387, 0.0032379483, 0.0043049995, 0.00836916, 0.008402609, -0.0067736004, -0.006325372, -0.011821187, -0.017393937, -0.010315943, 0.034145635, -0.023495195, -0.024886709, -0.0065227263, 0.009352586, -0.0028984318, -0.0081417, 0.0067434954, -0.00010526259, 0.017929135, -0.005482435, -0.021381162, -0.016805219, 0.036313187, 0.010275803, -0.0069977148, 0.0024518762, 0.016551, -0.016229881, 0.028927455, -0.0028348772, 0.009673704, -0.025435288, 0.00079401647, -0.0009600115, -0.01616298, -0.006566211, -0.014824986, 0.026626103, -0.026331745, 0.01357396, 0.018477714, 0.019012911, -0.007706852, 0.0039403955, -0.030640088, -0.0007739466, 0.01633692, 0.010670511, -0.030506289, -0.002204347, -0.01103177, 0.00070746493, -0.02472615, 0.006318682, -0.0053720507, -0.020872723, 0.0075396025, -0.0716095, 0.025796546, -0.012249346, -0.021314263, -0.0064223767, 0.010289183, -0.0053720507, 0.0050475867, -0.008810698, 0.011821187, -0.002915157, -0.023040276, 0.0055326098, -0.0005305987, 0.007512843, -0.011540208, -0.0032964854, -0.0016081029, 0.012891583, 0.0042882743, -0.023615614, 0.0019484555, -0.0001933821, 0.014891886, -0.04313696, -0.01355389, -0.012644054, -0.0073589734, 0.0218896, 0.006345442, 0.012135616, -0.015761582, 0.0216889, 0.017046059, -0.019815708, -0.016765079, 0.020364286, 0.019922748, 0.0021140324, -0.020404426, 0.0024535486, -0.008429369, 0.021140324, -0.02503389, -0.020792445, -0.009988134, 0.032379482, 0.015467224, 0.020966385, 0.010168763, 0.008362469, 0.021113563, 0.026572583, -0.020578366, -0.029542932, -0.01096487, -0.003000454, -0.01906643, -0.020150207, -0.03559067, 0.04102293, 0.01091804, 0.008509649, 0.007874101, 0.019347409, 0.020886105, 0.00550585, -0.0024351513, 0.04123701, 0.010690581, -0.025047269, 0.018705172, 0.017594635, 0.01107191, 0.00408423, -0.01099832, -0.007847342, -0.022291, -0.012844753, 0.02487333, -0.014035569, 0.0099546835, -0.048060786, 0.0100550335, -0.01936079, -0.0029536244, -0.016310161, -0.0129451025, 0.006843845, 0.0110786, -0.036634307, 0.0078005116, 0.0064156866, 0.0033466604, -0.009118437, 0.00411099, 0.007124824, -0.009406106, -0.008469509, 0.023588855, -0.0014592509, 0.010369462, -0.0064959666, -0.037704702, -0.008870908, 0.017594635, 0.025743026, -0.010576852, -0.03872158, 0.010897971, -0.008730418, 0.010175453, -0.019936128, -0.0055961646, 0.008737109, -0.0044421437, 0.011807807, -0.01926713, -0.023147317, 0.022933237, 0.00104949, 0.025702886, 0.0054489854, -0.024311371, -0.002759615, 0.003043939, 0.0053753955, 0.0033031756, 0.015333424, 0.0010545074, 0.017996034, -0.018598132, 0.0007463504, 0.026666243, -0.013346502, 0.012764473, 0.03591179, 0.051111415, -0.02156848, 0.051486053, 0.035082232, -0.003030559, 0.0067936704, -0.034092117, 0.003552377, 0.010530022, -0.01910657, -0.01355389, -0.026425404, -0.0013789713, -0.016136222, -0.034600556, 0.00680036, -0.044501718, -5.8798614E-05, -0.016096082, -0.008496269, 0.005696514, 0.007920931, 0.03604559, 0.0014550698, 0.028445777, 0.004743193, -0.022344518, -0.040300414, 0.01667142, 0.010563471, -0.018062934, -0.034092117, 0.015333424, 0.006817085, -0.0055459896, -0.01657776, -0.001906643, -0.018183354, -0.019427689, 0.029007735, -0.00043150343, 0.019347409, 0.004733158, 0.020096688, -0.0045659086, -0.01378135, 0.016430581, 0.0034219224, -0.028044378, -0.020484706, 0.011727528]
+ },
+ {
+ "Id": 2,
+ "Type": "Climbing",
+ "Brand": "Gravitator",
+ "Name": "Summit Pro Harness",
+ "Description": "Conquer new heights with the Summit Pro Harness by Gravitator. This lightweight and durable climbing harness features adjustable leg loops and waist belt for a customized fit. With its vibrant blue color, you'll look stylish while maneuvering difficult routes. Safety is a top priority with a reinforced tie-in point and strong webbing loops.",
+ "Price": 89.99,
+ "Embedding": [0.008410724, -0.0018072062, 0.00071592507, -0.052993055, 0.010231673, 0.03809563, -0.026867589, -0.021287926, 0.016299212, -0.03740848, 0.00990184, 0.009826254, -0.00013539015, 0.004133211, -0.0068130987, 0.0013828906, 0.026881333, -0.012994018, -0.030262114, 0.0014266965, 0.010286645, 0.0069574, 0.004913127, -0.024764908, 0.001141529, -0.0155021185, 0.041393954, -0.014127817, 0.03193876, -0.013193292, 0.02503977, -0.0016637634, -0.0070055006, -0.020312173, -0.02289586, 0.008252679, -0.0023603623, 0.0061568697, -0.006651618, -0.0032107113, 0.021906363, -0.02741731, -0.009785025, 0.006775305, -0.011935807, 0.0060366183, -0.019872395, -0.025754405, -0.02130167, -0.0031162282, -0.016601559, 0.021631502, -0.028585466, 0.0039751665, 0.0024599992, -0.020092284, -0.0030784348, 0.011324243, 0.033972725, -0.018525582, -0.012629828, -0.010973795, -0.01573575, 0.012602342, 0.003631591, -0.02637284, -0.024064016, -0.013962901, 0.003008002, 0.015447146, 0.035924233, 0.012897817, 0.029547477, -0.0016568919, 0.0068302774, 0.0019188682, -0.0069677075, 0.008403853, -0.009468935, -0.00035001736, 0.022840887, -0.016257985, 0.011468544, 0.012279382, 0.02198882, -0.009283405, 0.0041950545, 0.012217538, -0.011709047, -0.022249937, 0.005981646, 0.008589383, 0.01842938, 0.01441642, -0.03353295, 0.0015065777, 0.0036899988, 0.003978602, -0.0038617866, -0.01715128, 0.0046176524, -0.002922108, -0.00067426654, -0.012939046, -0.02651027, -0.023088261, -0.00096802344, 0.004761954, 0.015708264, -0.012086979, -0.011461672, 0.015378431, 0.010568377, -0.014938654, 0.0039545516, -0.012918432, 0.025562003, 0.019611279, 0.0060847187, -0.025122227, 0.01884167, -0.009029159, 0.033780325, -0.0016783654, 0.0051845517, 0.017852174, -0.035594404, 0.007991562, 0.023596752, -0.0049028196, 0.010451561, 0.021892618, 0.004803183, -0.012581728, 0.009393349, 0.03955239, -0.0011063125, 0.0023552089, -0.012581728, 0.0052086017, 0.012396198, 0.006026311, -0.005009328, -0.008877986, 0.0017496573, 0.008472567, -8.810828E-06, 0.0012076672, 0.0046417024, -0.004359971, 0.011379214, -0.007854132, 0.04625898, 0.014842453, 0.005871702, 0.007936589, 0.01596938, 0.03845295, -0.015076085, -0.008548154, 0.0020631698, -0.0033739095, 0.0124855265, -0.015804464, 0.030042225, 0.018786699, 0.010025527, -0.017824687, -0.0063492716, -0.00073782797, 0.009324634, 0.029437533, -0.008479439, 0.008616868, 0.034934737, 0.03235105, -0.018099548, 0.008754299, -0.013852957, 0.01030726, -0.01030726, -0.00743497, 0.0070501654, 0.022978317, -0.024297645, -0.0057858084, 0.022414854, 0.002406745, 0.0095445225, -0.014636308, -0.0039545516, 0.01596938, -0.006314914, 0.0029994126, -0.64735085, -0.012011393, 0.0005303944, -0.039222557, 0.023170719, -0.00069831684, 0.026798874, 0.008671841, -0.008747428, 0.027513511, 0.009585751, 0.033917755, -0.008946701, -0.03207619, -0.0086924555, -0.007929718, -0.019405134, -0.018223235, 0.004205362, -0.01026603, -0.022098765, 0.0075174277, -0.017701, 0.009551394, 0.012932175, -0.008740556, -0.005552177, -0.0059919534, -0.015103571, 0.023047032, -0.014636308, 0.035869263, -0.005524691, 0.017481113, 0.052855626, -0.028255634, -0.01414156, 0.02924513, 0.005332289, 0.03927753, -0.031636413, -0.00071291876, 0.013818599, -0.020875636, -0.0016500205, 0.018044576, 0.028338091, -0.012609214, 0.015708264, -0.03292826, 0.025946807, 0.0020545805, 0.01765977, 0.018456865, -0.011695304, -0.021549044, 0.032543454, 0.0044870935, -0.008884857, 0.012719158, -0.009448322, 0.011544131, -0.012622957, -0.03367038, -0.029877309, 0.011812119, -0.025603233, -0.0077716736, -0.005548741, -0.002868854, 0.027857086, 0.023170719, -0.007125752, 0.015364688, 0.021342898, 0.040294513, 0.00068543275, -0.010410332, 0.011097482, 0.021810161, 0.012842845, 0.002339748, -0.015392174, -0.010568377, 0.00495092, -0.0018604603, -0.021287926, -0.0019412006, 0.03713362, -0.008472567, 0.017536083, 0.019542564, -0.01752234, -0.012279382, -0.006579467, 0.015831951, -0.015900666, 0.0047275964, 0.021933848, -0.016780218, -0.011564745, -0.007998433, -0.032900773, -0.023569267, 0.026029266, 0.014485136, 0.0026094546, -0.0063355286, 0.039524905, -0.02600178, -0.011571617, -0.006703154, -0.024613736, -0.019734966, -0.01104251, -0.028997757, 0.011750275, -0.0069127353, 0.009675081, -0.029272616, 0.05269071, 0.004803183, 0.025259657, 0.027774628, -0.020628262, 0.031086694, 0.025671948, -0.016450386, -0.012629828, -0.0067581264, -0.0026335048, 0.017412396, 0.017701, 0.018827926, 0.0108569795, 0.018882899, 0.0074830703, 0.008946701, 0.028503008, -0.002197164, -0.019748708, -0.011482287, 0.010066757, -0.0056174565, -0.026881333, -0.043400433, -0.04452736, -0.01998234, 0.0071738525, -0.0063801934, -0.020092284, -0.0060778474, -0.01168156, -0.008115249, 0.015996866, -0.020765692, 0.009132232, -0.0240915, 0.002099245, -0.022703458, 0.013172678, -0.0011329396, -0.0240915, -0.0038720937, -0.00971631, -0.005689607, 0.004731032, 0.006651618, -0.02755474, -0.0328458, -0.008500054, -0.007943462, -0.0116609465, 0.023912841, 0.018374408, 0.00481349, -0.009778153, -0.019089045, 0.00033691854, 0.0003751413, 0.0027812421, -0.0005608867, -0.042823225, -0.012609214, -0.0010960052, 0.01870424, 0.016312957, 0.016958877, -0.026647702, -0.011228041, -0.0111249685, 0.027815858, 0.0034683929, 0.014224018, -0.006149998, -0.012354968, -0.0023036725, -0.001906843, 0.014952398, 0.02710122, 0.019789938, -0.028365579, 0.017123794, -0.011502901, 0.020793177, -0.008857371, -0.0055453056, -0.016491614, 6.697034E-06, -0.0068371487, -0.005308239, -0.015776979, 0.0013571224, -0.027939545, 0.018525582, 0.02372044, 0.016642788, 0.026922561, -0.0042087976, -0.0049199983, 0.020518318, 0.0044183787, 0.014155303, -0.02354178, -0.020999324, 0.01884167, -0.002563072, 0.028173177, 0.0015538194, -0.009187204, 0.021081781, -9.2926384E-05, 0.021150496, 0.0076617296, 0.0047275964, 0.00088728324, -0.01104251, -0.031526472, 0.059644673, -0.01683519, 0.028448036, -0.0088024, 0.0047860043, -0.006404244, 0.023747927, 0.019322675, 0.030262114, -0.0039030155, 0.003854915, 0.009297148, -0.011193683, 0.019899882, -0.010417203, 0.028860327, 0.010025527, -0.009228433, 0.025245914, 0.007723573, 0.0010771086, 0.011592231, 0.004091982, 0.01372927, -0.0007399753, 0.010314131, 0.020257201, -0.018924128, -0.0040129595, -0.008781785, -0.00027894022, -0.022277424, 0.00912536, -0.01701385, 0.006149998, 0.006613825, 0.020655748, -0.013234521, 0.015021113, 0.01377737, 0.00083961216, 0.028118204, -0.008884857, -0.04876021, 0.022882115, 0.016587816, -0.002420488, -0.013619325, -0.023665467, 0.013584968, -0.010183572, 0.048705235, -0.011523516, 0.012403069, -0.010733292, -0.004868462, -0.0016792243, -0.009757539, 0.0074143554, -0.0146500515, 0.027884573, -0.017068822, -0.0038995799, 0.0045970376, -0.017481113, -0.019831168, 0.042163562, -0.0031230997, -0.012650443, -0.042768255, 0.009221561, -0.005218909, 0.009091003, -0.010671449, 0.014024745, -0.008190836, -0.0099087125, -0.009633852, 0.0022779044, -0.015295973, 0.027650941, -0.005483462, -0.016161783, -0.0010882748, 0.0124374265, -0.0028070102, 0.069044895, 0.021507815, -0.008431338, 0.019047815, 0.006249635, -0.012870331, -0.008919215, -0.021356642, 0.0014215428, 0.007112009, 0.022840887, -0.011709047, 0.006194663, -0.022923345, 0.005126144, 0.011248656, 0.0084244665, -0.017755972, 0.006995193, 0.0105408905, 0.016477872, 0.012416812, 0.018484352, 0.013997259, 0.0044218143, 0.023926584, 0.007249439, 0.022620998, 0.010025527, -0.02312949, 0.0025819684, -0.00871307, 0.02208502, 0.007448713, -0.018800441, 0.0025218427, -0.024050271, -0.022497311, 0.021755189, 0.011001281, 0.024187703, 0.020820664, 0.005373518, -0.009139103, 0.02039463, 0.0073112827, 0.010135472, 0.022112507, -0.0018604603, -0.0067306403, 0.012808488, 0.01044469, -0.011537259, -0.029217646, -0.0014851043, 0.016505359, -0.014265247, -0.000473275, 0.001808924, -0.03672133, -0.0052670096, -0.026716417, 0.025259657, 0.011248656, -0.005249831, -0.018772956, -0.027747143, 0.01596938, -0.0088024, 0.0042259763, -0.01980368, -0.019583793, -0.00046382667, -0.0008473426, 0.016436644, 0.0046829316, -0.0014859632, -0.027307365, 0.029135186, 0.015460889, 0.0033155018, -0.002784678, -0.007922847, 0.008300779, 0.011001281, 0.012080108, 0.010671449, -0.0051845517, -0.00083703536, -0.0066310037, 0.023253176, 0.0017084283, 0.009036031, 0.01249927, 0.0019257396, 0.007180724, 0.009681952, 0.009372734, 0.023418093, 0.008197707, 0.022827145, -0.029327588, -0.0009791896, 0.0086443545, 0.042493396, 0.0010066757, 0.03199373, 0.01596938, -0.011001281, -0.0028293426, 0.014430163, 0.0035388258, 0.005445669, -0.002255572, -0.010176701, 0.0018742033, 0.018264463, 0.017577313, 0.022016305, -0.030234627, -0.020188486, -0.045819204, 0.036116637, 0.022689713, 0.0014954115, 0.015186029, 0.0132894935, -0.017701, -0.02203005, -0.0031488677, -0.009015416, 0.015570833, 0.011207427, 0.0012351533, -0.0117571475, -0.007318154, -0.036006693, 0.022648485, -0.00089844945, 0.001961815, -0.012348097, 0.008005305, 0.01870424, -0.007964076, -0.026895076, -0.017302454, -0.024806138, 0.0008069725, -0.042768255, 0.013866699, -0.008266422, 0.002631787, -0.025630718, -0.022648485, -0.0007623077, -0.032598425, -0.02531463, 0.00921469, 0.04023954, 0.019927368, 0.011303628, 8.310228E-05, 0.04018457, 0.0034271637, -0.0102248015, -0.0013854675, -0.020793177, -0.011530387, -0.010664578, 0.04183373, -0.0074074836, 0.004899384, 0.0028430857, 0.013612454, -0.002296801, 0.008451953, -0.009331506, -0.020916864, -0.018525582, -0.050794173, -0.00022010294, -0.00971631, 0.011021896, -0.003896144, -0.038920213, -0.011063125, 0.050821662, 0.012712287, -0.00353539, 0.01149603, 0.028970271, -0.020215971, 0.023225691, 0.010149214, -0.0005286765, 0.006445473, -0.0086443545, -0.026675187, 0.010039271, 0.022689713, -0.019034073, -0.0009843432, 0.009881226, -0.0077854167, -0.025300886, 0.00481349, -0.0020906557, -0.02011977, 0.028722895, -0.03097675, 0.0037415351, -0.010245415, -0.019528821, -0.025589488, 0.0039682947, 0.009255919, -0.014038487, 0.026785132, -0.0012480373, 0.0054353615, 0.021232955, -0.0036453342, 0.014306476, -0.0023844126, 0.004985278, 0.01108374, 0.003396242, -0.011784634, -0.029052729, -0.00962698, 0.0008327407, -0.0003379922, 0.027128708, -0.013557482, -0.018333178, -0.00021849242, 0.00028559697, -0.022827145, -0.03345049, 0.0073250257, 0.010733292, 0.02212625, -0.010939438, -0.02800826, 0.016436644, 0.0011174787, 0.0023500551, 0.014883682, 0.015625805, 0.003731228, -0.0016268292, 0.026180439, -0.02071072, 0.014292733, 0.018745469, -0.016780218, -0.014608823, -0.0032244544, -0.0072013387, -0.012746644, 0.0006540815, 0.01988614, 0.009022288, -0.0016766476, -0.002796703, 0.0057274005, -0.01774223, 0.0017530931, 0.00948955, 0.026015522, 0.0008924369, 0.009785025, 0.00053383014, -0.012217538, 0.01573575, -0.020298429, -0.008706198, -0.018539324, 0.029959768, -0.009764411, 0.015653292, 0.011276142, -0.01628547, -0.028228147, 0.0040541887, 0.013131448, -0.030234627, -0.021342898, 0.013420052, -0.02586435, -0.035456974, -0.011880835, 0.0004273218, 0.0054903333, -0.0036522057, -0.019460106, -0.007613629, 0.01988614, -0.04004714, 0.0059404173, 0.01860804, 0.042136077, -0.010960053, 0.021370385, 0.013042119, -0.0074006123, 0.007221953, 0.0030990494, -0.014773739, -0.023637982, 0.006390501, 0.004885641, 0.0053632106, -0.006016004, 0.0031162282, 0.0024720244, 0.012430555, 0.0045455014, -0.018456865, -0.006132819, 0.007441841, 0.00088986004, 0.03680379, -0.019748708, 0.011702175, -0.0133375935, -0.002391284, 0.003286298, -0.034330044, -0.021810161, -0.017810944, 0.0044561718, 0.0052395235, -0.04356535, -0.007366255, -0.014718766, -0.014347705, 0.023830384, -0.008946701, 0.0018346922, 0.015914408, 0.010382846, 0.008431338, -0.011166197, -0.031883787, -0.031141667, 0.014773739, -0.0029152366, -0.01327575, -0.010795136, 0.008458824, 0.049529817, -0.008053405, -0.043263003, -0.009695696, -0.0022985188, -0.04548937, 0.009764411, -0.014952398, 0.016079325, 0.014155303, 0.014801225, -0.004329049, 0.015515861, 0.029052729, -1.5944042E-05, 0.01628547, -0.019212732, 0.013110834, -0.01313832, -0.01414156, -0.03229608, -0.011544131, -0.035374515, 0.026840104, 0.020133514, 0.0011475416, 0.012987147, -0.011228041, 0.0016989799, -0.016505359, -0.01697262, 0.045874175, 0.013784242, 0.02938256, -0.018621782, -0.022978317, 0.00031050618, 0.011970164, 0.00019508635, 0.022882115, 0.006761562, 0.0031643286, 0.004913127, -0.019858653, -0.037051164, -0.030124683, 0.0068371487, -0.008067149, -0.0084244665, 0.00812212, 0.010321002, 0.023885356, -0.03389027, -0.024009043, 0.024215188, 0.0035285184, -0.0017831558, 0.012155695, -0.023047032, 0.0046417024, -0.0017445036, 0.031856302, -0.00743497, -0.019734966, -0.014993627, -0.017481113, -0.030949265, 0.019556306, 0.020298429, -0.010623349, -0.028640438, -0.0031368425, -0.019721223, 0.013763627, -0.01254737, -0.014608823, -0.03801317, 0.010231673, -0.0074280985, -0.0026850412, 0.0035663117, -0.004686367, 0.009455193, 0.01715128, 0.044417415, 0.20977335, 0.0067272047, -0.0009972274, 0.041971162, 0.002131885, 0.010039271, 0.008651227, 0.00059524423, 0.004834105, -0.011688432, 0.017206252, 0.0039030155, -0.029657422, -0.008555025, 0.038343005, -0.013110834, -0.054312386, -0.0019016893, -0.046451382, -0.002520125, -0.0008361764, 0.0031248175, 0.013344465, -0.025919322, -0.017755972, 0.00064935733, 0.00948955, -0.01701385, -0.010609605, 0.021150496, -0.0041297753, -0.025080997, 0.013447538, -0.021013066, -0.0023620804, -0.013488767, 0.027334852, -0.0015246155, -0.014402677, 0.025781892, -0.005205166, 0.010183572, 0.012396198, -0.03180133, -0.013797984, 0.0066481824, 0.004686367, 0.010506533, 0.00843821, 0.01610681, -0.012032008, -0.013956029, 0.039195072, 0.018085804, -0.011372343, -0.004384021, 0.014705024, -0.032625914, 0.01131737, 0.014718766, -0.03570435, 0.0009474089, 0.0025166892, 0.027705913, -0.0029564656, 0.015955638, 0.008726813, -0.00094998576, 0.0020648877, -0.00985374, -0.0010564941, 0.0071875956, 0.0019016893, 0.016642788, -0.009984299, -0.010836366, 0.019528821, -0.016450386, 0.013887314, -0.0070501654, 0.014759995, -0.0095445225, 0.00025725202, -0.019652508, -0.0048203617, -3.0264155E-06, 0.021782676, 0.010561505, -0.0018690497, 0.0008069725, -0.0080121765, -0.0023328764, -0.012093851, -0.009255919, -0.030619431, 0.034797307, -0.029135186, 0.015941894, -0.009200947, 0.00014108061, -0.002853393, 0.011599103, 0.010011785, -0.0036968703, -0.027884573, 0.01441642, 0.007737316, 0.0017213123, -0.009743796, -0.021672731, -0.004270641, -0.035429485, 0.012561114, -0.003409985, -0.022346139, 0.005308239, -0.0036796916, 0.004095418, 0.017728487, -0.03199373, 0.027183678, -0.024256418, 0.016299212, -0.0013811728, -0.005833909, -0.006287428, 0.02053206, 0.02061452, -0.011090611, -0.026936304, -0.0029341332, 0.00921469, 0.023844127, -0.038068146, -0.013983515, -0.019542564, 0.0031883789, -0.028750382, -0.025204685, 0.005150194, -0.008232065, 0.010747036, 0.003157457, 0.02486111, 0.015776979, -0.011599103, -0.007455584, -0.0022177787, -0.008658098, 0.0015254744, 0.011214298, 0.0024823316, -0.0024101809, -0.0074074836, 0.0053391606, -0.010479047, -0.03512714, -0.03490725, -0.0018570246, -0.010073628, -0.013447538, 0.019267704, 0.019308932, -0.040954176, -0.026194181, -0.01569452, -0.17668016, 0.015873179, 0.029574962, -0.03097675, -0.0075655286, 0.00048358226, 0.021494072, 0.010740165, -0.026633957, -0.006163741, 0.00957888, -0.013619325, -0.016409157, -0.039579876, -0.00068843906, -0.0126367, 0.0030801527, -0.0014988473, 0.017165022, 0.0066584894, 0.026950048, -0.024366362, -0.0018037704, 0.0130215045, -0.001989301, -0.016409157, -0.009063517, 0.00025446046, 0.015722007, -0.015131057, -0.009194075, -0.013310107, 0.022497311, -0.0041503897, 0.0030938957, -0.00033756276, -0.004359971, 0.021136753, -0.026221668, 0.031196639, 0.00033498593, 0.022112507, 0.032241106, 0.0018140776, 0.02440759, 0.029629935, -0.0074074836, 0.00092593546, 0.026675187, -0.014485136, 0.01884167, -0.017687257, -0.008678713, 0.003717485, 0.01669776, 0.00021870717, 0.015653292, -0.022139993, 0.013475024, -0.014705024, 0.0111730695, -0.034659877, -0.0003528089, -0.01943262, -0.023624238, 0.0016998389, 0.005383825, -0.0032485046, -0.0075655286, 0.017508598, -0.018072061, 0.027197422, -0.020916864, -0.02568569, 0.019446362, 0.017508598, -0.013612454, 0.0004646856, -0.0018175134, -0.025919322, 0.008369494, 0.015034855, -0.020312173, 0.0005583099, -0.0076067573, 0.0025441751, 0.002047709, 0.00367282, -0.012616086, -0.027953288, 0.02499854, -0.01825072, -0.006132819, -0.025754405, 0.003617848, 0.005150194, 0.014512621, -0.025781892, 0.008534411, -0.03070189, 0.009874354, -0.0075930143, -0.02869541, 0.022249937, 0.036254067, 0.0025012284, 0.02973988, 0.010293516, 0.010726421, 0.0023002368, 0.00816335, 0.010671449, -0.0011836169, 0.017673515, -0.00018617488, 0.0055762273, 0.005658685, -0.02828312, 0.00465201, -0.009049774, 0.021645244, -0.024943568, -0.031911276, -0.00656916, -0.010891338, 0.009235305, -0.10103863, -0.005717093, 0.036528926, 0.022071278, -0.0045970376, -0.0062943, -0.008733684, 0.005847652, 0.005483462, 0.01683519, -0.002630069, -0.009963684, 0.003841172, 0.023198206, 0.020587033, -0.01149603, 0.0070192437, -0.027197422, -0.007909103, 0.020518318, 0.008039663, 0.012677929, -0.025671948, -0.011214298, -0.0126367, -0.011186812, -0.014155303, 0.0100805, 0.018553067, -0.00556592, 0.00075887196, 0.0086443545, 0.02509474, 0.003200404, -0.011399829, -0.014086588, -0.044994622, -0.00047671076, 0.01856681, -0.005301367, 0.00048401172, -0.0022796222, -0.0023878484, -0.020284686, -0.017673515, -0.0056724283, -0.013310107, -0.005263574, 0.0076892157, -0.015570833, -0.016079325, -0.020188486, -0.00081856817, -0.015186029, -0.013578096, -0.010609605, -0.017673515, 0.010479047, 0.012726029, 0.013770498, -0.026578987, 0.008616868, -0.014856197, 0.010595863, 0.029437533, -0.006737512, -0.012533627, 0.006390501, -0.0026884768, -0.0018535889, -0.017233737, 0.026950048, -0.018635524, 0.038480435, -0.008465696, 0.0076067573, -0.033148147, -0.010664578, 0.0057651936, -0.0251772, -0.028942784, -0.030646918, 0.037765797, -0.032460995, 0.008067149, 0.012526756, 0.0117571475, -0.01715128, 0.025410831, -0.01829195, 0.026633957, 0.008465696, 0.018717984, 0.0036144124, -0.014979884, -0.008926087, 0.0010461868, -0.015543347, -0.02673016, -0.006105333, -0.044692278, -0.0071463664, -0.0698145, 0.037903227, 0.013282621, -0.014375191, -0.0121694375, -0.0039751665, -0.011970164, 7.988126E-05, 0.009001673, -0.018772956, -0.004411507, -0.022593513, -5.804544E-07, -0.01541966, 0.007180724, -0.013859828, 0.02946502, 0.017178766, 0.033148147, -0.003270837, -0.017247481, -0.00834888, -0.022648485, 0.025850607, -0.027032506, -0.015570833, -0.0069333497, 0.01765977, 0.015543347, -0.004356535, 0.00012894812, -0.0010736729, 0.0057823723, 0.04164133, -0.011234913, -0.03202122, 0.007826646, 0.021315413, 0.02367921, -0.009778153, -0.00278296, 0.008293908, 0.0033017588, -0.022414854, 0.0068508917, -0.008067149, 0.014746252, 0.016780218, 0.033313062, 0.0096407235, 0.010623349, 0.010733292, 0.014388934, -0.012904689, -0.019831168, -0.0164229, -0.004885641, 0.0032227365, 0.0023277227, -0.030756863, 0.031966247, -0.0137017835, 0.02326692, 0.011454801, 0.026647702, -0.0029272616, -0.02732111, -0.0026558372, 0.012231281, -0.0025132534, -0.016766476, -0.0010126883, 0.015268487, -0.024668707, 0.008080891, -0.0077510593, 0.011337985, 0.016409157, -0.015323459, 0.015818207, -0.013667426, -0.012086979, -0.03526457, 0.006606953, -0.0029272616, 0.0037209205, -0.024613736, 0.006974579, 0.0075105564, -0.011296757, -0.006428294, 0.0028499572, -0.0064489087, -0.01933642, 0.0015151672, 0.026331613, -0.0152822295, -0.0062015345, 0.015859436, 0.032818314, 0.007613629, -0.008740556, -0.017274966, 0.010018656, -0.004229412, 0.0026764516, 0.017096307, -0.023624238, -0.024751166, 0.0069539645, 0.011557873, -0.002478896, -0.0151448, 0.011008153, -0.0009422553, -0.012835974, 0.011832734, -0.023871614, -0.010850108, 0.009936198, 0.017068822, 0.0063664503, 0.002380977, -0.012114465, 0.011949549, 0.014038487, -0.0059404173, -0.013578096, 0.003617848, 0.0020253765, 0.029657422, -0.0014249786, 0.00092593546, -0.016340442, 0.009324634, -0.0050436854, -0.011715918, 0.0096888235, -0.009730053, 0.07904981, 0.0036418983, -0.012389326, 0.026771389, -0.015076085, 0.020518318, 0.03636401, -0.0003384217, -0.01783843, -0.025012283, -0.00028022862, -0.011585359, -0.011516645, 0.008115249, -0.020257201, -0.002712527, 0.016587816, 0.02071072, -0.034522448, -0.012141951, 0.04653384, -0.03518211, 0.02796703, -0.010039271, -0.0011810402, -0.0045180153, 0.00743497, 0.029822337, 0.000627025, -0.029767364, 0.0020562983, 0.007194467, -0.019542564, -0.027403567, -0.009194075, -0.0025407395, -0.014897426, -0.004995585, -0.0108088795, 0.024201445, 0.0006351849, 0.009510165, -0.022730943, -0.01099441, 0.011585359, 0.022277424, -0.027499769, -0.015680777, -0.013784242]
+ },
+ {
+ "Id": 3,
+ "Type": "Ski/boarding",
+ "Brand": "WildRunner",
+ "Name": "Alpine Fusion Goggles",
+ "Description": "Enhance your skiing experience with the Alpine Fusion Goggles from WildRunner. These goggles offer full UV protection and anti-fog lenses to keep your vision clear on the slopes. With their stylish silver frame and orange lenses, you'll stand out from the crowd. Adjustable straps ensure a secure fit, while the soft foam padding provides comfort all day long.",
+ "Price": 79.99,
+ "Embedding": [-5.4175056E-05, -0.0026461128, -0.009047234, -0.017823594, -0.015317997, 0.010340664, -0.011546059, -0.04117304, 0.021317884, -0.04220237, 0.008932113, 0.020491716, -0.0017725402, -0.01806738, -0.0047166157, -0.010699574, 0.018758113, -0.0043407762, -0.008207521, -0.020532345, 0.0048249657, 0.0148710525, -0.01205395, -0.028739868, -0.0072662295, -0.011654409, 0.00011628591, -0.01007656, 0.0118575655, -0.018121555, 0.021385603, -0.0049705612, 0.0013442186, -0.019990595, 0.018365344, 0.015128384, 0.012575385, -0.0012451798, -0.0047843345, 0.002573315, 0.023417167, -0.0010665715, -0.00206881, 0.010780836, -0.0025648503, 0.026857283, -0.01262956, -0.0099952975, -0.0119456, 0.011187149, -0.002810331, 0.0020298716, -0.003440116, -0.02936288, 0.0058272043, -0.009311338, -0.0030896713, -0.002122985, 0.008783131, -0.0022787382, -0.01619834, -0.002524219, -0.03152988, 0.015534697, -0.0031777057, -0.00062428287, -0.023200467, -0.014044883, -0.007063073, 0.007638683, 0.0074897013, 0.00089727435, 0.0038836743, -0.0056003463, 0.0043407762, -0.0065822694, -0.0177017, -0.009785369, 0.008891481, 0.020532345, 0.026911458, -0.030663082, -0.013774008, 0.02234721, 0.008586747, 0.026004028, 0.01252121, 0.007401667, -0.013381239, -0.0153450845, -0.017295387, 0.013977164, 0.017322473, 0.02273998, -0.024798632, 0.007239142, 0.003375783, 0.0058136606, -0.01752563, -0.020992834, -0.00021278523, 0.005800117, -0.0017742331, -0.009602529, -0.042581595, -0.023809938, 0.0034096425, 0.007801208, 0.018541412, 0.0095754415, -0.02278061, 0.00076056697, 0.022482648, -0.021006377, -0.007171423, -0.00043382368, 0.03624311, 0.012534753, -0.005949098, -0.008146574, 0.014166777, -0.008085627, 0.023864113, -0.01720058, 0.0069140913, 0.013658886, -0.02267226, -0.00016199611, 0.014220952, -0.010421926, 0.038924776, 0.01136999, 0.007956961, 0.0008092399, -0.03131318, 0.020139577, -0.010462558, -0.00309475, -0.0256248, 0.023241099, 0.010137508, 0.019150883, -0.011058483, -0.0018334871, 0.0069750384, 0.019665545, 0.0071037044, 0.0021653092, 0.04339422, -0.012047178, 0.010137508, -0.04209402, 0.026776021, 0.0017725402, 0.0027544629, -0.018812288, 0.014180321, 0.020898027, -0.04789075, 0.00827524, 0.008742499, -0.022265948, 0.009690563, 0.006257219, 0.011498655, 0.02903783, 0.011735671, -0.008261696, 0.0034333442, 0.0033402308, 0.014275127, 0.04160644, -0.010198454, 0.02601757, 0.009636388, 0.00064798445, -0.008911797, 0.023986006, -0.0012654954, 0.0050619817, 5.4651202E-05, -0.02925453, -0.001665883, -0.0063926564, -0.018663306, -0.015805572, 0.008471624, 0.0069174776, -0.012033634, -0.026450971, -0.016320236, 0.026058203, 0.019191513, 0.015385716, -0.65876865, 0.0040394277, -0.0023870885, -0.038653903, 0.03152988, 0.035349224, 0.004635353, 0.012155528, -0.014505371, 0.024189163, -0.0038091836, 0.030608907, 0.010320348, 0.000757181, -0.006138711, -0.040929254, 0.018405976, -0.014965859, 0.01709223, 0.0008786517, -0.01320517, -0.0006399428, -0.012568613, 0.0050281226, 0.011295499, 0.015453435, 0.0064502177, -0.010550592, -0.01619834, 0.016726548, -0.041254304, 0.018907094, -0.011275183, 0.021412691, 0.055800308, -0.03033803, 0.004198567, 0.03310096, 0.00928425, 0.02979628, -0.0106521705, 0.010320348, 0.008810218, -0.01874457, -0.004073287, 0.03212581, 0.0028475763, -0.010611539, 0.015859747, -0.030717257, 0.0059863436, 0.0074422983, -0.0058847656, -0.008661237, 0.026599953, 0.0024548073, 0.012182616, 0.008430993, 0.0065687257, 0.024229793, -0.014938772, 0.014694984, -0.016076447, -0.0020468014, -0.0045744064, 0.028062679, -0.03591806, -0.0062775346, 0.013577623, -0.0072526857, 0.018920638, 0.012839488, -0.013259345, 0.0059355544, 0.0072662295, 0.019990595, 0.014776247, -0.0029119093, 0.013489589, 0.015087753, 0.0061827283, 0.010550592, -0.004872369, -0.010868871, 0.02087094, -0.026274903, 0.0009920807, 0.009487406, 0.00928425, -0.008891481, 0.024947613, 0.036513988, -0.00654841, -0.013814639, -0.0056579076, 0.01183725, -0.021927353, 0.03277591, 0.036513988, -0.007618367, -0.011160062, -0.016022272, -0.0077673486, 0.0016159404, 0.02245556, 0.007455842, -0.0051906477, -0.01665883, 0.029389968, -0.033182222, -0.0027256825, 0.0027544629, -0.0036297287, -0.014261584, 0.014979403, -0.026721846, -0.009555126, -0.004743703, 0.0063554114, -0.027304228, 0.02925453, -0.014166777, 0.014776247, -0.009189444, -0.005745942, 0.00734072, -0.0044863718, -0.01180339, -0.02148041, -0.018676851, 0.0035383084, 0.0055868025, -0.0013018943, -0.0007377119, -0.000351503, 0.011166833, -0.0024124829, 0.0033148362, 0.012311282, -0.014153234, -0.047917835, -0.00055360136, -0.015155472, -0.012744682, -0.009304565, -0.0012172458, -0.033046786, -0.0038024117, -0.0032521964, -0.022794155, 0.0056071184, -0.009866632, 0.0042933733, 0.01396362, 0.028225204, -0.013685973, 0.018595587, -0.017363105, -0.0089185685, -0.012819173, 0.021683566, 0.008072083, 0.0053464007, -0.018433062, -0.0068091275, 0.021426234, -0.012839488, 0.021223078, -0.010015613, -0.043042082, -0.008728956, -0.019259233, -0.026423883, 0.016455673, -0.016834898, -0.007875699, -0.015859747, -0.01478979, 0.015250279, -0.014220952, 0.0063791126, -0.014546002, -0.038599726, -0.00935874, 0.02137206, 0.0029389968, 0.016428586, 0.007652227, -0.009020147, -0.004256128, -0.00012887738, 0.01687553, 0.0010115498, 0.0073068608, -0.023728674, -0.04128139, 0.0129342945, 0.0012671885, 0.017065143, 0.030663082, 0.024771545, -0.03721826, 0.014979403, -0.01169504, 0.04206693, -0.00620643, 0.0061048516, -0.0074219825, 0.01011042, 0.008397134, 0.009771826, -0.03635146, -0.005105999, -0.024243338, 0.008620606, -0.0116747245, 0.02979628, 0.043312956, -0.007984049, -0.019313408, 0.012981698, -0.0081330305, 0.027615735, -0.01852787, -0.011342903, -0.014031339, -0.01587329, 0.021967985, 0.025827957, -0.01874457, 0.019584283, 0.0070901606, 0.007611595, 0.017349562, 0.0033199152, -0.0028306467, -0.0042256545, -0.023471342, 0.05051824, 0.0044897576, 0.036974475, 0.016834898, 0.016130622, 0.027304228, 0.03483456, 0.010692801, 0.0245413, 0.00083675067, -0.0056477496, 0.01993642, -0.017444368, 0.0079501895, -0.0062132017, 0.00676511, -0.0075506484, -0.009541581, 0.034482423, 0.001718365, 0.0024615792, 0.035105437, -0.006903934, 0.025827957, 0.007889243, -0.009060778, 0.006382499, 5.0392326E-05, -0.027426122, -0.04537161, -0.025204945, -0.0111465175, 0.0017403737, -0.017498543, 0.006836215, -0.008031452, 0.013774008, 0.015521154, -0.005580031, 0.033236396, 0.005732398, 0.013895902, -0.03681195, -0.021819003, 0.008478397, 0.020789677, 0.00042578208, -0.020816766, -0.010746976, -0.005576645, -0.010760521, 0.027900154, -0.00078807777, 0.0008113561, -0.008810218, 0.008485168, 0.0047301594, -0.013990708, 0.021141816, -0.020600066, 0.00503828, -0.011254868, -0.018405976, -0.008288784, -0.0033520816, -0.009880176, 0.041552268, 0.00022706967, -0.0064028143, -0.010719889, 0.014600177, -0.010625083, 0.012121669, 0.010550592, 0.0023024399, -0.019272776, -0.007516789, -0.0148710525, -0.011769531, -0.014397021, 0.038410116, -0.0066262865, -0.013462502, -0.018040294, 0.017295387, -0.02288896, 0.06641862, 0.007977277, -0.0038125697, 0.026356164, 0.022360755, -0.016956793, -0.012805629, -0.0037550086, 0.0036568162, -0.013164539, -0.004885913, 0.02673539, 0.00914204, 0.0010784222, 0.0065179365, 0.026559321, -0.0022838172, -0.030175505, -0.039195653, -0.011776303, -0.0083158715, -0.00016665178, 0.004896071, 0.016211886, 0.0033791692, 0.0028746638, 0.018148644, 0.042391982, 0.020098945, -0.025448732, 0.000703006, 0.002175467, -0.021724198, 0.00022897426, 0.019083163, -0.012649875, 0.013895902, -0.017688155, 0.019638458, 0.0042222682, 0.018839376, 0.01698388, 0.009507722, -0.022171142, 0.006294464, -0.008302327, 0.01147834, 0.016604654, 0.02115536, -0.020058315, 0.014627265, -0.00676511, 0.0058136606, 0.008999831, 0.0066195144, 0.011979459, 0.018108012, 0.00088034465, 0.0026139463, -0.047484435, -0.0053599444, -0.0067921975, 0.0042154966, -0.018270537, -0.0046725986, -0.018162187, 0.0077876644, 0.016564023, -0.0073542637, -0.01828408, 0.012927523, -0.005014579, -0.017931944, -0.007401667, 0.0254081, 0.013042645, 0.015385716, -0.013442186, 0.010516733, 0.012446719, 0.015534697, -0.018419519, -0.0065213223, -0.00805854, 0.008424222, -0.024026638, -0.0032572753, 0.0148710525, -0.01759335, 0.012913979, -0.0005565641, 0.00286112, -0.01122778, 0.00042154966, -0.012439948, 0.00892534, 0.009981754, 0.005234665, 0.008451309, -0.01101108, 0.020572977, -0.026938546, -0.0028187959, -0.02295668, 0.0004774177, 0.003846429, 0.00527191, 0.002747691, -0.008004365, 0.0012197852, -0.00053159276, -0.005451365, 0.016266061, -0.00809917, -0.007848611, 0.017904855, -0.004916386, -0.0031015219, -0.0035078349, -0.02712816, 0.023403624, -0.043746356, 0.043421306, 0.0074287546, -0.007909558, 0.01457309, 0.028441904, -0.0074761575, 0.011871109, 0.012893664, -0.004720002, 0.031042308, 0.011078799, -0.001064032, -0.030175505, -0.025841502, -0.026220728, 0.0009548354, -0.019421758, -0.0058136606, 0.0012841182, 0.0056951526, 0.012060721, 0.027981415, 0.009670247, -0.018311169, -0.0046522827, -0.008640922, -0.029308705, 0.02651869, -0.027588647, -0.019205058, -0.017661069, -0.013347379, -0.01248735, -0.037516225, -0.03112357, -0.00925039, 0.02597694, 0.02756156, 0.019909333, -0.0145595465, 0.017336018, 0.01572431, -0.024026638, -0.0035687818, -0.036649425, 0.010665714, -0.04975979, 0.0013856963, -0.0065213223, 0.0057120826, 0.0050856834, -0.012913979, -0.01500649, 0.009006603, -0.005569873, -0.012399316, -0.0011689961, -0.025543539, -0.0070833885, -0.00095060293, 0.0027967873, 0.004493144, -0.0131171355, 0.007956961, 0.030825607, 0.01054382, 0.0061928863, -0.0021077483, 0.016130622, -0.04000828, 0.020342734, 0.016238973, 0.0123315975, -0.0013933147, -0.019557195, -0.02047817, -0.00975151, 0.008085627, 0.011634093, 0.009609301, 0.01917797, -0.007570964, -0.01655048, 0.03900604, 0.0034587388, -0.013347379, -0.0016337165, -0.01795903, 0.003782096, -0.01928632, -0.026396796, -0.015155472, -0.017484998, 0.0070495293, -0.003900604, 0.02299731, -0.003917534, -0.031502794, -0.0123315975, -0.014694984, 0.04469442, -0.011932056, 0.012020091, 0.024487125, -0.038951866, -0.012067494, -0.031936195, 0.010530276, -0.0030321102, -0.0021314498, -0.0073136324, -0.02230658, -0.0121487565, -0.0010259402, 0.0179184, 0.0070969323, -0.021344973, 0.009372285, 0.04274412, 0.024920525, -0.014410565, -0.028008504, -0.005353173, 0.04084799, -0.0062267454, 0.0044592842, -0.0063994285, -0.015426347, -0.024595475, 0.025651889, -0.016740093, -0.0022211773, -0.008837306, 0.00020569592, 0.018433062, -0.001229943, 0.013239029, -0.012778541, -0.0032979066, 0.049488913, -0.007963733, -0.010306804, 0.0056951526, -0.00870864, 0.0068971617, 0.0054784524, -0.0053226994, 0.031611145, -0.021101184, -0.009440004, 0.0019401442, -0.0017623823, 0.004127462, -0.017078687, -0.010211998, -0.006125167, 0.034265723, 0.024988245, 0.019340495, -0.004533775, -0.016713005, -0.009013375, 0.0018554956, 0.010313576, -0.0236745, -0.0073000886, -0.0140855145, -0.037651666, -0.006849759, -0.008776359, 0.014302215, 0.006710935, 0.0019773894, -0.0029017513, -7.9093465E-05, 0.0020417224, -0.044017233, -0.00013342724, 0.039195653, 0.013523448, -0.018040294, 0.023024399, 0.0051364726, -0.02706044, 0.0034164144, -0.018988358, -0.043529656, -0.0073000886, -0.008898253, -0.0015761555, 0.010726661, -0.021168903, 0.007503245, -0.0072459136, 0.014803334, 0.0044321967, -0.026464514, 0.0067989696, 0.01852787, 0.020098945, 0.019949965, -0.02925453, -0.002983014, 0.008830534, -0.0039920243, 0.025286207, -0.031069394, -0.007381351, -0.014735615, 0.0031777057, 0.011735671, -0.005789959, 0.010198454, 0.001090273, -0.015643047, 0.015020034, -0.012297737, 0.005644364, 0.025651889, 0.0013653807, 0.018202819, 0.036324374, -0.040252067, -0.024270425, -0.0023058257, -0.020925116, -0.0034045638, -0.026789565, 0.022035703, 0.040279154, 0.021006377, -0.010746976, 0.023539063, -0.02097929, -0.03250503, -0.008742499, 0.010042701, 0.0093926005, 0.028171029, 0.018947726, -0.029119093, 0.021791916, 0.020071859, 0.015521154, 0.002182239, 0.00049942627, 0.008288784, 0.018934183, -0.0048385095, -0.018703938, -0.03288426, -0.013489589, 0.026654128, -0.023986006, 0.01011042, 0.004818194, -0.016103536, -0.027588647, -0.00042789828, 0.0023193695, 0.025949853, 0.014383477, 0.009609301, -0.01896127, -0.002067117, -0.00013363885, 0.03152988, 0.0005658754, 0.013652114, -0.009013375, 0.017471455, 0.023796393, -0.001323903, -0.028198117, -0.0020908185, -0.021182448, 0.017620437, 0.0014432573, -0.004841896, 0.015521154, 0.015697222, -0.0092097595, 0.015494066, 0.033507273, 0.0033182222, -0.008302327, 0.015426347, -0.010760521, -0.007002126, 0.0050213505, 0.013360923, 0.0023092118, 0.01054382, 0.012859804, 0.036188938, -0.023444256, 0.010950133, 0.0026647355, -0.022265948, -0.0034705894, 0.0034807473, 0.014220952, 0.012947839, 0.011518971, 0.00654841, -0.021764828, 0.020708416, -8.390785E-05, -0.012886891, -0.019895788, -0.008065311, -0.007130792, -0.0035518522, 0.016618198, 0.20933242, 0.011654409, -0.0077131735, 0.028658604, 0.002757849, 0.009582213, 0.010144279, 0.0018859691, 0.023241099, 0.0052515944, 0.014965859, 0.0026122534, -0.030852694, -0.0059321686, 0.014275127, -0.007469386, -0.021534584, -0.0025479207, -0.03705574, -0.006646602, 0.0011131281, -0.006687233, -0.0016040895, -0.01741728, 0.01622543, -0.0034807473, -0.005045052, -0.014058427, 0.004635353, 0.017945487, 0.0049434737, -0.022807699, 0.0084987115, -0.0063317097, 0.0029457686, -0.007692858, 0.0010039315, 0.0032318807, -0.011051712, 0.029119093, -0.01720058, 0.021141816, 0.010449014, 0.0003356314, 0.027764715, 0.002876357, -0.013685973, 0.00791633, -0.023444256, -0.0033977919, -0.024703825, -0.007184967, -0.012507666, 0.027101072, 0.008586747, 0.006545024, 0.030175505, -0.013144223, 0.009087865, -0.005471681, -0.024121443, 0.02947123, -0.014031339, 0.033778146, -0.006717707, 0.030554732, 0.0031658548, -0.014315759, 0.0024514212, 0.008803447, 0.017891312, 0.01630669, -0.010333892, 0.035078347, 0.0012756533, -0.024487125, -0.006091308, 0.0091759, 0.02349843, 0.030067155, -0.011607005, -0.022577455, -0.0039310777, 0.011512199, -0.024663195, -0.026329078, 0.021114727, -0.01885292, 5.108671E-06, 0.012047178, -0.00080416095, 0.002762928, 0.0055089258, -0.004015726, -0.007469386, 0.0039276914, -0.021927353, 0.024812175, -0.019760352, 0.015561785, -0.012907207, -0.007814752, -0.01741728, 0.017105773, -0.012663419, 0.011397078, 0.00031552737, 0.021656478, -0.010665714, -0.018202819, 0.0101781385, -0.039520703, 0.0140855145, -0.0058983094, -0.0076454547, -0.008877938, 0.00931811, -0.036188938, 0.013394782, 0.0002829377, 0.026234271, -0.00090404623, 0.010103648, -0.017214123, -0.006524708, -0.018947726, -0.029633755, 0.007740261, -0.0019181356, -0.039845753, 0.0018131714, -0.027304228, 0.018405976, -0.02421625, -0.0020925116, -0.019489476, 0.007936645, -0.0076251393, 0.0121623, 0.0084445365, -0.005580031, -0.012500894, 0.021832548, 0.029010743, 0.010665714, -0.0024175618, 0.0055969604, -0.027954329, -0.006328324, 0.033073872, 0.0040529715, -0.0027155248, -0.0065754973, -0.024094356, 0.012290966, 0.0034621246, -0.04919095, -0.0022093265, -0.011769531, 0.019150883, -0.024162075, 0.016943248, 0.025773782, -0.03188202, -0.014884597, -0.009182672, -0.17401028, 0.021074096, -0.013990708, -0.014193865, 0.013936533, -0.0015626118, 0.026708303, 0.006013431, -0.041552268, 0.0023583078, 0.016753636, 0.009026919, -0.025597714, -0.02597694, 0.0113835335, 0.01928632, -0.010245858, 0.022767067, 0.01633378, 0.0054242774, 0.02558417, -0.0016988959, 0.013130679, 0.00042662857, 0.0053768745, -0.011275183, 0.0022719663, -0.0015169015, 0.0005243976, 0.002290589, 0.013509905, -0.010239085, 0.019909333, -0.016387954, 0.005688381, -0.019773895, -0.033398923, -0.0069614947, 0.00020717726, 0.024487125, 0.005678223, 0.004493144, 0.011898196, -0.00069242495, -0.0064536035, 0.016740093, -0.0045608627, 8.504531E-06, 0.01115329, -0.003497677, 0.027399035, -0.0148710525, -0.029173268, 0.0045676343, 0.028143942, 0.005684995, 0.020315645, -0.0044423547, 0.020166665, -0.0031760125, 0.0130629605, -0.017579805, 0.023823481, -0.019367583, -0.016943248, -0.0032166438, 0.008464852, -0.011600234, -0.033128045, 0.0057493276, -0.0022093265, 0.014857509, 0.0179184, 0.0014127839, 0.010333892, 0.010157823, -0.023227556, -0.012155528, 0.01136999, -0.01730893, -0.001146141, 0.02673539, -0.0121487565, 0.0064332876, -0.011464796, 0.008309099, -0.02493407, 0.010482873, -0.015087753, -0.018297626, 0.0068125133, -0.011491884, -0.02968793, -0.0073339483, 0.021629391, 0.017187037, 0.017661069, -0.010042701, 0.021507498, -0.024311056, -0.0054005757, -0.009399372, -0.016035816, 0.016956793, 0.027845979, -0.012216475, 0.037407875, 0.019963508, 0.0014144769, -0.0047166157, -0.012548298, 0.020721959, -0.013333836, -0.01655048, -0.020315645, -0.0018707324, -0.008830534, -0.034130286, -0.00057476346, -0.031502794, 0.011241324, -0.003558624, -0.019259233, -0.021832548, -0.029769193, 0.0061183954, -0.088467866, -0.037570402, 0.029660843, 0.0074626138, -0.0008735728, 0.0039310777, 0.0066736895, 0.02701981, -0.011573146, 0.020789677, 0.024893438, -0.007936645, 0.0004537161, 0.0012028555, 0.0036432724, -0.011688268, 0.0071578794, -0.008722184, -0.03857264, 0.025110139, -0.007611595, -0.0044491263, -0.023362992, -0.005349787, -0.006186114, -0.032965522, -0.020505259, 0.021507498, 0.010516733, 0.015358629, 0.0042628995, -0.0068226713, 0.017078687, -0.02356615, -0.026383253, -0.0074964734, -0.027845979, 0.0023803166, 0.0183518, -0.022645174, 0.0020603451, 0.0059998874, -0.014992947, -0.029010743, -0.034482423, 0.0065653394, -0.017972576, 0.0113835335, 0.008437765, 0.0011275184, -0.020302102, -0.020302102, -0.014803334, -0.0029440757, 0.017715244, -0.003961551, -0.008146574, -0.00040186886, -0.015886836, 0.0064332876, 0.017187037, 0.008295556, -0.01446474, 0.008085627, -3.114801E-06, -0.015954554, -0.0039750948, -0.007909558, 0.0034485809, 0.0053633307, -0.023362992, 0.005949098, -0.002698595, 0.039168566, 0.006785426, -0.0007258611, -0.016320236, -0.024514213, -0.010895958, -0.00025098288, -0.02547582, -0.02015312, 0.028171029, -0.018013205, 0.01262956, 0.01720058, 0.018433062, -0.024798632, 0.013103591, -0.03310096, 0.0003407103, 0.026789565, 0.022807699, -0.006775268, -0.033696886, -0.0041545494, 0.003680518, -0.02547582, 0.0027493841, -0.013476045, -0.02781889, -0.00964316, -0.07584508, 0.027155247, -0.008390361, -0.01363857, 0.0012519517, 0.01928632, 0.0078960145, -0.014058427, 0.021900266, -0.021331428, -0.004797878, -0.03385941, -0.0046692127, 0.0010970449, -0.0059931157, -0.02803559, 0.016726548, -0.0036398866, 0.029064918, 0.0089727435, -0.00563082, 0.025611257, -0.020572977, 0.008911797, -0.02766991, -0.008884709, -5.4492488E-05, 0.029606668, 0.002757849, -0.010455785, 0.006545024, 0.0034231863, 0.0045439326, 0.023024399, -0.009886947, -0.02792724, 0.0482158, 0.0070698448, 0.012751454, -0.043963056, -0.032640472, -0.016726548, 0.009826001, -0.016266061, -0.017322473, 0.0028357257, -0.002642727, -0.0074626138, 0.029850455, 0.01353022, 0.010069788, 0.03580971, 0.0036398866, -0.021033466, -0.016428586, -0.016848443, 0.004601494, -0.013306748, 0.011993003, -0.03548466, 0.0367036, 0.014220952, 0.0043373904, -0.0056511355, 0.035565924, 0.012819173, -0.026098832, -0.00051381654, -0.0011021238, 0.0059220106, -0.020071859, 0.0057120826, 0.0134286415, 0.013503132, 0.017877769, -0.0045608627, 0.0038802885, -0.0074355262, -0.016469218, 0.01774233, 0.013110364, 0.0010843476, -0.044856947, 0.018595587, 0.004774177, 0.009731194, -0.02378285, 0.004198567, -0.004872369, 0.021534584, -0.032965522, -0.0044118813, -0.02738549, -0.013699518, 0.0013569158, 0.019232145, 0.00413762, -0.002236414, 0.007469386, -0.011546059, 0.013150995, -0.006839601, 0.0016582645, -0.01032712, -0.01971972, 0.018148644, -0.0042933733, -0.02087094, -0.0046116514, 0.008965972, 0.019475933, -0.011038167, -0.0058746077, 0.005403962, -0.006250447, -0.009135269, 0.025164314, -0.024839263, -0.008661237, -0.015927466, 0.014491827, 0.016943248, 0.0035315366, -0.019489476, 0.00022579994, -0.008586747, 0.009954667, -0.020342734, 0.0048351237, 0.00076014374, 0.02925453, -0.023484888, 0.010530276, 0.0036500443, -0.012067494, -0.009148813, 0.016171254, 0.030365119, -0.01594101, 0.07524915, 0.009054006, -0.0026833583, -0.0033994848, -0.03163823, -0.009765054, -0.004764019, 0.012338369, -0.010171367, -0.014193865, -0.009385829, -0.0070698448, -0.021290798, 0.017173493, -0.02525912, -0.02011249, 0.018988358, 0.013367695, -0.014397021, -0.011613778, 0.05785896, -0.020098945, 0.019706177, 0.00860029, 0.006947951, -0.032477945, 0.005962642, 0.0048689833, -0.0023718516, -0.0181351, 0.016685918, 0.004601494, -0.02115536, -0.015534697, 0.009108181, -0.024595475, 0.0069547226, 0.02126371, -0.016238973, 0.025394557, 0.00870864, 0.010990764, 0.0025394557, -0.010428698, 0.013774008, 0.008993059, -0.023728674, -0.024256881, 0.012731138]
+ },
+ {
+ "Id": 4,
+ "Type": "Bags",
+ "Brand": "Quester",
+ "Name": "Expedition Backpack",
+ "Description": "The Expedition Backpack by Quester is a must-have for every outdoor enthusiast. With its spacious interior and multiple pockets, you can easily carry all your gear and essentials. Made with durable nylon fabric, this backpack is built to withstand the toughest conditions. The orange accents add a touch of style to this functional backpack.",
+ "Price": 129.99,
+ "Embedding": [0.012665581, 0.00016094443, 0.0063428693, -0.007048379, -0.0101190265, 0.023127284, -0.0055500106, -0.05821464, 0.020009601, 0.0004451431, 0.0015042477, -0.003168075, 0.0023836154, 0.020506818, -0.0045790947, -0.007464966, 0.027252836, -0.0054794597, -0.0033058175, -0.01705318, 0.003433481, 0.0016772656, 0.0061379354, 0.008466118, -0.002729651, -0.026634675, 0.023826074, -0.0108446935, 0.031096185, 0.00075674325, 0.018262625, 0.0090036495, -0.01282684, -0.027306588, -0.01079766, -0.005986755, -0.011879441, -0.0029144275, 0.019203305, -0.009594933, 0.042518724, 0.0212728, 0.0004342245, 0.028301023, 0.0023684972, -0.009171627, -0.04528701, -0.024995204, -0.008284701, -0.0016411502, 0.002378576, -0.000821415, -0.005916204, 0.023611061, -0.0077404506, -0.00586581, 0.010858132, 0.0052543683, 0.013438283, -0.039239783, -0.019055484, -0.0006899718, -0.021138418, 0.010186218, -0.013277023, -0.019888658, -0.013404686, -0.00876176, 0.023691691, 0.023678252, 0.011630833, 0.013364372, 0.02042619, 0.03284316, 0.010730469, -0.017201, -0.018437322, 0.009218661, -0.013639856, -0.01079094, 0.008694569, -0.022159727, -0.051119227, 0.016878482, 0.009306011, 0.021447498, 0.010784222, 0.019015169, -0.025438668, -0.025761187, 0.0061547332, -0.0006341189, 0.021783456, 0.0053081214, -0.022240357, 0.0014950089, 0.015158382, 0.022468807, 0.006900558, -0.02112498, -0.009447113, 0.0125043215, -0.007767327, -0.011147055, -0.05036668, -0.0054996167, -0.007834518, -0.015494339, 0.024081402, 0.006759456, -0.024175469, 0.015924364, 0.024968328, -0.033945102, -0.010179499, -0.03684777, 0.016905358, -0.009010368, 0.0054324255, -0.044453837, 0.02424266, -0.012349782, 0.037089657, -0.010945481, 0.009265696, 0.028972937, -0.025304286, 0.0038534275, 0.035718955, -0.012779807, -0.00089364575, 0.04249185, 0.016260322, -0.024444235, -0.01243713, 0.013518912, -0.013747362, 0.004293531, -0.008674411, 0.00076682196, 0.010125746, 0.025532736, -0.012175083, -0.010360915, 0.0053719534, 0.009064121, 0.0026238246, 0.019727398, 0.022495685, 0.010461703, 0.042196207, -0.0050527942, 0.023503555, 0.010313882, -0.0023651377, 0.013518912, 0.0021736422, 0.0025767905, -0.016623154, -0.020950282, -0.013639856, 0.002276109, 0.0045992523, -0.01016606, 0.023355734, 0.024699563, 0.018235749, 0.0032033506, -0.0019922254, 0.00036241367, -0.0141505115, 0.023691691, 0.00096167705, 0.011926475, 0.027252836, 0.01564216, 0.009077559, 0.009480708, -0.025949324, 0.012168365, 0.00019191546, 0.006383184, 0.000688292, 0.014110196, -0.023866389, -0.041040514, -0.0050494345, -0.015830297, 0.011718182, -0.018128242, 0.013109044, 0.008190633, -0.012101173, 0.021393744, -0.6549281, 0.0018880786, -0.002699415, -0.035154548, 0.014741795, 0.0039676526, 0.026580922, 0.02870417, 0.006289116, 0.010979077, 0.0019535902, 0.032735657, 0.003544347, -0.023557309, -0.0044682287, -0.021890962, 0.002956422, -0.014352085, 0.03300442, -0.00985698, -0.020708393, 0.003450279, -0.017980421, 0.0025129588, 8.7821274E-05, 0.008244386, 0.0068938388, -0.038379733, 0.011939914, 0.013391248, -0.033219434, 0.036498375, -0.010596085, 0.0069207153, 0.056763303, -0.030182382, -0.0067796134, 0.027400658, 0.0050326367, 0.016905358, 0.0017268192, -0.014284894, 0.01392206, -0.012967942, -0.016475335, 0.011563642, 0.048243433, -0.0014110196, 0.005099828, -0.01643502, 0.03644462, -0.011328472, 0.010972357, -0.014056443, 2.448812E-05, -0.00096419675, 0.025223656, 0.004820984, 0.011610676, -0.030639283, -0.016287198, 0.020291805, -0.028354775, -0.019915534, -0.05020542, 0.03262815, -0.045797665, -0.02206566, 0.020520257, -0.029510468, 0.008889424, 0.025532736, 0.010159342, 0.012994818, 0.012269151, 0.012282589, 0.013666733, -0.007841238, -0.0058624507, 0.010159342, 0.030612407, -0.0062152054, -0.007344021, -0.006618354, 0.036659632, -0.014123634, 0.008419083, -0.0015672396, 0.029429838, -0.0018847191, -0.008385488, 0.008049531, -0.0023013058, -0.017429452, -0.016797852, 0.004582454, -0.00962181, 0.0018947978, 0.03536956, -0.0082645435, 0.015346518, -0.010065273, 0.018491076, -0.01494337, 0.0011078183, 0.028274145, 0.024377044, 0.019660207, 0.0036484937, -0.02745441, -0.008486276, -0.014661166, -0.023113845, -0.028999813, -0.009850261, -0.03270878, 0.028677294, -0.012961223, 0.031096185, -0.044265702, 0.011194089, -0.002260991, -0.0023433005, -0.021608757, -0.0051031876, 0.017792286, 0.0042196205, -0.022670383, -0.021366868, -0.00985698, -0.0037089658, -0.020143986, 0.016314074, 0.017012864, 0.009594933, 0.009749474, 0.0061312164, -0.021702826, 0.018155118, -0.050259177, -0.0016730662, -0.004941928, -0.0041893846, -0.03426762, 0.009211943, -0.015534654, -0.015776543, -0.014768672, -0.025331162, -0.02198503, -0.0015067674, -0.013512192, -0.010441545, 0.005593685, 0.017174125, -0.027951626, -0.017362261, -0.003159676, -0.013263584, -0.0046664434, 0.022428492, 0.0007962182, -0.020963721, -0.0115837995, -0.021138418, -0.011684586, -0.00798234, 0.021004034, -0.017859478, -0.052436177, -0.0025986277, -0.018638898, -0.026029952, 0.002308025, -0.0010994194, -0.012235556, -0.010434826, -0.018840471, 0.01666347, 0.0055130553, 0.006319352, -0.012464006, -0.016058747, 0.018397009, 0.009554619, -0.005607123, -0.015897488, 0.038540993, -0.012860436, 0.004387599, 0.00696103, 0.016784415, 0.0032873398, -0.013639856, -0.011005953, -0.0031731143, 0.0036417744, 0.0019535902, 0.033945102, 0.022092536, 0.017899793, -0.040019203, 0.027575355, -0.020049917, 0.016206568, -0.031230567, -0.0027111734, -0.011254561, 0.034939535, 0.033756964, 0.0046630837, -0.021071227, -0.01400269, -0.022858517, 0.0017805723, 0.020533696, 0.026271842, 0.021353431, -0.005570168, -0.005741506, -0.0099241715, -0.0016025151, 0.011543484, -0.015077753, -0.021151856, 0.00641342, -0.0018645617, 0.02159532, -5.7414536E-06, -0.014997123, 0.028193517, 0.018262625, 0.011113459, 0.021917839, 0.02667499, 0.025989637, 0.008069688, -0.010858132, 0.036283363, 0.008546747, 0.021608757, 0.0043439246, 0.012941065, -0.0042061824, 0.0119600715, 0.0011909677, 0.014956808, 0.020197738, 0.01751008, 0.006759456, 0.017012864, -0.010528894, -0.018638898, -0.0029278656, -0.002958102, -0.012927627, 0.021541566, 0.021568444, 0.037197165, 0.025734311, -0.019203305, -0.008358612, 0.005539932, -0.0018158478, 0.028381651, -0.017926669, -0.016784415, -0.02229411, -0.014486468, -0.004444712, 0.012087734, -0.03364946, 0.00034078644, -0.015050876, -0.0069274344, -0.0020745348, 0.0033108566, 0.014177388, -0.015467463, 0.02503552, 0.00516366, -0.006665388, -0.0006315993, 0.027629107, 0.014325209, -0.0049385685, -0.0060774633, 0.017080057, -0.0061211376, 0.02042619, 0.018934539, -0.004246497, -0.011530046, -0.023342296, 0.009877137, -0.011624114, 0.023866389, -0.007055098, 0.023060093, -0.016932236, -0.0062051266, -0.0034569982, -0.0317681, -0.015709352, 0.02792475, -0.000320629, -0.026540607, -0.014123634, 0.008869266, 0.0029009893, 0.0023869749, -0.015910925, 0.003668651, -0.010965638, 0.0028220392, 0.0044312733, -0.012215398, -0.010891728, 0.030397395, 0.0015504418, -0.0018040894, -0.021447498, -0.005717989, -0.00962181, 0.09938954, -0.011335191, -0.019727398, 0.019351127, 0.0039777313, -0.022495685, -0.03136495, -0.0038769443, 0.01337781, -0.028650418, 0.009164908, 0.00985698, -0.008566905, -0.02588213, -0.017536959, 0.015695913, -0.017617587, -0.021555005, 0.0022777887, -0.018571706, 0.00860722, -0.0037425617, -0.004253216, 0.01822231, 0.0100921495, -0.015400271, 0.008392207, 0.017765408, 0.015158382, -0.006319352, 0.010031678, 0.0026792574, 0.021165295, -0.006826647, -0.019579576, 0.0001526505, -0.013975813, -0.009608372, 0.02111154, 0.0024457674, 0.010031678, 0.021151856, 0.018087927, -0.016246883, 0.0065746796, 0.0057851803, -0.015265889, -0.002464245, 0.00578854, -0.010112307, 0.01830294, 0.021353431, -0.03980419, -0.013303899, -0.0040214057, 0.008472837, 0.0059800358, 0.0042901714, -0.023732007, -0.048915345, 0.0106364, -0.019767713, 0.02948359, -0.000106928834, -0.0011716502, -0.011536765, -0.017147249, 0.01400269, -0.021568444, 0.0046126903, -0.03926666, -0.011664429, 0.019351127, -0.011724901, 0.035611447, 0.012873874, 0.023140721, 0.0039710123, 0.029913615, 0.022441931, 0.021541566, 0.017725093, -0.015937803, -0.022885395, 0.012947785, 0.0003013115, 0.011012672, -0.008828951, 0.02549242, -0.005210694, 0.022656944, -0.017469767, 0.025452107, -0.0026691789, 0.0047067585, 0.0044111162, -0.0027262915, 0.019109238, 0.02111154, -0.015346518, 0.01643502, 0.0049956813, -0.001846084, 0.0084459605, 0.021837208, -0.00618161, 0.009951048, 0.0015470822, 0.011214246, 0.009850261, 0.016918797, -0.040933006, -0.006440297, -0.009957767, -0.019216744, 0.019902095, 0.0011330151, 0.013270304, 0.036041472, -0.024041086, -0.018477637, -0.037519682, 0.016260322, -0.0041725864, 0.014808987, 0.0025851894, 0.007774046, -0.021460937, -0.0069139963, 0.000829394, -0.002025821, 0.020829337, -0.009917452, -0.0067628156, -0.021326553, -0.018128242, -0.016838167, 0.012914189, 0.020587448, 0.0008869266, -0.016757539, 0.005852372, 0.007955463, 0.020466503, -0.011355348, -0.019525824, -0.01947207, -0.00641342, -0.0086005, 0.03230563, -0.011005953, 0.02111154, -0.013397967, -0.013693609, -0.013250146, -0.045260135, -0.038836636, -0.0074112127, 0.0071827616, 0.026419662, 0.004703399, -0.016999427, 0.018544829, 0.010213095, -0.0046194093, 0.0028069213, -0.014540222, -0.01963333, -0.00320839, -0.0005795259, 0.014916494, -0.007767327, -0.015144944, -0.019042045, 0.0056810337, 0.02002304, 0.006232003, -0.021958154, -0.008889424, -0.04883472, -0.0012774767, 0.01197351, 0.0031462377, 0.005657517, -0.038621623, 0.009312729, 0.037331548, 0.019189866, -0.0055264933, 0.0152524505, 0.020291805, -0.030209258, 0.0019132755, 0.00649069, -0.007478404, 0.007834518, -0.0091985045, -0.036794018, -0.018034175, -0.0064671733, 0.0124908835, -0.010784222, 0.006557882, -0.0125043215, -0.0064671733, 0.0044850265, -0.0051132664, 0.008889424, 0.018101366, -0.022280673, -0.026231527, 0.006487331, -0.016260322, -0.020600887, 0.009984643, 0.01673066, -0.017563835, -0.0008096565, -0.02245537, 0.008022655, -0.0108312555, -0.0043472843, 0.032655027, -0.028838553, 0.0014412558, 0.01282684, -0.00516366, -0.011019391, -0.021608757, -0.0017251394, 0.0024676046, 0.019028608, 0.015507777, 0.010125746, -0.008351892, 0.017335383, 0.013021695, -0.00081091636, -0.015897488, 0.0141505115, 0.016650032, 0.029913615, -0.013283742, -0.020305244, -0.016475335, 0.010864851, -0.02714533, 0.004488386, -0.012625266, -0.010334039, -0.010690154, 0.017751971, -0.021286238, 0.009037245, 0.03144558, -0.025169902, -0.0047840285, 0.007861395, 2.713903E-05, -0.018195434, -0.010743907, -0.0007336462, -0.01016606, 0.022240357, 0.004515263, 0.02588213, -0.026271842, 0.032359384, 0.02565368, 0.022751011, -0.023664815, -0.014674604, -0.007001345, -0.010206375, 0.006158093, -0.00034057646, -0.019982725, -0.005140143, 0.012947785, 0.0007680818, 0.011066426, -0.019593015, 0.003332694, -0.01165771, 0.0058389334, 0.017254755, -0.022885395, -0.020063356, -0.012726054, -0.02112498, -0.040717997, 0.014526783, 0.016703784, 0.026016515, -0.024592057, -0.016717223, -0.00091632287, 0.006094261, -0.020950282, -0.01596468, 0.009131312, 0.022132851, -0.02503552, 0.01627376, -0.004911692, -0.012638704, 0.010804378, -0.016206568, -0.02026493, -0.03590709, -0.011503169, 0.005093109, 0.00054886984, 0.005264447, 0.007270111, -0.0093664825, 0.026110582, 0.022589752, -0.03510079, 0.011906318, 0.013075449, -0.0032403057, 0.026218088, -0.023422925, -0.006037148, -0.003253744, 0.017402574, 0.017792286, -0.019283935, -0.014795548, -0.02636591, 0.012329624, 0.007189481, -0.03848724, 0.010112307, -0.0036182574, -0.013747362, -0.0038467082, 0.0071693235, 0.02808601, 0.018491076, 0.0067695347, 0.0137608005, 0.006618354, -0.022092536, -0.005899406, 0.0028589945, -0.002864034, 0.0034150034, -0.008103284, 0.0071155704, 0.037922833, -0.003698887, -0.04066424, -0.003994529, 0.0056037637, -0.037277795, -0.0025633522, -0.0057045505, 0.0054962575, 0.040180463, 0.031794976, 0.013552507, 0.047141492, 0.01478211, 0.0015269248, -0.0049788835, -0.022025345, -0.0067157815, -0.002823719, 0.004253216, -0.029268578, -0.018437322, -0.023033215, -0.010260128, 0.012195241, 0.01604531, 0.0054357853, -0.02073527, -0.022751011, -0.016676908, 0.018128242, 0.040180463, 0.016623154, 0.014365523, -0.028220393, -0.0009020447, -0.011906318, 0.021299677, 0.0259762, -0.0013110724, 0.01478211, 0.0010070313, 0.013559227, -0.0270647, -0.041927442, -0.007129009, -0.0021182091, -0.0035947405, -0.0005148542, -0.003112642, 0.007464966, -0.005694472, -0.022280673, -0.0076934164, 0.02073527, -0.014768672, -0.010837975, -0.013303899, -0.029134195, 0.0065343645, -0.013545789, 0.010152622, 0.007001345, -0.0068468046, 0.009521022, -0.017469767, -0.015467463, 0.020748708, 0.012605108, -0.007908429, -0.0143924, 0.0058221356, -0.00062446017, 0.00076136267, -0.0137876775, -0.01596468, -0.01838357, 0.012416973, -0.016972551, -0.012215398, -0.025223656, 0.006994626, -0.0043372056, 0.010038396, 0.023745444, 0.19867156, 0.012235556, -0.005812057, 0.0145133445, 0.009971205, 0.041497417, -0.0072969873, -0.005657517, -0.0017805723, -0.0015134865, -0.0035510662, 0.029940493, -0.004481667, -0.008970053, 0.01556153, -0.023382612, -0.05138799, -0.013989252, -0.011294876, 0.011483012, -0.0084593985, -0.0058389334, 0.03770782, -0.0058926865, 0.027091578, -0.012148207, 0.01283356, 0.0008625697, 0.007532157, 0.022307549, 0.007471685, -0.026271842, 0.01329718, -0.020909967, -0.009870418, 0.017389137, 0.022092536, -0.007337302, -0.018504515, 0.009830103, 0.0032503845, 0.004757152, 0.0134114055, 0.0030168945, -0.018961417, -0.008197352, -0.025640242, 0.02002304, -0.0040885974, -0.005929642, -0.007989058, -0.02432329, -0.0013967415, 0.0028337978, -0.0065813987, 0.0010297084, 0.028354775, -0.018208873, 0.011765216, 0.012497602, -0.012739492, 0.01666347, -0.011012672, 0.014338647, 0.014661166, 0.02628528, 0.004004608, 0.0019149552, 0.013478597, -0.0029077083, -0.0063395095, -0.003715685, 0.0033310142, 0.030773666, -0.0027212522, 0.0014446153, 0.018410446, -0.0021047709, 0.0025381555, 0.007968902, 0.022710696, -0.01392206, -0.0013387889, -0.008855828, -0.016636593, -0.034993287, -0.013841431, -0.009326167, 0.013303899, -0.007330583, 0.014795548, -0.014365523, 0.0046597244, -0.02918795, -0.0037694382, 0.024309853, 0.006359667, 0.031149939, -0.026097143, -0.0040885974, -0.016945673, 0.008224228, -0.021998467, -0.0119600715, -0.018343255, 0.008325016, -0.0054425043, 0.026070267, -0.002284508, -0.014499906, 0.018423885, -0.01541371, -0.0016680268, -0.014795548, -0.010784222, 0.01040123, 0.003378048, 0.0027346904, 0.01478211, -0.016529087, 0.0039508548, -0.037976585, 0.0082914205, 0.0065511623, -0.014056443, -0.023328857, 0.017174125, 0.018517952, 0.0035577852, -0.026863126, 0.0019603095, 0.009608372, 0.03144558, -0.033031296, 0.013075449, -0.0042834524, -0.020990597, -0.023516994, -0.013740644, 0.008862547, 0.0034771555, -0.0027582075, 0.024524866, 0.014580536, 0.05498945, -0.018168557, 0.0015899168, -0.0031882324, -0.008943177, 0.0045925328, 0.0036854488, -0.008204071, -0.022737574, -0.0073641785, 0.0013547469, -0.026177773, -0.06660013, -0.035799585, 0.006672107, 0.0013488675, 0.0058893273, 0.027817244, 0.011664429, -0.001274957, -0.006830007, 0.024887698, -0.17136498, 0.027655985, 0.019982725, -0.012484164, -0.00821079, 0.009077559, 0.015816858, -0.00445815, -0.02635247, 0.0068468046, 0.024296414, -0.0088087935, -0.04569016, -0.01596468, 0.0009524382, -0.014083319, -0.0037425617, -0.004108755, 0.0007836198, 0.011906318, 0.016408142, 0.027951626, 0.006756096, -0.0013749042, 0.009279134, -0.005334998, 0.017738532, 0.009830103, -0.009964487, -0.021460937, 0.0035342681, -0.03278941, 0.03284316, 0.0058322144, 0.021366868, -0.019619891, 0.00320839, 0.0028573147, -0.008714726, 0.017671341, -0.0119466325, 0.011906318, 0.029832987, 0.013129202, 0.00978307, 0.0011825688, -0.012343062, -0.009138032, -0.006789692, -0.01337781, 0.015265889, -0.009850261, -0.036310237, -0.0077001355, 0.031794976, -0.009400078, 0.022656944, 0.012215398, 0.036794018, 0.0030706474, -0.005274526, -0.006366386, 0.016099062, -0.012793245, -0.025277408, 0.002449127, -0.015897488, 0.0021870804, -0.00036808295, 0.013713767, -0.015265889, 0.00836533, 0.015024, -0.0039407765, 0.013048572, 0.020117108, 0.010851413, 0.013801116, -0.002924506, -0.02385295, -0.0029077083, 0.033595704, -0.02886543, 0.012773087, 0.011630833, 0.010569209, -0.023261666, 0.005953159, 0.012376658, -0.015924364, 0.0042834524, -0.04324439, 0.004515263, 0.005388751, 0.013303899, 0.021084664, 0.0070349406, -0.013881746, -0.008405645, -0.013337495, 0.008277982, -0.009117874, -0.004757152, 0.007088694, 0.023396049, -0.007249953, 0.019310812, 0.009480708, 0.022724135, -0.01971396, 0.0101055885, 0.004565656, 0.006826647, 0.01666347, 0.0006924915, 0.009218661, -0.0020913326, -0.032117493, 0.018867347, -0.0033595706, 0.02722596, -0.010293724, -0.020762146, 0.005274526, 0.009615091, -0.0025549533, -0.09213286, 0.009897294, 0.02964485, 0.005717989, -0.0022576314, -0.0030387316, -0.005654157, 0.032251876, 0.006756096, 0.015158382, 0.011530046, 0.008412365, 0.0060673845, -0.002722932, 0.019378003, 0.0005837254, 0.02596276, -0.02385295, -0.03278941, 0.0008268743, -0.013209831, -0.008069688, 0.013935499, 0.011738339, -0.022092536, -0.023785759, -0.025626805, 0.013814554, 0.020251492, 0.014056443, 0.022804765, -0.006047227, 0.0046832412, -0.028596664, -0.0025902288, 0.009883856, -0.030478023, 0.022818202, 0.028946059, -0.0317681, 0.001783932, -0.0029681805, 0.0020056637, -0.02448455, -0.0036148978, 0.0027985224, -0.0067157815, -0.009494146, 0.016757539, -0.0075993487, -0.005842293, -0.010522175, -0.012806683, -0.014620851, -0.015037438, -0.0022710697, -0.018208873, 0.0018376851, 0.020170862, -0.012376658, -0.00860722, 0.010112307, 0.024081402, -0.0061681713, -0.03373009, -0.007001345, -0.009521022, 0.008062969, -0.003151277, -0.02010367, -0.0054761, 0.004857939, -0.014244579, 0.027897874, -0.029295456, 0.000891966, -0.025747748, 0.015427148, 0.00060598255, 0.005402189, -0.02065464, -0.019189866, 0.02448455, -0.0048478604, 0.014768672, 0.04450759, 0.00093228085, -0.008230948, -0.011839126, -0.01666347, 0.0070685362, 0.009655406, 0.018450761, -0.0023046653, -0.017563835, 0.015897488, 0.0042834524, -0.017402574, -0.0002651961, -0.0044682287, -0.0057146293, 0.0032604632, -0.08014592, 0.0058691697, 0.0014530142, -0.024041086, -0.0100921495, 0.0013362692, -0.0033310142, -0.004515263, 0.022885395, -0.010233251, -0.0029194667, 0.0055500106, 0.024954889, -0.015077753, 0.0008944857, 0.0039139, -0.006235363, 0.002605347, 0.009171627, 0.01963333, -0.020748708, 0.009843541, 0.0088222325, -0.007129009, -0.051361114, 0.005079671, -0.015816858, 0.010065273, 0.018867347, -0.0041255527, -0.008647535, -0.009877137, 0.015131505, 0.03362258, -0.025223656, -0.03300442, 0.015386833, 0.01963333, -0.0119600715, -0.024229223, 0.0010070313, -0.021299677, 0.019418318, -0.003247025, -0.034617014, 0.0012413613, 0.01400269, 0.017268192, -0.0066754664, 0.009709159, 0.015910925, 0.018276064, 0.02956422, -0.014284894, -0.0019418318, -0.0017956904, 0.007760608, 0.01165771, -0.006295835, -0.009715878, 0.032225, -0.006826647, 0.0326819, 0.007249953, 5.3543154E-05, -0.02088309, -0.014499906, -0.008123442, 0.02424266, 0.00875504, 0.0026842968, -0.0023684972, 0.03292379, -0.0065142075, 0.001204406, 0.0047974666, 0.010891728, -0.007464966, -0.027105015, 0.015091191, 0.013397967, -0.013068729, -0.02620465, 0.00018771601, -0.00250288, 0.0039542145, -0.014540222, 0.002838837, 0.00071138906, 0.0059800358, -0.032655027, -0.003504032, -0.022253795, -0.014405838, -0.002958102, 0.013713767, 0.006524286, 0.008338454, -0.0017772128, 0.021837208, 0.0042800927, 0.009615091, -0.002150125, -0.019982725, 0.00051737385, -0.009037245, -0.013008257, -0.01759071, -0.04238434, 0.0043304865, 0.015574969, -0.016058747, -0.0022273953, 0.0029362647, -0.025304286, -0.0051367832, -0.0055500106, -0.022267234, -0.02151469, 0.022589752, 0.0036720105, 0.03424074, -0.011462854, -0.013948937, 0.030182382, -0.009594933, 0.008835671, 0.0032739015, 0.00985698, 0.009749474, 0.005640719, -0.018665774, 0.03434825, -0.0029362647, -0.013814554, -0.012416973, 0.0046832412, 0.031149939, -0.016676908, 0.05130736, 0.002541515, -0.0073574595, 0.022173166, 0.0011447737, 0.0152524505, 0.023449803, -0.007243234, -0.006107699, -0.029161071, 0.00383327, 0.007055098, 0.013801116, 0.019660207, -0.045206383, 0.0066989837, 0.01595124, 0.015346518, -0.02784412, 0.00461605, 0.026244964, -0.014997123, 0.011671148, 0.009568057, -0.016327513, -0.009615091, 0.021474374, 0.003112642, -0.004038204, -0.01079766, 0.038272228, -0.004105395, -0.01917643, -0.024524866, 0.0076866974, -0.013895184, -0.019687083, 0.008089846, 0.0005681874, 0.029429838, 0.0072163576, 0.014446153, -0.009104436, -0.02635247, -0.008983492, 0.0030051358, -0.020977158, 0.0037996743, -0.03332694]
+ },
+ {
+ "Id": 5,
+ "Type": "Ski/boarding",
+ "Brand": "B&R",
+ "Name": "Blizzard Rider Snowboard",
+ "Description": "Get ready to ride the slopes with the Blizzard Rider Snowboard by B&R. This versatile snowboard is perfect for riders of all levels with its medium flex and twin shape. Its black and blue color scheme gives it a sleek and cool look. Whether you're carving turns or hitting the terrain park, this snowboard will help you shred with confidence.",
+ "Price": 299.99,
+ "Embedding": [-0.021229047, -0.010939923, -0.009963725, -0.023584938, -0.010913891, -0.0066381446, -0.015983611, -0.051282924, 0.0041586026, -0.037381865, -0.011128655, -0.005173848, -0.012085328, -0.018808076, 0.0028293466, -0.0012226877, 0.008024345, 0.0021248572, 0.006527509, -0.009638326, -0.007809582, -0.0008614945, -0.006983068, -0.013549625, -0.007373547, -0.016959809, 0.022895092, -0.0074125947, 0.008531968, 0.0049981326, 0.031967223, 0.019680146, 0.010588491, -0.01285327, -0.018105214, -0.0177668, 0.0023623987, -0.017220128, 0.0022452548, 0.015371861, 0.016543297, -0.023936369, -0.005209642, 0.019276652, 0.014603918, 0.0013040375, 0.021645559, -0.035117086, 0.01863887, 0.0058051227, -0.0071717994, 0.02299922, -0.023715097, -0.007503707, 0.02064333, -0.016517267, 0.004405906, 0.0090721315, 0.027619889, -0.030561497, -0.012599459, -0.017415367, -0.006553541, 0.016009644, 0.0020939442, -0.014395663, -0.014642966, -0.01837855, 0.0053267856, -0.0075948187, 0.015345829, 0.0061695697, 0.015111541, 0.008382285, -0.00015303933, -0.014877254, -0.011200243, -0.0024583912, -0.009163243, -0.018482678, 0.025602413, -0.011831516, -0.0024697804, 0.025563365, 0.015749324, 0.014226455, -0.00085010554, 0.0045848754, -0.049825132, -0.00063208805, 0.0018206089, 0.0047247973, -0.0032881594, 0.02500368, -0.00062191935, 0.004848449, 0.015150589, 0.021489367, -0.018261407, -0.023715097, 0.035611693, 0.029832603, -0.0028602595, -0.012091836, -0.03006689, -0.0026991868, -0.01243676, 0.0033206993, 0.0239624, -0.0001373795, -0.02487352, 0.014265503, 0.010015789, -0.013165654, 0.027463697, 0.006478699, 0.03404978, -0.0101654725, 0.023806209, -0.026734803, 0.016712505, 0.0041325707, 0.0075557707, -0.032800246, -0.0011966558, 0.013536609, -0.021242063, -0.008174029, 0.018599821, 0.0009501658, 0.015840435, 0.016387107, -0.019745227, -0.005658693, -0.01602266, 0.0063290154, -0.0006284273, 0.0063387775, -0.005112022, 0.020304913, -0.0070481477, 0.010139441, -0.03701742, -0.012195964, -0.0055610733, 0.015332812, -0.006150046, -0.012365172, 0.0071197357, -0.024548119, 0.010145948, -0.023558905, 0.027671952, 0.023155412, 0.019328715, 0.003393914, 0.0036965355, 0.023012236, -0.028062431, 0.003040856, -0.003498042, -0.0053723417, 0.020682376, -0.002619464, 0.03152468, 0.029051645, 0.015541068, -0.035247248, 0.0027837907, 0.0046304315, -0.003563122, 0.019198555, -0.03462248, 0.031915158, 0.0174414, 0.004334318, 0.0098726135, 0.0007130311, -0.008941972, 0.027021155, 0.00019432437, -0.013666769, 0.022816995, 0.010315157, -0.017259177, -0.016608378, 0.000867189, -0.010067853, -0.01388804, -0.013796928, -0.014447727, 0.014942334, 0.022010006, -0.0036412177, -0.65059024, -0.014603918, 0.018144263, -0.0050892443, -0.007900693, 0.0037518535, -0.008245617, -0.0045653516, -0.0023477557, 0.010731667, -0.01576234, 0.021827782, 0.0027642667, -0.019172523, 0.0036151856, -0.007991806, 0.03717361, 0.006820368, -0.0045816214, -0.014695031, -0.010647063, 0.011636278, -0.044462554, 0.00608822, -0.004298524, 0.018079182, -0.009918169, 0.010555952, -0.010881351, 0.01224152, -0.0053593256, 0.04454065, 0.017962039, 0.001749021, 0.04336921, -0.031082137, -0.015515036, 0.028166559, 0.017272193, 0.03142055, -0.009670866, -0.0049753548, 0.0066837007, 0.0018873157, 0.002147635, 0.011180718, 0.023311602, -0.003530582, 0.0014350107, 0.004838687, 0.015879484, 0.0075427545, 0.01750648, 0.001706719, 0.008811812, -0.0010591745, 0.038839653, 0.021580478, 0.0005633475, 0.0026682739, -0.0174414, 0.021098888, -0.010067853, -0.020422056, -0.019901419, 0.007327991, -0.035611693, -0.008336728, 0.016660443, -0.015215669, 0.0042497143, 0.012892318, 0.0012161797, 0.029364029, -0.011825009, 0.042978734, 0.030379275, -0.0027528778, -0.0016261828, 0.001494396, 0.009722929, 0.015189637, -0.010041821, -0.03662694, 0.011785961, -0.011063575, 0.018066166, 0.0046467013, 0.0048907506, 0.0045946375, 0.02548527, 0.015658213, -0.021528415, -0.0208646, -0.002167159, 0.009150227, -0.0021931909, 0.0104323, 0.029988796, -0.03462248, -0.0042236825, 0.00865562, 0.010913891, 0.02254366, 0.008453873, 0.0123066, -0.012697079, -0.0035370898, 0.011278338, -0.018261407, 0.020773489, -0.013575656, -0.015202653, -0.010972463, -0.0016562822, -0.030483402, 8.012957E-05, -0.015137573, 0.0058539324, -0.047013685, 0.013679785, 0.013406449, -0.007419103, -0.011265323, -0.024261769, 0.006078458, 0.01569726, 0.01737632, -0.0033141915, -0.017102985, 0.010900875, -0.006595843, 0.014616935, -0.007737994, 0.006586081, 0.028140528, 0.01123929, 0.0067617963, 0.017844895, -0.02522495, -0.024170656, 0.0007972282, -0.010933415, 0.007731486, -0.008037361, 0.0072368793, -0.0062021096, 0.012547395, -0.013237242, -0.023676049, -0.010100393, -0.020461105, 0.0035761378, -0.013914072, -0.0062476657, -0.022400485, -0.0189903, -0.008291173, 0.0016839411, -0.0008395301, 0.004773607, -0.0111872265, 0.0036509796, -0.02038301, 0.0032068095, -0.023311602, -0.011851041, 0.00865562, -0.0076013263, -0.041677136, -0.023754146, -0.0018759267, -0.0011576079, 0.0061337757, -0.0033125645, -0.0075232307, -0.020825552, -0.008824828, -0.012794699, -0.0121439, 0.01136945, 0.0261621, -0.036574878, -0.0022127149, 0.019888403, -0.009579754, 0.013757881, 0.018287439, -0.023246523, 0.0054471833, -0.004002411, 0.055864543, -0.012072313, 0.009534198, 0.002134619, -0.028999582, -0.015684243, -0.015007414, 0.008746732, 0.021931909, 0.0017116001, -0.005746551, 0.0031238329, 0.006599097, -0.0041423324, -0.014655982, 0.020174753, -0.01789696, 0.027411632, 0.019237604, 0.025602413, -0.049330525, 0.0045653516, -0.03230564, -0.0011836397, -0.0055578193, -0.028218623, 0.024574151, 0.009879122, -0.013614705, -0.00037664964, 0.007028624, 0.031342454, 0.005154324, -0.015996628, -0.012814223, -0.020656345, 0.00519988, 0.021085871, 0.009905153, 0.011968184, 0.025277015, 0.015658213, -0.018808076, -0.0035240739, 0.007256403, -0.00607195, -0.015059478, 0.045321606, -0.013185178, 0.015567101, 0.03287834, 0.0014122328, -0.003960109, 0.020369994, 0.01250184, 0.011636278, 0.0054764696, 0.0015611029, 0.018547757, -0.03045737, -0.0020093403, 0.00019818849, -0.00021333988, 0.009046099, -0.0037811394, 0.020630313, 0.008740224, 0.032644052, 0.0096513415, 0.0042822543, 0.029650379, 0.002992046, -0.00901356, 0.0386314, -0.00434408, -0.010699128, -0.044644777, -0.01641314, -0.014083279, 0.0063322694, -0.027021155, 0.0019881895, 0.007054656, -0.007965773, -0.007991806, -0.0196411, 0.020343961, -0.0012283822, 0.029806571, -0.011597229, -0.02509479, 0.01576234, 0.025849717, -0.012430252, 0.0026780358, -0.00859054, 0.0045620976, 0.0019182286, 0.03542947, 0.03962061, 0.006127268, -0.00933245, 0.00907864, 0.01789696, -0.017168064, 0.006983068, -0.001042091, 0.023702081, -0.00431154, 0.016061706, 0.000118465665, -0.010887859, -0.029910699, 0.014916302, -0.010887859, -0.0090721315, -0.003901537, 0.0008533595, 0.009599278, 0.0070090997, -0.042301904, -0.021320159, -0.046987653, 0.0008712565, 0.003498042, 0.012300092, -0.02435288, 0.030769754, 0.010308648, -0.025407173, -0.012631999, 0.006989576, -0.030535465, 0.088456534, 0.021723654, -0.023663033, 0.017753784, -0.027177345, 0.00939753, -0.012924858, -0.0055025015, 0.010419284, -0.00027964, 0.026786866, 0.0050534504, 0.027073218, -0.013393433, -0.014239471, -0.0041488404, 0.0004990811, -0.0044970177, 0.0010038567, -0.0027366078, -0.014070264, 0.014239471, 0.0042171744, 0.032930404, 0.012430252, 0.002116722, 0.0093649905, 0.0215154, 0.002656885, -0.020591265, -0.009098163, -0.017753784, -0.0075687864, 0.005203134, -0.00432781, 0.010341188, 0.0062346496, -0.029962763, -0.0036672496, -0.009312927, 0.025185902, 0.005141308, 0.008876892, -0.009091655, 0.008681652, -0.010009281, -0.011219766, 0.004767099, 0.020356977, -0.022790963, 0.018547757, -0.0013715578, -0.032670084, 0.023493826, -0.016998857, 0.008271649, -0.009976741, 0.005779091, 0.008811812, -0.039099973, -0.029546252, -0.020161737, 0.010653571, -0.0034036762, 0.0076859305, -0.01966713, -0.031368487, 0.023428746, -0.0027886715, 0.013185178, -0.0011543538, -0.015111541, -0.0103867445, 0.008479904, 0.0208646, 0.012007233, -0.0035370898, 0.0009119314, 0.01863887, -0.006530763, 0.013230734, -0.019016333, 0.010978971, -0.015137573, -0.0083432365, -0.010542936, 0.029468156, 0.012723111, 0.0026975598, 0.01779283, 0.017324256, 0.0068008443, 0.0032605005, -0.02341573, -0.002521844, 0.005040434, 0.029702444, 0.011050559, 0.023116363, -0.014695031, 0.004236698, 0.007887678, -0.00019473111, 0.0028439895, 0.031290393, -0.0061988556, 0.006540525, 0.0077510104, 0.004334318, 0.0053625796, -0.0055220253, -0.026630675, -0.0017766799, 0.011284846, -0.0033678822, 0.008746732, 0.0029855382, 0.024535103, 0.0004502712, -0.0196411, 0.012156916, -0.050527997, 0.029468156, 0.00032316212, -0.010113409, 0.009176259, -0.0011063574, -0.004867973, -0.023142396, 0.016400123, 0.024600184, 0.008427841, 0.016387107, 0.018326486, -0.03282628, -0.011805485, -0.007933234, -0.012384696, 0.018742997, -0.0042236825, -0.02099476, 0.030665625, 0.025198918, 0.014317567, -0.008968003, -0.025198918, -0.012996446, 0.025979877, -0.018482678, 0.020981744, -0.03988093, 0.00537885, -0.016517267, -0.012638507, 0.011857549, -0.030092923, -0.01641314, -0.01705092, 0.01117421, 0.043655563, -0.0050111483, 0.003973125, -0.0057725827, 0.020409042, -0.035325345, -0.015449956, -0.022764932, -0.014031216, -0.029207837, 0.014668998, 0.006452667, 0.008896415, -0.0080503775, -0.028895454, 0.008095933, -0.011772945, 0.0032003017, -0.022647789, -0.01977126, -0.02819259, -0.0011470324, -0.016660443, -0.0058344086, 0.00033577136, -0.0417292, -0.013393433, 0.031342454, -0.024652248, 0.016113771, 0.0009940948, 0.017714735, -0.012475807, 0.005144562, 0.027671952, 0.028921485, -0.0049753548, -0.01938078, -0.024261769, -0.007920218, -0.0019231096, 0.014031216, 0.0066771926, 0.004835433, -0.0038039172, -0.0022582707, -0.00528123, -0.013783912, 0.007965773, 0.03142055, 0.006465683, -0.021463335, -0.037876472, -0.0049232906, -0.006852908, 0.005668455, 0.014083279, -0.022908106, 0.03230564, -0.04214571, -0.009957217, 0.014799158, -0.029884668, 0.033737395, 0.010926907, 0.013510577, 0.039204102, -0.025420189, 0.0012796326, -0.00075858703, -0.0027447427, -0.016256947, 0.017389337, 0.018404583, -0.02038301, -0.017415367, 0.013471529, -0.018951252, -0.02025285, -0.01036722, -0.005635915, 0.00605568, 0.0075818026, -0.005242182, -0.021918893, -0.00082773436, 0.016725522, -0.026136069, 0.014668998, -0.010412776, -0.0174414, -0.0003992242, 0.009020067, -0.021359207, 0.0069049723, 0.026682738, -0.025016695, -0.0027935526, 0.004467732, 0.0019003316, -0.017011873, -0.003976379, 0.05112673, -0.014864238, 0.015475988, 0.023493826, 0.0063713174, 0.024053512, 0.01591853, -0.008531968, 0.024704311, -0.0025641462, -0.0025429951, -0.015007414, -0.007334499, -0.010289124, -0.008115457, -0.015358845, -0.0141743915, -0.004067491, 0.0028407355, 0.02574559, -0.00055683946, -0.030301178, 0.0026926787, -0.0048647188, -0.019068396, -0.021216031, -0.002585297, -0.013406449, -0.034388192, -0.01992745, -0.0031937936, 0.0066056047, 0.030483402, 0.005977584, -0.0051608323, 0.002098825, 0.025511302, -0.05404231, 0.009039591, 0.018014103, 0.0138099445, -0.009267371, -0.0011527268, 0.022830011, -0.0038169331, 0.00079275394, -0.0046564634, -0.0076794224, -0.062268402, 0.0013390179, -0.004370112, 0.0068724323, -0.010647063, 0.007770534, -0.003882013, 0.03220151, -0.005551311, -0.013367401, -0.018951252, 0.022062069, 0.01162977, 0.013120098, -0.014734078, 0.0042594764, -0.009774993, 0.014187408, -0.0045751133, -0.014369631, -0.020851584, 0.0004901326, 0.0062346496, -0.004744321, -0.025146855, -0.02328557, 0.009553722, -0.0045881295, 0.012612475, -0.02354589, -0.009976741, 0.02435288, 0.013471529, 0.005749805, 0.027854176, -0.021840798, -0.036731068, 0.0144607425, -0.026149085, 0.0011999097, -0.034700576, 0.0146820145, 0.057114076, -0.004370112, -0.010549444, -0.0019166016, 0.0048907506, -0.03665297, 0.008987527, 0.017675687, 0.031993255, 0.03662694, 0.0103867445, -0.0134454975, 0.020005547, 0.012417235, 0.01143453, 0.006543779, -0.029858636, -0.0012658031, 0.007321483, 0.010263093, -0.019602051, -0.009182767, -0.020461105, 0.018391566, 0.0025006933, -0.006146792, 0.025641462, -0.007933234, -0.011909612, -0.001510666, 0.0028732754, 0.022088101, 0.022504613, 0.010952939, -0.040713955, -0.014265503, -0.01569726, -0.01844363, 0.0030847848, 0.006917988, -0.009176259, 0.016608378, 0.007393071, 0.0045946375, -0.010796747, -0.0392822, -0.018196326, -0.002606448, -0.011603737, 0.011851041, 0.022908106, -0.017207112, -0.03058753, 0.0075102146, 0.03287834, -0.007991806, 0.004373366, -0.001317867, -0.028921485, -0.004265984, 0.0074125947, 0.013484545, 0.020096658, -0.010744683, -0.014773126, 0.0070806877, -0.040739987, 0.034830734, -0.006852908, -0.006566557, -0.03907394, -0.0055187712, -0.02535511, 0.03759012, -0.00807641, 0.0037811394, -0.012801207, 0.017194096, -0.0027642667, -0.007777042, -0.030249115, 0.01731124, -0.005613137, 0.015085509, 0.011701358, 0.19940466, -0.018261407, 0.0033158183, 0.029077677, -0.011785961, 0.0045783673, -0.016217899, -0.014109312, -0.0037876472, -0.02422272, 0.0019035856, 0.010848811, -0.010594999, -0.008759748, 0.011870565, -0.009566738, -0.020239834, -0.008746732, 0.0035045499, 0.0028927994, 0.011896596, -0.008317205, 0.0020321184, -0.018131247, 0.004334318, 0.0145388385, -0.019628083, 0.00531377, 0.0154109085, -0.0024518834, 0.0014830071, -0.031576745, -0.008610064, -0.011864057, -0.0147601105, -0.0024665263, 0.030795785, -0.03071769, -0.020239834, 0.052766744, -0.012026756, 0.0037030436, 0.010282616, -0.0027235916, 0.007724978, 0.025055742, -0.015007414, 0.005743297, 0.00618584, -0.010074361, -0.026786866, -0.02448304, 0.01030214, 0.047976866, 0.024860503, -0.0019296176, 0.027515762, -0.022634773, 0.008981019, -0.017662672, -0.020981744, 0.021710638, -0.036731068, 0.056333117, 0.0098726135, 0.018808076, 0.025693525, -0.00039902082, 0.0015244955, 0.008089425, 0.014382647, 0.01731124, -0.00440916, 0.01977126, -0.022439532, -0.023832241, 0.025654476, -0.0038039172, 0.009924677, 0.018977284, -0.019445859, 0.017688703, -0.009911661, 0.0002843176, -0.013653752, -0.046883523, 0.011441038, -0.012391203, -0.0045751133, -0.0027902985, 0.0070416396, 0.003413438, -0.010002773, -0.00537885, 0.018729981, 0.034388192, -0.022166196, 0.028244656, -0.03230564, -0.0033076834, -0.0049493224, 0.004305032, -0.006826876, -0.0125734275, -0.0242878, 0.0012714976, 0.023441762, 0.0047215433, 0.020708408, -0.0154109085, 0.008479904, -0.04977307, 0.027802112, -0.015397892, -0.014317567, 0.0124237435, 0.010028805, -0.0073475153, -0.031316426, -0.03152468, 0.01036722, 0.003563122, 0.023532873, -0.009312927, -0.0046629715, -0.015007414, 0.004334318, 0.01977126, -0.0009387768, -0.003494788, -0.011746913, -0.007015608, 0.008577525, -0.020487137, 0.0033206993, 0.022960171, 0.020656345, -0.008544984, -0.018834108, -0.032383732, -0.0028683944, 0.017805846, 0.0041325707, -0.00040207146, 0.040870145, -0.03490883, 0.014890269, -0.021905879, -0.0032442305, 0.010660079, -0.04224984, 0.0014455862, -0.008375777, -0.009306419, 0.03813679, 0.01317867, -0.030691657, -0.031082137, 0.013172162, 0.02066936, -0.018339502, 0.02696909, 0.020409042, -0.015554084, -0.008239109, 0.0016920761, -0.16410536, 0.031915158, 0.03436216, -0.009488642, 0.025602413, -0.013927088, 0.009247847, 0.0032133176, -0.017259177, 0.011005003, 0.017324256, 0.008981019, -0.013230734, -0.012658031, 0.007438627, 0.00083261536, -0.0013813198, 0.034830734, 0.00059100636, 0.0045458274, 0.026084004, -0.016608378, -0.005740043, 0.0063615553, 0.041833326, -0.03998506, 0.0007410968, 0.023389699, -0.011467069, -0.026253212, -0.0048972587, -0.00878578, 0.007764026, -0.0002961133, 0.045946375, -0.010080868, -0.018287439, 0.01123929, -0.016322026, 0.0264875, 0.006423381, 0.011193735, 0.01902935, 0.001518801, 0.010998495, 0.029858636, -0.017962039, -0.010373728, 0.00024811694, -0.016322026, 0.010588491, -0.010354204, 0.003429708, -0.014044232, 0.031732935, 0.010510396, -0.0051315464, 0.0005491112, -0.0020272373, 0.0042139203, -0.014916302, -0.0018759267, -0.0046597174, 0.0014008437, -0.014083279, -0.007503707, 0.023780178, 0.013269781, -0.049694974, -0.017962039, 0.009378007, 0.032800246, 0.005580597, -0.005948298, 0.01844363, 0.015593132, -0.017519496, -0.011219766, 0.030249115, -0.010790239, 0.012671047, 0.048914015, -0.0019995784, 0.0015757459, 0.0028195844, 0.011675325, -0.03865743, -0.0062932214, 0.0066771926, -0.033112627, 0.0007821784, -0.016452186, -0.009241339, -0.0020711662, -0.00046776142, -0.005242182, 0.02515987, -0.030613562, 2.0108657E-05, -0.012833746, 0.0033451044, 0.0031043089, -0.026760835, 0.011428022, 0.025433205, 0.0043538418, 0.024652248, 0.022140166, 0.014512806, 0.012313108, -0.00015914057, 0.027047185, -0.0049753548, 0.02661766, 0.017168064, 0.01724616, -0.023194458, -0.03071769, 0.0104323, -0.028765295, 0.02735957, -0.006501477, -0.03404978, 0.0068724323, -0.007093704, 0.005229166, -0.083926976, -0.013061526, 0.026474483, 0.0038299493, -0.010035313, -0.0009924677, 0.0004087828, 0.02748973, 0.0024030735, 0.009378007, 0.0028130766, -0.018092198, 0.0052649598, -0.0008273276, 0.03368533, -0.006599097, 0.015176621, -0.029546252, -0.014473759, 0.0071327514, -0.0021443812, -0.0063810796, -0.009748962, 0.007262911, -0.0020744202, -0.020474121, -0.027541792, -0.009768485, 0.0024112083, 0.019589035, 0.002552757, -0.0014553481, 0.007829106, 0.0020760472, -0.01656933, 0.014851222, -0.03995903, 8.026938E-06, 0.017831879, -0.025888765, 0.016113771, -0.0035501057, -0.01724616, -0.038787592, -0.029884668, -0.008089425, -0.011877073, 0.017350288, 0.026214164, 0.008941972, 0.0058604404, -0.0032003017, -0.024886535, -0.0053625796, 0.02309033, -0.010581983, 0.0205392, 0.009202291, -0.019940466, 0.02247858, -0.01388804, 0.0017262431, 0.008134982, 0.030223083, -0.003511058, 0.018834108, -0.0040219347, 0.002595059, 0.024118593, 0.003976379, -0.02018777, 0.017011873, -0.017727751, 0.010666587, -0.020317929, 0.00046328717, -0.028140528, -0.0115516735, 0.013002954, -0.029702444, -0.019875387, -0.014708046, 0.0355336, -0.036262494, 0.03339898, 0.020565232, 0.0049916245, -0.013289305, 0.004467732, -0.013328353, 0.02509479, 0.0335812, 0.02409256, -0.020487137, -0.014447727, 0.00610449, -0.0018840617, 0.003976379, -0.0051022605, -0.0012218741, -0.01837855, 0.0020630313, -0.06304936, 0.025758605, 0.008147997, -0.016400123, 0.007464659, 0.0094365785, 0.013875024, -0.029025612, -0.004379874, -0.0011234409, -0.005173848, -0.003533836, 0.0032946675, 0.011649293, -0.014551855, -0.029025612, 0.026943058, -0.016491234, 0.016686473, 0.005287738, -0.006084966, 0.002152516, 0.0071327514, -0.0003247891, -0.026448451, 0.001068123, -0.011480086, 0.024678279, 0.001082766, -0.0059287744, 0.0054959934, -0.020356977, 0.013705816, 0.04128666, -0.027203377, -0.021554446, 0.017623624, 0.009937693, -0.00868816, -0.022921123, -0.008082917, -0.014304551, 0.003475264, -0.020617297, -0.015332812, -0.023441762, 0.010614524, 0.012378188, 0.022101117, 0.009410546, 0.02309033, 0.03019705, 0.0016408258, -0.04534764, 0.0033743903, -0.020226818, 0.016738538, -0.011584213, -0.014864238, -0.020682376, 0.033320885, 0.0019133476, 0.013562641, -0.014564871, 0.009156735, 0.00962531, -0.002586924, 0.012319616, 0.0010624286, -0.009937693, -0.025797652, -0.0037290754, 0.01149961, 0.015241701, -0.0019263636, 0.0145388385, 0.0052649598, -0.0063290154, -0.040089186, 0.027047185, 0.019211572, 0.012098344, -0.02735957, -0.003413438, -0.0019702925, 0.0037583613, -0.024209704, 0.0005702622, -0.008213077, 0.022764932, -0.0031205788, -0.0067748125, -0.0121439, -0.0072368793, 0.019367764, 0.031160232, -0.0059059965, -0.010106901, 0.0023575176, 0.011779453, -0.014890269, 0.011746913, -0.011525641, -0.026656706, -0.00521615, 0.013087558, -0.0060003623, -0.01114167, -0.012697079, 0.008219585, 0.007536247, 0.008271649, -0.015384877, 0.0010632421, -0.0024437483, -0.009169751, -0.007262911, -0.039776806, -0.011922629, 0.023597954, 0.026539562, 0.013497561, 0.011460561, 0.0013951493, -0.0029985541, -0.0038527271, -0.02312938, -0.005570835, -0.0071002115, 0.00943007, 0.017142033, -0.015658213, 0.0028911724, 0.0041293167, 0.001758783, -0.0048972587, -0.01779283, 0.033060566, 0.0033451044, 0.06346587, 0.022621756, -0.02574559, -0.0014463997, 0.0015163606, 0.023194458, 0.025888765, -0.00015649671, -0.00037664964, -0.028869422, 0.0067292564, -0.003035975, -0.01062754, 0.0125734275, -0.018873157, -0.0059417905, 0.00426273, 0.01824839, -0.022075085, -0.018495694, 0.01692076, -0.028244656, 0.036028206, -0.018690933, 0.00076387473, -0.015723292, 0.0054439297, 0.0031872857, -0.012482315, 0.0018417598, 0.0051282924, -0.0037778853, -0.0018173548, -0.003039229, 0.0071522756, -0.011428022, -0.019901419, 0.024430975, -0.017558543, 0.010816271, 0.014070264, 0.019172523, -0.016204882, -0.026409402, 0.009931185, -0.011994217, -0.0033353423, -0.030301178, -0.020278882]
+ },
+ {
+ "Id": 6,
+ "Type": "Trekking",
+ "Brand": "Raptor Elite",
+ "Name": "Carbon Fiber Trekking Poles",
+ "Description": "The Carbon Fiber Trekking Poles by Raptor Elite are the ultimate companion for your hiking adventures. Designed with lightweight carbon fiber shafts, these poles provide excellent support and durability. The comfortable and adjustable cork grips ensure a secure hold, while the blue accents add a stylish touch. Compact and collapsible, these trekking poles are easy to transport and store.",
+ "Price": 69.99,
+ "Embedding": [0.017092843, 0.008227921, -0.020291114, -0.034902308, 0.0059453365, 0.021618199, -0.017729843, -0.032911684, 0.024723575, -0.026488597, -0.0022377954, 0.008360629, -0.01153236, 0.0056931903, -0.00096047705, -0.012932434, 0.016150612, -0.030522931, 0.002035415, -0.0039845696, -0.005500763, 0.043183316, -0.0133902775, 0.013171309, -0.0009032466, -0.04251977, 0.038432352, -0.008718942, 0.015420716, -0.004196903, 0.03397335, -0.003705882, -0.014199799, -0.027921848, -0.020025698, -0.0034570538, 0.009966401, -0.0090374425, 0.0006544183, 0.0051324973, 0.029514348, -0.008022223, -0.0056500603, 0.003914898, -0.0012316998, 0.016535467, 0.011047974, 0.0008053741, -0.009588182, -0.009601452, -0.0045386273, 0.012049923, -0.00922987, 0.015898466, 0.0094687445, -0.017968718, 0.003065564, 0.01389457, 0.015341091, 0.0031004, -0.016880509, 0.030177891, -0.02386097, -0.008619411, -0.010384432, -0.0183403, 0.004614935, 0.0027221811, -0.019295802, 0.018141238, 0.013542892, 0.013363736, 0.022958554, 0.016641634, 0.006429722, -0.02778914, -0.005079414, 0.014451945, -0.009720891, 0.0074316706, 0.0129589755, -0.0063335085, -0.019441782, 0.02668766, 0.007816525, -0.010722839, 0.001196864, 0.0020901572, -0.036946017, -0.014505028, 0.010391068, 0.0059320657, -0.00608468, 0.010145557, -0.0363621, 0.0018346936, -0.0013245958, 0.009754067, -0.0363621, -0.00846016, 0.007969139, 0.020291114, -0.011578808, -0.01500932, -0.028187264, 0.0019922848, 0.014704091, 0.0014581336, 0.01105461, -0.008918004, -0.026249722, 0.0072724205, 0.013509715, 0.0032878506, -0.0070932643, -0.007391858, 0.025984304, 0.01185086, 0.035194267, -0.026342617, 0.039095894, 0.009581546, 0.005928748, -0.01405382, -0.004774185, 0.008665859, -0.018592447, 0.003407288, 0.0067283157, -0.0030854703, 0.011306756, 0.0014573041, 0.02509516, 0.017119383, -0.0065425243, 0.011711516, -0.024458159, 0.0003697173, -0.031239558, 0.013018694, 0.008300911, 0.0033459105, -0.002997551, 0.007013639, -0.004031018, -0.0037025644, -0.0029162671, 0.015832113, 0.017013216, -0.008791932, 0.022812573, -0.004930117, 0.02165801, 0.0435549, -0.011638527, -0.0322216, 0.0027371107, 0.02213576, -0.019229447, -0.026926534, -0.0043395646, -0.015115486, -0.00407083, -0.008367265, 0.016084258, 0.02701943, -0.0072856913, 0.0015526883, -0.010444151, 0.0033359574, 0.019773552, 0.0044888617, -0.005328242, 0.025042076, -0.0056699663, 0.0050628255, -0.001831376, 0.005195534, -0.026037388, 0.011286849, 0.0076041915, -0.0008120095, 0.015765758, 0.016336404, 0.001006925, -0.03346906, 0.016628362, 0.028691556, 0.006489441, -0.039785977, 0.010935172, 0.0020785453, 0.010337984, -0.0067382692, -0.646343, -0.035618935, 0.011950391, -0.032433935, 0.033522144, 0.0010948443, 0.017092843, 0.008811838, -0.030602558, -0.016535467, -0.0043793772, 0.014252882, 0.016867237, -0.014398862, -0.015460528, -0.021525303, 0.0028167358, -0.010729474, -0.0016679787, -0.00030688816, -0.034849226, 0.007391858, -0.013629152, -0.006409816, 0.0086924005, -0.0027536994, 0.015619779, 0.003855179, -0.04488198, 0.038166936, -0.026780555, 0.03742377, -0.0057960395, -0.004757596, 0.045545522, -0.029620515, -0.0031402125, 0.043103687, 0.016548738, 0.037078727, -0.021259885, -0.009103796, 0.008619411, 0.00052834535, -0.010490599, 0.012594027, 0.015818842, -0.003238085, 0.020437093, -0.012109642, 0.0063202376, -0.016190425, -0.018393384, -0.013317288, -0.0031883193, -0.0016455841, 0.044112273, 0.0049102106, 0.008831744, 0.007902785, -0.014425403, 0.010550318, -0.0065060295, -0.03046985, -0.022454262, 0.02383443, -0.04583748, -0.022334823, 0.027391015, -0.030841433, 0.013668966, 0.035592392, -0.014266153, -0.0028018062, -0.0016887144, 0.002951103, 0.013410184, -0.015593237, 0.0122489855, 0.0016596845, 0.02180399, 0.021817261, -0.013012059, 0.0050429194, 0.030045182, 0.0019425192, -0.0040442883, 0.008645953, 0.033097476, 0.025533097, 0.011034704, 0.008665859, 0.0003106206, -0.0010882089, -0.019654114, 0.0043196585, -0.0098137865, -0.0032662856, -0.004220127, -0.011519089, -0.016694717, -0.014969507, 0.004429143, -0.003513455, 0.012746642, 0.0022842435, 0.012826267, -0.008347359, 0.0074781184, -0.01739807, -0.011917215, -0.028824264, -0.01628332, -0.014093632, 0.0054244557, -0.01625678, 0.0102450885, 0.0099000465, 0.011592079, -0.052048236, 0.01896403, -0.008002317, 0.0039049448, 0.007789983, -0.0041637262, 0.004117278, 0.0040111113, -0.015579966, -0.019017113, -0.009010901, -0.003410606, 0.025971035, 0.01564632, 0.0010782557, 0.0077169933, 0.02194997, 0.0029029963, -0.004472273, 0.02573216, -0.03142535, -0.034238767, -0.016336404, -0.020476906, -0.044244982, 0.004256622, -0.053162985, -0.03662752, -0.021140449, -0.011724787, -0.031823475, 0.009409025, 0.0031800251, 0.022241928, 0.005902206, 0.012368423, -0.010722839, 0.0014133445, -0.0322216, 0.0014465216, -0.0057363207, 0.008281005, -0.010974985, -0.0006083851, 0.023648636, -0.01405382, -0.003994523, 0.00963463, 0.0133040175, -0.021087365, -0.03691948, -0.001932566, -0.009627994, -0.006605561, 0.0074781184, -0.016084258, 0.0028515717, -0.010304808, -0.018114697, -0.0002952762, -0.008334087, -0.007139712, -0.006841118, -0.023237241, -0.0059519717, 0.011877402, 0.006277107, 0.0034271944, 0.020397281, -0.00050263305, 0.0257587, -0.029010056, 0.033999894, -0.015925009, 0.012945704, -0.0023854335, -0.019149823, -0.015102216, 0.017477697, 0.0030489755, 0.0056467424, 0.0055770706, -0.044775814, 0.037874978, -0.027921848, 0.042917896, -0.0037291062, -0.008725577, -0.021830533, 0.030867973, 0.010669756, 0.0045054504, -0.010623308, -0.020198219, 0.00063451205, -0.0126139335, 0.027815681, -0.01318458, 0.027974932, -0.00061004394, -0.014717362, 0.02228174, 0.016349675, 0.010742745, -0.008400442, -0.0022261834, 0.014199799, -0.020503448, 0.04379377, -0.0016298251, -0.009747432, 0.000995313, 0.010669756, 0.00056857255, 0.015102216, 0.03033714, 0.03001864, 0.0126802875, -0.022945283, 0.051756278, 0.00017801588, 0.02338322, 0.012700194, -0.008652587, -0.0023207383, -0.00013768497, 0.022560429, 0.010085839, 0.020583073, 0.012713465, 0.024551054, -0.004953341, 0.023449574, 0.008148296, -0.008971088, 0.020941386, 0.006612196, 0.04440423, 0.03208889, 0.017928906, 0.0056036124, 0.018220864, -0.005155721, 0.028956974, -0.019043656, 0.013025329, -0.014544841, -0.01453157, -0.00250653, -0.013337194, -0.01059013, 0.0003336372, -0.004289799, 0.013695507, 0.0083739, 0.010570224, -0.0069008367, 0.017955447, 0.001852941, -0.004541945, 0.023741532, -0.0028167358, -0.028691556, 0.008115118, 0.010225182, -0.008632681, -0.02258697, -0.03522081, 0.019216176, -0.0065259356, 0.029647056, 0.009787245, 0.021618199, -0.008453526, 0.0010135605, 0.021750906, 0.00048231208, 0.031664226, -0.023980409, 0.05764853, -0.0006208265, -0.029275473, -0.008287639, -0.014956237, -0.023343408, 0.030071724, 0.0016157248, -0.01754405, -0.02983285, 0.015725946, -0.018884405, 0.0006805453, -0.017623676, 0.0099000465, -0.018273948, -0.007391858, -0.012812996, 0.0046846066, -0.026170097, 0.03397335, -0.029355098, 0.018260676, -0.010132287, -0.0012582415, -0.010742745, 0.08020896, 0.0019093421, -0.004770867, 0.008918004, 0.006277107, -0.01405382, -0.012361787, -0.018273948, 0.020437093, -0.0090175355, 0.01628332, -0.016575279, 0.006705092, -0.0014631101, 0.021047553, 0.015102216, -0.00032140315, -0.037503395, -0.0027852175, -0.01912328, 0.0013934382, -0.012554214, 0.03853852, 0.011937121, -0.0018181051, 0.024046762, 0.015938278, 0.008168202, 0.0023671861, -0.021565115, -0.016986676, -0.0074183997, 0.0030522933, -0.012421506, -0.015659591, -0.01564632, 0.005935383, -0.014040549, -0.0030572698, 0.024537783, -0.005378008, 0.010457422, 0.015288007, -0.011499183, -0.0069074724, 0.007710358, -0.0076041915, 0.005318289, 0.0076108268, -0.00086426345, 0.0074449414, 0.009415661, -0.013449997, 0.015871925, 0.002310785, 0.0056566955, -0.0013594317, -0.031876557, -0.0026160143, -0.025891408, -0.0013088366, -0.00095964764, 0.0065159826, 0.0010724497, -0.00908389, -0.02813418, 0.0087587545, 0.0070667225, -0.026316077, -0.011326662, -0.022215387, -0.00076307333, 0.014597924, -0.001573424, 0.03129264, -7.9832396E-05, 0.013974194, -0.0046879244, 0.0050661433, 0.00084103947, 0.0074183997, 9.491761E-05, -0.004213492, -0.022799304, -0.001109774, 0.007046816, 0.0099000465, 0.00663542, -0.00091817626, -0.0039613456, 0.010165463, -0.01737153, 0.025546366, 0.008015587, -0.020583073, -0.009747432, 0.027205221, 0.034238767, 0.0041139605, -0.0045154034, -0.004614935, -0.026966346, -0.0076240976, -0.019693926, 0.042625938, 0.022706408, -0.0015427351, 0.003053952, 0.0074316706, -0.005185581, 0.0004111887, -0.018751698, 0.016004633, -0.0037490122, -0.02573216, 0.019614302, -0.005480857, -0.014159987, 0.0057628625, -0.030257516, -0.0118176835, -0.037052184, 0.035778183, -0.015128758, -0.022494074, 0.008791932, -0.002277608, -0.0073055974, -0.0025911315, 0.010152193, -0.029965557, 0.028665015, -0.0040442883, 0.014942966, -0.0065425243, -0.010218547, -0.038299646, -0.010039391, -0.008360629, 0.033283267, -0.0110214325, 0.008181473, 0.03033714, 0.043156773, -0.036547896, -0.022626782, -0.026355889, 0.034557268, -0.010729474, 0.029593974, -0.03174385, -0.018366843, -0.011718152, 0.0004116034, -0.011897308, -0.021591658, 0.00070045155, -0.015513612, 0.02051672, 0.021100637, 0.00223116, -0.015288007, 0.00407083, 0.018021801, 0.00260772, 0.008042129, -0.025864867, -0.007882879, -0.048757065, 0.013423455, 0.004989836, 0.008559692, -0.016654905, -0.01990626, -0.017942175, 0.00853315, -0.015208383, -0.030549474, -0.0039281687, -0.040502604, -0.023038179, -0.006260519, 0.0047542783, -0.010192005, -0.02954089, -0.0040343353, 0.022029595, 0.021419136, 0.0023489387, -0.0052220756, 0.023728263, -0.0177033, 0.01580557, -0.026130285, 0.0081549315, 0.009667807, -0.022255199, -0.026647847, 0.0025347304, 0.0114726415, 0.010543683, -0.008732213, 0.0060150083, -0.0058059925, -0.017291905, 0.006094633, -0.00883838, -0.010470693, -0.00070667226, -0.031213015, -0.01786255, -0.019388698, -0.0060083726, -0.0319031, -0.01673453, 0.029434724, -0.02810764, 0.010789193, -0.03238085, -0.031027224, 0.019773552, 0.0021946651, 0.016482383, -0.0056931903, -0.007902785, 0.030602558, -0.034238767, -0.017981987, -0.015035862, 0.004040971, -0.0026458737, 0.0020569803, 0.029408181, -0.01739807, -0.017424613, 0.007942597, 0.0072923265, -0.0025712252, -0.018473009, 0.005560482, 0.0030871292, 0.06147053, 0.0021731001, -0.0060349144, -0.034663435, 0.0055870237, 0.0034305123, 0.0036760226, 0.0024517877, -0.015699403, -0.0030240926, 0.023489388, -0.0241662, 0.012972246, -0.017623676, -0.030522931, -0.015314549, -6.568029E-05, 0.0006266325, 0.007750171, -0.00038485436, 0.031584598, 0.012620569, -0.018526092, 0.016203696, -0.011313391, 0.010391068, 0.007922691, 0.015062404, 0.026355889, 0.008088577, -0.012255621, -0.012826267, 0.015075674, 0.0010160487, -0.020649428, -0.016349675, -0.012733371, 0.00359308, -0.004409237, 0.014611195, -0.0059519717, -0.028399598, -0.016495654, 0.0003500184, -0.013151403, -0.03811385, -0.01311159, 0.0047111483, -0.025506554, -0.022759492, 0.013357101, 0.019919531, 0.017968718, 0.022308283, -0.00812839, -0.016946863, 0.010371162, -0.02983285, 0.0013453314, 0.018366843, 0.008599505, -0.024683762, 0.0076506394, 0.009674442, -0.022069408, 0.006326873, -0.0021631469, -0.05273832, -0.017358258, 0.0069539202, 0.001189399, 0.017358258, -0.0047177835, 0.004654747, 0.030735265, 0.015062404, -0.014704091, -0.024988992, -0.008002317, -0.0054443623, 0.011651797, 0.01958776, -0.031690765, 0.00010502626, 0.00473769, -0.013722049, 0.002745405, -0.006426404, -0.021538574, -0.008990994, 0.013244298, -0.015579966, -0.04010448, 0.013921111, -0.016946863, -0.008984359, -0.012932434, -0.016124072, 0.019866448, 0.011379746, 0.0043262937, 0.0076705455, 0.009375849, -0.032938223, -0.017159196, -0.0036527987, -0.013522986, -0.01703976, 0.0020005791, 0.014080361, 0.04535973, 0.013536257, -0.030098265, -0.001831376, 0.013430091, -0.038750853, -0.011160777, 0.0059420187, 0.0102450885, 0.007916057, -0.0052652056, 0.018127967, 0.00846016, 0.016031174, -0.014796987, -0.0022709726, -0.023502657, -0.011844225, -0.00063741504, -0.00814166, -0.015301279, -0.03330981, -0.0068809306, 0.049553316, 0.005500763, -0.0010774264, 0.02006551, -0.0083274525, 0.00553394, 0.0042499867, 0.027231764, 0.030230973, 0.028558848, 0.009183422, -0.050137233, 0.029248932, -0.00029942332, 0.008440254, 0.0047443253, 0.0080554, -0.006061456, -0.0052817944, 0.028452681, -0.0105038695, -0.03129264, -0.002539707, -0.010550318, -0.007358681, -0.0059818313, -0.022932012, 0.017358258, 0.0170663, -0.022998367, -0.005706461, 0.024988992, 0.013018694, -0.0050960025, -0.00018599912, -0.0150491325, 0.023754803, 0.007060087, 0.016031174, 0.0031833427, -0.029142765, -0.014133445, -0.0069539202, -0.009302859, 0.009103796, 0.0048571276, -0.012361787, -0.0071330764, 0.0059685605, -0.00024364433, 0.019959344, -0.0053614196, 0.002654168, -0.043183316, 0.015725946, -0.0076240976, -0.027895305, -0.0067216805, 0.022839116, -0.0037357416, -0.013602611, 0.026422244, 0.17974027, -0.0002803465, -0.0001831998, 0.033707935, 0.009428932, 0.019667385, 0.00089163455, 0.0019192953, -0.020914843, -0.033893727, 0.008652587, -0.004415872, -0.015832113, -0.0076572746, 0.008108484, 0.00496993, -0.04862436, -0.0016397781, -0.022732949, -0.012594027, 0.0070401807, -0.013516351, 0.02071578, -0.0020088735, 0.006064774, 0.003855179, 0.0007991534, -0.019017113, 0.0010707909, 0.021273157, -0.0041604084, -0.036839854, -0.012720101, -0.025480013, 0.0045585334, 0.021113906, 0.020304386, 0.0031717308, -0.015911737, 0.018990573, 0.00782316, 0.018924218, 0.014359049, 0.02165801, 0.006814576, 0.00020393549, -0.006078045, -0.0003529214, 0.007876243, 0.014982779, -0.028691556, -0.014783716, 0.011545631, 0.023290325, -0.0056666485, -0.00883838, 0.012693559, -0.0016961793, -0.011041339, 0.009415661, -0.012899256, 0.022122491, 0.0011694928, 0.02985939, -0.02242772, -0.018021801, 0.0017467743, 0.01256085, 0.018473009, -0.001703644, 0.0025662486, 0.0050163777, 0.02147222, 0.039785977, -0.004107325, -0.015102216, 0.0033624992, -0.02291874, 0.0024998945, 0.017915634, 0.009661172, -0.016840696, -0.01784928, -0.0036660696, 0.0031601188, -0.012103006, 0.015725946, 0.007557743, 0.0021100636, -0.001606601, 0.010092474, -0.007391858, -0.012534308, 0.010152193, 0.002642556, 0.024869554, -0.03715835, 0.014120174, -0.022069408, 0.008791932, -0.04658065, 0.01689378, -0.022361366, 0.0054543153, -0.0357251, 0.022653325, -0.008546421, 0.02464395, 0.0070534516, 0.00057271967, 0.020808678, -0.03479614, 0.0072923265, -0.010775922, 0.0013751908, -0.011406287, 0.018884405, -0.01832703, 0.0023522563, -0.022878928, 0.028956974, -0.032327767, 0.01815451, -0.026594764, 0.0067913523, -0.0043992833, 0.0054410445, 0.016190425, 0.003135236, -0.022255199, 0.020437093, 0.017159196, 0.013423455, -0.016031174, -0.01389457, -0.019640842, 0.010789193, -0.040343355, 0.022799304, -0.015911737, 0.0015842066, 0.018844593, 0.027895305, 0.029328557, 0.03461035, 0.022295011, 0.0027935118, -0.008101848, -0.018366843, -0.008964453, -0.007902785, 0.0016007951, -0.01656201, -0.004747643, -0.012149454, 0.003213202, -0.015911737, -0.028824264, -0.01895076, -0.0021681236, -0.010165463, 0.0056202007, 0.033070933, 0.015420716, 0.011996839, -0.004276528, -0.16742492, 0.05255253, 0.011101058, -0.036946017, -0.008858286, 0.0055969767, 0.020941386, -0.02148549, -0.013974194, 0.00659229, 0.010311442, 0.0038120488, -0.02826689, -0.03299131, 0.020742323, -0.01311159, -0.015672863, 0.014478487, 0.024431616, 0.00089827, 0.0022494073, -0.04121923, 0.014199799, 0.0023505976, -0.006947285, -0.026196638, 0.0038153664, -0.008347359, 0.0005212952, -0.01453157, -0.0044656377, -0.023728263, 0.034689978, -0.0025612721, 0.036123227, -0.016774341, -0.035167728, 0.00821465, -0.0068013053, 0.02906314, 0.0014083679, 0.017026488, 0.03208889, -0.0241662, 0.018512823, 0.025891408, -0.022533886, -0.012282163, 9.813164E-05, -0.009700984, 0.015354362, 0.0018346936, 0.03776881, -0.011797776, 0.008579598, 0.0014440333, 0.009754067, 0.0067150453, 0.015606508, -0.007152983, -0.012282163, -0.019255988, -0.018804781, -0.038910102, 0.0053050183, -0.007922691, 0.012103006, 0.028054556, -0.010762651, 0.024829742, -0.0030489755, 0.022162303, -0.012136184, -0.01973374, 0.016455842, 0.013164673, 0.0032397439, -0.010404339, 0.0002457179, -0.017490968, 0.00047318838, 0.04711148, -0.013310652, 0.006605561, 0.00020569802, 0.017663488, -0.020901574, 0.011857496, 0.0045718043, -0.0036527987, -0.00015759123, -0.035459686, 0.0018380113, -0.002312444, -0.0079824105, 0.037237976, 0.011598715, -0.019800093, 0.0029560796, -0.021565115, 0.006486123, 0.009130338, -0.030124808, 0.026050659, 0.0496064, 0.014889883, -0.0076572746, 0.011990204, 0.018061614, 0.013005423, -0.0059552896, 0.047270734, 0.0017152561, 0.017119383, -1.4229866E-05, 0.02494918, -0.017384801, -0.02274622, 0.0082411915, -0.013668966, 0.018871134, -0.013071777, -0.009249776, -0.02006551, -0.0023837746, 0.0019259307, -0.09209963, -0.015261466, 0.03439802, 0.030390223, -0.008433619, 0.0035565852, 0.0015095581, 0.012540944, -0.005898888, 0.012640475, 0.009289588, -0.006396545, 0.02038401, 0.03439802, 0.010397703, -0.0065325713, 0.00947538, -0.014558111, -0.028081099, 0.017145926, 0.00044789087, -0.0055903415, -0.009760703, -0.017252091, 0.00056857255, -0.019242719, -0.021538574, 0.015062404, 0.036255933, 0.016230237, -0.01739807, 0.0009206645, 0.037821893, -0.008440254, -0.028877348, 0.0066785505, -0.015115486, 0.00053539546, 0.027364472, -0.02177745, -0.0033094157, -0.007916057, 0.005683237, -0.011631891, 0.018419927, -0.010908631, 0.00924314, 0.012454684, 0.026581492, -0.009077255, 0.0006610537, -0.018565906, -0.024206012, -0.009700984, 0.0050429194, -0.013708778, 0.006094633, 0.018433196, 0.017663488, 0.0005063655, -0.0058391695, 0.0150491325, 0.013960924, 0.011724787, 0.008772025, -0.022255199, -0.0108489115, -0.01722555, 0.011120964, 0.00876539, -0.005523987, -0.004040971, -0.020251302, 0.0129589755, -0.012103006, 0.005328242, -0.028452681, -0.015818842, 0.0041006897, -0.013337194, 0.0069738263, -0.01705303, 0.034636892, -0.04660719, -0.00032534293, 0.042068563, 0.02213576, -0.005115909, -0.0059751957, -0.0341326, 0.015088946, 0.0092099635, 0.016960133, -0.008194744, -0.0022676548, -0.00070957525, -0.0076970872, 0.031796932, 0.0055671176, -0.009309494, -0.038777396, -0.015991362, -0.07787329, 0.03360177, 0.015818842, -0.030522931, -0.026913263, -0.0080686705, 0.015964821, 0.0064131333, 0.013947653, -0.014743904, 0.0032895096, -0.0167478, 0.028346514, -0.006054821, -0.017809467, -0.010351256, -0.017928906, -0.013522986, 0.028797723, -0.0106962975, -0.014969507, 0.03633556, -0.0177033, 0.017238822, -0.025997575, -0.009614724, -0.029912474, 0.0177033, 0.0043661064, -6.521374E-05, 0.018618988, -0.02052999, -0.008679129, 0.030230973, 0.006661962, -0.0052253935, 0.015062404, 0.01580557, 0.009886776, -0.013987466, 0.006887566, -0.0068676597, -0.00083979534, 0.010497235, -0.01405382, 0.015686134, -0.0037324238, 0.0012424825, 0.017464425, 0.019654114, -0.0021664647, 0.022069408, 0.019163093, -0.010576859, -0.024710305, -0.023024907, 0.0052353465, 0.0024916003, -0.00979388, -0.03299131, 0.041113064, 0.033389434, -0.0076240976, 0.008805202, -0.033575226, 0.0059088417, -0.027550263, -0.010218547, 0.0038916739, -0.0054742214, -0.02481647, 0.026886722, 0.030151349, -0.0064230864, 0.008699035, 6.733915E-05, 0.006625467, -0.0057827686, -0.005835852, 0.0011263626, -0.0020636157, -5.84228E-05, -0.048863232, 0.022255199, -0.0033741111, 0.0003139383, 0.014292695, 0.017716572, -0.017424613, -0.0059519717, -0.023953866, 0.014518299, -0.031850018, 0.009754067, 0.021591658, -0.021790719, -0.005023013, -0.017995259, -0.0027520405, 0.011240401, -0.0062638368, -0.019468322, 0.010576859, -0.00846016, -0.008718942, -0.0018794828, -0.02526768, -0.012925798, -0.0076506394, 0.0068676597, 0.021007739, 0.00750466, -0.014651008, 0.002128311, 0.014611195, -0.0032414028, -0.004774185, -0.02447143, 0.005719732, 0.015208383, 0.01577903, 0.03691948, 0.0022610193, -0.0183403, -0.0068013053, 0.006987097, 0.0027254988, 0.00038879414, 0.007756806, 0.024206012, 0.024896096, -0.0021448995, -0.024099845, -0.007942597, -0.009276317, 0.0023373268, -0.0151553, 0.00046945596, -0.034557268, 0.07155637, 0.014345778, -0.014651008, 0.0077966186, -0.022175575, 0.034557268, 0.013801673, -0.0012748301, -0.0035267258, -0.028028015, 0.015354362, -0.005318289, -0.0076506394, 0.01786255, -0.008732213, 0.010059297, 0.010563589, 0.013934382, -0.011711516, -0.011094422, 0.031876557, 0.0020636157, 0.01106788, 0.012640475, 0.0032115432, 0.011950391, 0.02810764, 0.03346906, 0.02699289, -0.016641634, 0.0007021104, 0.011638527, -0.02274622, -0.0017335035, -0.006579019, -0.010882089, 0.0022842435, 0.0079824105, 0.011081152, 0.0132177565, 0.005849123, 0.0121627245, -0.010583495, -0.019892989, 0.013098319, 0.0041205958, 0.021618199, -0.0105038695, -0.005653378]
+ },
+ {
+ "Id": 7,
+ "Type": "Bags",
+ "Brand": "Solstix",
+ "Name": "Explorer 45L Backpack",
+ "Description": "The Explorer 45L Backpack by Solstix is perfect for your next outdoor expedition. Made with waterproof and tear-resistant materials, this backpack can withstand even the harshest weather conditions. With its spacious main compartment and multiple pockets, you can easily organize your gear. The green and black color scheme adds a rugged and adventurous edge.",
+ "Price": 149.99,
+ "Embedding": [0.027126377, 0.009941429, -0.0065707155, -0.00916486, -0.029107967, 0.008897076, -0.024716334, -0.041774087, 0.0069824313, -0.016415073, 0.017780764, 0.009633479, -0.0045924713, 0.012405029, -0.0084954025, 0.002990797, 0.019200012, 0.004585777, 0.0062828492, -0.0069221803, 0.005261928, 0.00086192525, -0.0020920516, -0.0050376602, -0.007491218, -0.046674505, 0.014366536, -0.019066121, 0.025024284, -0.012471974, 0.027166544, -0.00087866164, -0.024247713, -0.013087874, 0.00084644405, -0.0061322213, 0.008006699, -0.009720508, 0.016669467, 0.005348957, 0.028652737, 0.007712139, 0.015116327, 0.033017594, -0.019293737, -0.0054326393, -0.022855245, -0.02491717, -0.0034543956, 0.013188293, -0.00315314, -0.0018560681, 0.00092050264, 0.015665282, 0.0060820123, 0.020150641, 0.016254403, 0.0017556497, 0.021114657, -0.031919684, -0.006396657, 0.0046058604, -0.025064452, 0.011909631, -0.006955653, -0.028492069, -0.01737909, -0.0037188309, 0.015906285, 0.01891884, 0.0045656934, 0.016990805, 0.019655243, 0.013964863, 0.0014393314, -0.018905452, -0.027340602, 0.006058581, -0.009479504, 0.0059179952, 0.0033573243, -0.031571567, -0.037810903, -0.016696244, 0.01751298, -0.0012150635, 0.0253724, 0.0067949835, -0.035936423, -0.027019264, -0.007511302, 0.0015322185, -0.0050577438, -8.8023065E-05, -0.013556493, 0.0069757365, 0.013148125, 0.023658592, -0.0047832667, -0.033338934, -0.0040133917, -0.0036820106, 0.00017489551, -0.0067849415, -0.047638524, -0.0046995846, -0.005981594, -0.007939754, 0.029643534, 0.011387455, -0.039899606, 0.009707119, 0.026256083, -0.02724688, -0.008294566, -0.02859918, 0.027742276, -0.021114657, -0.006259418, -0.030500438, 0.029429307, -0.0027029305, 0.01924018, -0.025399178, -0.0016602521, 0.014353147, -0.023712149, -0.005392472, 0.023792483, -0.0035715504, -0.0010066952, 0.037596676, 0.011253564, -0.019320514, -0.0035949813, 0.010436826, 0.0018527209, 0.009017579, -0.007651888, 0.0050443546, 0.007598331, 0.029295417, -0.022975747, -0.006587452, 0.0041338936, 0.00079874526, 0.0016267792, 0.00530879, 0.01030963, -0.00016213399, 0.028706294, 0.0029004202, 0.032374915, 0.0063029327, -0.02013725, 0.014567373, 0.0005330547, 0.021636834, -0.017941434, -0.017191643, -0.0062761544, -0.014821767, 0.005392472, -0.009432642, 0.01462093, 0.023886207, 0.016080344, -0.0051983297, -0.0074979127, 0.007859419, -0.021918006, 0.02940253, -0.020351477, 0.0060619283, 0.034704626, 0.024515497, 0.007832641, 0.0017422605, -0.011220091, -0.022252733, -0.0033221778, 0.027099598, -0.0042376597, 0.0070560714, -0.02337742, -0.009466114, 0.007712139, -0.01415231, 0.016200846, -0.016964028, 0.013964863, 0.0028619266, -0.012451891, 0.005365694, -0.6546749, -0.018115493, -0.018048547, -0.013951473, 0.0063096276, 0.012840175, 0.0074644396, 0.008582432, -0.002850211, -0.0007928875, -0.0005259418, 0.01629457, -0.0035179937, -0.01830294, 0.009117997, -0.020351477, -0.008046867, 0.009352307, 0.031919684, -0.004572388, -0.043755677, 0.009332224, -0.013215071, 0.000496653, -0.0025288719, 0.007926364, 0.014848545, -0.040113833, -0.0021891226, 0.0041439356, -0.015183273, 0.05245861, -0.032026798, 0.012090384, 0.04953978, -0.03540086, -0.000576151, 0.042256095, 0.03414228, 0.0363381, -0.016950639, -0.011179923, -0.007906281, -0.0017062773, -0.021824282, 0.008488708, 0.040060278, -0.008261093, 0.007712139, 0.0014820093, 0.026242694, -0.018892063, 0.0028334747, -0.013656912, -0.007511302, 0.0064870333, 0.033205044, 0.008214231, 0.010082015, -0.00055020954, -0.0140451975, 0.013697079, -0.021650223, -0.0047029317, -0.0437289, 0.044077016, -0.042416763, -0.02448872, 0.0085154865, -0.021824282, 0.009600006, 0.035052743, 0.016870303, 0.0042376597, -0.0046928898, 0.017928045, 0.008876993, -0.001096235, -0.010597496, 0.023176584, 0.03920337, -0.011126366, -0.005499585, -0.034597512, 0.041345634, -0.011420928, 0.008990801, -0.008361512, 0.011963188, 0.0022376582, 0.019280346, 0.019159844, -0.0021422608, -0.02908119, -0.012384945, 0.0116552375, -0.022748131, 0.006450213, 0.029348973, -0.008194148, -0.0038393328, -0.0074041886, 0.010082015, -0.005342263, 0.020190807, 0.024555665, -0.008247704, -0.00096067006, 0.01054394, -0.016669467, 0.0017790806, -0.013643523, -0.020860264, -0.010918835, 0.014942269, -0.029964872, 0.014674487, -0.014741432, 0.0203247, -0.056234345, 0.016830137, -0.0024033487, 0.008595821, -0.015892897, -0.013938084, 0.020739762, 0.012692895, -0.011340593, -0.01677658, -0.009091219, 0.0005845192, 0.009579922, 0.007491218, -0.00066736445, -0.004940589, 0.017164864, -0.0020083694, -0.024180768, 0.016120512, -0.030473659, -0.031250227, 0.004431802, -0.0012627624, -0.032723032, -0.01814227, -0.032401692, -0.020271143, -0.025198342, -0.005144773, -0.016910471, 0.0065707155, -0.022212567, -0.013683691, 0.006209209, 0.021556498, -0.017820932, 0.003886195, -0.004515484, -0.014500427, -0.0025523028, 0.031169893, 0.0051246895, -0.012833481, 0.0027882862, -0.01783432, -0.009780759, 0.009974902, 0.032053575, -0.01570545, -0.055109657, -0.016200846, 0.00027698762, -0.00853557, 0.005770715, 0.010717998, -0.011514652, -0.016348127, -0.022520516, 0.03743601, 0.004786614, 0.012217581, -0.010557328, -0.011682016, 0.008234315, 0.007571553, 0.014861934, 0.00534561, 0.030473659, -0.004170714, 0.0050577438, 0.024354827, 0.033017594, 0.01953474, -0.011099588, -0.02432805, -0.0014476996, -0.01224436, 0.00396653, 0.035775755, 0.017687041, 0.022118842, -0.027742276, 0.02013725, -0.022828465, 0.0058577443, -0.030125542, -0.018677836, -0.010356491, 0.023497922, 0.031919684, 0.018088715, -0.01708453, -0.025425958, -0.012759841, 0.00077698793, 0.011521346, 0.03186613, 0.030420102, -0.0076786657, -0.018972397, -0.021034323, 0.003993308, -0.008073646, -0.027608385, -0.018985786, 0.015718838, -0.006604188, 0.015799172, -0.007062766, -0.020833487, 0.021529721, 0.011809212, 0.019360682, 0.018517166, 0.023899596, 0.01862428, 0.018530555, -0.021168213, 0.033740606, 0.008830131, 0.024649387, 0.02059248, 0.016575743, -0.016361516, 0.017620094, 0.0054359864, 0.013777414, 0.012237664, 0.008890382, 0.0065004225, -0.012384945, 0.012217581, -0.005081175, -0.015745617, 0.0040033497, -0.0108451955, 0.01630796, 0.027902946, 0.0197088, 0.017981602, -0.007076155, -0.0031899603, 0.008334734, 0.014594152, 0.028545626, -0.0077656955, -0.02708621, -0.009861094, -0.014232645, 0.0040602535, 0.029670311, -0.026483698, 0.006339753, -0.020257752, -0.008214231, 0.003298747, 0.010818417, 0.020177418, -0.0045087896, 0.011313815, -0.011969882, -0.022667797, 0.002291215, 0.0035514666, 0.024877002, -0.008174064, -0.01645524, 0.010523856, 0.00013587874, 0.016575743, 0.021114657, 0.008836825, 0.004823434, -0.006543937, 0.007645193, -0.007096239, 0.0192134, -0.016669467, 0.03435651, -0.0072100465, -0.009292056, 0.0046861954, -0.016575743, -0.031303786, 0.043005884, -0.0056636017, -0.01431298, -0.013723858, 0.016789969, 0.00565356, -0.009124692, -0.022547295, -0.008421763, -0.019923026, -0.003886195, 0.0006782431, -0.017151475, -0.015812563, 0.034383286, 0.022118842, -0.02215901, -0.0058778278, -0.03015232, -0.012679506, 0.08986784, -0.0018025116, -0.010490383, 0.020030139, 0.027983282, -0.043112997, -0.017820932, -0.023029303, 0.006553979, -0.011829296, 0.01831633, -0.0023631814, -0.0077924733, -0.019481184, -0.011179923, 0.015317164, 0.0042477013, -0.026724704, 0.0044384967, -0.012873649, 0.0053288736, -0.00947281, -0.017579928, 0.02123516, 0.016656077, -0.009071135, 0.014098753, 0.016602522, 0.028251063, -0.0047732247, 0.008006699, 0.010510467, 0.012860259, 0.0071297116, -0.01707114, 0.0048267813, 0.0049238526, -0.016723024, 0.027447715, 0.007993311, 0.010195822, 0.026979096, 0.017312145, -0.0011205028, 0.017271977, -0.008281177, -0.019802524, 0.007491218, 0.004328036, -0.016241014, 0.023645204, 0.009820927, -0.02630964, -0.0030075333, -0.0030292906, 0.0041439356, -0.006460255, 0.0037422618, -0.030232655, -0.045790825, 0.000818829, -0.029429307, 0.04295233, -0.011374066, 0.004164019, -0.0075179962, -0.021623444, 0.010262768, -0.03015232, -0.005191635, -0.022493739, -0.008307955, -0.011374066, 0.016334739, 0.015437666, -0.0018510472, 0.011046032, -0.00646695, 0.015290386, 0.018584112, 0.011347287, 0.011200007, -0.008053562, -0.013328878, 0.014794989, 0.0021841018, 0.0018828464, -0.017593317, -0.005914648, 0.018557334, 0.017111307, -0.010142266, 0.024810057, -0.010276157, 0.00947281, 0.015906285, 0.019655243, 0.031303786, 0.022721354, -0.009432642, 0.027340602, -0.017138086, 0.0014669466, 0.0003453977, 0.0020184114, 0.009205027, 0.0034778265, 0.02000336, -0.011494568, 0.034918852, 0.010731388, -0.037918016, -0.00011328459, -0.0043113, -0.026791649, 0.036552325, 0.0016594153, 0.0005728037, 0.034972407, -0.026711313, -0.026590811, -0.046138942, 0.015772395, -0.030848555, 0.008850215, 0.0017757333, 0.020445202, -0.021034323, 0.0063832677, -0.00042343122, 0.016361516, 0.00657741, -0.011815907, -0.02061926, -0.033633493, -0.020820096, -0.02859918, 0.0074778288, 0.012592477, -0.009861094, -0.0060719703, 0.0017305451, 0.027876168, -0.009800843, -0.031598344, -0.014781599, -0.032053575, -0.0027916336, -0.016053567, 0.03400839, -0.014808377, 0.026108803, -0.02245357, -0.0076251095, 0.00313473, -0.024609221, -0.039605048, -0.011300425, 0.024729723, 0.018704614, -0.002584102, -0.008421763, 0.01969541, 0.00083974947, -0.008950633, -0.008990801, -0.016883692, -0.020351477, -0.020083694, 0.006734732, 0.021824282, -0.012726367, -0.006068623, -0.02784939, 0.008870298, 0.022225956, -0.0030761526, -0.029107967, -0.0016209215, -0.03829291, 0.0024451897, -0.019507961, 0.008174064, -0.018476998, -0.029188303, -0.019012565, 0.028893743, -0.0006527201, 0.009807537, 0.004230965, 0.019173235, -0.01462093, -0.0011364024, 0.015892897, 0.0057338946, 0.0064970753, 0.0022041856, -0.029295417, -0.018838506, 0.004562346, -0.008662767, -0.004679501, 0.01030963, -0.010697914, -0.015571558, -0.0070828497, -0.009144776, 0.0045556515, 0.0140451975, -0.009271972, -0.00947281, -0.009814232, -0.007062766, -0.025747297, -0.002169039, 0.0010000006, -0.018021768, 0.012793314, -0.031598344, 0.010376575, -0.0030945626, 0.00026485373, 0.04019417, -0.0059682047, 0.019561518, 0.022654407, -0.0036351488, -0.013750636, 0.0009882852, 0.0060184137, -0.0043514674, 0.009519671, 0.014246034, -0.005703769, -0.012398334, 0.004937242, -0.008850215, 0.0027882862, -0.021489553, 0.017097918, 0.023002526, 0.021154825, -0.021743946, -0.0075648585, -0.0085556535, 0.02953642, -0.030741442, 0.025037672, -0.009834316, -0.002630964, 0.0013330552, 0.027126377, -0.0065740626, 0.003270295, 0.0005121342, -0.012907121, 7.7615114E-05, -0.012204192, 0.012264443, -0.0005723853, 0.008582432, 0.017941434, -0.0125656985, 0.0084954025, 0.00507448, 0.025024284, 0.0036451905, 0.0072033517, 0.006182431, 0.023872819, -0.020471979, -0.0116753215, 0.0029958177, -0.013041012, 0.012699589, -0.0027916336, -0.0161339, -0.016843526, 0.021743946, -0.01646863, 0.012893732, -0.014634319, -0.0073907995, -0.013723858, -0.013656912, 0.0057774093, -0.021770725, -0.023605036, -0.015089549, -0.027474495, -0.018396664, -0.0036887052, 0.015143106, 0.018972397, -0.01846361, -0.030125542, -0.0124451965, 0.01570545, -0.030366546, -0.0050376602, 0.021918006, 0.027420938, -0.03446362, 0.024515497, -0.006199167, -0.017874489, 0.01583934, -0.007076155, -0.023966542, -0.041613415, 0.0034225963, -0.011481179, 0.009646868, 0.012291221, 0.008923855, -0.016200846, 0.008026783, -0.0047598355, -0.03502596, 0.0021824283, -0.009399169, 0.00090711354, 0.03339249, -0.017138086, -0.0061422633, -0.0021054407, 0.020686205, 0.01784771, -0.0005351468, -0.0074577453, -0.012284527, 0.010738082, 0.023430977, -0.040970735, 0.00016966538, -0.010349797, -0.014192478, -0.016053567, 0.009292056, 0.025037672, 0.034249395, 0.01894562, 0.012291221, 0.023323864, -0.02921508, -0.0016677835, 0.012257748, -0.004194145, 0.004599166, -0.009218416, 0.0032100438, 0.052056935, -0.013911306, -0.03092889, -0.011856074, -0.0050376602, -0.033660274, -0.0019682022, 0.006969042, 0.0043414254, 0.02123516, 0.022882022, 0.0036117178, 0.040301282, 0.008267787, 0.026041858, 0.018570723, -0.014982436, -0.0016527207, 0.0073305485, -0.0044284547, -0.03457073, -0.029348973, -0.019347293, 0.006955653, 0.007712139, 0.009787454, 0.009111303, -0.026858594, -0.017486203, -0.012405029, 0.011969882, 0.039899606, 0.015772395, 0.0100954035, -0.021971561, 0.0067280377, -0.00411381, 0.02059248, 0.013161515, -0.0052585807, 0.013683691, 0.005820924, -0.0015146453, -0.0014259423, -0.037168223, 0.006055234, -0.005687033, 0.0027280352, -0.024528885, -0.0005514648, 0.014420093, -0.009633479, -0.022145621, 0.00010653772, 0.018343108, -0.008595821, -0.011969882, 0.0048401705, -0.0314109, 0.012759841, -0.021047711, 0.028358176, 0.014112143, -0.007310465, 0.00067740626, -0.012860259, -0.025118008, 0.01632135, 0.014112143, -0.021904616, -0.025881188, 0.016066955, 0.0015196662, 0.0017690387, 0.003017575, 0.0021723863, -0.022373237, 0.018543944, -0.015451056, -0.016803358, -0.028224286, 0.015799172, 0.015477834, -0.004883685, 0.01753976, 0.19815911, 0.021810893, 0.011507957, 0.038721364, 0.017968211, 0.030446881, 0.013656912, -0.0012560678, 0.003825944, 0.013489548, -0.006882013, 0.018088715, -0.008984106, -0.0035581612, 0.0026744786, -0.017981602, -0.051923044, 0.0030426797, -0.021690391, 0.008783269, 0.0033138096, 0.0060117193, 0.017271977, -0.018115493, 0.01894562, -0.013476159, 0.008107118, -0.010858584, -0.00076652766, 0.012786619, -0.0076384987, -0.04091718, 0.01431298, -0.0041271993, 0.015879508, 0.0006569042, 0.008508792, -0.0024753155, -0.0036953997, 0.009907956, -0.023712149, -0.0047933087, 0.011454401, -0.010450216, -0.010463605, -0.016642688, -0.019333903, 0.005703769, 0.012130552, -0.007979921, 0.0020083694, -0.01400503, 0.005061091, 0.014674487, -0.006935569, -0.0034778265, 0.037489563, -0.009117997, 0.0034443536, 0.0051615094, -0.0073506325, 0.026604202, -0.01938746, 0.0073439376, 0.022574073, 0.026215916, -0.0032786631, 0.0031564874, 0.00947281, -0.005971552, -0.005010882, -0.012023439, -0.016495408, 0.023939764, -0.0058677862, 0.008569043, -0.0018108798, 0.01208369, -0.0075514694, 0.025144786, 0.017017584, -0.015718838, -0.009861094, 0.0037891236, -0.0023665286, -0.01476821, -0.025720518, -0.011608375, 0.018410053, 0.0017974906, -0.0025690394, -0.021569887, 0.007297076, -0.0015573232, -0.0008694566, 0.023364032, 0.007491218, 0.025024284, -0.034918852, 0.007163184, -0.015919676, 0.023096249, -0.031892907, -0.022935579, -0.020097084, -0.0044820113, 0.00022092064, 0.022975747, 0.0017054403, -0.011802518, 0.0084552355, -0.04078329, -0.004174061, -0.006882013, -0.009934735, 0.0178611, 0.007993311, -0.0057774093, -0.004726363, -0.007692055, 0.016026787, -0.03181257, 0.022507127, -0.0012694568, -0.0063799205, -0.015143106, 0.006553979, 0.009994986, -0.008696239, -0.026550645, -0.004174061, 0.010262768, 0.022239344, -0.029027633, 0.014835156, 0.003330546, -0.012137246, -0.004977409, -0.02462261, -0.008729713, 0.0009849379, -0.0026845206, -0.002225943, 0.005676991, 0.045308813, 0.0010761513, 0.0048066974, -0.0035648558, -0.019441016, -0.0032569058, -0.009198332, -0.0050677857, -0.0161339, 0.007785779, -0.0033924708, -0.028197506, -0.058215935, -0.026724704, 0.010979086, 0.010463605, -0.001025942, -0.0062192506, 0.024863614, -0.02277491, -0.010791639, 0.037543118, -0.17105952, 0.010597496, -0.0023196668, -0.017365701, 0.00042824296, 0.016749801, 0.025037672, 0.00076108833, -0.012291221, -0.009780759, 0.032026798, 0.007089544, -0.030821776, -0.026282862, -0.014031808, -0.0056033507, 0.022707963, 0.0036953997, 0.017111307, 0.0071163224, 0.019735577, 0.0028769893, 0.007062766, -0.005425945, 0.0094058635, 0.00093974953, 0.009760676, 0.012338083, -0.012646033, -0.009024274, 0.004241007, -0.028224286, 0.024957338, 0.0048970743, 0.018517166, -0.024689555, 0.0008702934, 0.0011556493, -0.012143941, 0.034838516, -0.017820932, 0.009111303, 0.025131397, 0.02277491, 0.0039029312, 0.0026175748, -0.0049472833, 0.0022979095, -0.0034577427, -0.026202528, 0.020900432, -0.037275337, -0.028036838, -0.012197497, 0.01924018, -0.0049841036, 0.02446194, 0.011186618, 0.035748977, -0.00891716, -0.027300436, -0.011206701, 0.0064769913, -0.016856914, -0.012746451, -0.003200002, 0.003200002, 0.02091382, -0.0013188293, 0.019414239, -0.016522186, 0.0028334747, 0.006389962, -0.0057372423, -0.0019682022, 0.009640173, 0.0055899615, -0.00020847293, -0.0042945636, -0.01431298, -0.009265278, 0.040569063, -0.0075916364, 0.025452735, -0.010041847, 0.007444356, -0.028893743, 0.009666951, 0.02246696, -0.008863604, 0.0053255265, -0.035320524, 0.00088451937, -0.013409213, 0.007979921, 0.011976576, 0.018048547, -0.009700424, -0.010630969, 0.017459426, -0.005593309, -0.016053567, -0.004669459, 0.017646873, 0.02369876, 0.011347287, 0.037168223, -0.0028318008, 0.027581608, -0.016937248, -0.0005740589, -0.014861934, -0.0048368233, -0.009566533, 0.0035414249, 0.008100423, 0.002878663, -0.026751481, 0.022065286, -0.01721842, 0.022239344, -0.02124855, -0.011554819, -0.0086226, 0.01277323, 0.00089037715, -0.08735068, 0.0073439376, 0.027206711, 0.0052585807, 0.0056033507, 0.021422608, -0.007939754, 0.032749813, 0.013991641, 0.012458585, 0.014353147, 0.006470297, 0.003722178, -0.003979919, 0.017017584, 0.0034644373, 0.028652737, -0.027581608, -0.026818426, 0.004301258, -0.023578258, -0.005151468, 0.0013364025, 0.0024000015, -0.011842685, -0.014567373, -0.04413057, 0.004716321, 0.02231968, 0.024368215, 0.038801696, -0.00250042, -0.0042075342, -0.015049382, 0.0045690406, 0.00033891236, -0.022828465, 0.031518012, 0.020150641, -0.023979932, 0.000895398, -0.0022410057, 0.00087447756, -0.03743601, -0.018557334, 0.012297915, 0.0046058604, 0.0021824283, 0.01862428, -0.0069020963, -0.0023146458, -0.026389975, -0.008903772, -0.011862769, 0.012766535, 0.012579087, -0.029268637, 0.0084753195, 0.012900426, -0.008361512, 0.00507448, 0.0057974933, 0.016187457, -0.0021958172, -0.0100753205, -0.006744774, -0.0046426808, 0.0117757395, 0.0034108807, -0.008361512, 0.0046292916, 0.013482854, 0.0030242696, 0.040247723, -0.015892897, 0.005425945, -0.017178254, -0.004743099, 0.0023665286, -0.00045606724, -0.010356491, -0.019266957, 0.024743112, -0.017620094, 0.016066955, 0.035454415, -0.010262768, -0.012806702, -0.011822602, -0.011842685, 0.02199834, 0.012793314, 0.02676487, -0.010463605, -0.015732227, -0.0039029312, -0.010430132, -0.011153145, 0.003615065, -0.009138081, -0.014379925, 0.0023615079, -0.08440507, 0.033178262, 0.020217586, -0.024635999, 0.0038694586, 0.008441846, -0.016415073, -0.0034410064, 0.015303776, -0.0034577427, -0.0133355735, -0.012043522, 0.0067949835, -0.008200842, 0.00038410065, -0.011347287, 0.0053958194, 0.014781599, 0.021422608, 0.01830294, -0.016682856, -0.012411723, -0.014888712, -0.0035146466, -0.0544402, 0.018476998, 0.007511302, 0.0072702975, 0.0129339, -0.019467795, -0.010624275, 0.011025948, 0.009720508, 0.048361536, -0.009365696, -0.039256927, 0.026269473, 0.013482854, 0.0024970728, -0.013844361, -0.00050460285, -0.020498758, 0.026938928, -0.005144773, -0.035454415, -0.018249383, 0.009158165, 0.0064870333, -0.0016066956, 0.018209217, 0.0023213404, 0.0027347298, 0.012063606, -0.009707119, 0.004990798, -0.0020016748, 0.0069288746, 0.002887031, 0.0017121349, 0.008662767, 0.022667797, -0.00093221816, 0.01223097, 0.0039430987, 0.0067715524, -0.0042008394, -0.027166544, -0.009104609, 0.0057171583, 0.002406696, -0.008763186, 0.009653563, 0.03955149, 0.007491218, -0.0048870323, -0.0034125545, -0.0032669476, -0.0140853645, -0.024542274, 0.0075648585, -0.0050543966, -0.029563198, -0.023578258, -0.007123017, 0.0033740606, -0.007939754, -0.011179923, 0.026831817, -0.004408371, 0.005971552, -0.022239344, -0.009104609, -0.012853565, -0.028733073, -0.0053054425, 0.006031803, -0.00057866145, 0.0044251075, -0.009687035, 0.012010049, -0.015732227, 0.0046192496, -0.013723858, -0.012297915, -0.0050912164, 0.005379083, -0.0020635996, -0.029322194, -0.020940598, 0.014379925, 0.0035882867, -0.018490389, -0.009640173, 0.009814232, -0.013362352, -0.0117154885, -0.008635988, -0.026041858, -0.00929875, 0.03323182, 0.016562354, 0.035454415, 0.020405034, -0.024368215, -0.00013368209, -0.024609221, 0.0066209245, -0.016910471, 0.008615905, 0.007578247, 0.013964863, -0.005820924, 0.016696244, -0.0013213397, -0.008682851, 0.011112978, -0.013690385, 0.037864458, -0.009338918, 0.07219419, 0.0072033517, -0.0018359844, 0.01878495, -0.016093735, 0.02448872, 0.02294897, 0.0015447709, -0.0049941456, -0.047049403, 0.014339758, 0.01099917, -0.0036987471, 0.028706294, -0.04691551, -0.006600841, 0.016856914, 0.015906285, -0.017178254, 0.0051615094, 0.033151485, -0.013991641, 0.005392472, 0.009492893, -0.0013832644, -0.013991641, 0.046728063, -0.011099588, -0.00404017, -0.025747297, 0.008261093, -0.0035146466, -0.015102939, -0.027608385, -0.0042778268, -0.0016870303, -0.020699594, 0.01029624, 0.0101757385, 0.014754821, 0.010952308, 0.0067046066, -0.0005351468, -0.029107967, 0.013790804, 0.0093054455, -0.00096401735, 0.007912976, -0.020190807]
+ },
+ {
+ "Id": 8,
+ "Type": "Jackets",
+ "Brand": "Grolltex",
+ "Name": "Frostbite Insulated Jacket",
+ "Description": "Stay warm and stylish with the Frostbite Insulated Jacket by Grolltex. Featuring a water-resistant outer shell and lightweight insulation, this jacket is perfect for cold weather adventures. The black and gray color combination and Grolltex logo add a touch of sophistication. With its adjustable hood and multiple pockets, this jacket offers both style and functionality.",
+ "Price": 179.99,
+ "Embedding": [-0.010871092, -0.009204672, -0.0030179252, -0.024051553, -0.010372478, -0.0025668766, -0.009519586, -0.02310681, 0.022148948, -0.029470697, 0.012202916, 0.010221582, -0.0023618545, -0.022385133, -0.0046613826, -0.0058324686, 0.017858244, 0.027003871, 0.00584231, -0.025560515, 0.0048385216, 0.034483075, 0.0065705483, 0.008030306, -0.0043005436, -0.046056163, 0.009047215, -0.006186747, 0.020613741, 0.008200884, 0.01615246, 0.0003005624, -0.03655626, -0.015102748, -0.0052912105, -0.01577194, -0.01048401, -0.01642801, 0.00072454807, -0.004658102, 0.018265009, -0.019708363, 0.017556453, 0.020364435, 0.00084469107, -0.004008592, -0.002643965, -0.02067935, 0.0074923276, -0.0039134617, 0.0052649677, 0.011081034, -0.015102748, 0.0019878943, 0.004316945, 0.0006109658, 0.022411376, -0.009873864, 0.013429767, -0.02014137, -0.024510803, -0.02067935, -0.0154176615, -0.0029260754, 0.004874605, -0.03967916, -0.031491395, -0.014722227, -0.020456284, 0.01057586, 0.0007253682, 0.033459608, 0.019472178, 0.006901864, 0.0066099125, -0.018776745, 0.0054913117, 0.006616473, 0.018540557, 0.0042907023, 0.022306405, -0.023303632, -0.009657361, 0.019144144, 0.017517088, 0.022975596, -0.0048385216, 0.009572072, -0.03348585, -0.010280628, 0.008916001, 0.0035034176, 0.0038740975, 0.019367207, -0.031071508, 0.0067148837, 0.017556453, 0.015155233, -0.0021748745, -0.015903154, 0.019616514, -0.008286173, -0.002524232, -0.011920805, -0.043930493, 0.0048844465, 0.017805759, 0.008023744, 0.0015261845, 0.0013072209, -0.023224903, 0.030546652, 0.017320266, -0.038235802, -0.008148398, 0.0006745227, 0.036451288, -0.0146697415, -0.0029720003, -0.046712235, 0.0144729195, 0.026544621, -0.0033590822, 0.0050123804, -0.0011907683, -0.010543057, -0.030389195, -0.0039757886, 0.012668725, 0.009381811, 0.028683411, 0.006475418, -0.013829971, -0.013777485, -0.032593593, 0.015640726, -0.028998327, 0.00491725, -0.0055142744, 0.010182218, 0.0062654754, 0.012754015, -0.019131022, 0.006882182, -0.005159996, 0.007958137, -0.0063310824, 0.028525954, -0.004959895, -0.0038642564, 0.007210217, -0.030100524, 0.022621319, 0.012937714, -0.012727772, 0.0067837713, 0.0076694665, 0.014814077, -0.023001838, -0.00058267283, 0.0024176205, -0.018671773, 0.029838096, 0.0146041345, -0.0006704223, 0.022476982, -0.011336902, -0.0071774134, 0.020062642, 0.03238365, 0.0076760272, 0.033800762, -0.026203465, 0.020088885, 0.013147657, 0.016834775, -0.009755772, -0.008397705, 0.0036772764, 0.004054517, 0.0039167423, -0.01791073, 0.005783263, 0.016834775, -0.033905733, -0.004769634, 0.03356458, -0.0029277157, -0.0014171128, -0.026780806, 0.018658651, 0.008259931, 0.018343737, 0.0146041345, -0.6520818, 0.004139806, 0.010864531, -0.03238365, 0.032121222, 0.01818628, 0.017320266, -0.0015458666, -0.019275358, 0.025586758, 0.014433555, 0.021925883, 0.0062490734, -0.024694502, -0.0109563805, -0.027896127, 0.004097162, 0.010602103, 0.022647562, 0.0101756565, -0.008502676, 0.013226385, -0.016493618, -0.019104779, 0.022752533, 0.010621785, 0.017674545, -0.013869335, -0.018527437, 0.017202174, -0.040099043, 0.017845124, 0.0026882498, 0.025822943, 0.05899388, -0.03183255, -0.0101100495, 0.03516539, 0.014800956, 0.043064483, -0.047998134, -0.0042382167, 0.009985397, 0.011802712, 0.0069609103, 0.016532982, 0.013337918, 0.008909441, -0.015378297, -0.0024701064, -0.002950678, -0.0031753823, -0.005150155, 0.009303083, 0.0024635454, 0.0036051085, 0.033879492, 0.03154388, -0.0029162343, 0.00854204, -0.016532982, 0.029628154, -0.008961926, -0.031648852, -0.026583984, 0.021269813, -0.045610037, -0.015391419, 0.025744215, -0.0129442755, 0.012609679, 0.020456284, -0.01836998, 0.020653106, 0.005743899, 0.017503968, 0.0016032729, -0.0006130161, 0.0052551264, 0.001531105, 0.012406297, -0.009066897, 0.00014905106, -0.016559225, 0.042644598, -0.01726778, 0.021072991, -0.010877652, 0.011527162, -0.0019370487, 0.003536221, 0.012380054, -0.01363315, -0.022306405, -0.018107552, 0.0021322297, -0.0058783935, 0.02309369, 0.024012187, -0.010648028, -0.009342447, -0.012760576, 0.0046318593, -0.0046285787, 0.019144144, 0.009040655, 0.00043382676, -0.017057838, 0.0044580004, -0.021742184, -0.022896867, -0.014315463, -0.004097162, -0.016480496, 0.0037724066, -0.026413407, 0.022240797, -0.003460773, 0.030730352, -0.038209558, 0.021217328, -0.0040643583, 0.012458783, 0.016559225, -0.0110219885, 0.0049139694, 0.013239507, -0.002327411, -0.02931324, -0.01754333, 0.03143891, 0.02448456, 0.023028081, 0.0066919215, 0.012097944, 0.01968212, -0.0045334487, -0.003933144, 0.039128058, -0.027633699, -0.03432562, 0.008601087, -0.018789865, -0.007721952, 0.0003108135, -0.013396964, -0.04519015, -0.006652557, 0.0082533695, 0.0003282404, -0.0053305747, 0.011435312, 0.008437069, 0.028184798, 0.013685635, -0.017608939, 0.016834775, -0.007767877, -0.009375251, -0.012589997, 0.0101100495, 0.011697741, 0.0022257199, -0.0058390293, -0.022568833, -0.016834775, 0.002004296, 0.006623034, -0.0025357134, -0.031386424, -0.01983958, -0.01873738, -0.0075776167, -0.016847895, -0.013869335, 0.006993714, 0.01419737, -0.005156716, -0.0011669858, -0.013882456, 0.0046417005, -0.009381811, -0.018763622, 0.008955365, 0.029733125, -0.0030736914, -0.000974265, 0.023356117, -0.012012655, 0.0077350736, -0.007262703, 0.011179445, -0.010759559, 0.011605891, -0.023644788, -0.029523183, -0.0048483624, -0.00019743628, 0.010247825, 0.024537046, 0.016756047, -0.03592643, 0.03238365, -0.019419692, 0.036818687, -0.024746988, 0.014630377, -0.014919048, 0.017661424, 0.0020928655, -0.002440583, -0.016126217, -0.011763348, -0.0059636827, 0.020430041, 0.0011062992, -0.0010431524, 0.028499711, 0.0011727264, -0.01743836, 0.014525406, 0.019721486, 0.012688408, -0.005517555, -0.01892108, -0.0049894177, -0.007288946, -0.0072561423, -0.0102740675, -0.027502485, 0.0069609103, 0.010648028, 0.021676576, -0.0039200224, 0.0035952674, 0.0071511706, -0.006836257, -0.031071508, 0.039757885, 0.009112822, 0.030599138, 0.0052649677, 0.023041204, -0.021387905, 0.024733866, -0.011245052, 0.0137906065, 0.007905652, 4.433603E-06, 0.01939345, 0.015509511, 0.010103489, -0.02857844, -0.010182218, 0.025298087, -0.016060611, 0.026492136, -0.008168081, 0.004740111, 0.019524664, -0.019078536, 0.011382827, -0.0053568175, -0.0031343778, 0.042460896, -0.003395166, -0.023421725, -0.016113097, -0.021650333, 0.000473191, -0.0026882498, -0.013429767, -0.0060883365, 0.005789824, 0.013383843, 0.00046417004, 0.022227677, 0.023395482, 0.0056553297, 0.015811304, 0.00927684, -0.022883747, -0.0003573535, 0.027528727, 0.013777485, -0.014262977, -0.0147353485, 0.0062031485, 0.011527162, 0.035506546, 0.02949694, -0.0034771748, 0.0063081197, -0.008614209, 0.016191825, -0.0065541463, 0.020823684, -0.031412665, -0.006606632, -0.0016016327, 0.016742924, 0.01363315, -0.006764089, -0.022201434, 0.03784216, 0.016454253, -0.0077809985, -0.000115632465, 0.028053584, 0.010083807, 0.011494359, -0.017359631, 0.00089963694, -0.015627604, 0.023946581, 0.00012311577, -0.009847621, -0.025442421, 0.024169644, 0.016493618, 0.00029359164, -0.008929122, -0.039023086, -0.011422191, 0.08418699, 0.030677866, 0.002903113, 0.016559225, 0.022700047, -0.011146641, -0.005675012, -0.019734608, -0.005140314, -0.017241538, 0.027397513, 0.017149689, -0.018711137, 0.0023618545, -0.00059046363, -0.012235719, 0.0023995787, -0.010759559, -0.029916825, -0.012353811, 0.014722227, -0.016559225, -0.0064360537, 0.021125477, 0.0028653888, 0.01789761, 0.00806967, 0.015207719, -0.015050262, -0.0066295946, 0.0017320267, -0.021886518, -0.013777485, -0.0072364598, -0.002486508, 0.0019124461, 0.009388372, -0.028079826, 0.042802054, 0.0027866603, 0.005825908, 0.005324014, -0.0060161683, -0.0044317576, 0.020849926, -0.025284965, -0.007997502, 0.019235993, 0.0060719345, -0.015365176, 0.025442421, 0.016952867, -0.016283676, 0.0066755195, 0.002699731, -0.005586442, 9.328505E-05, -0.005465069, 0.0053207334, -0.02821104, -0.007479206, -0.022385133, 0.023408603, -0.0001318292, -0.023579182, -0.013711878, 0.0033722036, 0.009106262, -0.0118683195, -0.00045309885, -0.005825908, -0.018055066, -0.0101428535, 0.008030306, 0.02309369, 0.0035755853, 0.0012826183, -0.018120673, 0.005583162, -0.0015917915, 0.040781356, -0.011297538, 0.0012949195, -0.014459798, 0.013961185, -0.010766121, 0.010490571, 0.00789253, -0.027581213, -0.008128717, 0.018579923, -0.0029096736, 0.00089225615, -0.004877886, -0.016506739, 0.02292311, 0.011212248, 0.03359082, 0.021164842, 0.000100050784, 0.023028081, 0.000103433646, 0.0064786985, -0.0060096076, 0.007682588, -0.011271295, -0.020863049, 0.025770457, 0.00019313082, 0.018947322, 0.010306871, 0.0018140356, -0.0073414315, -0.010549617, -0.019327844, -0.0036871175, 0.014420434, 0.0050550248, 0.014866563, -0.022148948, -0.0071774134, -0.074739575, 0.034299377, 0.016651075, 0.0003311107, 0.003072051, 0.010976063, -0.01809443, -0.031622607, -0.011192567, -0.0042349366, 0.019747728, -0.01742524, -0.008745423, -0.01566697, -0.0045990557, -0.026583984, 0.0030359672, -0.018474951, -0.00742016, -0.0029441174, -0.0016680598, 0.033249665, 0.028473468, 0.005304332, -0.031675093, 0.005091109, -0.021492876, -0.026111614, 0.031071508, -0.022647562, -0.007308628, -0.004769634, -0.005871833, -0.023133053, -0.03839326, -0.018396223, -0.015155233, 0.02067935, 0.008049987, 0.017136566, 0.0065639876, 0.00031573404, 0.02615098, -0.032147463, 0.017805759, -0.021177962, -0.0049762963, -0.012137308, 0.01465662, -0.00069215463, 0.0024750268, 0.0036280712, -0.008751984, -0.026492136, -0.004323506, 0.00491725, -0.012721211, -0.012911472, -0.014997777, 0.006468857, 0.007098685, -0.0029047532, 0.0018009141, -0.022818139, 0.0017976337, 0.04075511, 0.007833485, 0.011802712, 0.015548876, 0.012544072, -0.024589531, 0.0017172651, 0.0017336669, -0.0017467883, -0.003301676, -0.023907216, -0.030074282, -0.004769634, 0.026400285, 0.006186747, 0.0068296962, -0.012399737, -0.016821653, 0.0037166406, 0.00742016, -0.018146915, -0.014131763, 0.026032886, -0.017097203, -0.021348542, -0.0029080336, -0.008214005, -0.036398802, 0.021939004, 0.007879409, -0.019905185, 0.025127508, -0.012918033, -0.0018960444, 0.0014860001, -0.028237283, 0.049493976, -0.008653573, 0.012918033, 0.0016295157, -0.0055601993, -0.018658651, -0.01919663, 0.0026882498, -0.0016861018, -0.005740619, 0.009224354, -0.010588981, -0.040702626, -0.015430783, 0.020535013, -0.0010218301, -0.0026111614, 0.010523374, 0.034299377, 0.022227677, -0.026334679, -0.025993522, -0.022791896, 0.0060358504, -0.0077613164, 0.0011062992, 0.0046088966, -0.017451482, -0.008450191, 0.051042303, -0.019039173, 0.006967471, 0.018028824, 0.013515057, 0.03542782, -0.008502676, 0.011245052, -0.0018123954, 0.011002306, 0.027502485, -0.00058964355, 0.0063606054, 0.025455544, -0.009047215, 0.023290511, 0.018684894, 0.003664155, 0.021191085, -0.016716681, -0.0051534353, -0.0014868203, -0.002791581, 0.0068624998, -0.00029277155, 0.00030466283, -0.0011284417, -0.00053141726, -0.0108251665, 0.0038248922, -0.022660682, -0.019222872, -0.003765846, -0.010844849, -0.014761591, -0.015142112, -0.023618545, -0.024838837, -0.027345028, -0.012977079, -0.017031595, 0.0091653075, -0.018501194, -0.012052019, -0.0023766162, -0.004038115, -0.0032787134, -0.01920975, 0.01289835, 0.012465344, 0.017674545, -0.004277581, 0.019655878, 0.020587498, -0.028709654, 0.006383568, 0.016546104, -0.008692937, -0.043169454, -0.007059321, -0.008824151, 0.00058103265, -0.012137308, 0.00049984385, -0.009611436, 0.009145626, 0.00024110598, -0.014394191, 0.020771198, 0.010424963, 0.00658695, 0.0537978, -0.022778776, -0.0017123446, -0.0016434571, 0.016034368, -0.007079003, -0.032147463, -0.013108293, -0.009782014, 0.021401027, 0.02225392, -0.013488814, 0.005084548, -0.0034804551, -0.008620769, 0.0006261375, -0.015942518, 0.015575118, -0.0047105877, 0.021191085, -0.019669, 0.021361662, -0.023001838, -0.028263526, -0.015089626, -0.0020206978, -0.016401768, -0.016677318, 0.018711137, 0.04702715, -0.0059505613, -0.031123994, -0.016047489, 0.015142112, -0.043904252, -0.011986412, 0.005343696, 0.0071118064, 0.011363145, 0.01363315, -0.009631118, 0.047368307, 0.019892065, -0.004740111, 0.015850669, -0.007826923, -0.005668451, -0.011369705, 0.016021246, -0.0059505613, -0.015850669, -0.037815917, 0.0043628705, -0.0028260245, -0.00029277155, 0.014512285, -0.0009668842, -0.0048385216, -0.0011907683, 0.014039913, 0.0059177577, 0.029155783, 0.021020506, -0.03839326, -0.010759559, 0.0036707157, 0.012097944, -0.012445661, -0.005428985, -0.0013055807, 0.024943808, -0.007262703, -0.024983173, -0.04051893, -0.0093621295, -0.020193856, 0.018448709, -0.0039364244, 0.006419652, -0.0009849261, -2.0643163E-05, -0.02876214, 0.003163901, 0.004313665, -0.027318785, -0.025914794, 0.024195887, -0.030284224, -0.005678292, 0.010372478, 0.040204015, 0.021689698, -0.021387905, -0.023920339, -0.0043858327, -0.011520602, 0.011573087, 0.0075120097, 0.0061801863, -0.023972824, -0.0133576, 0.015128991, 0.010339675, -0.0024815875, -0.015181476, -0.03348585, -0.0065836697, -0.009782014, -0.002347093, -0.022004612, -0.020744955, 0.00051788584, 0.020626863, 0.025088144, 0.19503671, -0.0036411926, -0.01215699, 0.019970793, -0.002857188, 0.018068187, 0.005865272, -0.011166324, 3.790346E-05, -0.00013193172, 0.009224354, -0.008023744, -0.023539817, 0.0011776469, 0.009847621, -0.008292734, -0.038288288, -0.00871918, -0.013515057, -0.017582696, -0.019052293, -0.004480963, 0.008273052, -0.017608939, 0.03309221, -0.00050066394, -4.395161E-05, 0.01957715, 0.00565861, 0.007354553, -0.011914244, -0.0036280712, 0.0259804, 0.0054880315, 0.0066788, -0.00742016, 0.0062753162, -0.013029564, -0.0020535013, 0.0029851217, 0.0091653075, -0.00853548, -0.011343462, -0.00473027, 0.025179993, 0.026295314, -0.02645277, 0.00056258065, -0.023224903, 0.0045432895, -0.010549617, -0.024602652, 0.019865822, 0.03154388, 0.006301559, 0.0043825526, 0.022201434, -0.02179467, 0.0009266999, -0.0022568833, -0.0026751284, 0.018028824, -0.016349282, 0.032147463, -0.010844849, 0.042224713, 0.018448709, 0.0056651705, -0.015260205, 0.006085056, 0.0029293557, -0.005415864, -0.0146041345, 0.033249665, 0.00046129973, -0.03275105, 0.0110547915, 0.0073217493, -0.009965714, 0.05345664, 0.007846606, 0.0016541183, 0.018160038, -0.006724725, -0.0064983806, -0.04500645, 0.009762332, -0.01976085, 0.00092177937, -0.008614209, 0.01632304, 0.021112356, 0.008738862, 0.004139806, 0.025114387, 0.009519586, -0.018776745, 0.033380877, 0.0016959428, 0.008023744, -0.012373494, -0.001864881, 0.0090340935, -0.0014376149, -0.0137249995, 0.011395948, -0.0029834816, 0.01540454, 0.011074474, -0.014354827, -0.0016303357, -0.024261495, 0.0064065307, -0.022476982, -0.0011948688, 0.013121414, 0.021742184, -0.0068690605, -0.0059177577, -0.0072036562, 0.020023279, -0.004034835, 0.026124736, -0.0035132586, -0.022621319, -0.032908507, -0.003032687, 0.019603392, -0.013252628, -0.021466633, 0.005353537, 0.00014074767, 0.017687667, -0.04101754, 0.0037330424, 0.027345028, 0.03183255, -0.020587498, -0.015942518, 0.013344479, -0.016047489, -0.0065639876, -0.0035296604, -0.0072430205, 0.026977628, -0.031858794, 0.020298827, -0.017884487, -0.012078262, 0.009158747, -0.010083807, -0.018960444, -0.005159996, 0.006367166, 0.017175931, 0.008141838, -0.028237283, -0.036897417, 0.0016811813, 0.01289835, -0.023447968, 0.02968064, 0.020023279, -0.028893353, -0.0048877266, 0.042802054, -0.16606462, 0.013475693, -0.008640451, -0.022411376, 0.022411376, -0.009808257, 0.0021863556, -0.0019698523, -0.031150237, 0.016309919, 0.012754015, 0.028316012, -0.0042644595, 0.011796151, -0.011448434, -0.01177647, -0.005353537, 0.026977628, 0.027686184, 0.0144729195, 0.0268989, -0.02374976, 0.011546845, -0.0019534505, 0.004057797, -0.010759559, 0.0018484793, -0.003506698, 0.008883198, -0.04211974, -0.01307549, -0.030940294, 0.01762206, -0.0011801072, 0.013698757, -0.018684894, 0.005258407, 0.009047215, -0.011015427, 0.027476242, 0.015470147, 0.016060611, 0.0017828721, 0.006596791, -0.0063114003, 0.0020305389, 0.0039134617, 0.00287687, 0.028630925, -0.026610227, 0.03406319, -0.022476982, -0.018251887, 0.006206429, 0.039416727, 0.016375525, 0.019065415, 0.007308628, 0.025075022, 0.0023782563, 0.013324796, -0.016336162, 0.021282934, 0.00032680522, 0.005675012, -0.010129732, 0.002681689, 0.0062949983, -0.0005921038, -0.0062753162, -0.024261495, 0.0076957094, -0.010536496, -0.018540557, 0.02477323, 0.0071577313, -0.029208269, -0.02208334, 0.004471122, -0.024838837, 0.0077416343, 0.029575668, -0.034640532, -0.0011907683, 0.004684345, -0.0001234233, -0.034640532, -0.00045227873, 0.00816152, 0.009873864, -3.4238692E-05, -0.014433555, -0.014879684, 0.01983958, 0.013882456, 0.012307887, 0.027817398, -0.012491587, 0.007164292, -0.013396964, -0.0018238766, -0.022201434, -0.003952826, -0.004070919, 0.007124928, -0.00028785103, 0.026124736, 0.012471904, 0.0050156605, -0.02060062, -0.0045432895, 0.009985397, -0.004786036, -0.0016713402, 0.013751242, 0.00084551115, 0.013016443, -0.03275105, 0.013029564, -0.019878943, 0.026111614, -0.004740111, -0.0059505613, 0.016952867, -0.008305855, -0.011592769, -0.07494952, -0.009473661, 0.020613741, -0.014394191, 0.024694502, 0.009578632, -0.011389388, 0.030126767, -0.011986412, 0.00082049845, -0.01215699, -0.017228417, 0.0020206978, -0.00058185274, 0.024405831, -0.0022322806, 0.021650333, -0.021505998, -0.019813336, 0.014459798, 0.019708363, -0.0067017623, -0.029444454, -0.01493217, -0.026925143, 0.004034835, -0.024327101, 0.01030031, 0.01827813, 0.022122705, 0.00046704034, 0.014787834, 0.017477725, -0.032567352, -0.01892108, -0.029208269, -0.02374976, -0.00992635, 0.039023086, -0.023342997, -0.000723728, 0.008870076, 0.011107277, -0.037501004, 0.005520835, -0.0042152544, -0.007479206, 0.0072036562, 0.037422273, -0.007912213, -0.006577109, -0.010516814, 0.005084548, -0.019629635, 0.03590019, 0.009565511, -0.004854923, 0.004375992, -0.0023520135, -0.008345219, 0.0071708527, 0.0112188095, 0.0053207334, 0.024012187, -0.012655604, 0.006855939, -0.0073873564, 0.0038773778, 0.015890032, -0.0051895194, -0.011658377, 0.020981142, -0.018317495, 0.0061801863, -0.015719455, -0.013620028, -0.037710946, -0.0053207334, -0.0009611436, -0.008043427, -0.017018475, -0.0376847, 0.0062851575, -0.00806967, 0.012537511, 0.004015153, 0.013167339, -0.024642017, 0.0028965522, -0.029549425, 0.020994263, 0.019590272, 0.017320266, 0.0027128523, -0.029077055, 0.017451482, -0.010608664, -0.014249856, 0.0112188095, 0.009847621, -0.013567543, -0.013042686, -0.07447715, 0.022673804, 0.015903154, -0.011527162, 0.005694694, 0.019892065, 0.009900107, 0.0025258723, 0.017582696, -0.015693212, -0.019550906, -0.011382827, 0.0023798966, -0.028552197, 0.005648769, -0.018330615, -0.007485767, 0.02309369, 0.03377452, 0.014066156, -0.014892805, -0.0013236227, -0.013068928, -0.007059321, -0.016952867, 0.008168081, -0.021702819, 0.020928657, -0.008620769, -0.018593045, -0.010077246, -0.016729804, -0.008437069, 0.036897417, -0.025573637, -0.03146515, 0.0054421066, 0.027240057, 0.010260946, -0.04954646, -0.025442421, -0.02448456, 0.02124357, -0.030257981, 0.005242005, -0.019983914, 0.010523374, 0.0109563805, -0.008502676, -0.0016090134, 0.02532433, 0.023618545, 0.007912213, -0.033459608, -0.013974306, -0.016874138, 0.0058685527, -8.457161E-05, -0.0044973646, -0.023815367, 0.04794565, 0.017989459, 0.024615774, -0.019065415, 0.037343547, -0.005002539, -0.017595816, -0.0083189765, 0.009572072, -0.0058980756, -0.024379589, 0.002124029, 0.033643305, 0.016742924, -0.0029178746, -0.008771665, 0.0032081858, -0.005799665, -0.02161097, 0.046239864, -0.007826923, 0.0022388413, -0.04526888, 0.020023279, -0.0004768814, 0.010031321, -0.03876066, 0.0072167777, -0.009880425, 0.022030855, -0.017963216, -0.0043628705, -0.04647605, -0.013265749, 0.027397513, 0.021939004, -0.01039872, 0.0042611794, -0.013764364, 0.02060062, -0.0021945566, 0.017818881, -0.0051632766, 0.011323781, -0.0126162395, 0.0033689232, 0.016191825, -0.03450932, -0.019734608, 0.011415631, 0.015089626, -0.022135826, -0.024707623, -0.0010054284, -0.029916825, 0.013324796, -0.015142112, -0.018055066, -0.01641489, 0.01308205, 0.011323781, 0.021571605, 0.01949842, -0.004490804, -0.0027013712, -0.008850394, -0.010556178, -0.0131739, 0.008837272, 0.016847895, 0.026190342, 0.01901293, 0.019419692, -0.013462571, -0.021479756, 0.0109235775, 0.015601361, 0.03498169, -0.00040983918, 0.059991106, 0.0068624998, -0.01808131, -0.007164292, -0.019183507, -0.0073217493, -0.0022027574, 0.0056618904, -0.018015701, -0.051987045, 0.022581954, 0.013593785, -0.016913503, -0.002114188, -0.03498169, 0.004618738, 0.03080908, -0.0060981773, -0.01976085, 0.015483269, 0.021545362, -0.023172418, 0.019367207, -0.009257157, -0.024576409, -0.017005352, 0.028184798, 0.0076760272, -0.00556676, 0.0007097865, 0.013429767, -0.015614483, -0.008496116, 0.000825419, -0.0039954707, -0.020154493, -0.021086114, -0.00075735163, -0.0131739, 0.012235719, -0.0078006806, 0.014879684, 0.007439842, -0.020351313, 0.018698016, 0.013193582, -0.011363145, -0.016008126, -0.0047565126]
+ },
+ {
+ "Id": 9,
+ "Type": "Navigation",
+ "Brand": "AirStrider",
+ "Name": "VenturePro GPS Watch",
+ "Description": "Navigate with confidence using the VenturePro GPS Watch by AirStrider. This rugged and durable watch features a built-in GPS, altimeter, and compass, allowing you to track your progress and find your way in any terrain. With its sleek black design and easy-to-read display, this watch is both stylish and practical. The VenturePro GPS Watch is a must-have for every adventurer.",
+ "Price": 199.99,
+ "Embedding": [0.002450721, -0.0155009795, -0.0058567505, -0.028598497, 0.004614512, 0.012820714, -0.010795325, -0.03672706, 0.006707414, -0.024682743, 0.003750346, 0.011585227, -0.019268204, -0.021550143, -0.0020220138, -0.0026768895, 0.01420473, -0.015595498, 0.0057082223, -0.0052930173, -0.020267395, 0.012685688, 0.022657355, -0.015676513, -0.012267108, -0.012894979, 0.01103162, -0.001143501, 0.022751873, -0.0010076312, 0.026127523, 0.008385112, -0.010451009, -0.017040275, 0.0050634732, 0.005785862, -0.004560502, 0.0012430827, 0.019052163, -0.003787478, 0.009505827, -0.011510963, -0.019430235, 0.011213905, -0.038212344, 0.008715926, -0.0054786783, -0.015622503, -0.007048355, 0.0028591745, -0.00128781, 0.011997056, -0.016500171, -0.005279515, 0.023008423, -0.008756433, 0.022225272, -0.0020422675, 0.019173685, -0.035349794, -0.009735371, -0.0007603649, -0.014758336, 0.030326828, -0.013988689, -0.010410501, -0.027950373, -0.013934678, 0.011537968, 0.021428619, 0.037645236, 0.01726982, 0.0155009795, 0.020145873, -0.007048355, -0.025411885, -0.011612232, -0.0009856895, -0.012402134, 0.022387303, 0.002354515, -0.016405653, 0.0048001725, 0.015082399, 0.02024039, 0.00894547, -0.012712694, 0.014218233, -0.012530409, -0.009721869, -0.0004200573, 0.008918464, -0.010498268, 0.019376224, -0.018633582, -0.003238935, -0.0038246103, 0.017215809, 0.0006017094, -0.027788341, 0.0009671234, -0.016743219, -0.0018312895, -0.013070513, -0.03027282, -0.0051883725, 0.016635198, -0.018971147, 0.02018638, -0.0064609917, -0.027329253, 0.030731907, 0.036294978, 0.0096678585, 0.0021688545, -0.042992264, 0.03475568, 0.017904442, 0.0036018174, -0.019187188, 0.03615995, -0.011936294, 0.0504457, 0.0030718404, 0.0069268313, 0.020766992, -0.020402422, 0.0077842465, 0.024372185, -0.018687593, 0.0054516727, 0.03043485, 0.020172877, 0.0027545295, -0.011362434, 0.017229311, -0.0050330926, 0.023467511, -0.028706517, 0.009424811, 0.007183381, 0.015109404, -0.01920069, 0.008763185, -0.030623887, -0.008526889, 0.008547143, 0.009499076, 0.028598497, 0.010775072, 0.031136986, -0.029435659, 0.025870973, -0.0076964796, -0.021901209, 0.010883092, -0.0033131994, 0.0073589147, -0.016014079, 0.0014886612, 0.012611425, 0.01415072, 0.029732715, 0.019268204, 0.041533984, 0.019538255, -0.0085809, 0.002266748, -0.008898211, -0.007318407, -0.0041081645, 0.011274667, -0.03038084, 0.0028912432, 0.009377552, 0.0075884587, 0.0022329916, -0.0048879394, -0.017607385, 0.007217137, 0.0060120304, -0.010903345, -0.013509347, 0.0035916904, -0.007014598, -0.0063462197, 0.01617611, 0.011720253, 0.010180957, -0.019227697, -0.0033756488, 0.01211858, 0.0035815635, 0.011929543, -0.6425075, -0.022360299, -0.010288978, -0.021415116, 0.032649275, 0.0033115116, 0.007568205, 0.024885284, -0.0091142515, 0.028274436, 0.007102365, 0.015676513, -0.017661395, -0.015419964, -0.0041452968, -0.016851239, 0.005475302, -0.03262227, 0.02835545, 0.0039090016, -0.030515866, 0.017580379, -0.0010506707, -0.0057048467, 0.008175822, 0.017580379, 0.007730236, -0.027113212, -0.024642237, 0.023170454, -0.023737563, 0.026829656, -0.008405366, 0.010660299, 0.048636347, -0.05779111, -0.021199076, 0.043073278, 0.004729284, 0.04002169, -0.010086439, -0.007912521, 0.005367282, -0.024507212, -0.018269012, 0.002805164, 0.03907651, -0.02533087, -0.0011916041, -0.030758912, 0.021145064, -0.0021958596, 0.000557404, 0.00795978, 0.002952005, -0.018012462, 0.026978185, 0.012894979, 0.019011654, -0.00297901, -0.011625735, 0.014744834, 0.013077264, -0.023386495, -0.012030813, 0.04015672, -0.03262227, 0.010788574, -0.0031764857, -0.025384879, 0.024736755, 0.026316559, 0.010484765, 0.02299492, 0.022198267, 0.032325212, 0.0058905073, 0.000566687, -0.008256837, 0.0070213494, 0.032298207, -0.012948989, -0.014920368, 0.0010979298, 0.022522328, 0.000326805, -0.013070513, 0.0006190096, 0.011868781, 0.008216329, 0.0044963644, 0.020469934, -0.018187996, -0.008877956, -0.025965491, 0.017094286, -0.017148295, 0.0064879972, 0.01134218, -0.025033811, -0.025357874, 0.014069704, 0.0035613095, -0.0014743146, 0.0057824864, 0.026249046, 0.01971379, 0.006606145, 0.003087031, -0.032271203, -0.029921751, -0.027396766, -0.017580379, -0.0038381128, -0.024466703, -0.026937678, 0.015649509, -0.01493387, 0.020834506, -0.018079976, 0.021766184, -0.031190995, 0.023629542, 0.010268724, -0.027450776, 0.008850952, 0.015581995, -0.008776687, -0.026438082, -0.012604672, 0.0076087127, 0.005677841, 0.010369993, 0.016351644, -0.012300865, 0.008661915, 0.010673801, -0.010363242, -0.0044558565, 0.010660299, -0.013279802, 0.01945724, -0.010207962, -0.014609808, -0.016621696, -0.033729482, -0.021023542, -0.016662203, -0.013171782, 0.002864238, 0.005502308, -0.021347603, 0.0035343044, 0.013826658, 0.02434518, -0.01654068, -0.010775072, -0.017364338, -0.0031562317, -0.015581995, 0.004152048, 0.010545527, 0.002442282, -0.016446162, 0.016149104, -0.011450201, -0.011429947, 0.039319556, -0.02585747, -0.027842352, 0.004702279, 0.025047315, -0.012881476, 0.056332827, 0.0012135458, 0.014420772, -0.021361105, -0.02075349, 0.008972474, 0.0004595102, -0.006194316, 0.012314367, -0.035133753, -0.0056677144, 0.0065352563, -0.0032456864, 0.008985978, 0.020848008, -0.00071183994, 0.017445354, 0.0049453257, 0.0062381993, 0.009222273, 0.0150418915, -0.0046651466, 0.004729284, 0.018822618, 0.010505019, 0.007277899, 0.02715372, 0.025816962, -0.025114827, 0.015906058, -0.024061626, 0.018660586, -0.023764567, 0.0005523405, -0.010106693, 0.004796797, 0.01259117, 0.007365666, -0.020226888, -0.0068019326, -0.0044558565, 0.009742122, -0.0001327052, 0.018269012, 0.012456144, 0.0011738819, -0.012267108, 0.0029351267, 0.021037044, 0.005910761, -0.03505274, -0.01264518, 0.028679512, -0.008567397, 0.0124696465, -0.003547807, -0.0343236, 0.045800805, 0.022306288, 0.020726483, 0.009748874, 0.015690016, 0.018296016, -0.0032372472, -0.011794517, 0.011760761, 0.015014886, 0.017283322, 0.013070513, 0.022414308, -0.017917944, 0.024439698, 0.029219616, 0.03453964, 0.008871205, 0.0024068377, 0.029597688, -0.015987072, -0.021995729, -0.0026701381, 0.0078045, -0.0022481822, -0.021388112, 0.0155009795, 0.003441474, 0.026775647, 0.023899594, 0.0051849964, 0.009424811, -0.011713501, 0.012564165, 0.003767224, -0.007304904, -0.011672994, -0.0044761105, 0.0008160631, -0.01284772, 0.037132137, -0.017026773, 0.014663818, 0.009836641, 0.032757297, -0.027531791, 0.032271203, 0.0052153775, -0.0047596646, 0.010552279, 0.012273859, -0.03351344, 0.024129137, 0.01934922, 0.0030077032, -0.009613848, -0.009971667, 0.017796421, -0.023589034, 0.039832655, -0.034431618, 0.0022329916, 0.009620599, -0.0034195322, 0.007818003, 0.0012987809, 0.02664062, -0.029381648, 0.004989209, -0.023562029, -0.018025964, 0.014029196, -0.007642469, -0.030083783, 0.042155102, 0.009262781, -0.012665435, -0.012003807, 0.018120483, 0.0094383145, -0.010916849, -0.018025964, 0.0062652044, -0.028625501, -0.0064171082, 0.015784534, -0.022441313, -0.0098974025, 0.0054921806, 0.014056202, -0.014299248, -0.011774263, -0.002239743, 0.0035781877, 0.08836099, -0.0048980666, 0.010660299, -0.0056947195, -0.0041756774, -0.020942526, -0.028760528, -0.021388112, 0.030326828, 0.00795978, 0.005218753, -0.0044356026, -0.005853375, -0.028517481, 0.0395356, 0.021145064, 0.006315839, -0.019524753, -0.01264518, 0.0032102421, 0.0036592034, 0.009276283, 0.022913905, 0.009586843, 0.017080784, 0.00429045, 0.03318938, -0.00816907, 0.022225272, -0.0026397575, 0.00894547, -0.0024355305, 0.0003778617, 0.013738891, -0.012145584, -0.004722533, -0.015406461, 0.014677322, 0.020253893, 0.015082399, 0.021266587, 0.024250662, 0.0031461047, -0.015406461, 0.0031326022, 0.0043613384, -0.0018701095, 0.0014523729, 0.009775879, -0.012604672, 0.0048980666, 0.0043208306, 0.0037942294, -0.0369431, -0.009802884, 0.013772647, 0.006258453, 0.006457616, -0.018133985, -0.03756422, -0.0008709174, -0.014434274, 0.01623012, 0.01555499, 0.0068491916, -0.007095614, -0.004125043, -0.00029473635, -0.023143448, -0.024858277, 0.00759521, -0.011841776, 0.0037064624, -0.009093998, 0.025411885, 0.020037852, 0.007838257, -0.013246046, 0.007466935, 0.0166487, 0.032298207, 0.009249277, 0.010964108, 0.0077032307, 0.017148295, 0.010187708, -0.020024348, 0.007500692, 0.00947207, -0.0008544611, 0.0021553517, -0.008486381, 0.024669241, -0.008007039, -0.0094855735, -0.018323023, 0.011470455, 0.011585227, 0.016689207, 0.009924408, 0.030920943, -0.027761336, -0.010592786, 0.0044963644, 0.03615995, 0.008007039, -0.005650836, 0.006940334, 0.003689584, -0.004371465, -0.0062179454, 0.000720701, 0.003222057, 0.0014869734, -0.0070213494, 0.00084053655, 0.009566589, -0.008418868, 0.01519042, -0.013725388, -0.027288746, -0.022184765, 0.034188572, 0.013637621, 0.013705134, 0.034053545, 0.014542296, -0.002460848, -0.001106369, 0.030947948, -0.006727668, 0.016216617, 0.001932559, -0.014326254, 0.009451817, -0.031001959, -0.017148295, 0.008088055, -0.010849335, -0.011483957, -0.020213386, -0.007905769, 0.022913905, 0.017445354, 0.001922432, -0.019187188, -0.03324339, -0.019632773, -0.038617425, 0.027275242, -0.033324406, 0.0072914017, -0.012928735, -0.015473974, -0.009215522, -0.03621396, -0.031001959, 0.004077784, 0.035160758, 0.016324637, 0.003807732, -0.015473974, 0.005920888, 0.007338661, 0.001336757, -0.0041858046, -0.0124696465, -0.010525273, -0.025357874, 0.012726196, 0.013779399, -0.002622879, -0.017593881, -0.021725675, -0.027977377, 0.010383496, -0.0009865334, 0.0085809, -0.004519994, -0.06286808, -0.007487189, -0.011483957, -0.0038583667, 0.0035511826, -0.038995497, -0.011308423, 0.03610594, 0.014272244, -0.004337709, -0.00037659582, 0.011821522, -0.009721869, 0.014164222, 0.006987593, 0.027288746, -0.0068323133, 0.006795181, -0.033540446, 0.0060491627, 0.028517481, -0.023035428, -0.008972474, -0.01024847, -0.004702279, -0.028274436, 0.028733524, 0.0029469414, 0.0082433345, 0.00663315, -0.0023663298, -0.004104789, -0.02137461, -0.013178533, -0.03110998, 0.0031072847, -0.010059434, 0.0067242924, 0.013482342, -0.024426196, -0.017823426, 0.016770223, -0.017566876, 0.0038144833, -0.009384303, 0.014002192, 0.028274436, 0.00036900063, -0.015392959, -0.02408863, 0.023021925, 0.019538255, -0.008736179, 0.010687305, -0.019268204, -0.04239815, 0.00941806, 0.02086151, -0.010079687, -0.005765608, 0.008567397, 0.026829656, 0.014393766, -0.017283322, -0.016554182, 0.0010658611, 0.029516673, -0.018498555, 0.018687593, 0.008628159, 0.0038111075, -0.016999768, 0.00905349, -0.026600113, 0.009519329, 0.0213341, -0.0039765146, -0.0017350835, 0.018998152, 0.0026718262, 0.0002776471, 0.013792901, 0.013752393, 0.0035815635, 0.017431851, 0.0015165103, 0.01524443, -0.0045233695, 0.012739698, -0.0022583092, 0.020118868, -0.004871061, -0.026694631, 0.016716214, -0.008736179, 0.011504211, 0.00967461, -0.022873396, -0.017364338, 0.0064137327, -0.013408077, 0.009775879, 0.018187996, -0.02044293, -0.033459432, 0.007007847, -0.001230424, -0.0047124056, -0.011335429, -0.0066770334, -0.020658972, -0.02986774, -0.013988689, 0.03291933, -0.0058196187, 0.009296537, 0.0011873845, 0.0044558565, 0.016014079, -0.036565028, -0.005549567, 0.014555798, 0.01440727, -0.018350028, 0.037861276, 0.014299248, -0.03510675, 0.007642469, 0.0048811883, -0.017863933, -0.03840138, -0.011774263, -0.001240551, 0.0006430611, 0.011119387, -0.015068896, -0.006612896, 0.005313271, -0.0023207585, -0.0144477775, -0.008425619, 0.027491285, 0.00050043996, 0.033216383, -0.04083185, 0.016837737, -0.017823426, 0.00894547, 0.011254413, -0.010842584, -0.0057723597, -0.01675672, 0.0038516154, -0.00057048467, -0.035808884, -0.027977377, 0.003605193, -0.010478014, 0.009890651, -0.006261829, 0.0035916904, 0.020848008, -0.003164671, -0.011558222, -0.0015266372, -0.01898465, -0.007068609, 0.01139619, -0.022967914, -0.008196075, -0.007534448, 0.0004776543, 0.037861276, 0.0050499705, -0.026721636, -0.008034044, -0.011254413, -0.030677896, -0.017418347, -0.009964915, 0.024156144, 0.022711365, 0.023589034, -0.00853364, 0.032865316, -0.0046583954, 0.024291169, 0.012334621, -0.018863127, 0.004239815, -0.0022886898, -0.0064744945, -0.015987072, -0.022778878, -0.027086206, -0.0034836696, 0.009870397, -0.014110212, 0.007986785, -0.011315175, -0.025749449, -0.0029165605, -0.007757241, 0.048933405, 0.028220424, -0.0004776543, -0.041614998, -0.03116399, -0.0038279858, 0.011990305, -0.005536064, 0.028031388, 0.019983841, 0.014042699, 0.012827465, -0.0033115116, -0.030299824, -0.012098325, 0.010599538, 0.009087247, -0.016216617, 0.0033587706, 0.018795613, 0.012327869, -0.018377032, 0.005016214, 0.007048355, -0.0066939117, -0.0053402763, -0.004837305, -0.027099708, -0.020658972, 0.007034852, 0.014798844, -0.004209434, -0.007460184, 0.0015114468, 0.0104037495, -0.007797749, 0.023183957, 0.021968722, 0.0055326885, -0.011247662, 0.009330293, -0.0018059722, -0.010106693, -0.02403462, 0.007993536, -0.018539064, 0.010005423, -0.0022009232, 0.0052221287, -0.008952221, 0.03105597, -0.024075128, -0.0011215593, 0.014002192, 0.21787788, 0.018539064, 0.0046246387, 0.01555499, 0.015771031, 0.030029772, 0.009012982, 0.005610328, 0.02122608, -0.004229688, 0.008763185, 0.013509347, -0.029489668, -0.0065892665, 0.017445354, -0.029840736, -0.034620654, -0.010525273, -0.022360299, -0.0029739467, 0.023859086, 0.0015882428, 0.030731907, -0.033270396, 0.009701615, -0.009910905, 0.0006612052, -0.014839352, 0.028247429, 0.041020885, -0.015946565, -0.028274436, 0.008175822, -0.010484765, 0.0008029825, 0.01108563, 0.01659469, 0.028490476, -0.011558222, -0.0018903634, -0.0068863234, 0.016918752, -0.0010034116, -0.028031388, 0.026114019, 0.0010228216, -0.01513641, -0.005066849, -0.016878244, -0.012415636, -0.018201498, -0.009985169, 0.014920368, -0.0056845928, -0.024331678, -0.00044474175, 0.013259549, -0.039481588, 7.684876E-05, -0.002432155, -0.016270628, 0.0025013557, -0.0044761105, 0.0040237736, -0.011207154, 0.022117252, 0.010741315, -0.0009257717, 0.02242781, -0.0016574436, 0.010680553, -0.0064643677, 0.0075411997, 0.029678704, 0.0028608623, -0.028139409, 0.016716214, 0.0035984416, 0.013853663, 0.0077707437, 0.013738891, -0.012024061, 0.0077234847, -0.031758104, -0.006626399, -0.031001959, -0.00470903, 0.0042533176, -0.00068399083, 0.00042997327, 0.008925215, -0.020348411, -0.011882284, -0.012807212, -0.013354067, 0.017553374, -0.012125331, 0.030758912, -0.000999192, 0.0070618573, 0.0016110284, 0.01654068, -0.006987593, -0.0013316935, -0.014528792, 0.000500018, 0.0020253893, 0.026802652, -0.025762953, -0.01384016, -0.022967914, -0.02221177, 0.0131582795, -0.017364338, 0.009775879, 0.018079976, -0.006018782, -0.009607096, 0.0120105585, -0.014866358, 0.03643, -0.016351644, 0.0059748986, 0.011504211, 0.003672706, -0.026005998, 0.00018165211, 0.0037604729, -0.002037204, -0.026492093, -0.0099446615, -0.0041587995, 0.0187281, -0.04031875, 0.007568205, -0.008958972, 0.015284938, -0.01857957, -0.015149912, 0.0056879683, 0.018552566, -0.010349739, 0.0021992351, 0.026775647, 0.03178511, -0.022360299, -0.0013511034, 0.007851759, 0.00827034, -0.0060154065, 0.004152048, -0.008074552, 0.002663387, -0.011308423, -0.007845008, -0.0010920224, -0.048501324, -0.014056202, 0.00061014853, -0.020564454, -0.015311943, 0.029084591, 0.038941484, -0.011429947, -0.02819342, 0.020226888, -0.1721851, 0.03256826, 0.01987582, -0.025978994, 0.0007928555, -0.0037165894, 0.023454009, 0.0007536136, -0.028571492, 0.007851759, 0.02470975, -0.01139619, -0.03308136, -0.020348411, 0.0094855735, 0.005006087, -0.024777263, 0.019295208, 0.0082433345, 0.0064069815, 0.006940334, 0.0048778127, 0.010754817, -0.0014819099, -0.00034199542, -0.016189612, -0.010687305, 0.011693248, 0.00063884153, -0.028058393, 0.015487477, -0.01311102, 0.038887475, 0.0024726628, 0.012577668, -0.029894747, -0.020726483, 0.0038684935, -0.010282227, 0.022157758, -0.0021182196, 0.017256318, 0.050607726, 0.0076492205, 0.01165274, 0.019011654, -0.005124235, 0.005130986, 0.012570917, -0.017391343, 0.0025064193, -0.0150418915, -0.02684316, -0.0006498124, 0.023129946, -0.00073757925, 0.0020979657, -0.0145693, 0.0015291689, -0.030677896, -0.01003918, -0.0067141657, -0.010018926, -0.0051681185, -0.01055903, -0.01420473, -0.007257645, 0.011531216, 0.00038946548, 0.01123416, -0.024129137, -0.0067816786, 0.0058094915, -0.0076492205, 0.0015949941, -0.005279515, -0.024304671, 0.033027347, -0.00678843, -0.00079243357, 0.0025030435, 0.011517714, -0.03408055, 0.006741171, 0.001903866, -0.016837737, -0.0047427868, 0.007932775, -0.004661771, 0.0068390644, 0.0096678585, -0.027288746, -0.02408863, 0.0061841886, 0.026492093, 0.018525561, 0.027599305, -0.0145693, 0.004131794, -0.033216383, 0.010937102, -0.015933063, -0.020577956, 0.009012982, 0.03599792, 0.008769936, 0.03283831, -0.002700519, 0.02720773, 0.007622215, -0.034269586, 0.011639237, 0.001451529, 0.019740794, 0.0029958885, 0.014839352, -0.0053774086, -0.026087014, -0.0039663874, -0.0004316611, 0.0051377374, -0.018120483, -0.03896849, 0.0033435803, -0.007142873, -0.012395383, -0.09495025, -0.028274436, 0.023291977, 0.017107788, -0.009188516, 0.01378615, -0.004064281, 0.003087031, 0.010261972, 0.02819342, -0.0013916113, -0.03621396, 0.00743993, 0.0038144833, 0.013192035, -0.015095902, 0.02403462, -0.022238774, -0.0062787067, 0.026127523, -0.012786957, -0.012132082, -0.00060424116, 0.0047799186, -0.014177725, -0.0026515722, -0.023589034, -0.0058770045, 0.040696822, -0.00079327746, 0.011159895, 0.0011291546, 0.018025964, 0.0014498412, -0.033000343, -0.0061166757, -0.037645236, -0.010187708, 0.020821001, -0.022481821, 0.015676513, -0.007217137, -0.0031477925, -0.05087778, -0.008783438, 0.015663011, -0.008513386, 0.0015333885, -0.007500692, -0.01639215, -0.013752393, -0.025209345, 0.00040233514, -0.01357686, -0.006437362, -0.014501788, -0.016689207, 0.01409671, 0.00035971758, -0.002864238, -0.02840946, -0.0085201375, -0.03138003, 0.026991688, -0.0036760815, 0.0078045, -0.017836928, 0.011774263, 0.029219616, 0.0019258077, -0.015960068, 0.017647892, -0.022697862, 0.029732715, -0.012786957, -0.009127755, -0.020118868, -0.0018397287, 0.015095902, 0.0007515038, -0.009154759, -0.01914668, 0.022252277, -0.04301927, -0.005316647, 0.044720598, 0.0014819099, 0.004874437, 0.001460812, -0.03553883, 0.02434518, 0.028058393, 0.0010110069, 0.006174062, -0.02658661, -0.025033811, 0.0050499705, -0.011490709, -0.023886092, -0.024736755, -0.008027293, 0.0029925127, -0.075506516, 0.007872013, 0.00079749705, 0.0007392671, -0.010802076, -0.0030684648, -0.01670271, -0.023562029, 0.034458622, -0.021185571, -0.004567253, -0.009391055, 0.011355682, -0.0105860345, 0.016608192, -0.008925215, 0.01493387, 0.002805164, 0.019295208, -0.004952077, -0.02460173, 0.0077707437, -0.0016076528, 0.010255221, -0.009607096, -0.004067657, -0.013482342, -0.008992729, 0.016000576, -0.03834737, 0.009958164, 0.0034870452, 0.0012337996, 0.018701095, -0.009580092, -0.011463704, -0.007601961, 0.014380264, -0.00619094, -0.0042161853, 0.0067141657, 0.0009882211, 0.03146105, -0.006309088, -0.007919272, -0.022522328, -0.011186901, -0.009370801, 0.02507432, 0.008790189, -0.004182429, 0.010802076, 0.014177725, -0.020483438, -0.034620654, -0.028139409, -0.007574956, -0.013232543, -0.0061301785, -0.019308712, 0.05066174, 0.011679745, 0.022130754, -0.00047638844, 0.01785043, 0.004209434, -0.025735946, -0.015771031, 0.0039393823, 0.018998152, -0.0010996176, -0.015446969, 0.036565028, -0.015771031, 0.0048575588, -0.012827465, 0.012179341, -0.000922396, -0.025735946, 0.014744834, 0.014704326, 0.017283322, -0.050634734, 0.020172877, 0.01295574, 0.0011975114, -0.024129137, -0.01451529, 0.003029645, 0.0021941718, -0.015176917, -0.011166646, -0.028490476, -0.021550143, 0.005711598, 0.01836353, -0.008054298, -0.018701095, 0.027032197, 0.029111596, 0.0015224176, 0.008418868, -0.009566589, -0.02122608, -0.0065521346, 0.023710558, -0.010694056, -0.021050546, -0.017971955, -0.0145828035, 0.0068761967, 0.008250086, -0.011855279, 0.017188804, -0.00025401756, -0.0059276395, -0.016810732, -0.019106172, -0.018160991, 0.009998672, 0.022643853, 0.015527985, 0.010363242, -0.0082433345, -0.00079960685, -0.019362722, 0.003777351, -0.011038371, -0.0049959603, -0.013516098, 0.031353027, 0.0068896995, 0.02086151, -0.010822331, -0.0061301785, 0.012159087, -0.0060052793, 0.02678915, -0.065946676, 0.07340011, 0.015311943, 0.0010844272, -0.009148008, -0.026397575, 0.008020542, 0.01108563, 0.004668522, -0.036916096, -0.027612807, -0.0062111937, -0.00033777585, -0.0002797569, 0.028652508, -0.0035545581, 0.021968722, 0.014042699, 0.023521522, -0.039103515, 0.0062111937, 0.04037276, -0.018957645, 0.002747778, 0.009505827, -0.007271148, -0.0053436523, 0.015001384, 0.029516673, -0.013597114, -0.014299248, 0.013752393, -0.019052163, -0.022090247, -0.008769936, -0.0051748697, -0.014218233, 0.0033503314, -0.015676513, -0.0027224608, 0.04396445, 0.01217259, -0.006450865, -0.0007257645, -0.009242526, 0.0038043563, -0.0028338572, -0.019578764, -0.021158567, -0.012692439]
+ },
+ {
+ "Id": 10,
+ "Type": "Cycling",
+ "Brand": "Green Equipment",
+ "Name": "Trailblazer Bike Helmet",
+ "Description": "Stay safe on your cycling adventures with the Trailblazer Bike Helmet by Green Equipment. This lightweight and durable helmet features an adjustable fit system and ventilation for added comfort. With its vibrant green color and sleek design, you'll stand out on the road. The Trailblazer Bike Helmet is perfect for all types of cycling, from mountain biking to road cycling.",
+ "Price": 59.99,
+ "Embedding": [0.0034957307, -0.023445051, -0.018661419, -0.02323478, 0.004011548, 0.004356521, -0.0016837989, -0.036455475, 0.020566987, -0.017610071, 0.009501553, -0.0014694225, -0.0084370645, 0.0006829652, -0.0025199486, 0.00541444, 0.030830767, 0.0028501374, -0.017110681, -0.005125319, 0.0026530097, 0.003683002, -0.0126096, -0.0045635053, -0.019410504, -0.01532339, 0.021040093, -0.02159205, 0.016414164, -0.011150855, 0.016611291, 0.027939562, -2.933814E-05, -0.0075565604, -0.008522486, 0.015073695, 0.019134525, 0.002529805, 0.01225477, 0.021776035, 0.03156671, -0.00052608445, 0.0060222503, 0.011538539, -0.028333817, 0.017728347, 0.006321227, -0.019686483, -0.030594213, 0.010605468, -0.007162305, 0.0069914614, -0.01126256, -0.0009889238, 0.009751248, -0.0032887466, 0.024732951, 0.0019039247, 0.020501276, -0.020685263, -0.028097263, -0.019423647, -0.026888214, 0.0084370645, 0.0050760373, -0.013030139, 0.0026842216, 0.008575054, 0.012208774, 0.018004326, 0.02215715, 0.0067417664, 0.021040093, 0.014206334, 0.005407869, -0.015651936, -0.013266692, -0.020225298, 0.0056608496, 0.0063113705, 0.015717646, -0.015704503, -0.009803816, 0.010178358, 0.022827383, 0.0049051936, -0.0012722948, 0.009560692, -0.017084397, 0.0037388548, -0.025376901, -0.012392759, 0.0009429273, 0.0051713157, -0.019410504, 0.027466455, 0.0015556659, 0.02686193, 0.021960022, -0.00010944692, -0.0013067921, -0.0025758015, 0.017426085, -0.0154153835, -0.034457915, -0.029726852, -0.011170568, 0.02629683, 0.0077076918, 0.0022094725, -0.018503716, 0.03085705, 0.019318512, -0.00933728, -0.0042710993, -0.005158174, 0.015796497, 0.011144284, 0.0021306216, -0.03014739, 0.018411724, 0.0042119613, 0.012051071, -0.03298603, -0.0018940683, 0.004639071, -0.027308753, 0.0029733423, 0.034720752, -0.0044288016, -0.014442887, 0.0083779255, 0.010671178, -0.0112231355, -0.025061497, 0.021460632, 0.001902282, 0.008345071, -0.03148786, -0.002041914, -0.0053257323, 0.009416131, -0.0038374185, -0.005194314, -0.008660476, 0.0046784966, -0.007076883, 0.034747038, -0.0057429858, -0.004090399, 0.019476213, -0.027519021, 0.030199958, 0.01232705, -0.00033922386, 0.021933738, 0.00719516, 0.017123824, -0.023103362, -0.006662915, -0.0026546526, -0.031014754, 0.033537988, -0.009974659, 0.030594213, 0.02036986, 0.005335589, -0.008916741, -0.014350894, -0.015441667, -0.0025692305, 0.044997673, -0.024417548, -0.005687133, -0.011347983, 0.005043183, 0.014166908, -0.0034464486, -0.0068863262, -0.012451897, 0.013943497, -0.008653904, 0.011367695, 0.0062456615, -0.016729567, -0.0075499895, 0.023839306, -0.024535824, -0.0037487112, -0.016453588, 0.014469171, 0.015139405, -0.015875349, -0.008910171, -0.6543587, -0.0054045836, -0.0072871526, -0.02928003, 0.012767302, 0.0064230766, 0.0032805328, 0.010362344, -0.018254021, -0.0020287721, -0.000104056715, 0.033143733, -0.0036797165, -0.0037388548, 0.0075434186, -0.016269604, 0.01590163, -0.013338972, 0.04005634, -0.0065019275, -0.022827383, -0.029437732, -0.022222858, 0.009304426, -0.0002603728, 0.019725908, 0.016111901, -0.005792268, -0.002889563, 0.0145348795, -0.021263504, 0.043341804, 0.006327798, 0.0072805816, 0.050701234, -0.018516859, 0.0016903697, 0.04160708, 0.010375486, 0.024667243, -0.012530749, -0.024890654, 0.008358213, 0.0008846104, -0.005614853, 0.022170292, 0.046837535, 0.002889563, 0.017859766, -0.021960022, 0.016834702, -0.0077471174, 0.01368066, 0.009521266, -0.009954947, -0.0063113705, 0.039662085, 0.024680384, 0.011321699, 0.014035489, -0.036376625, 0.010855163, -0.013864646, -0.014258901, -0.022459412, 0.019831043, -0.02422042, -0.022354277, -0.010638323, -0.014837142, 0.007937674, 0.009133582, -0.004438658, 0.014718866, 0.017491795, 0.037375405, 0.024167852, 0.0023934585, 0.0068140463, 0.010414911, 0.044209164, 0.010447767, 0.00541444, -0.01488971, 0.015494235, -0.019463072, 0.0032526064, -0.012267912, 0.028754355, 0.020908674, 0.029411448, 0.023997007, -0.0183723, -0.030226242, -0.013969781, 0.021210937, -0.0040082624, 0.025705447, 0.029569149, -0.026967065, -0.018122604, -0.008069092, 0.0107566, 0.010947157, 0.006314656, 0.011479401, 0.034379065, -0.008575054, 0.02209144, -0.029516583, 0.004330238, -0.012885578, -0.019568207, -0.019555064, -0.005407869, -0.03298603, 0.02849152, -7.9518424E-05, 0.022209717, -0.04909793, 0.02671737, -0.00040164762, 0.022682823, -0.025179774, -0.0033298149, 0.005604997, 0.008699901, 0.010382057, -0.03235522, -0.0018004327, 0.012563603, 0.013102419, 0.023050794, 0.013082706, 0.013943497, 0.02615227, 0.0016788706, -0.007996812, -0.002914204, -0.02115837, -0.010467479, 0.0010258852, -0.016322171, -0.0074579967, -0.03477332, -0.021132085, -0.005779126, 0.0031918255, -0.0024542394, -0.0012739375, 0.013562383, -0.0022291853, 0.009711823, -0.019397363, 0.005273165, -0.008082234, -0.022222858, -0.012097068, -0.00077085133, -0.009074444, 0.022406844, -0.0017281525, 0.006925752, -0.015835922, -0.02828125, 0.026585951, -0.013614951, 0.025232341, 0.0056739915, -0.053198185, -0.007917961, -0.021145228, -0.04147566, 0.022196576, -0.02051442, -0.0041659647, -0.014705724, -0.02998969, 0.030173674, -0.00054826133, -0.010283493, 0.002963486, -0.018411724, 0.02001503, 0.027413888, -0.0076419823, 0.0059039737, 0.04026661, -0.0111048585, 0.024785519, 0.018950539, -0.0023934585, -0.010855163, -0.015270823, -0.0072740107, -0.028912058, 0.0037027146, 0.0048854807, 0.03327515, 0.01069089, 0.033958524, -0.03227637, 0.023497617, -0.0028944912, 0.018332873, -0.028964626, 0.0015630581, -0.010060082, 0.0004883017, 0.0154153835, 0.0061536687, -0.026178554, -0.014863426, -0.013693802, 0.018832263, -0.010612039, -0.00050267554, 0.029464016, 0.008535628, -0.01703183, 0.0075434186, -0.009159866, 0.0010488834, -0.022288568, -0.01951564, 0.034037378, -0.008943025, 0.016545583, -0.007609128, -0.0417385, 0.021631476, 0.020553844, 0.007661695, 0.017228957, 0.009232146, 0.028097263, -0.0016057692, -0.002511735, 0.04018776, -0.0010414912, 0.0381902, 0.021618335, 0.0114859715, -0.0190951, 0.016571866, 0.009146724, 0.014876568, -0.021289788, 0.00552286, 0.011715954, -0.006827188, -0.007891677, 0.0038867004, -0.008949596, 0.026520241, 6.009442E-06, 0.003377454, 0.008785323, 0.0147845745, 0.0065019275, 0.02615227, 0.012846153, -0.004888766, 0.007096596, 0.01503427, -0.002133907, -0.029805703, -0.005907259, -0.024982646, -0.032880895, 0.018832263, -0.0064822147, -0.0002386066, -0.014495455, 0.015822781, -0.0056115678, -0.024036434, 0.019647058, -0.021933738, 0.030935902, -0.012235058, -0.031829547, 0.0014160337, 0.012767302, -0.010920873, -0.01382522, -0.013601809, 0.007655124, 0.0013946783, 0.03805878, 0.0064296476, 0.01951564, -0.019121384, 0.012734448, 0.018976822, -0.008016525, 0.013187841, -0.012136493, 0.0062423763, -0.021631476, -0.016585007, 0.009922093, -0.0046423567, -0.025771156, -0.0034234505, 0.0019302084, -0.009146724, -0.028307533, 0.013969781, -0.021447489, 0.00045708977, -0.026283689, 0.009356993, -0.014732008, -0.0059762537, -0.0060156793, 0.0015351317, -0.012714734, 0.009738106, -0.0006932323, -0.0012024788, -0.022774816, -0.019778475, 0.01032949, 0.09215061, -0.010112649, -0.007904819, 0.014508596, 0.0027105054, -0.019555064, 0.0048986226, -0.010769742, 0.00048419484, -0.008463347, -0.028018411, 0.016295888, -0.010014085, 0.0047179223, 0.008147944, -0.0064953566, 0.009435845, -0.0035351561, -0.014232618, -0.0049347626, -0.005046468, -0.012267912, 0.010480621, 0.018569427, 0.012392759, -0.0049479045, 0.0367446, 0.033170015, 0.01275416, 0.013411252, 5.0051945E-05, 0.00033881317, -0.016650718, -0.0012279411, -0.012662167, 0.011656816, -0.006350796, -0.01959449, 0.026283689, 0.005637851, 0.0320661, 0.019699624, 0.0011154141, 0.008910171, 0.020711547, -0.011288844, -0.0019384221, -0.0021930453, -0.0052435957, -0.017373519, 0.03219752, 0.00038788974, -0.028675504, 0.0039721224, -0.00022217931, 0.004537222, 0.008108518, -0.008936455, 0.0059039737, -0.032880895, -0.023090221, -0.016545583, 0.013233838, -0.01424576, 0.0035252997, -0.0034595905, -0.0036205782, 0.005588569, -0.0068009044, -0.0147845745, -0.036166355, -0.022958802, -0.022117725, -0.0010677748, 0.0074842805, 0.006436218, 0.015086837, -0.017294668, -0.003177041, 0.01638788, 0.004625929, 0.018661419, -0.019909894, -0.011748808, 0.012872436, -0.008989021, -0.0043138103, -0.023405625, -0.003689573, 0.018713987, 0.03369569, -0.019003106, 0.01040177, 0.008647334, -0.033669405, 0.007963957, 0.031330157, 0.028912058, 0.008358213, -0.005187743, 0.017465511, 0.008279362, 0.0071294503, -0.002151977, 0.02914861, 0.0066793426, -0.007878535, 0.010802596, 0.019607631, -0.005421011, -0.0010390271, -0.009869525, 0.010388628, -0.006354082, -0.023458192, 0.014364036, 0.02699335, -0.0028682076, 0.015796497, -0.02749274, 0.0013067921, -0.045917604, 0.041449375, -0.012655596, 0.0035088724, 0.007595986, 0.038111348, 0.006363938, 0.008318787, 0.012944717, 0.030331377, 0.021342356, 0.00096428284, 0.0050628954, -0.04523423, -0.01817517, 1.851922E-05, 0.0014012492, 0.0009930306, -0.0077865426, -0.021342356, 0.0233662, 0.030094823, 0.016755851, -0.018924255, -0.013851504, -0.0096986815, -0.007254298, -0.035404127, 0.017715206, -0.013122131, 0.0068797553, -0.032250088, -0.015099979, -0.014718866, -0.0052633085, -0.02238056, -0.014863426, 0.0016722997, 0.012524177, -0.0010488834, -0.0038439895, 0.026585951, 0.018188313, -0.023931298, 0.00919272, -0.039924923, -0.00409697, -0.027256185, 0.013969781, 0.0057626986, -0.002055056, 0.0005034969, -0.010198072, -0.017780915, 0.0015211685, 0.00085504126, 0.0016361596, -0.02159205, -0.046443276, -0.009961518, 0.00093307096, 1.5374932E-05, -0.014824, -0.018359156, 0.0074974224, 0.031409007, 0.019226518, 0.0034365924, 0.024562107, 0.007438284, -0.01803061, 0.002938845, -0.0030160532, 0.0215132, -0.0017035116, -0.027729291, -0.020645838, -0.039004993, 0.02102695, 0.013312688, -0.020120164, -0.008752468, -0.03369569, -0.013122131, 0.009343851, 0.0031376153, -0.014298326, 0.014968561, 0.0018431437, -0.020264724, -0.022748532, -0.024351837, -0.038821008, -0.021040093, -0.00070349936, -0.016282745, 0.019804759, -0.017058114, -0.014364036, 0.020974383, -0.011880227, 0.024535824, -0.009908951, 0.017452369, -0.0039918353, -0.021828603, -0.0052403104, -0.029516583, -0.016847845, -0.006206236, 0.004862482, 0.009107298, -0.0019187093, -0.009127011, 0.026375681, -0.0047277785, 0.0020107022, -0.013299546, 0.0038735587, 0.03151414, 0.021447489, -0.013457249, -0.024417548, -0.010743458, 0.032118667, 0.016453588, 0.0062588034, 0.016427305, -0.015231398, 0.0044058035, 0.02209144, -0.0504384, 0.005657564, 0.0064526456, -0.0032411073, 0.019226518, -0.012432185, -0.005151603, -0.014574305, 0.017491795, 0.041423094, 0.009021876, 0.018043753, 0.02065898, 0.008588195, 0.0011186996, 0.018424865, 0.014429745, 0.016493015, -0.006932323, -0.0052304543, -0.0061898087, -0.0014644943, 0.017623214, -0.0038669878, -0.011439975, -0.024575248, 0.008739326, -0.013667518, -0.007957387, 0.017465511, -0.027387604, -0.024601532, -0.013233838, -0.004639071, -0.03248664, -0.008423923, 0.024601532, -0.028728072, -0.024601532, -0.0011178781, 0.014114341, 0.012727876, -0.020251581, -0.002432884, -0.017465511, 0.016138185, -0.022643398, 0.016085617, 0.029648, 0.016860986, 0.0063015143, 0.006147098, 0.005286307, -0.02301137, 0.0049774735, -0.018924255, -0.0133192595, -0.046338145, -0.0045043672, 0.019936178, 0.009678968, -0.025915718, -0.00027289861, -0.008351642, 0.024286129, -0.017439228, -0.035903517, 0.0065676365, -0.0233662, 0.0022308282, 0.027913278, -0.010040369, -0.0020320576, -0.008489631, -0.006110958, -0.016663859, -0.007168876, -0.026401965, -0.018398583, -0.000798367, 0.01418005, -0.017268384, 0.013411252, -0.012846153, -0.019265944, -0.014061773, -0.01239933, 0.020553844, 0.033143733, 0.0059171156, -0.0010349202, 0.0252192, -0.027124766, -0.013654376, -0.01282644, -0.024548965, -0.00057618774, -0.013154986, 0.026612235, 0.03398481, 0.0036107218, -0.035456695, -0.0019334939, -0.01032949, -0.03784851, -0.00077208335, 0.0068140463, -0.002268611, 0.005053039, 0.021762894, -0.008594766, 0.007359433, 0.013168128, 0.020685263, 0.012727876, -0.01625646, 0.010625181, 0.0052205976, -0.011242848, 0.0016271246, -0.02065898, -0.020001886, 0.031829547, 0.002431241, 0.011531969, 0.00976439, -0.013982923, -0.012458469, -0.00466864, 0.0033708832, 0.031382725, 0.012484753, -0.00563128, -0.023734171, -0.018017469, -0.029700568, 0.016677, -0.003919555, 0.0062358053, 0.0029585578, 0.01717639, -0.014206334, -0.0023277493, -0.025744872, -0.011623961, -0.021329213, 0.015980482, 0.007819397, 0.0037947076, 0.014337752, -0.0016148041, -0.030015973, 0.027703008, 0.010106078, -0.01503427, -0.01688727, -0.0057331296, -0.016939837, -0.0003579099, -0.0068074754, 0.0051483177, 0.0067746206, 0.0028304248, -0.008969309, 0.008305646, -0.0067253388, 0.034247648, 0.0011630532, -0.0011934438, -0.047126655, -0.0013240408, -0.023642179, 0.025140349, -0.010171788, 0.015559943, -0.028806923, 0.021000667, -0.024207277, -0.0152971065, -0.030699348, 0.013536099, -0.014994845, 0.0022045444, 0.00413311, 0.20375116, 0.004658784, -0.018109461, 0.025771156, -0.01638788, 0.0055688564, 0.017268384, 0.013003855, 0.0054768636, -0.009146724, 0.0032871037, 0.015007987, -0.0074777096, -0.0016378023, 0.01218906, -0.008943025, -0.041896198, -0.014968561, -0.019068817, -0.0069651776, -0.011472831, -0.0035351561, 0.00012248609, -0.034405347, -0.0004755705, 0.026349397, -0.0049840445, 0.0029355595, 0.015914774, -0.0034431631, -0.017228957, -0.039846074, 0.0010086366, -0.0032903892, -0.004658784, 0.00057167024, 0.0014825643, -0.03064678, -0.026336256, 0.037454255, -0.016335312, -0.003433307, -0.0033314575, 0.005900688, 0.010848593, 0.0057232734, -0.017964901, 0.014521738, -0.000108317545, -0.027624156, -0.035588115, -0.014626873, 0.010769742, 0.02001503, -0.010487191, -0.006133956, 0.036113787, -0.022971943, 0.012287624, -0.0046949238, -0.0030439796, 0.020304149, -0.008285933, 0.037901077, -0.0040148334, 0.017163249, 0.0020764114, -0.015625654, 0.014797716, -0.018700844, 0.0013856433, 0.0077471174, -0.0013700373, 0.01474515, -0.022117725, -0.021118945, 0.005273165, 0.0062620887, -0.002237399, 0.007891677, -0.021552624, -0.0066596298, -0.003346242, 0.0039064134, -0.00513189, -0.021040093, 0.001956492, -0.017912334, 0.026401965, 0.017202673, 0.01439032, 0.0053060194, -0.005926972, 0.0069651776, -0.015783355, 0.008207082, -0.03169813, 0.03769081, -0.015520518, 0.012221916, -0.037427973, 0.004862482, 0.008483061, -0.017491795, -0.010986581, 0.02799213, -0.0019219947, 0.019988745, 0.004859197, -0.027308753, -0.016663859, -0.031330157, 0.0064756437, -0.008443635, 0.020895533, -0.008943025, -0.0121167805, -0.01625646, 0.009245288, -0.024325553, 0.01937108, 0.01289872, 0.034221362, -0.0037848512, 0.018109461, -0.010888018, -0.018687703, 0.028202398, 0.011124571, -0.015967341, -0.012018217, -0.009501553, 0.008226794, -0.0045273653, -0.003193468, 0.016282745, 0.023247922, -0.023326773, -0.009777532, 0.008542199, 0.0003757746, -0.018004326, 0.0119262235, -0.01575707, 0.034615617, -0.036429193, -0.006041963, -0.0144034615, -0.009173008, -0.008351642, 0.0025051641, -0.006140527, -0.015467951, -0.020448709, -0.011518827, -0.016860986, -0.02052756, -0.034247648, 0.010204642, 0.025758015, -0.011945937, 0.036586896, 0.013759511, -0.020146448, -0.025350617, -0.009567263, -0.16611291, 0.008962737, 0.017938618, -0.024562107, 0.0016024837, 0.0004566791, 0.0032641056, 0.009613259, -0.020304149, -0.015980482, 0.024706667, -0.002828782, -0.03953067, -0.019844186, 0.010368915, 0.003725713, 0.002165119, 0.038952425, 0.01011922, 0.0028304248, 0.025284909, -0.018608851, 0.0069586067, -0.012386188, 0.012727876, 0.0010718817, -0.000111808346, 0.034720752, 0.004612787, 0.0015934486, 0.0011301986, -0.00484277, 0.02977942, 0.011663387, 0.019502496, -0.0005827587, 0.01418005, -0.0041298247, -0.019489355, 0.028333817, -0.005273165, 0.004152823, 0.009113869, 0.02415471, 0.014692582, 0.031093603, -0.015691362, 0.012977571, 0.025613455, 0.006833759, 0.02985827, -0.025981426, -0.0008098662, -0.002158548, 0.023247922, 0.013864646, -0.0010447766, 0.009100727, 0.04497139, -0.01938422, -0.010710604, -0.031829547, 0.004593075, -0.013161557, -0.029700568, -0.02864922, -0.00505961, -0.006334369, -0.022564547, 0.0049117645, -0.02452268, -0.012005075, -0.014429745, -0.001200836, 0.01638788, 0.0094489865, -0.018254021, -0.026428249, 0.0009897451, -0.008108518, 0.0114859715, 0.016768994, -0.03056793, 0.003413594, -0.020764114, -0.004254672, -0.018056894, 0.010204642, -0.024141569, -0.007096596, 0.0028008556, -0.007418571, -0.019331653, -0.0070177447, -0.009061302, 0.016808419, 0.020199014, -0.035036158, 0.0016583365, -0.0002644796, 0.003584438, 0.0019449929, -0.019568207, 0.015152547, 0.032434072, 0.009573834, 0.027019631, 0.0065643513, 0.0031014753, 0.0074842805, -0.010099507, 0.006827188, 0.0041298247, 0.0044517997, 0.011439975, -0.009514695, -0.019003106, -0.026033994, 0.0050333263, -0.033038598, 0.028202398, -0.024693526, -0.023721028, 0.0063113705, 0.008253078, -0.0050103283, -0.09083643, -0.006873185, 0.029385164, -0.0039392677, 0.0044813687, -0.008936455, -0.009225574, 0.04473484, 0.00013727068, 0.023247922, 0.00068584003, -0.008187369, 0.0038144204, 0.011873656, 0.010237496, -0.002401672, 0.030699348, -0.0042316737, -0.012471611, 0.008535628, 0.0027712865, -0.004609502, -0.0057364153, -0.0075631314, -0.013470391, -0.023208497, -0.027282469, 0.013168128, 0.0052041705, 0.008699901, 0.011932795, -0.010855163, 0.009915521, -0.012773872, 0.0075828442, -0.019463072, -0.022104582, 0.006360653, 0.018438008, -0.03127759, -0.0022226144, 0.0023671747, 0.034326497, -0.029201178, -0.008522486, -0.010513475, -0.003719142, 0.03006854, -0.0062555177, -0.019975603, -0.022695966, -0.012366476, 0.00013737334, -0.0030768344, 0.021342356, -0.005844835, 0.0058382642, -0.014863426, -0.0010513476, 0.018424865, -0.006899468, 0.02386559, -0.020540703, 0.021605192, -0.0029125612, -0.0052895923, -0.009488411, 0.010796025, 0.0042349594, -0.009659256, -0.013628093, 0.02002817, -0.00559514, 0.034089945, 0.0026037279, -0.013141844, -0.015835922, 0.006692484, 0.01011922, -0.016952978, -0.013286404, -0.018805979, 0.026848787, -0.025350617, 0.012721306, 0.02009388, 0.009613259, -0.008312217, 0.017320951, -0.023221638, 0.013785794, 0.03677088, 0.029884554, -0.006846901, -0.027624156, -0.0043926616, 0.0048559117, -0.015362816, 0.007937674, -0.0069980323, -0.0016304101, -0.012839582, -0.07559189, 0.023247922, -0.011834231, 0.0029585578, 0.020842966, 0.02023844, 0.017780915, -0.0042119613, 7.4590236E-05, 0.002176618, 0.013943497, -0.0047902022, 0.010500333, 0.0013322545, -0.014876568, -0.0033265294, 0.015099979, 0.013522957, 0.025547745, 0.012708164, 0.010993153, 0.0010710603, -0.0070177447, -0.003926126, -0.044577137, 0.03277576, 0.010296635, 0.02088239, 0.0020583414, -0.011913082, 0.0030144106, -0.0044419435, 0.0130104255, 0.045786187, -0.029043475, -0.04652213, 0.0070374575, 0.011597678, 0.015573085, -0.033432852, -0.025587171, -0.01624332, 0.0009716751, -0.016006766, -0.034536768, -0.027703008, 0.004336809, -0.0037027146, 0.024943221, 0.016900413, -0.0018792837, 0.008719614, 0.012813298, -0.030594213, -0.0018267164, -0.0027712865, -0.015573085, -0.0069454648, 0.00023778525, -0.03968837, 0.03753311, 0.0060583903, 0.0052435957, 0.012379617, 0.022682823, 0.02252512, -0.01211021, 0.0079245325, 0.007116309, -0.009652684, -0.029516583, 0.0056969896, 0.042894978, 0.009705252, -0.0136412345, -0.012287624, 0.019660199, -0.004832913, -0.032039817, 0.032644343, -0.0021371925, -0.0010414912, -0.01703183, 0.0021043378, 0.00409697, 0.014469171, -0.04347322, 0.007168876, -0.00712288, 0.016414164, -0.032723192, -0.006285087, -0.006163525, -0.0033363858, 0.011242848, 0.011650245, -0.026086561, -0.0075368476, 0.013036709, 0.023905015, 0.0003051372, 0.007405429, -0.021552624, 0.01368066, -0.010276922, 0.012267912, -0.0015630581, -0.023195356, -0.02138178, 0.007438284, 0.003420165, -0.011479401, -0.025166633, 0.0037881366, -0.029122327, -0.0009453914, 0.011203422, 0.0022751817, -0.006892897, 0.018411724, 0.023261065, 0.010375486, 0.008719614, 0.005348731, 0.022065157, 0.0066859135, 4.176129E-05, -0.015007987, -0.003177041, 0.0024838087, 0.0052337395, 0.003334743, 0.009843241, 0.006426362, -0.0017577216, 0.0014792789, 0.012287624, 0.041659646, -0.0032148238, 0.059453703, 0.008956167, 0.0064822147, 0.012037929, 0.009370135, 0.0048000584, 0.013358685, 0.021408064, -0.014101199, -0.025468895, 0.01439032, 0.0039589806, -0.022472553, 0.020566987, -0.054196965, 0.005115463, 0.015835922, 0.007701121, -0.0021799034, -0.01653244, 0.033170015, -0.025192916, 0.019279085, -0.00459636, -0.0152971065, 0.0024903796, 0.026691087, 0.004688353, 0.014797716, -0.0017232243, 0.035956085, 0.008601337, -0.010276922, -0.009626401, -0.003577867, 0.0024493113, -0.028544085, 0.020343576, 0.021789178, 0.006334369, 0.022814242, 0.0132601205, 0.003840704, -0.020356717, 0.0012665453, -0.019936178, -0.0076354113, -0.011630532, 0.0012353334]
+ },
+ {
+ "Id": 11,
+ "Type": "Climbing",
+ "Brand": "WildRunner",
+ "Name": "Vertical Journey Climbing Shoes",
+ "Description": "The Vertical Journey Climbing Shoes from WildRunner in sleek black are the perfect companion for any climbing enthusiast. With an aggressive down-turned toe, sticky rubber outsole, and reinforced heel cup for added support, these shoes offer ultimate performance on even the most challenging routes.",
+ "Price": 129.99,
+ "Embedding": [-0.0019019064, -0.03274032, -0.00029607126, -0.012616707, -0.017619073, 0.021124087, -0.022386428, -0.051326293, 0.010823912, -0.025851155, 0.0043174787, -0.0092795575, 0.018612832, -0.021970125, -0.0009677397, 0.006590366, 0.024924543, -0.0011599447, 0.0067078713, -0.007950069, -0.0001219117, 0.004643136, -0.0033556141, -0.02432023, -0.004999009, -0.018089093, 0.018733693, -0.011327506, 0.02285645, -0.014342356, 0.004908362, 0.008943828, -0.0047270684, -0.009682433, -0.011763955, -0.0003344703, -0.014691514, -0.0014755302, 0.005892049, -0.008534239, 0.015000384, 0.0060263406, -0.0046028486, 0.0044954154, 0.0010357249, 0.009259414, 0.009756293, -0.023420475, -0.0024927899, 0.019485727, -0.009957731, 0.0121332565, -0.008339516, -0.0062647085, 0.00874239, -0.0041899015, 0.017901085, 0.022668442, 0.03292833, -0.009024403, -0.015322684, 0.006704514, -0.027529802, 0.016450735, 0.0030819948, -0.017954802, -0.023259325, -0.019875174, 0.0041798297, 0.025636287, 0.006811947, 0.013684326, -0.00027907497, 0.010105452, -0.012616707, -0.019754311, -0.0043376223, 0.002051306, -0.0015619805, 0.0073524714, 0.01928429, -0.0262406, -0.016531311, 0.012623421, 0.0031843923, -0.004347694, 0.0054321, 0.0042134025, -0.020989794, -0.02299074, 0.012294406, 0.0017290058, 0.005848404, 0.0065836515, -0.016544739, -0.004371195, -0.0069630253, -0.01281143, 0.019190285, -0.024239654, 0.01410063, -0.0016685745, 0.00453906, -0.010609046, -0.033653505, -0.0062512793, -0.010421037, 0.011079066, 0.034405537, -0.017202768, -0.024870826, 0.017766794, 0.020627208, 0.0015796063, 0.015698701, -0.016383588, 0.021244949, 0.03341178, 0.009393705, -0.022023842, 0.030913953, -0.0062949243, 0.04294649, -0.017323632, 0.020855503, 0.010904487, -0.014570651, -0.01458408, 0.015537552, -0.0068824505, 0.025972018, 0.008232082, 0.021177804, -0.011676664, -0.004653208, 0.009669003, -0.010347176, 0.002293031, -0.01669246, -0.016611885, -0.0042839055, 0.010535185, -0.029248735, 0.011824385, 0.0021704899, 0.014691514, 0.012160115, 0.012522702, 0.009353418, -0.00042637618, 0.004995652, -0.02382335, 0.028120685, -0.01474523, 0.013489603, 0.0040220367, 0.03080652, 0.029705327, -0.013355311, -0.0005640252, 0.005526104, 0.0055227466, 0.023071317, -0.009104978, 0.039132606, 0.018491969, 0.022386428, -0.011502085, -0.012254119, -0.005173588, 0.008017215, 0.010165883, -0.016719319, 0.03373408, 0.021164374, 0.012972579, -0.006499719, 0.0217284, 0.00220742, 0.0152689675, -0.009655574, -0.002012697, 0.013382169, 0.010958204, -0.02675091, -0.024521668, -0.0030685656, -0.00082463503, -0.0123682665, -0.0067213005, -0.006419144, 0.0066172243, 0.00014572749, 0.015940426, -0.6686653, -0.010186027, -0.008064218, -0.021513533, 0.058712337, 0.02562286, 0.033089478, 0.029759044, -0.021594107, 0.0096488595, 0.004975508, 0.034781553, -0.00555632, -0.0027563374, -0.015362972, -0.021110658, 0.012750998, -0.009252699, 0.0048177154, -0.0001961918, -0.041227557, 0.015349543, -0.006694442, -0.017068477, -0.0066105095, 0.018223386, 0.00713089, -0.017538497, -0.014718372, 0.004770713, -0.035211287, 0.04085154, -0.0030584938, -0.0024340374, 0.057584286, -0.023326471, -0.011730381, 0.041549858, 0.01894856, 0.048747893, -0.02496483, 0.0023198894, 0.008077647, -0.0021755258, -0.012522702, 0.016585026, 0.038998313, -0.017941372, 0.019244002, -0.012468985, 0.019203715, 0.0012631814, -0.002739551, -0.0092325555, 0.00453906, -0.0069093085, 0.033814654, -0.010595616, 0.004438341, 0.0061606322, -0.019673737, -0.0035688023, -0.0017776865, -0.021459816, 0.0035050137, 0.012609992, -0.029544177, -0.007097317, -0.0020680923, -0.014181205, 0.010374035, 0.015752418, 0.008977401, 0.0035990179, 0.005670468, 0.036231905, -0.0026707265, -0.015537552, -0.010897772, 0.009581714, 0.01207954, 0.012092968, 0.006083415, -0.021110658, 0.020398911, -0.00034307336, 0.016235868, -0.009125122, 0.022077559, 0.0021604178, 0.010400893, 0.03496956, -0.040744107, -0.026670335, -0.020210903, 0.022373, -0.011656521, 0.012106398, 0.021607537, -0.016491022, -0.013012867, -0.011750525, -0.020439198, -0.0005086299, -0.007903067, 0.038810305, 0.0071577486, -0.00028557974, 0.010568758, -0.014798947, 0.012851717, -0.008379803, -0.00028851736, -0.013966339, -0.017860798, -0.03048422, 0.012583134, -0.019727454, 0.016934184, -0.050815985, 0.01556441, -0.019566303, 0.0025700077, 0.0046028486, -0.021835832, -0.0021688112, 0.013623894, -0.014315497, -0.021862691, -0.02155382, -0.019808028, -0.010031591, 0.025998875, 0.010353891, -0.0029762401, 0.004868075, -0.024736533, 0.0011414796, 0.031853996, -0.012146685, -0.01393948, -0.008218653, 0.0017625787, 0.00012086254, 0.0036628065, -0.05009081, -0.023192178, 0.0046834233, -0.0029930265, -0.012019108, -0.0016190545, -0.017162481, -0.020519774, 0.02577058, 0.012066111, -0.013409028, 0.0040858253, -0.014396071, -0.03161227, -0.0045491317, 0.024508238, -0.0046498505, -0.010810483, -0.020224333, 0.011139498, -0.0005312916, -0.012670423, 0.015000384, 0.0043644807, -0.04735126, -0.021271808, -0.020036323, -0.0031827136, 0.023098174, 0.036017038, 0.0014201349, -0.019418582, -0.012589849, -0.008010501, 0.023850208, -0.0030920666, -0.008715533, -0.02836241, 8.557163E-06, -0.008211939, 0.00019944418, -0.00030803162, 0.03682279, -0.0017995089, 0.008775963, -0.024199367, 0.040636674, -0.0062647085, 0.005626823, 0.0073188986, -0.020022895, 0.002454181, 0.0042570475, 0.0010927988, 0.021688111, 0.014892952, -0.04294649, 0.014610939, -0.014288639, 0.020546632, -0.023098174, -0.025381135, -0.02025119, 0.034405537, 0.01304644, 0.0021688112, -0.019244002, -0.014396071, -0.021607537, 0.022399858, 0.007271896, 0.011387938, 0.016558168, -0.025018547, -0.025381135, 0.0063788565, -0.011891532, 0.010635904, -0.023286182, -0.0036493773, 0.029759044, -0.02723436, 0.01522868, -0.005885334, -0.011596089, 0.009219126, 0.006694442, 0.030672228, -0.015188393, 0.018841127, -0.0108642, 0.01240184, -0.030376786, 0.048747893, 0.008124649, 0.02852356, 0.022655012, 0.005250806, -0.0034647263, 0.02480368, 0.027852101, 0.025878014, 0.0066340105, -0.009205697, 0.0049486496, -0.0024776822, 0.013382169, -0.007728488, -0.00082001876, 0.008937114, 0.0031843923, 0.017780224, 0.008641671, 0.014087201, 0.01490638, -0.005398527, -0.0012740926, 0.033465493, 0.010917916, 0.028308693, -0.029248735, -0.028496701, 0.0021772045, 0.001880084, -0.0028167688, 0.0032968617, -0.013429171, 0.0055227466, 0.019969178, -0.013563463, 0.012771142, 0.026979206, -0.005425385, -0.0033640075, 0.015215252, 0.0061740614, -0.009024403, 0.0135164615, 0.024843967, -0.011226787, -0.023944212, -0.009084835, 0.009064691, -0.0053918124, 0.06574922, 0.0096958615, 0.021365812, -0.007936641, -0.011575946, 0.009870441, 0.022937024, 0.010078593, -0.028604135, 0.025260272, -0.017068477, -0.008426805, 0.00089220057, -0.020479487, -0.021298666, 0.058228888, -0.012818144, -0.0033086122, -0.005364954, 0.0055764634, 0.007493478, -0.010877629, -0.019834885, -0.0015132998, -0.008648386, -0.003635948, -0.021285236, 0.0031138891, -0.021970125, 0.047109533, -0.0012774499, -0.01410063, -0.0045961337, -0.024373947, -0.000551855, 0.0836906, 0.015779277, -0.003773597, 0.0063016387, -0.0054992456, -0.029973911, -0.035453014, -0.0010130631, -0.015832992, 0.0021939909, 0.010763481, -0.021338953, 0.005516032, -0.03531872, 0.005455601, 0.02625403, -0.008708818, -0.02299074, -0.0021150946, -0.0054690302, 0.004196616, -0.02235957, 0.00866853, 0.02704635, 0.007835922, 0.01959316, 0.01555098, -0.011978821, 0.011945248, -0.020170616, 0.0033925443, -0.002549864, -0.014342356, 0.01751164, -0.008923684, 0.00065635075, -0.02769095, 0.006637368, 0.0022510649, -0.019042565, 0.029705327, 0.015362972, 0.005418671, -0.022641582, 0.0024373946, -0.010320318, -0.0018733694, 0.033492353, 0.015940426, -0.028066969, 0.019230574, 0.010729908, -0.0038138847, -0.011361079, -0.023098174, 0.030511077, 0.0119049605, -0.007835922, 0.009064691, -0.026119739, -0.002293031, -0.034781553, 0.020613778, -0.006788446, -0.011206644, -0.010696335, -0.024360517, 0.020170616, -0.015443548, -0.018223386, -0.009527997, 0.0027748025, -0.010239744, 0.006902594, 0.0035016565, -0.0012892005, 0.000104233455, -0.009178839, 0.021325525, 0.010924631, 0.0006181616, 0.016088147, -0.00042071077, 0.013476173, -0.002036198, 0.0003487388, -0.015940426, -0.004666637, -0.012509273, -0.00761434, 0.009225841, -0.0029359525, -0.009064691, 0.0075874818, 0.009904014, -0.030511077, 0.023272755, 0.012220546, 0.005119872, 0.003019885, 0.0024944686, -0.01588671, 0.009937587, -0.0049587213, 0.010186027, 0.01767279, 0.0053582396, 0.016464164, 0.010924631, -0.0026455468, 0.00071468373, -0.0034982993, 0.01320759, -0.00019608688, -0.02090922, 0.014275209, 0.024897683, 0.0059121926, 0.0217284, -0.021298666, 0.008305943, -0.024226226, 0.043725383, 0.01036732, -0.0034210815, 0.019808028, 0.015685271, -0.031504836, -0.01458408, 0.02203727, 0.013409028, 0.012361553, 0.024763392, 0.0019052638, -0.018075665, -0.004371195, -0.0085879555, 0.012750998, 0.015792705, -0.017833939, -0.0024944686, 0.011562517, 0.010071878, 0.021513533, -0.020600349, -0.021365812, -0.025488567, 0.0061169877, -0.03096767, 0.015846422, -0.020519774, 0.005579821, -0.019230574, -0.00518366, -0.011267075, -0.017108764, -0.013872334, 3.7507256E-05, 0.025260272, 0.01688047, 0.006580294, -0.047673557, 0.029141301, -0.0031709631, 0.0049855798, -0.0049452926, -0.020331766, -0.0064695035, -0.056295086, 0.037171945, 0.01764593, 0.0142080635, 0.005240734, -0.0018767267, 0.003840743, 0.014960097, -0.009877156, -0.0056201085, -0.01686704, -0.032982044, -0.007909782, -0.0088632535, 0.005771186, 0.000746578, -0.024682818, -0.025045404, 0.038622297, 0.008198509, -0.010387464, 0.014033484, 0.021419529, -0.017793652, 0.011005206, -0.031988285, 0.008057503, -0.013254592, 0.007681486, -0.034110095, 0.0036258763, 0.021513533, -0.018921703, 0.0070771733, 0.012529417, -0.018867986, -0.013610465, 0.009763008, -0.0072383233, -0.014355784, 0.019579733, -0.016961044, 0.010447895, -0.03142426, -0.015040672, -0.035963323, -0.005401884, -0.0033304344, -0.0034059735, 0.010387464, -0.02448138, -0.0070906025, -0.018760553, -0.01622244, 0.016773036, -0.01622244, 0.026603188, 0.015134676, -0.0021788832, -0.0012850038, -0.008715533, 0.011730381, -0.0017609001, -0.0021385956, -4.8051254E-05, -0.018021949, -0.020613778, 0.016115006, -0.010280031, 0.0017877584, -0.02026462, 0.03145112, -0.0083126575, 0.0048781466, -0.0023971072, 0.003541944, 0.011569231, 0.019069424, -0.037547965, 0.018921703, -0.0044954154, -0.011193214, -0.0152689675, 0.030779662, -0.007956784, 0.01588671, -0.002667369, -0.010239744, -0.0053011654, -0.015618127, 0.008017215, 0.007553909, -0.005670468, 0.020828646, 0.008762535, -0.0015863209, 0.02628089, 0.007950069, -0.006046484, 0.0058047595, -0.01272414, 0.027771527, -0.017149052, -0.0022712087, 0.02092265, -0.010535185, 0.0010457967, -0.0031021386, -0.001324452, -0.014986956, 0.010635904, -0.007647913, 0.013012867, -0.011750525, -0.026697192, -0.0010130631, -0.008984116, 0.0010634225, -0.012589849, -0.021916408, -0.006566865, -0.016571598, 0.00013471137, -0.018881416, 0.009863727, 0.017927945, -0.012005679, -0.025273701, 0.00038252157, 0.025690004, -0.02673748, 0.023984501, 0.0062177065, 0.026119739, -0.015282397, 0.0059424085, -0.0058954065, -0.044504274, 0.030860236, -0.019526016, -0.03128997, -0.020130329, -0.009951016, -0.015349543, -0.0096018575, 0.0023333186, 0.0099711595, -0.009662289, 0.013503032, -0.009427278, -0.016021002, -0.0013261307, -0.0039381045, -0.0089572575, 0.03792398, -0.019485727, -0.0056906114, 0.0070906025, 0.0046968525, 0.009084835, -0.00761434, -0.018612832, 0.0115088, 0.002222528, 0.0067783743, -0.0450683, -0.003964963, 0.002957775, -0.008984116, 0.021164374, -0.00032125096, -0.02429337, 0.017444493, 0.03128997, 0.013489603, 0.010582187, -0.005089656, -0.030349927, 0.022601295, -0.012831573, -0.015859852, -0.018653119, 0.004743855, 0.03972349, 0.009823439, -0.008050788, -0.008050788, 0.00060473237, -0.05041311, -0.0037366669, 0.0073188986, -0.003043386, 0.008822965, -0.0075136214, -0.013053155, 0.022735586, 0.008218653, 0.027476085, -5.995915E-05, -0.01880084, 0.0020546631, 0.003238109, -0.0095548555, -0.018894844, -0.015792705, -0.0090512615, 0.019351436, 0.010461325, 0.018223386, 0.0041059693, -0.034915846, -0.028254976, -0.018894844, 0.002230921, 0.03660792, 0.03386837, 0.03421753, -0.050117668, -0.030779662, -0.008151507, -0.0040824683, 0.012952436, 0.013388884, -0.015148105, 0.00875582, -0.0016694139, -0.012334694, -0.022937024, -0.012388411, 0.02511255, 0.018706836, -0.0010038306, -0.017592214, -0.019955749, 0.019646877, -0.021674683, 0.005019153, 0.0138857635, 0.010870914, 0.00265394, 0.00405561, -0.015604697, -0.0064460025, -0.00745319, 0.022426717, 0.01490638, 0.010803768, -0.009769722, 0.009501139, -0.014476647, 0.005150087, 0.00034810932, -0.018397965, -0.011233502, 0.0075337654, -0.005458958, 0.002487754, -0.010125595, 0.0035453013, -0.013388884, 0.016679032, -0.006130417, -0.02493797, 0.007842636, -0.007083888, -0.008937114, -0.008359659, 0.03419067, 0.19241317, 0.017713077, 0.011911675, 0.025193125, 0.017363919, 0.005838332, 0.013899192, 0.0007595875, 0.030269353, -0.02544828, 0.027771527, 0.0056536812, -0.014046913, -0.005579821, 0.004999009, -0.02433366, -0.04232875, -0.0039716773, -0.036043897, -0.004690138, -0.00095766777, -0.004586062, 0.032337446, -0.022789303, 0.03628562, 0.0058148312, -0.0072383233, -0.016437305, 0.005203804, 0.015107818, -0.0033589716, -0.02300417, 0.019190285, 0.0062109916, 0.02158068, -0.018384535, 0.037225664, 0.010407608, -0.0030249208, 0.019794598, -0.014020055, 0.013650753, -0.017874228, -0.03453983, 0.0068723783, 0.017068477, -0.009588429, 0.0045592035, -0.0064930045, 0.00015223224, -0.022628155, -0.018559115, 0.024185937, 0.009957731, -0.009306416, 0.0061505605, 0.039025173, -0.014328926, 0.0066440827, 0.021996982, -0.03158541, 0.004690138, -0.011918389, -0.007950069, 0.0033925443, 0.006697799, 0.0043577664, -0.025421422, -0.009574999, 0.0047942144, -0.00027634716, 0.0020949508, -0.00091738027, 0.030833378, 0.000775115, -0.025152838, 0.023286182, 0.011542372, 0.024830539, 0.021164374, 0.0055764634, -0.010971633, 0.021970125, -0.01540326, -0.024615671, -0.009460852, 0.022117846, -0.014006626, -0.015416689, -0.0042839055, 0.0077419174, 0.01622244, -0.0032683245, 0.01143494, -0.013066584, 0.039642915, -0.0054455292, 0.025219984, -0.0043174787, -0.002724443, -0.013362026, -0.0061841332, -0.0056368946, 0.023850208, -0.010917916, 0.009588429, -0.010152454, 0.0024508238, -0.020291477, -0.0068522347, -0.007083888, -0.021419529, 0.008460378, -0.0050090807, -0.008943828, -0.008319371, -0.00042868435, -0.021822404, -0.004894933, -0.012589849, 0.015349543, -0.0060263406, 0.010494897, 0.016410448, 0.0054623154, -0.017041618, -0.016423877, -0.011784098, 0.028577277, -0.03496956, 0.0023182107, -0.019875174, 0.016746176, -0.008816251, -0.002521327, -0.0037198805, 0.0034781555, -0.015524122, 0.0114416545, 0.007909782, -0.005949123, 0.0012254119, 0.0096958615, 0.025998875, 0.016021002, -0.026992634, 0.01684018, -0.0020026253, -0.03161227, 0.0043141213, 0.004582705, -0.01829053, -0.020613778, -0.0072517525, 0.0014511899, 0.0099241575, -0.03341178, -0.026764339, -0.0093265595, -0.004515559, -0.03163913, 0.02089579, 0.024561955, -0.024924543, -0.00074322073, -0.0024508238, -0.17200083, 0.009306416, 0.021996982, -0.0009794902, 0.030913953, -0.017605644, 0.016907327, 0.009756293, -0.038326856, 0.015282397, 0.028093826, 0.0049452926, -0.011978821, -0.0032280372, -0.0026421894, -0.0007201393, 0.0012673781, 0.0057208273, 0.029114444, -0.0062512793, 0.018706836, 0.016504452, -0.0075740525, -0.009044547, -0.00761434, -0.0096018575, 0.0077419174, -0.0188277, 0.014785518, -0.00473714, -0.0119989645, -0.02009004, 0.003508371, -0.0009727756, 0.005056083, -0.00811122, -0.020466058, 0.014463218, -0.012415269, 0.026791196, 0.023366759, 0.027194072, 0.028120685, -0.00022703693, 0.024830539, 0.013335167, -0.019311149, 0.016168723, 0.0032431448, -0.0108642, 0.009756293, -0.005596607, -0.008547667, 0.010031591, 0.032283727, 0.002469289, 0.018411394, 0.0046028486, 0.03666164, -0.019794598, 0.0027529802, -0.016907327, 0.0053918124, -0.0048714317, -0.02221185, 0.007835922, 0.011293933, 0.008104505, -0.020063182, 0.013503032, -0.020680925, -0.0061136303, -0.010441181, -0.009675718, 0.019042565, 0.030081345, 0.005364954, -0.007506907, 0.0119049605, -0.027422369, -0.010535185, 0.011730381, -0.011656521, 0.0055898926, 0.004438341, 0.039454907, -0.011763955, 0.0061371312, -0.018491969, -0.007647913, -0.006556793, -0.012280977, -0.02303103, -0.023393616, 0.0073994733, 0.007997071, 0.010723193, -0.02156725, -0.014060343, -0.021003224, 0.008299228, -0.0018901558, -0.023608483, 0.020842073, 0.016289584, 0.018129382, 0.036742214, 0.01109921, 0.019418582, -0.006022983, -0.0054522436, -0.0048311446, -0.007600911, 0.014610939, 0.005294451, -0.0010676192, 0.0046397788, -0.03177342, 0.022090986, -0.020654066, 0.022547578, -0.008916969, -0.04364481, 0.003417724, 0.012972579, -0.008749105, -0.09824782, -0.002459217, 0.010689621, 0.0021704899, -0.017807081, -0.005892049, -0.015940426, 0.015940426, -0.002700942, 0.0032028574, 0.019633448, -0.012972579, 0.028819002, 0.014812376, 0.022010412, -0.00035461405, 0.0146243675, 0.0004326711, -0.039293755, 0.023125034, -0.011058923, -0.02105694, -0.015792705, -0.015926998, -0.001274932, 0.004307407, -0.024924543, -0.004965436, 0.0066440827, 0.01603443, 0.0043040495, 0.010696335, 0.011683379, -0.018518828, -0.015336114, 0.0055831783, -0.028308693, 0.0074733337, 0.02739551, -0.023111604, -0.014315497, -0.0014075451, 0.0007990357, -0.032042004, 0.0033623287, -0.0071913213, -0.0082656555, 0.01458408, 0.006304996, -0.0042939777, -0.01620901, -0.013563463, -0.004706925, -0.02787896, 0.019297719, -0.02023776, -0.014490076, -0.011602804, 0.0069227377, 0.022520721, -0.010085308, -0.0006571901, -0.010756766, 0.024373947, 0.021902978, -0.0146243675, -0.02625403, 0.026804626, 0.006775017, -0.01011888, 0.0006466985, 0.011891532, -0.016719319, 0.03918632, 0.0118109565, 0.009789866, -0.035453014, -0.013724613, 0.008178365, -0.021862691, -0.00066390465, -0.00680859, 0.04294649, -0.02609288, 0.016088147, 0.0070771733, -0.005113157, -0.014127488, 0.0065097907, -0.020640636, 0.00049897766, 0.012683853, 0.012415269, -0.0076411986, 0.017055048, -0.021312095, -0.005190375, -0.021486674, -0.0016148578, -0.019888602, -0.020385481, 0.016826753, -0.07063744, 0.02787896, -0.0029527391, -0.026227172, -0.013187447, -0.013657467, 0.019687165, -0.02704635, 0.014651226, -0.018559115, -0.0035251575, -0.0061035585, 0.020304907, 0.008997545, 0.0031793565, -0.0035520159, 0.0018062235, -0.015940426, 0.012945721, -0.004126113, -0.015591268, 0.019136569, -0.0065735793, 0.012099683, -0.0214061, -0.004391339, -0.0017541855, 0.021876121, 0.01893513, 0.0015233717, 0.022090986, -0.009044547, 0.023944212, 0.030618511, -0.00055143534, 0.014610939, 0.009125122, 0.019257432, 0.01143494, -0.0056536812, -0.00236857, -0.018209957, -0.003622519, 0.00802393, -0.013301594, -0.0069160233, 0.020291477, -0.0011767312, 0.010098737, 0.011602804, -0.012939007, 0.029195018, 0.0035184429, -0.017310202, -0.010313604, -0.0047740703, -0.0020328409, -0.012656994, -0.0015275682, -0.035936464, 0.035130713, -0.006519863, 0.016920757, 0.013899192, 0.014570651, 0.0037131659, -0.03373408, 0.005274307, 0.022816163, 0.0021302023, -0.022023842, 0.011622948, 0.0018028662, 0.0074800486, -0.022467004, 0.009964446, -0.015752418, -0.003830671, -0.02171497, 0.008708818, -0.009178839, -0.004485343, -0.059195787, 0.006100201, -0.00089220057, 0.00973615, 0.003023242, -0.0051635164, -0.0047740703, 0.0040623243, -0.023581626, -0.00013177375, -0.011481942, -0.019002277, 0.006224421, 0.024441091, 0.0012598241, 0.012583134, 0.013952909, 0.008393232, -0.014315497, 9.305996E-05, -0.006351998, -0.009360133, -0.0036628065, 0.018894844, 0.014087201, -0.021594107, -0.020801786, -0.00453906, 0.010736623, 0.010877629, 0.0016736105, 0.00061270595, -0.019700594, -0.0032196438, 0.0061270595, -0.021607537, -0.02155382, 0.009816724, 0.010011448, 0.018397965, -0.0020311621, -0.012388411, -0.005626823, 0.014302067, -0.0035453013, -0.01749821, 0.012448842, -0.0070771733, 0.012106398, -0.007345757, 0.016477594, 0.00923927, -0.019217145, 0.011481942, 0.0071913213, 0.01829053, -0.021150945, 0.06515834, 0.008769249, -0.013140445, -0.006022983, -0.0089572575, -0.004780785, 0.0013370418, 0.016920757, -0.023447333, -0.022520721, -0.015349543, -0.01603443, -0.030269353, 0.011468512, -0.025018547, -0.00086198497, -0.0069160233, 0.000937524, 0.0068589495, 0.013489603, 0.039025173, -0.028469844, 0.011448368, 0.0020311621, -0.003508371, -0.014664656, 0.023554767, 0.024373947, -0.016168723, -0.008930399, 0.015121247, 0.009581714, -0.044987723, -0.011105925, -0.003347221, -0.039428048, 0.0005594089, 0.044316266, -0.0072517525, 0.033841513, 0.014006626, 0.008534239, -0.0001334524, -0.02154039, -0.014651226, 0.0045122015, -0.035560448, -0.0046498505, 0.0071510337]
+ },
+ {
+ "Id": 12,
+ "Type": "Ski/boarding",
+ "Brand": "Zephyr",
+ "Name": "Powder Pro Snowboard",
+ "Description": "The Powder Pro Snowboard by Zephyr is designed for the ultimate ride through deep snow. Its floating camber allows for effortless turns and smooth maneuverability, while the lightweight carbon fiber construction ensures maximum control at high speeds. This board, available in vibrant turquoise, is a must-have for any backcountry shredder.",
+ "Price": 399.00,
+ "Embedding": [-0.007874464, -0.015722679, -0.02122168, -0.023597144, 0.002400071, 0.005164336, -0.017061338, -0.036642507, 0.0052562044, -0.0345164, 0.011726389, -0.0020276743, -0.0042718966, -0.01901683, -0.001268937, -0.016943222, 0.014935233, -0.008963765, -0.0016200069, 0.014069042, -0.017284447, -0.0073560616, -0.007953209, -0.022127243, -0.013452209, -0.0060108406, 0.028663049, 0.008963765, 0.0038978595, 0.003596005, 0.031629097, -0.00085224665, 0.0068507837, -0.013097858, -0.017350068, -0.01652325, 0.0013985375, -0.018885588, 0.013215975, 0.013845933, 0.0151845915, -0.020565474, -0.014672751, 0.023610268, 0.0062569175, -0.016260767, -0.001843937, -0.018111266, 0.0022885161, 0.008130384, 0.015578315, 0.0024656914, 0.0023672606, -0.014908985, 0.017179456, -0.038401134, -0.001735663, 0.0033893005, 0.03176034, -0.021011693, -0.013045361, -0.0012410483, -0.013727815, 0.019922394, 0.020198, -0.009436232, -0.019043079, -0.0069623385, -0.0051216823, 0.0051446497, 0.018780597, 0.015958913, 0.0142790275, 0.01358345, -0.02284907, -0.030710408, -0.0051413686, 0.016063906, -0.0183475, -0.0018767472, 0.025053918, -0.031497855, -0.011424535, 0.0074610543, 0.014502138, 0.006502995, 0.0088915825, 0.0036189724, -0.024043363, -0.018570611, 0.023216544, 0.02703566, -0.007913836, 0.021982878, -0.0029250353, 0.00058443286, 0.017021965, 0.015932664, -0.010971753, -0.026392577, 0.009869328, 0.020250496, 0.0024460054, -0.010374606, -0.014357773, -0.025093291, -0.0027248927, 0.028190581, 0.021195432, 0.012001995, -0.02349215, 0.03567132, 0.008425676, -0.019633664, 0.02665506, -0.0011311339, 0.03462139, 0.00840599, 0.021339796, -0.029765474, 0.00910813, 0.013032238, 0.03480513, -0.034936372, 0.0172582, 0.01102425, -0.027980594, -0.021300424, 0.03719372, 0.012152922, 0.030132947, 0.020066759, 0.00027129988, -0.0017553492, -0.016628243, 0.0028315259, -0.0014288871, 0.0004326854, -0.023374034, -0.0011032452, -0.00092689, 0.009016261, -0.024423962, -0.008064764, -0.0018406559, -0.0032334516, -0.0018455775, -0.0046689007, 0.026510695, -0.0127435075, 0.026760053, -0.0030119824, 0.04215463, 0.024410838, -0.015447074, 0.009199998, 0.014187159, 0.032285303, -0.0411047, -0.0053119822, 0.005174179, -0.0071329516, 0.020198, 0.00044827026, 0.024922678, 0.023164047, 0.017087586, -0.025578883, 0.011687017, 0.010308986, -0.023282165, 0.023794005, -0.03832239, 0.0059813117, 0.013170041, -0.0020555633, -0.00028524426, 0.007533237, 0.008241938, 0.0055252486, 0.020447358, -0.012218543, 0.015775176, 0.017271323, -0.010774891, -0.02217974, 0.02358402, -0.0010064549, -0.0064406553, -0.017061338, -0.0107552055, 0.0046393718, -0.0073560616, 0.006434093, -0.64675593, -0.040632233, 0.008274749, -0.018688727, -0.005456347, 0.014239656, -0.004563908, -0.011529528, -0.010584592, 0.012362909, -0.010761768, 0.01387218, -0.014777744, -0.021129811, 0.0061223954, -0.008281311, 0.016995717, 0.0016741438, -0.01006619, 0.0026198998, -0.028951779, 0.0027183306, -0.022114119, 0.012841938, -0.00023336301, 0.005026533, 0.004042225, 0.005515406, -0.016562622, 0.028610552, -0.019266188, 0.031917825, -0.0063159764, 0.015460197, 0.040894717, -0.017468186, -0.006378316, 0.025841365, -0.0010433665, 0.027954347, -0.02821683, 0.0035106984, 0.01719258, -0.0061420817, -0.006772039, 0.011293294, 0.008451925, -0.00050322746, 0.012664762, -0.013439085, 0.012376033, -0.01134579, 0.021234805, -0.019056203, -0.0059845927, -0.008156632, 0.031917825, -0.012408842, -0.01783566, 0.005695862, -0.0018422964, 0.024397714, -0.004590156, -0.034490153, -0.027403135, 0.018898712, -0.024489582, -0.0048657623, 0.020237371, -0.017783165, 0.0029890153, 0.019029954, -0.0024870182, 0.023964617, -0.02026362, 0.026681308, 0.04593437, -0.016129527, 0.0074544926, 0.008858772, 0.00936405, 0.0044982876, -0.03260028, -0.019883022, 0.022324106, -0.008005705, -0.010938942, 0.018583735, 0.012717259, 0.0051479307, 0.017940653, 0.028453063, -0.014331524, -0.013412837, -0.005686019, -0.008077888, -0.0231378, -0.0075726095, 0.03994978, -0.015906418, -0.009646218, -0.01790128, 0.020604847, 0.005213551, 0.027088156, 0.0029955772, -0.005935377, -0.020526102, 0.01863623, -0.022153491, 0.013793436, -0.034280166, -0.0061256764, -0.022114119, -0.012389156, -0.020027386, 0.021129811, 0.0007529956, 0.0016036017, -0.03141911, -0.011798572, 0.0029972177, -0.01828188, 0.0020129099, -0.018557487, 0.038269892, 0.020512978, 0.007887588, -0.0068573453, -0.013406275, 0.022599712, -0.0034910124, 0.019568043, -0.0013517829, -0.0035697569, 0.030526672, 0.009928387, 0.008045077, 0.021615403, -0.011818258, -0.03260028, 0.005768045, -0.0083731795, -0.004511412, -9.5867494E-05, -0.006023965, -0.021917257, -0.00834037, -0.031314116, -0.009672467, -0.0110111255, -0.016470753, 0.016431382, 0.003714122, 0.020512978, -0.008635662, -0.0034844503, -0.0002512036, -0.0017110554, -0.00020834518, 0.008484735, -0.0079269605, -0.014160911, 0.022192864, 0.0049773175, -0.020394862, 0.0024328812, 0.005807417, -0.013819684, -0.040291008, -0.010512409, 0.0143184, -0.0058599133, 0.015775176, 0.0022507843, 0.0029397998, -0.002042439, 0.0003061608, -0.004032382, -0.014305276, 0.00738231, 0.014108415, -0.05325762, 0.00741512, 0.0323378, 0.0003758826, 0.028295573, 0.01777004, -0.022507843, 0.008688158, -0.004727959, 0.035015117, 0.016510125, 0.008031953, -0.030211693, -0.03761369, 0.0052365186, -0.01923994, 0.010525533, 0.013911553, 0.004068473, -0.013419399, 0.002281954, -0.012769756, 0.0057057054, -0.030316686, 0.018675603, -0.017665047, 0.031104133, 0.017586302, 0.0035927242, -0.029765474, -0.021247929, -0.01732382, -0.017822536, 0.015643936, 0.00075381587, 0.02106419, -0.0019374462, -0.009127816, -0.0112014245, -0.00559415, 0.028374318, -0.008845648, -0.0058336654, -0.011417973, 0.0051216823, 0.0056236796, 0.015853921, -0.000180559, 0.012697573, 0.019673035, 0.013596574, -0.018045647, -0.0042390865, 0.00834037, -0.0013747502, -0.025736373, 0.057746068, -0.0054793144, 0.0260776, 0.024240224, 0.00690328, -0.0039011405, 0.00767104, 0.016037658, 0.012940369, 0.020749211, 0.00738231, 0.0004343259, -0.031314116, 0.010092438, 0.004937945, -0.016116403, 0.017153207, -0.0032400137, 0.025395146, 0.015447074, 0.013163479, 0.023347786, -0.018741224, 0.007067331, 0.014095291, -0.00929843, 0.025683876, -0.0002866797, -0.0050954344, -0.05538373, -0.016234519, -0.031261623, -0.0072051343, -0.0168776, 0.00078826665, -0.0031842364, 0.016706988, -0.013530954, 0.0098496415, 0.019266188, 0.007067331, 0.012277601, -0.014817116, -0.024725817, -0.0069229663, 0.043020822, -0.027718112, -0.012376033, -0.0100465035, 0.012717259, -0.00789415, 0.031051636, 0.012264477, -0.00071895495, -0.0061125527, 0.004816547, -0.0018980739, -0.028873034, -0.0029184732, 0.015617686, 0.016483877, 0.0002231098, -0.015040226, -0.0038584874, -0.013675319, -0.026550068, 0.04097346, 0.016654491, -0.014003421, -0.023689011, -0.0012246432, 0.0002585859, 0.021681024, -0.04832296, -0.008497858, -0.0558037, -0.016785732, -0.0021244646, -0.0009326318, -0.011431097, 0.034306414, -0.010998001, -0.022363476, -0.008064764, 0.006516119, -0.008530669, 0.07443993, 0.025946358, -0.013819684, 0.014200283, -0.026550068, 0.0023377314, -0.008806275, -0.008786589, 0.020381738, 0.01828188, 0.024843933, 0.019830525, 0.0052233944, -0.032469038, -0.016182024, -0.0010351639, -0.0074676163, -0.0044884444, -0.025487015, -0.0097905835, -0.01093238, 0.003694436, 0.029188013, -0.0015830953, 0.011726389, 0.014856488, -0.0047542076, 0.025710125, 0.0046196855, -0.008688158, -0.02004051, 0.00071649416, -0.008222253, -0.010413978, -0.023387158, 0.008196005, 0.005187303, -0.02876804, 0.007920398, -0.0006356989, 0.0037305271, 0.0035303845, 0.018019399, -0.021772893, 0.010184307, 0.0063291, 0.0079925805, 0.008012267, 0.023767756, -0.02821683, 0.0071067037, 0.0062634796, -0.029922962, -0.0071592, -0.01291412, -0.004311269, 0.0023196859, -0.006417688, 0.004586875, -0.031077884, -0.014948357, -0.007408558, 0.0044129808, 0.0065751774, 0.013740939, -0.025552636, 0.008642224, 0.013406275, -0.0031235374, 0.008970327, 0.0068835937, -0.012330098, -0.024122108, 0.0029250353, 0.04435948, 0.029870465, 0.018242508, -0.0017274605, 0.018137515, -0.0007718615, 0.042338368, -0.016615119, -0.0066211117, -0.0157883, 0.0076972884, -0.0097249625, 0.024948927, 0.00767104, 0.010952067, 0.012953493, 0.00014795379, 0.009600284, -0.0046360907, -0.017048214, -0.00086291, -0.005056062, 0.0122907255, 0.007244507, 0.022442222, -0.009232809, 0.019554919, -0.0073363753, 0.002905349, 0.008976889, 0.018006274, -0.0046131234, -0.011339228, -0.0014928671, 0.013596574, -0.002032596, 0.010650212, -0.010683022, -0.012008557, 0.0041078455, -0.0037994287, 0.015237087, -0.0043637655, 0.024266472, -0.00019194005, -0.016457628, 0.026366329, -0.039031092, 0.03422767, 0.00022536551, -0.010650212, 0.006063337, -0.0029988582, -0.01275007, -0.012796003, 0.02805934, -0.0047378023, 0.02246847, 0.011595148, 0.009383736, -0.026418826, -0.012986303, -0.017783165, -0.015066474, 0.010505847, -0.016116403, -0.018846218, 0.005295577, 0.008648786, 0.007920398, -0.0025395146, -0.023229668, -0.032810267, 0.009265619, -0.017651923, 0.020434234, -0.030027956, 0.0031743932, -0.019253064, -0.019896146, 0.002231098, -0.028190581, -0.015735803, -0.012599142, 0.02429272, 0.03994978, 0.018688727, 0.015263336, -0.0039175455, 0.022009127, -0.0073363753, -0.02409586, -0.0018767472, -0.016037658, -0.054596283, 0.017179456, 0.028558055, -0.014134662, -0.015158343, -0.043440793, 0.023216544, -0.011057059, 0.0067064185, -0.010774891, -0.0047017112, -0.007848215, -0.0004819008, -0.017520683, -0.0044064187, 0.020604847, -0.025880737, 0.0013378386, 0.040002275, -0.0045212545, -0.005046219, 0.02055235, 0.0072641927, -0.027534375, 0.011647644, 0.014777744, 0.031445358, -0.0068573453, -0.011962623, -0.028794289, 0.002022753, -0.0002911911, 0.005285734, 0.017953778, 0.021300424, 0.033282734, -0.028321821, 0.015867045, -0.004691868, 8.2922825E-06, 0.015709555, -0.011614834, -0.0315766, -0.023387158, 0.015643936, -0.03483138, 0.0067195427, 0.004117688, -0.014462765, 0.020906702, -0.030999139, -0.013452209, 0.014515262, -0.016838228, 0.012553208, 0.0149221085, 0.009606846, 0.0447532, -0.038821105, 0.011260483, -0.0220485, -0.0037764616, 0.01761255, 0.023334661, 0.034490153, -0.02662881, -0.00546619, -0.009541226, 0.005046219, -0.018045647, 0.0047148354, 0.0053579165, -0.0025575603, 0.004855919, 0.00077104126, -0.018321253, -0.011404849, 0.010348358, -0.020198, 0.0144102685, 0.0006849143, -0.022914689, -0.0061092717, 0.02489643, -0.01402967, 0.0038847355, 0.0017143363, 0.007972894, -0.017520683, 0.011109556, 0.008930954, 0.0012221824, -0.019659912, 0.029581735, -0.014226532, 0.023662765, 0.01387218, 0.00866191, -0.002409914, 0.033151492, -0.028663049, 0.023059055, 0.00965278, -0.004928102, -0.006427531, -0.009259057, -0.011897002, -0.03687874, -0.025906986, -0.0168776, 0.015197715, 0.0074873026, 0.012520397, -0.003684593, -0.029844217, -0.017848784, -0.00056720746, -0.01754693, -0.013117544, -0.0040094145, -0.02652382, -0.031261623, -0.017507559, -0.010328672, 0.021431666, 0.011680455, 0.0057417965, 0.00859629, -0.02256034, 0.011897002, -0.052365184, 0.016116403, 0.025526388, 0.014160911, -0.0108798845, 0.030920394, 0.010361482, -0.011240797, 0.014160911, -0.015670182, -0.033072747, -0.043834515, 0.01850499, 0.009442794, 0.0041406555, -0.016536374, 0.016575746, -0.0054071317, 0.010394292, -0.012710697, -0.01230385, -0.002281954, 0.009127816, 0.00056105555, 0.010315548, -0.028741794, 0.008799713, -0.012809128, 0.0053611975, 0.021313548, -0.030789154, -0.016470753, 0.000987589, 0.0117132645, -0.013209413, -0.03477888, -0.012651638, -0.010289299, 0.013137231, -0.004901854, -0.026838798, 0.007644792, 0.01732382, -0.0017061338, -0.005538373, 0.024699569, -0.040789723, -0.036117543, 0.023754632, -0.027849354, -0.014974605, -0.03186533, -0.0022540654, 0.055436224, 0.004160342, -0.022219112, 0.005026533, 0.015040226, -0.053808834, -0.010394292, -0.021838512, 0.023400282, 0.010971753, 0.0053513544, 0.0010286018, 0.0014977886, 0.014331524, 0.014265903, -0.0012927245, -0.030579168, -0.003937232, -0.010374606, 0.009764335, -0.030132947, -0.016431382, -0.023964617, 0.033413976, -0.010125248, -0.0023082022, 0.02055235, 0.0027855916, -0.003599286, -0.0054399422, 0.0010359841, 0.040894717, 0.013281596, 0.021431666, -0.041052204, -0.0064012827, 0.014174035, -0.0020096288, 0.017691296, -0.010637088, -0.0033893005, -0.0029414403, 0.0143184, -0.016785732, -0.021142935, -0.019449925, 0.0129994275, 0.008320684, -0.0041242503, 0.014265903, 0.03659001, 0.0048395144, -0.014305276, -0.022205988, 0.034280166, -0.0124875875, 0.0005315263, 0.005285734, -0.010112124, -0.020276744, -0.0029808127, 0.022140367, 0.0019308842, -0.012717259, -0.013491581, 0.0037797426, -0.026195716, 0.0149221085, 0.0120348055, -0.022074748, -0.029712977, -0.009856204, -0.027665617, 0.024358341, 0.007815406, -0.004567189, -0.023387158, 0.017336944, 0.0066178306, -0.00533823, -0.037561193, 0.025395146, -0.002649429, 0.021694148, 0.022035375, 0.19276688, 0.0012246432, 0.002578887, 0.030027956, 0.0082485005, 0.015171467, -0.01275007, -0.0013624463, 0.002528031, -0.011969185, 0.022625959, 0.0015125533, -0.015447074, -0.0058336654, 0.019659912, -0.011142367, -0.028505558, -0.015552066, 0.0028544932, -0.008497858, 0.014436517, -0.030211693, 0.028374318, 0.0058697565, -0.005420256, 0.0061880164, -0.008537231, -0.000923609, 0.0055810264, 0.003989728, 0.011253921, -0.0065292427, -0.013288158, -0.010978315, -0.020946074, -0.0050495, 0.0345164, -0.0034582021, -0.0061453627, 0.025355773, -0.015525818, 0.013025676, 0.017520683, -0.0016355917, 0.0009638016, 0.0030710408, -0.021654775, 0.012461339, 0.004202995, 0.0070935795, -0.009961197, -0.025080167, 0.015762052, 0.009869328, -0.018203136, -0.022520967, 0.012362909, -0.026851922, 0.004806704, -0.013242223, -0.01761255, 0.028164333, -0.0060174027, 0.038401134, 0.0037731805, 0.017796287, 0.0046557765, -0.017297572, 0.0023442935, 0.00965278, 0.0050888723, 0.020066759, -0.009180312, 0.025815118, -0.016825104, -0.024975175, 0.017691296, -0.0073101274, 0.007821968, -0.0017668328, 0.0011762481, 0.013078172, 0.004206276, 0.020591723, -0.009350926, -0.02952924, 0.015985161, -0.0013927958, -0.0031054916, 0.0108798845, 0.020460483, 0.00048231092, 6.751737E-05, -0.005334949, 0.013334092, 0.015972037, -0.021720396, 0.016851353, -0.014239656, 0.0064701843, -0.011148929, 0.019423677, -0.0052726096, 0.0023180454, -0.011673893, 0.01483024, 0.012015119, 0.0075988574, 0.008812837, -0.0059911544, -0.0032104845, -0.03876861, 0.036642507, -0.01946305, -0.023964617, 0.0065948633, 0.00041279415, -0.01738944, 0.007920398, -0.010446789, 0.0052233944, -0.034857627, 0.023045931, -0.011411411, -0.012415404, -0.028715545, -0.0014198642, 0.034568895, -0.00508231, -0.018544363, -0.000409103, 0.015525818, -0.0050035655, -0.019515546, -0.009455918, -0.011956061, 0.020053634, -0.006076461, -0.011463907, -0.014633379, -0.0020982164, 0.0028659767, -0.007119828, 0.017218828, 0.018111266, -0.015945788, -0.0053513544, -0.036380023, -0.00060781016, -0.009370612, -0.012822252, 0.0022458627, 0.0014526745, -0.022297857, 0.02550014, 0.007900712, -0.026956914, -0.025801994, 0.0010819185, 0.008176318, -0.03819115, 0.006798287, 0.0062700417, -0.0144758895, -0.0066178306, 0.0042817397, -0.16525875, 0.01620827, 0.0216679, -0.008976889, 0.00815007, -0.0044786013, 0.02246847, -0.004563908, -0.00961997, -0.0018915118, 0.026536943, 0.009862766, -0.01792753, -0.012579456, 0.006276604, -0.0072313827, -0.026773177, 0.019029954, 0.012789441, 0.031445358, 0.022744076, -0.02445021, -0.004727959, 0.010853636, 0.029581735, -0.025067043, 0.020158628, 0.01102425, 0.0025001422, -0.020171752, 0.006765477, 0.0064537795, 0.030867899, 0.017980026, 0.029135516, -0.02026362, -0.0058697565, 0.005213551, -0.0073494995, 0.03889985, 0.006404564, 0.010925818, 0.023255916, -0.0068835937, 0.007828529, 0.021562906, -0.02320342, -0.004951069, 0.012513835, -0.020762336, 0.031182876, -0.018098142, -0.03278402, 0.012671324, 0.03805991, -0.006791725, 0.0019144791, -0.0095346635, 0.005777888, 0.015932664, 0.014055918, -0.0056991433, -0.00040602704, -0.0033991435, -0.0022475033, -0.004583594, 0.0168776, 0.019253064, -0.047824245, -0.0019866617, 0.017848784, 0.04876918, 0.010630527, -0.011982309, 0.02703566, 0.015762052, -0.010886447, -0.005676176, 0.032285303, -0.02115606, 0.0019259626, 0.03262653, -0.003714122, -0.0021966472, -0.012599142, 0.0028643361, -0.028374318, -0.011870754, -0.012868186, -0.026602564, -0.00095067744, -0.007520113, -0.012894435, 0.008740655, 0.024555203, 0.011352352, 0.011142367, -0.0015330596, 0.0062306696, 0.0027659053, 0.018203136, 0.008957203, -0.021392293, 0.014961481, 0.033518966, 0.016090155, 0.009633094, 0.03202282, 0.01754693, 0.009574035, -0.009580597, 0.019686159, 0.009232809, 0.022061624, 0.0149877295, 0.024725817, 0.013570326, -0.023400282, 0.0063094143, -0.0005393188, 0.029319253, -0.02122168, -0.03803366, 0.016050782, -0.031812835, 0.00039720928, -0.101003125, -0.020001138, 0.006161768, 0.011588586, 0.0036288155, 0.010486161, 0.010105561, -0.00039208267, -0.015893294, 0.011293294, 0.023912122, -0.023111552, -0.012074178, 0.008110697, 0.026956914, -0.0055744643, 0.009994007, -0.023846501, -0.014121538, 0.018478742, -0.0013255348, -0.015735803, -0.022652207, -0.002821683, 0.001127853, -0.015604562, -0.011109556, -0.01153609, 0.027928099, 0.01476462, 0.0026707556, 0.014489014, 0.025395146, -0.006411126, -0.025933234, 0.0223766, -0.014069042, 0.004324393, 0.025355773, -0.015355204, 0.008451925, -0.0025706843, -0.023439653, -0.026471322, -0.024738941, 0.016536374, -0.006817973, 0.00061642285, 0.0139640495, 0.016142651, -0.016234519, -0.009488729, -0.021103563, 0.003993009, 0.018426245, -0.022914689, 0.0062634796, 0.020211123, -0.0042423676, 0.013885304, -0.02643195, 0.017730668, 0.020447358, 0.038164902, -0.006417688, 0.01438402, 0.019856773, -0.008071326, 0.02387275, -0.018609982, -0.014003421, 0.016615119, -0.021838512, 0.039556056, -0.025841365, -0.02173352, -0.028978027, -0.010282737, 0.023400282, -0.013754063, -0.019344933, -0.010505847, 0.035776313, -0.016339513, 0.02026362, 0.042600848, 0.023833377, -0.0069164042, 0.00895064, -0.01620827, 0.010689585, 0.014594006, 0.013622822, -0.031077884, -0.021405417, -0.00012478154, -0.009344364, -0.005318544, -0.019581167, 0.010564906, -0.032731522, -0.02834807, -0.06514806, 0.03244279, 0.0032547785, -0.004672182, -0.009377174, -0.018714976, -3.7347312E-05, -0.016825104, 0.015958913, -0.002582168, -0.010899571, 0.012395718, 0.0063553485, 0.0031694716, -0.010735519, -0.03790242, 0.034306414, -0.00559415, 0.031707842, 0.0122316675, -0.009416547, 0.008530669, -0.0010712552, -0.006076461, -0.032810267, -0.01990927, -0.02371526, 0.014370897, 0.0097905835, -0.010532095, 0.017691296, 0.0052168323, 0.035723817, 0.035960052, -0.020631095, -0.023006558, 0.0126122665, -0.0043998566, -0.004472039, -0.030342935, -0.012520397, -0.008701283, 0.005820541, -0.0096593425, -0.015814548, -0.021024818, 0.0047476455, 0.010637088, 0.03422767, 0.03231155, 0.01588017, 0.01035492, 0.017008841, -0.03026419, -0.0010302423, -0.009049071, 0.03480513, -0.013117544, -0.017599426, -0.028269324, -0.0001499019, 0.015447074, 0.012211981, -0.02106419, 0.0070935795, -0.0050921533, -0.013373464, -0.003691155, -0.013183164, -0.016759483, -0.008287873, -0.004075035, 0.019069327, 0.012500712, -0.003192439, 0.0006693294, -0.010597716, 0.006785163, -0.042810835, 0.0046229665, 0.0015388015, 0.020526102, -0.035146356, 0.0052726096, 0.0062405127, -0.011477031, -0.02042111, -0.014580882, -0.022534091, 0.024909554, -0.012520397, -0.0030611977, -0.011240797, -0.0037633374, 0.028321821, 0.011306417, 0.0004531918, -0.012316974, 0.0016085233, 0.020539226, -0.010564906, 0.0094690425, 0.0039208266, -0.02582824, -0.017061338, -0.017717544, -0.015092722, -0.018268757, -0.018583735, 0.012796003, 0.020093007, -0.01696947, -0.02665506, -0.0035631948, 0.015210839, 0.01990927, -0.008648786, -0.03661626, -0.017586302, 0.029922962, 0.008727531, 0.0028282448, -0.001479743, -0.002359058, 0.012015119, -0.020289868, -0.0069820248, -0.00036993576, 0.009803708, 0.0067523527, 0.0018636232, 0.0030940082, 0.013347216, -0.0064472174, 0.0013091296, 0.007513551, 0.0019800996, 0.031655345, -0.0031875174, 0.07706475, 0.01233666, -0.042810835, 5.839202E-05, 0.006388159, 0.020696716, 0.018032523, -0.008235376, 0.0027790295, -0.026746929, 0.009987445, -0.00097364467, -0.006289728, 0.017730668, -0.005558059, -0.007297003, -0.0016511766, 0.021589154, -0.03480513, -0.021720396, 0.044700705, -0.027298141, 0.018452493, -0.012763194, -0.011936375, -0.013504705, 0.021247929, 0.004291583, 0.004452353, -0.007067331, -0.013373464, -0.008110697, 0.008327246, -0.012822252, -0.0011048857, 0.00383552, -0.003586162, 0.015525818, -0.020237371, 0.033492718, 0.0013829527, 0.028505558, -0.016326388, -0.01863623, 0.014817116, -0.012152922, 0.010965191, -0.028846785, -0.04128844]
+ },
+ {
+ "Id": 13,
+ "Type": "Bags",
+ "Brand": "Daybird",
+ "Name": "Trailblaze hiking backpack",
+ "Description": "The Daybird Trailblaze backpack in forest green is a reliable and spacious bag for all your outdoor adventures. With a 40-liter capacity and durable ripstop fabric, this backpack provides ample storage and protection for your gear. Its ergonomic design and adjustable straps ensure a comfortable fit no matter the length of the hike.",
+ "Price": 89.99,
+ "Embedding": [0.0009841267, 0.0044629388, -0.010387817, -0.008161377, 0.017194554, -0.0005913981, -0.02262653, -0.040236864, 0.009187417, -0.018334597, -0.007376759, 0.005626455, -0.0050329613, -0.005908113, -0.013693946, 0.017275028, 0.021446249, -0.0014409827, 0.011098669, -0.0074035833, -0.010005567, 0.0077858334, -0.011098669, -0.007873014, -0.019152747, -0.01099137, 0.025054155, -0.0060053524, 0.029507035, -0.002829993, 0.02127189, -0.0015189417, 0.003718557, -0.0066323765, 0.00088269624, 0.0043489346, 0.0044897636, -0.007101807, 0.028702296, 0.007671829, 0.037178863, 0.015544842, 0.002311943, 0.028541349, -0.015571667, 0.005908113, -0.00045014994, -0.007846189, -0.031438403, 0.009053295, -0.0021962621, -0.0004006921, -0.008241851, 0.025295576, 0.0069006225, 0.014029253, 0.008550334, 0.016859246, 0.02789756, -0.023015486, -0.019420994, -0.0014745134, -0.027267182, 0.0061964775, -0.010642651, -0.029641157, -0.0016413288, -0.0068134423, 0.020105021, 0.034711003, 0.013962192, 0.00023136198, 0.025335813, 0.0073700524, 0.0041477503, -0.031438403, -0.020051371, -0.0041611623, -0.021003643, 0.007249342, 0.016108159, -0.037634883, -0.014002429, -0.0148205785, 0.009603199, 0.0044428203, 0.00843633, 0.017543273, -0.029238788, -0.0023555332, -0.0070079206, -0.009355071, 0.002424271, 0.006059001, -0.014377973, -0.0020805812, 0.0057002227, 0.016738536, 0.014833991, -0.019286871, 0.0021929091, 0.011541274, -0.005965115, -0.0057874024, -0.042275533, -0.017301852, -0.019273458, -0.00036129353, 0.016832422, -0.00029297467, -0.027870735, 0.0042215176, 0.01565214, -0.035676688, -0.001557502, -0.013895131, 0.015974035, 0.011621748, 0.026180787, -0.04525306, 0.033155177, -0.0050094896, 0.023136197, -0.028568175, -0.006454664, 0.03353072, -0.006967684, -0.021258477, 0.036427774, -0.0028568173, -0.0022465582, 0.03269916, 0.014337736, -0.031492054, -0.015638728, 0.003970037, -0.0008986233, 0.010897485, -0.010528646, 0.014109727, -0.010676182, 0.02321667, -0.01963559, -0.0129361525, -0.0037889716, 0.012178358, -0.017033607, 0.018012702, 0.006820149, -0.016698299, 0.038895637, -0.0034083978, 0.034013562, 0.0038828575, -0.012131415, 0.02402141, -0.0009891563, 0.02038668, -0.016751949, -0.010428054, -0.007624886, 0.0018374835, 0.025765005, -0.009603199, 0.027414717, 0.019192984, -0.0025550409, 0.008456448, -0.019260047, -0.006317188, -0.0063540717, 0.04495799, -0.012064354, 0.011118787, 0.022733828, 0.010763361, 0.034094036, -0.00053691067, -0.021701083, -0.0065753744, -0.019649003, 0.016577588, 0.003497254, 0.0033111586, -0.012151534, -0.01629593, -0.0016664768, -0.011433976, 0.0026187494, -0.010340874, 0.0070414515, -0.0076517104, -0.032779634, -0.005693516, -0.6579532, -0.0038828575, -0.0056130425, -0.036910616, 0.031196984, 0.00074605853, 0.019716064, 0.0077455966, -0.008717988, -0.01060912, 0.012768499, 0.018495545, -0.0001054646, -0.005492332, -0.0018492193, -0.017033607, 0.0022012917, -0.015880149, 0.01775787, -0.0037655, -0.050617978, 0.004684242, -0.014458447, -0.011997292, -0.0062601855, 0.013278166, 0.009415426, -0.015746027, -0.0011358531, 0.009616611, -0.026475858, 0.036642373, -0.0040203333, 0.008536922, 0.051905558, -0.018374834, 0.0036481423, 0.047801394, 0.0132446345, 0.0205208, -0.012325893, 0.0075712367, -0.0038560329, 0.0013395523, -0.013291578, 0.013083687, 0.038278673, -0.016081333, 0.017811518, -0.013512881, 0.022291223, -0.0011190878, 0.019192984, -0.015692377, 0.009710497, 0.013217811, 0.04372406, 0.003963331, 0.024987094, -0.008677751, -0.03658872, 0.022116864, 0.008168084, -0.008456448, -0.020480564, 0.025657708, -0.02626126, -0.031760298, 0.0040236865, -0.017891992, 0.017422562, 0.029265612, 0.011735752, 0.008369268, 0.019313695, 0.020185495, 0.017181141, 0.009140475, -0.008221732, 0.025925953, 0.030392246, -0.00094305153, -0.0109377215, -0.009978742, 0.03556939, -0.008288794, 0.008134553, -0.005891348, 0.03245774, 0.01846872, 0.013144042, 0.02238511, -0.00667932, -0.02584548, -0.016161807, 0.02673069, -0.01201741, -0.00012175843, -0.0026941935, -0.011648572, -0.0062501263, -0.0018173651, 0.012486841, 8.7860964E-05, 0.016067922, 0.014699868, 0.0012213566, -0.0028702298, 0.022210749, -0.0058209333, -0.0029171726, -0.024718847, -0.011869875, -0.022827715, -0.00812114, -0.026744103, 0.033316124, -0.007819364, 0.030794615, -0.03334295, 0.00035731174, -0.0070079206, 0.01134009, -0.009120356, -0.013264753, 0.005542628, 0.0015424131, -0.028085332, -0.0024678612, -0.006820149, -0.009522725, 0.002045374, 0.017261615, 0.0045300005, 0.017851755, 0.040102743, -0.0017871874, -0.006126063, 0.024692023, -0.028058507, -0.018374834, 0.008945996, 0.004734538, -0.04337534, -0.017623747, -0.01852237, -0.026502682, -0.0099116815, -0.02257288, -0.020534214, 0.016497115, -0.029051017, -0.007021333, -0.015625317, 0.025711358, -0.013157455, -0.01817365, -0.027213532, 0.0054487423, -0.0068570324, 0.010582295, 0.014458447, -0.0022817655, -0.0133854635, -0.034308635, -0.016309343, 0.004469645, 0.03927118, -0.0066692606, -0.052844416, 0.0043623466, -0.013351933, -0.033182003, 0.023377618, -0.0070012147, -0.017368913, -0.012929446, -0.023565391, 0.022532644, -0.0008525186, -0.0046440046, 0.023069136, -0.011494331, 0.002970822, 0.023511741, -0.0010528646, -0.0010989694, 0.03591811, -0.0029875871, 0.015397307, 0.016953133, 0.013559824, 0.001116573, -0.001288418, -0.014632806, -0.02549676, 0.005958409, 0.01829436, 0.010803598, 0.015665554, 0.029319262, -0.014847403, 0.02584548, -0.01763716, -0.0009438898, -0.025335813, 0.002886995, -0.007383465, 0.011541274, 0.010917603, 0.007886426, -0.004335522, -0.008496685, -0.01634958, -0.0012213566, 0.004566884, 0.005525863, 0.03100921, -0.00808761, -0.02889007, 0.009180712, 0.0031502112, -0.011910112, -0.009556255, -0.019233221, 0.007477351, -0.024651786, 0.032538213, 0.011480919, -0.011440682, 0.030070351, 0.030016702, -0.0048116585, 0.0268514, 0.019394169, 0.012634376, 0.01160163, -0.025979603, 0.033557545, -0.0011526186, 0.027522016, 0.015209535, 0.016443465, -0.030633667, 0.024329891, 0.02168767, 0.011433976, -0.0018676611, -0.00024079249, 0.011266322, -0.0038459736, -0.010676182, -0.0053749746, -0.0016865953, 0.0052307923, -0.02467861, 0.0046708295, 0.025054155, 0.016845834, 0.014619394, 0.016550764, 0.01022687, 0.019461231, -0.011889993, 0.030499544, -0.02386046, -0.017127492, -0.0069006225, -0.025536997, -0.009402014, 0.01904545, -0.024195768, 0.0046808887, -0.02386046, 0.007316403, 0.0023605628, -0.00128255, 0.008684456, -0.018213887, 0.03047272, -0.007732184, -0.023686102, 0.008959409, 0.01523636, -0.002689164, -0.005683457, -0.011957055, 0.00876493, 6.8685586E-05, 0.031518877, 0.009482488, 0.028514525, -0.0015558255, 0.008905759, 0.011179143, -0.011829638, 0.024423778, 0.00042206794, 0.022183925, -0.008563746, -0.02537605, 0.0057471655, -0.010173221, -0.02737448, 0.023417855, -0.008241851, -0.017932229, -0.025054155, 0.009676966, 0.0082083205, -0.007933369, -0.030740965, 0.015343658, -0.012560608, 0.0003042913, 0.017932229, -0.017717633, -0.011366914, 0.013190986, 0.0048921322, -0.023605628, -0.018911326, -0.027334243, 0.012681318, 0.08417552, -0.00020851917, -0.020561038, 0.024544489, -0.005824286, -0.018616255, -0.020708574, -0.015611904, 0.0051268474, -0.00958308, 0.010736537, -0.009167299, -0.0018777204, -0.011427269, -0.002392417, 0.003190448, -0.0063876025, -0.02127189, 0.00031141657, -0.007028039, -0.0033849264, -0.005579512, -0.0090667065, 0.012097884, 0.029989878, 0.001385657, 0.017207965, -0.0007971929, 0.03862739, -0.008543627, 0.005264323, 0.007074982, -0.0043455814, 0.0018810735, -0.009663554, 0.007933369, -0.0016832422, -0.028058507, 0.011561393, 0.0072359294, 0.033262476, 0.032672334, 0.021178003, -0.0013211104, 0.0039901556, 0.009187417, -0.015035176, 0.004888779, -0.022049801, -0.018146826, 0.039941795, 0.025630884, -0.030150825, -0.0039163884, 0.015920386, 0.0048954855, 0.011387032, 0.0060958853, -0.017368913, -0.044314202, -0.00641778, -0.027025761, 0.039432127, -0.0071487497, 0.002514804, -0.007732184, -0.008443035, 0.017811518, -0.025979603, 0.001954841, -0.035247494, -0.027012348, -0.016631238, 0.002067169, 0.013868306, 0.004566884, 0.009945212, 0.005864523, 0.017275028, 0.019474642, 0.0058779353, 0.005022902, 0.00671285, -0.008181496, -0.0035509034, 0.003277628, 0.00064211333, -0.01339217, 0.016188633, 0.029265612, 0.032430913, -0.005385034, 0.032565035, -0.018455308, -0.0047211256, 0.011594923, 0.024584725, 0.017985879, 0.020145258, -0.023672689, 0.021459661, 0.013989016, -0.015316834, -0.004939075, 0.0030194414, 0.0118967, 0.000622414, -0.0017268321, 0.008201614, 0.0026824577, 0.018012702, -0.025563821, 0.01441821, 0.015330246, -0.008221732, 0.023042312, 0.010240282, -0.010005567, 0.01274838, -0.046755236, -0.00483513, -0.05421247, 0.017865168, 0.0008403637, 0.0068603856, 0.016134983, 0.012352718, -0.03393309, -0.03235044, 0.00530456, 0.011346796, 0.023712926, 0.0011433975, -0.0053682686, -0.012869091, -0.045333534, -0.022009565, 0.015678965, -0.0007653387, 0.0027277241, -0.03487195, 0.025308989, 0.016161807, 0.020131845, -0.019260047, -0.011273028, -0.025563821, 0.0018676611, -0.009811089, 0.037715357, -0.017489623, 0.0018073058, -0.0142438505, -0.0015046911, -0.0032189493, 0.0010578942, -0.017503036, -0.011869875, 0.010971252, 0.013237929, -0.0089258775, -0.027226945, 0.015544842, 0.013600061, -0.011018195, 0.008664338, -0.02402141, -0.022639943, -0.017261615, 0.0019783126, 0.013761008, -0.019273458, -0.012352718, -0.028487701, -0.0031217101, 0.0046741827, -0.0044394676, -0.01134009, -0.0126612, -0.04401913, 0.011038314, -0.007832777, 0.0019665768, -0.012889209, -0.024893207, -0.006521725, 0.050081484, 0.0063842493, 0.013814657, 0.026127137, 0.0410416, -0.029319262, 0.0065686684, 0.0004250019, 0.01125291, -0.00782607, -0.004077336, -0.041336674, -0.032162666, 0.024249418, 0.000872637, -0.009904975, -0.012533784, -0.018897915, -0.01624228, 0.0007833615, -0.0033178648, -0.00406057, 0.0017503037, -0.006407721, -0.028916894, -0.0148205785, -0.027682964, -0.018817442, 0.015249772, 0.006696085, -0.012674613, 0.024343304, -0.030204473, -0.0017855109, -0.004372406, -0.0018274243, 0.010817011, -0.0013839805, 0.01377442, 0.015611904, -0.013854894, -0.015048588, -0.0017025224, -0.0040303925, -0.006216596, 0.011594923, 0.010857248, -0.007919956, -0.018857678, 0.021674259, 0.0013051833, -0.0010713065, -0.022009565, 0.020185495, 0.024490839, 0.002630485, -0.016859246, -0.015249772, -0.0059449966, 0.025765005, 0.0031971543, 0.020158669, 0.009737321, -0.0043891715, -0.01262767, 0.012802029, -0.017422562, 0.020091608, 0.0005838537, -0.022170512, 0.0020604627, 0.005344797, 0.014699868, -0.009261185, 0.005254264, 0.01828095, 0.0007104321, 0.0065451968, 9.738317E-06, 7.245779E-05, -0.00461718, 0.014699868, 0.011789401, 0.027763437, -0.017489623, -0.007906544, -0.016309343, 0.0014703221, 0.012862384, 0.0048049525, -0.023645865, -0.00049373985, 0.006189771, -0.026033252, 0.013472644, -0.027978033, 0.0005645735, -0.017771281, -0.002167761, 0.011856463, -0.027186709, -0.02972163, 0.009556255, -0.027454954, -0.027736612, 0.0189918, -0.0042148116, 0.023069136, -0.0072895787, -0.023458092, -0.0032256553, 0.025711358, -0.04868661, -0.002933938, 0.023163022, 0.016041096, -0.011226085, 0.01600086, -0.010280519, -0.025067568, -0.003530785, -0.015075413, -0.03017765, -0.020654924, 0.008329031, 0.005066492, 0.007336522, -0.016523939, 0.022224162, -0.0007921633, 0.020239143, -0.019649003, -0.04273155, 0.0015868414, -0.015974035, -0.0071420437, 0.030740965, -0.013405582, 0.0028065213, -0.006099238, 0.028621823, 0.0011358531, 0.019273458, -0.02626126, -0.014176789, 0.012976389, 0.00162624, -0.022854539, 0.024973681, 0.01687266, -0.015974035, -0.013989016, -0.00045014994, 0.024343304, 0.030499544, 0.019595353, 0.00072677835, 0.021754732, -0.008590571, -0.00063792197, 0.0041712215, -0.015732614, -0.004382465, -0.022237575, 0.017261615, 0.044314202, -0.00013538028, -0.02339103, -0.0076517104, -0.024061646, -0.0395126, -0.00474795, 0.019890424, 0.0026858107, 0.016725123, 0.0083357375, 0.023525154, 0.03184077, 0.0033765435, 0.028648648, 0.009958624, -0.0007837806, -0.0058444045, 0.017288439, -0.0049625468, -0.016684886, -0.040183216, -0.038520094, 0.007249342, 0.004000215, -0.0034335458, -0.0061059445, -0.029077841, -0.01201741, -0.008664338, 0.0026120432, 0.032725982, 0.013626885, 0.008577159, -0.0142438505, -0.017073844, -0.009851326, 0.012178358, 0.000853776, -0.019917248, 0.017556686, 0.027320832, -0.007276166, -0.02262653, -0.0379836, 0.002489656, -0.011963761, 0.0035140195, 0.0077455966, 0.0048015993, 0.014686456, 0.0057404595, -0.021258477, 0.016094746, 0.020829285, -0.0063339532, -0.011407151, 0.00023157154, -0.038707864, 0.030848263, -0.015960623, 0.018710142, -0.00920083, -0.017140904, -0.0017553333, -0.02982893, -0.023578802, 0.015316834, 0.0035408442, -0.019072274, -0.017087255, 0.015839912, -0.0099385055, 0.02327032, -0.0006333115, -0.011427269, -0.03210902, 0.04407278, -0.021191416, -0.027682964, -0.018240713, 0.019716064, 0.012252126, -0.0035140195, 0.02749519, 0.19860917, 0.002327032, 0.0014569098, 0.018616255, 0.007209105, 0.023981173, 0.012781911, 0.009623317, 0.010461585, -0.00911365, -0.018857678, 0.019005213, -0.0093483655, -0.0011928554, 0.008912466, -0.012439897, -0.043777708, -0.012942858, -0.023431268, -0.009388602, -0.0014032606, -0.0017134198, 0.023042312, -0.008697869, 0.0008692839, 0.003161947, 0.001385657, -0.011112081, 0.0055560404, 0.012245419, -0.011199261, -0.036722846, -0.0037688531, -0.014565745, 0.016751949, 0.022371696, 0.023069136, -0.0043891715, 0.0003537491, 0.0043388754, -0.0060288236, 0.008704575, 0.013989016, 0.017932229, -0.0014828962, 0.0046775355, -0.021714495, 0.017154317, 0.01274838, -0.00032315232, -0.013465937, -0.0039398596, 0.0047513032, -0.0070079206, -0.010179927, -0.013432407, 0.032565035, -0.027092822, -0.0087850485, -0.005378328, -0.009341659, 0.010374405, 0.003183742, 0.018388247, -0.008992939, 0.0045367065, -0.017476212, 0.018736968, 0.030204473, -0.002977528, -0.00782607, -0.0038694453, -0.008724693, 0.015799675, -0.017717633, -0.01300992, 0.0062065367, -0.001210459, -0.009288009, 0.028031683, -0.0072292234, -0.0115010375, -0.005636514, 0.0017184494, -0.014471859, -0.0380909, -0.008892347, 0.00017289277, 0.0032541566, 0.0010025685, 0.023109373, 0.0027126353, 0.009790971, -0.0040974542, -0.0041611623, 0.015625317, -0.014029253, 0.017985879, -0.028568175, -0.0050765513, -0.04214141, 0.010233576, -0.01441821, -0.018012702, -0.023833636, 0.023565391, 0.004566884, 0.003671614, -0.0023572098, -0.021526722, -0.018938152, -0.040451463, -0.00015120259, -0.0019581942, 0.003021118, -0.006025471, -0.004657417, -0.011816226, 0.0093483655, -0.02191568, 0.022948425, -0.013828069, 0.033718493, -0.010320756, -0.025308989, -0.001951488, 0.011682103, 0.017891992, 0.014619394, -0.03658872, -0.003949919, -0.0036783202, 0.028997367, -0.020480564, 0.006273598, 0.013579942, -0.02104388, -0.01974289, -0.019970898, -0.0086442195, 0.0025936014, 0.00082862796, 0.004848542, -0.010642651, 0.05831663, -0.0024510957, 0.0040672766, -0.020373266, -0.019716064, -0.015155886, -0.00320889, -0.0055090976, -0.032538213, -0.0005457125, -0.010461585, -0.026797753, -0.050027836, -0.022250986, 0.0047278316, 0.0027226945, -0.008972821, 0.0030144118, 0.028648648, -0.0074035833, -0.009455663, 0.014364561, -0.1711408, 0.009764146, 0.028863244, -0.018495545, 0.0013965545, 0.010186633, 0.018710142, -0.0067195566, -0.011970467, -0.006743028, 0.0260869, 0.006464723, -0.042865675, -0.007859601, 0.0047680684, 0.015839912, 0.012292363, 0.03229679, 0.008684456, -0.0061595934, 0.0006429516, -0.0058276393, 0.013023332, -0.014351148, 0.0019833422, -0.008288794, 0.008288794, -0.006960978, -0.009160593, -0.006927447, -0.011762577, -0.0072895787, 0.021325538, -0.007376759, 0.034308635, -0.026449032, 0.010025686, -0.010233576, -0.029077841, 0.039432127, -0.0029154962, 0.005851111, 0.017784694, 0.00021732098, 0.013325108, 0.015759438, -0.004415996, 0.0017804813, -0.019595353, 0.0009816119, 0.007732184, 0.0012330923, -0.01013969, 0.0043154038, -0.0044394676, 0.00040236866, 0.0021275242, 0.020668337, 0.027159885, -0.02537605, -0.02115118, -0.016430054, -0.0012112973, 0.0061461814, -0.016094746, 0.0037084979, 0.00667932, -0.001792217, 0.0048183645, 0.025751594, -0.021768143, -0.017167728, -0.005438683, -0.0016371375, 0.015062, 0.019434405, -0.0014040989, -0.0055560404, 0.0013227869, -0.0019213103, 0.0013806274, 0.045199413, -0.032779634, 0.01693972, 0.015316834, -0.0057941084, -0.014337736, -0.004201399, 0.00047865105, -0.038010426, 0.003953272, -0.031170158, 0.012124709, -0.009006351, 0.006223302, 0.01283556, 0.023337381, -0.014780342, -0.0033463659, -0.0072292234, 0.017355502, 0.017342089, -0.029024191, 0.01911251, 0.04061241, 0.017744457, 0.010736537, -0.0026137198, 0.013137337, -0.0035609626, -0.007390171, 0.007624886, 0.011045019, -0.0005117626, -0.0017368913, 0.020815872, -0.0058444045, -0.035086546, 0.017543273, -0.03111651, 0.023283733, -0.012493547, -0.013720771, 0.011615042, -0.010964545, -0.0045300005, -0.10713736, 0.0044897636, 0.034979247, 0.0046775355, -0.0113736205, 0.0024007997, -0.011494331, 0.023833636, 0.008892347, 0.009214242, 0.0013538029, 0.011903406, 0.00017310235, 0.006746381, 0.029855754, -0.0097708525, 0.02824628, -0.0269587, -0.0053246785, 0.012553902, -0.019997722, 0.005294501, -0.0033195415, -0.01998431, -0.0057438123, -0.015504605, -0.031492054, -0.0031787124, 0.034791477, 0.012553902, 0.016202044, -0.014632806, 0.008704575, -0.0054822727, 0.005354856, -0.0035240788, -0.026395384, -0.0013311696, 0.01911251, -0.036722846, -0.021526722, 0.0020470505, 0.016859246, -0.03570351, 0.0019883718, -0.015799675, 0.008617396, -0.005294501, 0.009475782, -0.024544489, -0.0038828575, -0.012533784, 0.0047948933, -0.016912896, 0.012446604, -0.011407151, -0.02889007, -0.0055090976, 0.015585079, -0.00061403133, -0.0135262925, 0.012902621, 0.017690808, 0.021607196, -0.008550334, -0.024705436, 0.0070883944, 0.014927877, 0.010300637, -0.0037889716, 0.004915604, 0.008288794, -0.0024795968, 0.03036542, -0.017865168, 0.0021996154, -0.031196984, -0.0070079206, -0.00064840034, -0.0016748596, -0.0128087355, -0.025912542, 0.036830142, -0.012292363, 0.008671044, 0.021070706, 0.011541274, -0.01951488, -0.006602199, -0.026770927, 0.012848972, 0.013727477, 0.008986233, -0.018723555, -0.021754732, -0.011836344, 0.0099250935, -0.022988662, -0.014860815, -0.0023572098, -0.01699337, -0.00020663306, -0.07682559, 0.041390322, -0.0035643156, -0.021379188, 0.016805597, -0.0064345454, -0.024343304, -0.0035777278, -0.0039163884, -0.0063440125, 0.009469076, -0.022224162, 0.0017704221, -0.013975604, 0.007980311, -0.0062970696, -0.012574021, 0.0010025685, 0.03194807, 0.011615042, -0.017959055, 0.0042584017, 0.005113435, 0.0055962773, -0.047157604, 0.011353502, -0.019407582, 0.019394169, 0.020561038, -0.0032256553, 0.0029289084, -0.0100659225, 0.01274838, 0.019649003, -0.01377442, -0.029802104, 0.00265228, 0.0037923246, 0.009368484, -0.021835206, 0.0011710605, -0.013881719, 0.04342899, -0.018589431, -0.020145258, -0.004560178, 0.009750734, -0.008577159, 0.023002075, 0.008650926, 0.019125924, 0.016604412, 0.02384705, -0.021473074, -0.011279735, -0.012647788, 0.0011241174, 0.0039800964, -0.005442036, -0.0067262626, 0.036079057, 0.0011425593, 0.00487872, 0.007034745, -0.0015692378, 0.0006312158, -0.0022029683, -0.0067564403, 0.021902267, 0.0026153962, -0.007946781, 0.006739675, 0.051422715, 0.0032223023, 0.0024980388, 0.005542628, -0.000669357, -0.009375189, -0.019796537, 0.022733828, -0.0062702447, -0.016014272, -0.0260869, -0.0071420437, 0.0038560329, 0.010153103, -0.022438759, 0.004201399, -0.00479154, 0.0043455814, -0.020789048, -0.011239498, 0.003899623, 0.0062635387, 0.007879719, 0.0115010375, -0.003624671, 0.0004757171, -0.0061126505, 0.038922463, 0.0022666766, 0.0016421671, -0.015062, -0.017181141, -0.0029892637, -0.008650926, 0.011963761, -0.008677751, -0.020735398, 0.007879719, -0.0044864104, -0.01163516, -0.014257262, 0.010682887, -0.022787478, -0.009998861, -0.0012733291, -0.0063540717, 0.00044260552, 0.03768853, 0.024236005, 0.034737825, 0.014565745, -0.018200476, -0.002030285, 0.003671614, -0.0015172651, -0.0026656922, 0.0097976765, 0.010153103, 0.014968114, -0.009831208, 0.007450526, 0.022009565, -0.0049558408, -8.429833E-05, 0.0046205334, 0.032430913, -0.005106729, 0.056170665, 0.008966114, -0.0023253555, 0.010595708, -0.018160239, 0.019005213, 0.04514576, 0.005378328, -0.0116686905, -0.03693744, 0.0077388906, -0.010602414, -0.0064110737, 0.028863244, -0.046996657, 0.0010889102, 0.008161377, -0.008992939, -0.014324324, 0.0037420285, 0.015759438, -0.023645865, 0.016443465, -4.82659E-06, -0.015169298, 0.0031250631, 0.016845834, -0.002323679, 0.0038862105, -0.016751949, 0.030150825, -0.006826855, -0.006743028, -0.011313265, 0.023873873, 0.00914718, -0.021312127, 0.015518018, 0.01699337, 0.0076919473, 0.005016196, 0.0071487497, -0.016269106, -0.019407582, 0.025791831, -0.0029657923, -0.016430054, -0.00987815, -0.0135262925]
+ },
+ {
+ "Id": 14,
+ "Type": "Bags",
+ "Brand": "Gravitator",
+ "Name": "Stellar Duffle Bag",
+ "Description": "The Stellar Duffle Bag from Gravitator is perfect for weekend getaways or short trips. Made from waterproof nylon and available in sleek black, it features multiple internal pockets and a separate shoe compartment to keep your belongings organized. With its adjustable shoulder strap and reinforced handles, this bag is as functional as it is stylish.",
+ "Price": 59.99,
+ "Embedding": [0.0005177259, 0.014555785, 0.003934547, -0.030307563, -0.013461723, 0.0079438435, -0.025509998, -0.03607008, 0.006662907, -0.004549532, 0.0032618006, 0.021677382, 0.010519307, 0.038924154, 0.0049572573, -0.009228177, 0.025319727, 0.022397697, 0.002626429, -0.012007504, 0.009873742, -0.0019757678, 0.011395915, -0.0016886614, -0.016227458, -0.013638403, 0.024517868, -0.00990772, 0.021038614, -0.013998561, 0.013896629, -0.002650213, -0.037999976, -0.037102982, -0.011470665, -0.009296131, 0.006849781, 0.0008383847, -0.0066493163, 0.0010932129, 0.024368368, 0.0094116535, 0.003791843, 0.014936329, -0.006921133, 0.008256433, -0.012822954, -0.018007858, 0.003175159, -0.00034210682, 0.003304272, 0.029084388, -0.018850489, -0.0027351556, -0.003771457, 0.0056300038, -0.0038937745, 0.0034401803, 0.020182392, -0.020861933, -0.019380532, -0.005463516, -0.017844768, 0.010213513, -0.0031530738, -0.023172375, -0.003958331, -0.0012274224, 0.012449206, 0.016336184, 0.022261789, 0.0065303966, 0.04147923, 0.012979249, 0.007332256, -0.012965658, -0.006516806, 0.02875821, -0.018252492, 0.00642167, -0.003141182, -0.017504996, -0.024912002, -0.008487477, 0.028432028, -0.0016546843, -0.025414864, 0.022071518, -0.0435994, -0.0027606385, -0.014759648, 0.0071487795, 0.00029241532, 0.004845133, -0.016064368, -0.0063978857, 0.012870521, 0.0080050025, 0.0026824912, -0.028133031, 0.003385817, 0.001733681, -0.0075021414, -0.009853356, -0.025509998, -0.0050931657, -0.0022458856, -0.01693418, -0.0071351887, -0.0067886226, -0.01104935, 0.012462797, 0.016077958, -0.029464932, -0.0018721377, -0.0061430577, 0.025972087, -0.00035357408, -0.008861225, -0.05036764, 0.01967953, 0.0050863703, 0.049715277, -0.008657362, 0.002835388, 0.025020728, -0.03430327, 0.002137159, 0.034058634, 0.0035540035, -0.007862299, 0.03772816, -0.0035947761, -0.03449354, -0.002485424, 0.01494992, -0.012992839, 0.036967073, 0.005833866, 0.020671662, -0.0027997121, 0.013794699, -0.029220296, -0.002427663, -0.007141984, 0.019421304, 0.013251065, 0.036695257, 0.017980676, -0.0033671295, 0.028812572, 0.004287909, -0.0014389297, 0.017681677, -0.010308649, 0.015140191, 0.013196701, 0.04191414, -0.011885186, -0.007923457, -0.028513573, 0.011919163, 0.036994256, -0.00062220544, 0.014827602, 0.018891262, 0.0051305406, -0.0019502849, -0.0147052845, 0.020889115, 0.0027844224, 0.013033612, -0.022560788, 0.0152761, 0.033569366, 0.019475667, 0.02731758, 0.0015892783, -0.029138751, 0.016784683, -0.02196279, 0.016336184, -0.0033943113, 0.02000571, -0.020834751, -0.017124454, 0.03256364, -0.013121952, 0.023865508, -0.008922384, 0.013217088, 0.0006833642, -0.015371235, 0.00032023407, -0.64279217, -0.0058542527, 0.0017319821, -0.04098996, 0.018334037, 0.0036219577, 0.010743556, 0.01561587, -0.00025079338, 0.013074384, 0.0014338332, 0.040256057, -0.021378385, -0.01057367, -0.02438196, -0.020277526, 0.012381251, 0.00455293, 0.014297559, 0.004563123, -0.030008566, 0.025849769, -0.04014733, 0.008079752, 0.008677749, 0.008895202, 0.0019995517, -0.02080757, -0.007366233, 0.029628022, -0.020562934, 0.035879806, -0.013883038, -0.0069992803, 0.04536621, -0.018347628, 0.0059595816, 0.05479825, 0.019339759, 0.0441974, -0.010818305, 0.0068735653, 0.008385546, 0.0013675778, -0.017939903, -0.007916662, 0.03528181, -0.007807935, -0.016852636, -0.014936329, 0.014134469, 0.009819379, 0.022057926, -0.004970848, 0.021595838, -0.0129860435, 0.02700499, 0.013896629, -0.008935975, -0.0010057219, 0.010668806, 0.018823307, -0.008310796, -0.01773604, -0.019720303, 0.015860505, -0.038434885, -0.004070455, 0.009996059, -0.021364793, -0.0014117481, 0.024925593, 0.005103359, 0.03479254, 0.021935608, 0.038625155, 0.008745703, 0.013203497, -0.0064488514, 0.026474949, 0.0067648385, -0.008514659, -0.01693418, -0.014134469, 0.02258797, -0.00012794498, -0.0040092967, -0.0086437715, 0.042648043, -0.028567936, -0.0017319821, 0.042349044, -0.018252492, -0.025605135, -0.027072946, 0.030959925, -0.015140191, 0.02875821, 0.012992839, -0.020630889, -0.0018041835, -0.0012953766, -0.0026315255, 0.00088085607, 0.0038258203, 0.0022628743, 0.0041350117, 0.03476536, -0.012884112, -0.026420584, 0.01528969, -0.02163661, -0.016635183, -0.029655203, -0.01179005, -0.03074247, 0.0153440535, -0.007937049, 0.01936694, -0.04017451, 0.009520381, -0.012612295, 0.0075633, 0.0030715289, -0.023648053, 0.020209573, -0.0028387858, -0.01609155, -0.028567936, -0.00045104587, 0.00043618088, 0.03185692, 0.024857638, 0.0038563996, 0.013971379, 0.028567936, -0.003978717, -0.01693418, 0.009710652, -0.047241744, -0.015738187, -0.010662011, 0.010641624, -0.041968502, -0.017328316, -0.025387682, -0.022615151, -0.02650213, -0.018469946, -0.020861933, -0.016784683, -0.011484256, -0.021419156, 0.00016043556, 0.014120879, -0.019611577, -0.018157357, -0.03104147, -0.010464944, -0.011028963, 0.036233168, -0.016023595, -0.037646614, 0.016906999, -0.04892701, -0.025754634, -0.0010065712, 0.012829749, -0.01179005, -0.03903288, -0.004097637, -0.0052392674, -4.056015E-05, 0.03397709, 0.018646626, 0.009275746, -0.014501422, -0.003000177, 0.008956361, -0.01146387, -0.006462442, -0.009248564, -0.02601286, 0.0021439544, 0.01577896, 0.02374319, 0.016988546, 0.01788554, -0.0086437715, -0.015683824, 0.025795406, 0.0023970837, 0.010274672, -0.011844413, -0.036042895, -0.018429173, 0.0016895108, -0.01738268, 0.00772639, -0.0055348678, 0.027385535, -0.031911284, -0.00017041634, -0.03142201, -0.0017447235, -0.022832604, -0.0001485436, -0.0021048808, 0.016376957, 0.019801848, 0.0012214764, -0.01447424, -0.0013981572, -0.0073186653, -0.0077943443, 0.027589398, 0.013149134, 0.009452426, -0.0060886946, 0.00886802, 0.01122603, 0.014596557, 0.00805257, -0.010267876, -0.017776813, 0.015221736, -0.016118731, 0.0056673787, 0.013264656, -0.024463505, 0.011885186, 0.011035759, 0.024748912, 0.026406994, 0.026896264, 0.0104921255, -0.022805423, -0.015955642, 0.05963659, -0.016077958, 0.017355498, 0.014596557, 0.023987826, 0.0029916826, -0.00042450125, 0.0011399314, 0.02636622, 0.0066255326, 0.00950679, -0.0110697355, -0.004491771, 0.0041486025, -0.005286835, -0.00886802, 0.0052188807, -0.014528603, 0.02243847, 0.0050150184, 0.015493553, -0.00017413258, -0.002753843, 0.026053632, 0.012422024, 0.0033722261, 0.03155792, 0.007053644, -0.0016818659, 0.0018194731, -0.0037442753, 0.00861659, 0.008351568, -0.03269955, 0.0119667305, -0.007821526, -0.00829041, 0.0012928282, 0.006295955, -0.0052256766, 0.0072982786, 0.011497847, 0.0024667366, -0.035173085, 0.0055042887, 0.016512865, -0.0019655747, -0.01447424, -0.0033994077, 0.02878539, 0.012258934, 0.024354778, 0.00747496, 0.025618725, -0.010261081, -0.017504996, -0.016077958, 0.0051645176, 0.014610148, -0.02097066, 0.042213134, -0.0324821, -0.0054873, -0.011762869, -0.019557213, -0.032373372, 0.015248918, -0.0115793925, -0.0204678, -0.0014363815, 0.027997121, 0.020032892, 0.005028609, -0.030144474, 0.008664158, -0.017600132, 0.0029662, -0.017015727, -0.007291483, 0.011545415, 0.035064355, 0.0018500525, -0.017518587, -0.015004283, -0.019733893, -0.008066161, 0.08323028, -0.002544884, -0.020481389, 0.026746765, 0.015330463, -0.006781827, 0.0023138397, 0.004824747, 0.0070196665, -0.012904499, 0.012313297, -0.027997121, -0.0126666585, -0.005861048, 0.01917667, 0.014678103, 0.0031241933, -0.007155575, 0.0026366222, -0.0060649104, 0.0012214764, -0.029220296, -0.011293985, 0.0068735653, 0.0059697744, 0.004749997, 0.0050693816, 0.012014299, 0.015167372, -0.01041058, 0.0006684992, 0.012422024, 0.008589408, -0.007753572, -0.0041723866, -0.0065269987, -0.011103713, -0.023376238, 0.008827248, 0.013373382, 0.01431115, 0.00836516, 0.0041486025, -0.005453323, 0.014650921, 0.0030188644, 0.0049402686, 0.030987106, -0.0010354518, -0.015547916, 0.007787549, 0.024449913, 0.0035675943, -0.011171667, 0.0014372309, 0.0045359414, -0.008100138, 0.0040772506, -0.018102994, -0.05270526, 0.019135896, -0.0064862263, 0.033433456, 0.019910574, 0.001109352, -0.02750785, -0.023688827, 0.015901279, -0.017695269, -0.016213868, -0.006166842, -0.014909147, -0.00082521857, -0.009466017, 0.007040053, 0.010893055, 0.017980676, 0.005687765, 0.02602645, 0.0033433456, 0.010981395, -0.0058678435, -0.0005185753, -0.014202423, 0.024191687, 0.006992485, 0.010417376, -0.0076992083, -0.017790403, 0.0045971004, 0.019788258, 0.0039005699, 0.011151281, 0.0105600795, -0.011783254, 0.0054940954, 0.028350484, 0.0023766975, 0.015031464, 0.0027045764, 0.024164505, -0.009404859, 0.0026094404, 0.014039333, 0.014134469, -0.008501068, 0.0014746056, 0.018415583, -0.006115876, 0.026529312, 0.006295955, -0.012612295, 0.0052188807, -0.015547916, -0.020454207, 0.003256704, 0.023879098, 0.0019859609, 0.006221205, -0.029002843, -0.033759635, -0.031693827, 0.009962083, 0.024694549, 0.012401638, 0.005803287, -0.0029254274, -0.017980676, -0.033596545, 0.0069483146, 0.011117304, -0.0019349953, -0.028866936, -0.021595838, -0.018021448, -0.012469592, -0.03987551, 0.0064148745, 0.021473521, -0.032753915, -0.02341701, 0.0027215648, 0.004787372, -0.018619444, -0.029383387, -0.015697416, -0.016974954, -0.0076856175, -0.018238902, 0.03933188, 0.004087444, 0.013604427, -0.023974234, -0.028894117, -0.014936329, -0.017817585, -0.01773604, -0.004016092, 0.02211229, 0.018605854, 0.016295413, 0.004644668, 0.039141607, 0.027100127, -0.014338331, 0.009574744, 0.0061702393, -0.017097272, -0.0014814012, 0.012979249, -0.007481755, -0.0130472025, -0.018456355, -0.00010394866, -0.017165225, 0.022085108, 0.007250711, -0.023539327, -0.008079752, -0.044822577, 0.0061566485, -0.0186874, -0.0027385533, -0.00059672265, -0.029002843, -0.01936694, 0.025944905, 0.012788977, 0.0014032538, 0.011586187, 0.041370504, -0.0068192016, 0.005133938, 0.018320447, 0.0066968845, -0.0019842621, 0.005439732, -0.024640186, -0.018932033, 0.005032007, -0.004603896, 0.008949566, 0.0061906255, 0.00015321544, -0.007923457, -0.01414806, -0.006054717, -0.015140191, 0.016825454, -0.019747484, -0.009418449, -0.009262155, -0.020263936, -0.04324604, 0.011090122, -0.00096834707, -0.018891262, 0.022968512, -0.015670234, -0.00079463917, -0.0024089757, -0.012788977, 0.005497493, -0.027385535, 0.009785402, 0.030062929, 0.012836545, -0.024150915, -0.003278789, -0.013067588, -0.018836899, 0.016200276, 0.018334037, -0.028866936, -0.011511438, 0.031829737, -0.011871595, -0.019638758, -0.027195262, 0.008174888, 0.027834032, 0.028975662, -0.022180244, -0.017790403, -0.0020471197, -0.0045733163, -0.00078189775, 0.01707009, -0.014691694, -0.019706711, -0.016553639, -0.0014754551, -0.0058304686, 0.020861933, 0.00772639, -0.008827248, -0.0022696697, -0.0109746, 0.019652348, -0.009928105, 0.013543268, -0.0009810885, 0.017912721, -0.0028506778, 0.01000965, 0.017138043, -0.0029560067, 0.007787549, 0.015697416, 0.020100847, -0.03819025, -0.013944197, 0.021595838, -0.0033756238, 0.005545061, -0.016798273, -0.016309002, 0.0017922914, 0.01276859, 0.002651912, 0.012388047, -0.008446705, 0.012632682, -0.0025482818, -0.0032448121, 0.004121421, -0.012177389, -0.03848925, 0.017953495, -0.02602645, -0.04571957, -0.013420951, -0.011592983, -0.0015833323, -0.029057207, -0.036015715, -0.0013208593, 0.01155221, -0.015846914, 0.0010125173, 0.026583675, 0.014650921, -0.046100114, 0.0015867301, 0.011205644, -0.029410569, -3.5729034E-05, -0.009812583, -0.0023410216, -0.03172101, -0.02163661, 0.0064930217, 0.0069720987, 0.014270377, -0.0024429527, 0.0014491229, 0.010933828, 0.0040772506, -0.02423246, -0.008304001, -0.0008196973, -0.005354789, 0.026624447, -0.01643132, 0.009860151, -0.01048533, 0.010376603, 0.0014058021, -0.014297559, -0.006292557, -0.017124454, 0.0046616565, 0.027766077, -0.01966594, -0.00618383, 0.0039073653, -0.010220309, 0.009880537, -0.00032405648, 0.0071895523, 0.011817232, 0.008609794, 0.014691694, 0.005847457, -0.010641624, -0.0067274636, 0.009187405, -0.0017370787, -0.020603707, -0.0033450446, -0.0030392506, 0.055423427, -0.013957788, -0.038761064, -0.003863195, 0.016798273, -0.015262509, -0.00036695256, 0.0050354046, -0.0056096176, 0.010634829, 0.015588689, -0.0006073405, 0.038815428, 0.009010724, 0.015085828, 0.05270526, 0.0034096008, -0.0075225276, 0.0046616565, -0.004036478, -0.038081523, -0.017423451, -0.02145993, 0.012415228, 0.029655203, 0.030769652, 0.01276859, 0.011470665, -0.002835388, -0.012544341, 0.02099784, 0.030851196, 0.035580806, 0.006513408, -0.023865508, -0.01985621, -0.017627314, 0.022696696, 0.0063774996, 0.020780388, 0.02065807, 0.009404859, -0.010254285, -0.02406937, -0.014841192, 0.007624459, 0.013672381, -0.00046888384, -0.00058568007, 0.002405578, 0.0055892314, 0.020943478, -0.028432028, 0.0012809363, 0.023634464, -0.015017874, -0.0126055, 0.0046888385, -0.039902695, 0.0035098332, -0.018972807, 0.024368368, 0.00051900005, -0.025333317, -0.025904134, -0.023022875, -0.028567936, 0.014732466, -0.007828321, -0.015738187, -0.0014066515, -0.010729965, 0.0016861131, 0.004053467, -0.0030324552, 0.008018593, -0.0324821, 0.013468518, -0.00434567, -0.01195314, -0.008181683, -0.011824027, 0.0011119002, 0.024585823, 0.011395915, 0.20038328, 0.0050184163, 0.0013004731, 0.041343324, -0.0081341155, 0.010403785, 0.026107995, -0.019761074, 0.004542737, -0.0041010347, -0.016662365, 0.0127957715, -0.012557932, -0.004916485, 0.013251065, 0.0045189527, -0.037809703, -0.016390547, -0.013590836, -0.011280394, -0.006849781, 0.011742482, -0.0026994797, -0.022139471, 0.028432028, -0.010315444, -0.008854429, -0.022329744, -0.0042981016, -0.0017787006, 0.0032142326, -0.045801118, 0.013482109, -0.021106567, 0.032373372, -0.0155343255, 0.020427026, 0.0019231032, -0.007583686, 0.020263936, -0.021256067, 0.012687045, 0.010763942, 0.0022339937, -0.0071895523, 0.026773946, -0.025659498, 0.020032892, 0.01624105, -0.0131083615, -0.005850855, -0.016879817, 0.010641624, 0.004111228, -0.02829612, 0.0001425976, 0.020698844, -0.0153440535, 0.0042981016, 0.018497128, -0.005728537, 0.018619444, -0.017627314, 0.014202423, 0.008806862, -0.00068463833, -0.021324022, 0.014175242, 0.018768944, -0.01575178, 0.0028489789, -0.0039719217, -0.009391268, 0.024626594, -0.020440618, -0.01000965, 0.008548636, 0.005711549, -0.0042981016, 0.022384107, -0.0073526422, -0.008358364, -0.0034503734, -0.024966365, 0.00055934786, -0.02457223, -0.01528969, 0.0026281278, 0.0013735238, -0.0035506058, 0.008371955, -0.018768944, 0.0075021414, -0.019964937, -0.004739804, 0.014433468, -0.0056096176, 0.033759635, -0.0070604393, 0.015031464, -0.01480042, 0.0052698464, -0.0039277514, -0.013611222, -0.013149134, 0.0147052845, -0.010077605, 0.0155343255, -0.0057013556, -0.0064896243, -0.004913087, -0.027331172, 0.007121598, -0.014610148, -0.020386254, 0.03661371, 0.01757295, -0.006316341, 0.011103713, -0.025442045, 0.026760357, -0.011511438, 0.030008566, -0.01950285, -0.007515732, -0.026284676, 0.010886259, -0.020304708, 0.0014117481, -0.045230303, 0.0055518565, 0.0052120853, 0.024667367, -0.02260156, 0.008181683, -0.01577896, 0.013339405, -0.04438767, -0.029682385, -0.01545278, -0.0020861933, 0.021595838, 0.0073730284, -0.00209129, 0.03446636, -0.028866936, -0.0106212385, -0.01380829, -0.00024548447, -0.020726025, 0.010356217, -0.009384472, -0.0097310385, -0.025550772, -0.004165591, -0.010906646, -0.04490412, -0.030878378, 0.018469946, -0.015330463, 0.0022594763, -0.009112655, 0.020481389, -0.023022875, -0.0032651983, 0.0054193456, -0.17341906, 0.029845476, 0.02196279, -0.0043830443, 0.007508937, -0.0036865142, 0.022533605, 0.016839046, -0.011796845, -0.025944905, -0.008990338, -0.0037408776, -0.04634475, -0.008446705, -0.0094728125, 0.0012673454, -0.0022254994, 0.014718875, 0.012381251, 0.020032892, 0.036477804, -0.022017155, 0.014216014, 0.011660937, -0.0111308945, -0.0030749266, 0.0036389462, 0.018184539, -0.011633756, -0.015683824, -0.011355143, -0.026080813, 0.0354449, 0.0045903046, 0.026461357, -0.008677749, 0.012748204, -0.010634829, -0.0071623703, 0.027426306, -0.005742128, 0.033813998, 0.015412007, -0.0027283602, 0.011837618, 0.014392695, 0.0016640279, 0.006482829, 0.008100138, -0.03446636, 0.027684532, -0.02292774, -0.02162302, -0.0027708316, 0.005613015, 0.014107288, 0.016716728, 0.009058292, 0.023321874, -0.031204559, -0.02750785, -0.0286223, -0.009669879, -0.014283968, -0.008983542, -0.016023595, -0.01155221, -0.013672381, 0.008480681, 0.01104935, -0.021813292, 0.0030290575, -0.012388047, -0.0012002407, 0.016716728, 0.005371778, -0.013753925, 0.004658259, -0.013359792, -0.019597985, -0.020685252, 0.05547779, -0.015004283, 0.0019044159, -0.011565802, -0.0028863538, -0.009058292, -0.007937049, -0.0050965636, -0.0077195945, 0.01788554, -0.009608721, -0.0012792374, -0.0060275355, 0.008079752, 0.008650567, 0.023022875, -0.0033416466, -0.0007997357, 0.0024905207, 0.015316872, 0.010471739, 0.0032702948, 0.0033127663, 0.023974234, 0.018918443, 0.016526457, 0.009486403, 0.024164505, -0.024680957, 0.011219235, 0.0017549166, 0.011164872, 0.010403785, 0.015357644, 0.0066391234, 0.008840838, -0.034357633, 0.022696696, -0.030932743, 0.025292546, -0.019964937, -0.001214681, -0.002638321, -0.0038360134, -0.0011985418, -0.10459507, -0.008412727, 0.02145993, 0.020386254, -0.007977821, 0.011178463, -0.012537546, 0.008344773, 0.009466017, 0.017097272, 0.014229605, -0.010933828, -0.014379105, 0.023226738, 0.036504984, -0.024912002, 0.020685252, -0.026135176, -0.0029678987, 0.0026196337, 0.0032906812, 0.015955642, 0.0012223258, -0.0010566874, -0.0042641247, 0.013251065, -0.021052204, 0.010519307, 0.03740198, 0.010954213, -0.001833064, 0.014895556, 0.008725316, -0.025659498, -0.012333684, -0.009941696, -0.029464932, 0.008745703, 0.02553718, -0.02310442, -0.0066832933, -0.0068124062, -0.025944905, -0.03446636, -0.0068463837, -0.008535045, 0.020889115, 0.011022168, 0.018510718, 0.006516806, -0.0071963477, -0.019203851, -0.022044336, -0.01901358, 0.013359792, 0.0066017485, -0.0046480657, 0.0087728845, 0.02764376, -0.00047440513, -0.015045055, 0.02309083, -0.0015204748, 0.012911294, -0.02228897, -0.023648053, -0.027942758, -8.658849E-05, -0.009092269, -0.018605854, 0.00471602, 0.015670234, -0.010702783, 0.033379093, -0.011491052, 0.02196279, -0.04077251, 0.008935975, -0.002227198, -0.012625886, -0.009826174, -0.02681472, 0.03123174, -0.022615151, 0.022356926, 0.02829612, 0.01000965, -0.005028609, -0.0013582342, -0.0036933096, 0.011327961, 0.012571523, 0.033406273, -0.027915576, -0.015045055, -0.01494992, 0.0034962425, -0.015982823, 0.023797553, -0.007053644, -0.016784683, -0.005511084, -0.0757825, 0.022343334, 0.016309002, -0.002731758, -0.018660218, -0.004916485, -0.0013820181, 0.0073254607, 0.010043628, -0.0286223, -0.009649494, -0.012374456, 0.0022373914, -0.02095707, 0.007807935, -0.022968512, 0.016023595, 0.013679177, 0.018850489, -0.0033824192, -0.03433045, 0.012394843, -0.00443401, 0.0059935586, -0.031965647, 0.011293985, -0.011253212, 0.008188479, -0.00060436747, -0.011660937, -0.0028048088, -0.0022085109, 0.017994266, 0.025496408, -0.0049776435, -0.038788244, 0.014746057, 0.009139837, 0.016635183, -0.017165225, 0.0077671628, -0.021568656, 0.035363354, -0.011266802, -0.018089402, -0.0066595096, 0.035390537, 0.0049572573, 0.00025206752, 0.007495346, 0.004216557, 0.024110142, 0.024490686, -0.0318841, -0.0023155387, -0.004413624, -0.0044645895, -0.005334403, 0.0039515356, -0.010526102, 0.02196279, 0.0031598692, 0.025509998, -0.0022085109, 0.011314371, 0.0063435226, -0.015425598, 0.021364793, 0.039957058, -0.02245206, -0.009642698, -0.0009233274, 0.029519295, -0.0051645176, 0.019285396, -0.032753915, 0.0023325272, -0.023566509, -0.015058646, 0.036015715, 0.0021966188, -0.0027096728, -0.027684532, 0.022057926, 0.009826174, 0.011470665, -0.018945625, 0.010281467, 0.016961362, 0.0113891205, -0.027834032, 0.0073390515, -0.00805257, -0.022356926, -0.0029594046, 0.045311846, -0.020929888, 0.010546489, 0.012816158, 0.01982903, -0.0006880361, -0.0009700459, -0.0067852247, -0.004994632, -0.0036049692, 0.03231901, -0.0026553096, 0.0011654141, -0.011599778, 0.0047024293, 0.011293985, -0.016050776, -0.021378385, 0.010743556, -0.015765369, 0.00014132346, -0.0010329036, -0.014433468, -0.0011297382, 0.011647346, 0.005334403, 0.028921299, 0.0045393393, -0.031123014, 0.019557213, 0.0076516406, 0.0012189281, -0.006000354, 0.016145913, -0.005874639, 0.014202423, 0.003876786, 0.0029237284, 0.0070468485, -0.010349422, 0.017695269, 0.00017604379, 0.033080094, -0.012476387, 0.069041446, 0.0015247219, -0.0042777155, 0.026298268, 0.0040806485, 0.005171313, 0.0354449, 0.012612295, -0.041859776, -0.018442765, 0.0031479774, 0.0058542527, -0.0032736927, 0.015479962, -0.025401272, 0.005742128, -0.012109434, 0.008324387, -0.010927032, 0.012714227, 0.02243847, 0.0046480657, 0.014664512, 0.014487831, -0.0103018535, -0.018605854, 0.005711549, 0.01431115, 0.0024208676, -0.04079969, 0.009669879, 0.0011942947, -0.015833324, -0.02960084, -0.0005852554, -0.013298633, -0.022655923, -0.004913087, -0.008806862, 0.036477804, 0.0073390515, 0.010220309, -0.00658476, -0.027670942, 0.014433468, -0.020032892, -0.024776094, 0.00026884372, -0.03460227]
+ },
+ {
+ "Id": 15,
+ "Type": "Jackets",
+ "Brand": "Raptor Elite",
+ "Name": "Summit Pro Insulated Jacket",
+ "Description": "The Summit Pro Insulated Jacket by Raptor Elite is designed to keep you warm and dry in extreme conditions. With its waterproof and breathable construction, heat-sealed seams, and insulation made from recycled materials, this jacket is both eco-friendly and high-performance. Available in vibrant red, it also features a removable hood and plenty of storage pockets.",
+ "Price": 249.99,
+ "Embedding": [0.0018789091, -0.016304884, -0.0106001645, -0.015575211, 0.0023979722, 0.019648114, -0.019727716, -0.04019837, 0.0011906944, -0.032875106, 0.020112453, 0.012417715, -0.0046864934, -0.024517026, -0.0044576414, -0.018228568, 0.021293197, -0.008590247, 5.64875E-05, -0.0036914842, 0.000106082494, 0.015336408, -0.00506128, -0.010096027, -0.0033946398, -0.047999244, 0.023575084, -0.018520437, 0.028417462, -0.0028954768, 0.021027861, 0.008729547, -0.022911746, -0.025114032, -0.0058871377, 0.007615137, -0.0152833415, -0.013074421, 0.005346516, -0.014142398, 0.034865122, -0.017273359, 0.013233623, 0.0059766886, 0.0059999055, -0.0056748693, -0.005555468, -0.01225188, -0.0061856406, 0.008139175, 0.0026417493, -0.00832491, -0.031336155, -0.0003776889, 0.0010190553, -0.0084244115, -0.012470782, -0.012941753, 0.028788934, -0.04197612, -0.008086108, 0.0021939953, -0.028045993, 0.01520374, 0.011734475, -0.036006067, -0.028815467, -0.016636554, 0.008756081, 0.022659676, 0.04003917, 0.02487523, 0.0146996025, -0.0019601681, -0.020138986, -0.02648051, -0.0036218334, 0.0013863795, 0.003591983, -0.010255228, 0.03775728, -0.029027736, 0.0005870554, 0.0063879592, 0.02342915, 0.007907007, -0.021518731, 0.012165646, -0.008576979, -0.012948386, 0.0063514756, 0.0043879906, 0.009558721, 0.01860004, -0.04049024, 0.0074758357, 0.021797335, -0.00095769635, -0.004053004, -0.028948134, -0.006630078, -0.008450945, -0.010341463, -0.018029567, -0.04248026, 0.0017445828, 0.012915219, 0.018626573, 0.02124013, 0.0014800762, -0.016503885, 0.0076416708, 0.009253586, -0.04425801, 0.014394467, -0.002915377, 0.031946428, 0.011820709, 0.0072038667, -0.034865122, 0.030115612, 0.007648304, 0.021147262, -0.012411081, 0.0018440838, 0.0038075685, -0.03648367, 0.0036317836, 0.03507739, 0.011250237, 0.017538695, 0.011037969, -0.002255354, 0.0082585765, -0.014102597, 0.01756523, -0.01657022, 0.018772507, -0.004175722, 0.0029336188, 0.009193885, -0.0041292883, -0.0065040435, 0.00021392698, -0.009167352, -0.003353181, -0.0049385624, 0.012908586, 0.014726136, 0.0017147325, 0.0141158635, -0.028231727, 0.036085665, 0.016132416, -0.015508877, -0.0073166345, 0.012159012, 0.015668077, -0.019223578, 0.0063282587, 0.024954831, -0.017034557, 0.0076881046, 0.005111031, 0.009392886, 0.01942258, 0.018480638, -0.0065504774, 0.0070114983, 0.011475773, 0.008205509, 0.021306464, -0.029399205, 0.0022387707, 0.01962158, 0.033618044, -0.031176955, 0.0020099187, 0.001840767, 0.0051242975, 0.0055621015, -0.014739403, 0.014633269, 0.036165267, -0.01830817, -0.013465791, 0.027011182, -0.009392886, 0.0063879592, 0.008072841, 0.01928991, 0.02214227, 0.005174048, -0.0018556921, -0.64699477, -0.01408933, -0.006630078, -0.036881674, 0.020192053, 0.0021011278, 0.03136269, 0.009578622, -0.0118140755, 0.024769096, 0.020019585, 0.013492324, -0.005436067, -0.0361122, -0.010228694, -0.03337924, -0.013273423, -0.018958243, 0.0020762526, -0.0008387098, -0.027196918, 0.008125909, -0.024344558, 0.0052868156, 0.0076217703, -0.0044974415, 0.021757534, -0.007071199, -0.0052635986, 0.012543749, -0.03690821, 0.010547098, -0.008795882, 0.025551837, 0.04707057, -0.035953, 0.0034725822, 0.039428897, 0.013014721, 0.04433761, -0.019143976, 0.011243604, 0.02057679, 0.0020629857, -9.6857926E-05, 0.009372987, 0.033352707, 0.005359783, 0.006009856, -0.020616591, 0.0024228473, -0.00758197, -0.010440963, 0.014779204, -0.0012910244, -0.009505655, 0.025856972, 0.0061591067, -0.0075620697, -0.0026367744, -0.0066798283, 0.023561819, -0.009406154, -0.034573253, -0.02653358, 0.022235138, -0.026706047, -0.025445702, 0.018202035, -0.024278225, 0.0008229555, 0.0119401105, 0.0002135124, 0.025565103, 0.0039501865, 0.0030115612, 0.009578622, -0.009147451, 0.001907101, 0.016716154, 0.021452399, -0.004676543, -0.022978079, -0.025419168, 0.014978205, -0.02425169, 0.01041443, 0.011721209, 0.025764104, 0.010328195, 0.013392824, 0.0039966204, -0.004537242, -0.016729422, -0.039030895, 0.0022669625, -0.017379494, 0.021731, 0.0033697644, -0.023190347, -0.00093199196, -0.0065272604, -0.0051010805, -0.0144475335, 0.024782363, 0.0010356387, 0.010354729, -0.010998168, 0.01887864, -0.01225188, -0.014858804, -0.02579064, -0.010719566, -0.03181376, 0.0014369591, -0.026520312, 0.035899933, -0.0022387707, 0.024556827, -0.029107336, 0.024211891, -0.003857319, 0.024052689, 0.0040629543, -0.039163563, 0.026215175, 0.022871945, -0.009286753, -0.012842252, -0.024158824, 0.027754122, 0.013432624, 0.026414178, 0.0012860494, 0.0062088575, 0.0046201595, 0.0057246196, 0.012809085, 0.028735865, -0.025485503, -0.02354855, -0.005853971, 0.0017296576, -0.02557837, -0.021624867, -0.018122435, -0.035263125, -0.020430855, 0.0054228003, -0.008086108, -0.013392824, 0.013731127, -0.0027561756, 0.004852328, 0.033087373, -0.0129019525, 0.019993052, -0.012789185, -0.024570094, -0.020749258, 0.0035024325, 0.0104343295, -0.013598459, -0.009824057, -0.007071199, -0.016225284, 0.0028407513, 0.0018192085, -0.0146996025, -0.048397247, -0.0020082602, -0.008125909, -0.017923431, 0.01221208, -0.0025223484, -0.004145872, 0.0033763978, -0.01293512, 0.0054924507, -0.00977099, 0.0057876366, -0.0036848506, -0.031283088, -0.00234988, 0.022580076, 0.00023154693, 0.033060838, 0.033485375, -0.0077013713, 0.005180681, -0.027050983, 0.022420874, 0.0094724875, 0.026838714, 0.004626793, -0.03690821, 0.015999747, 0.020934993, 0.02665298, 0.023283215, 0.011442605, -0.034705922, 0.024570094, -0.03152189, 0.023575084, -0.007091099, 0.0016815655, -0.015760945, 0.009797524, 0.009193885, -0.0026384327, -0.018241836, -0.019064376, -0.017034557, 0.0041491883, 0.028443996, 0.021213597, 0.048689116, -0.009406154, -0.02950534, 0.016888622, -0.00011639535, 0.009684756, -0.030221745, -0.01623855, 0.0031226706, -0.017963232, 0.017432561, 0.0048689116, -0.01602628, 0.016968224, 0.0037346012, 0.013008087, -0.007256934, 0.037120476, 0.005111031, -0.012397815, -0.0290012, 0.030778952, -0.00047387314, 0.019435847, -0.012437615, 0.0031359373, -0.018732706, 0.03388338, -0.0028905016, 0.034679387, 0.0074758357, 0.009253586, 0.024782363, 0.006510677, 0.013691327, 0.003648367, 0.02636111, 0.013691327, -0.011057869, 0.01991345, -0.0037843517, 0.020218587, 0.0051674144, -0.013983196, 0.0028042677, 0.0044974415, 0.0015472393, 0.038526755, -0.019515447, -0.0216514, -0.018175501, -0.0077743386, -0.014765937, 0.006719629, -0.013624992, -0.0030447282, -0.012258513, 0.006344842, -0.00015629936, 0.017671363, 0.03475899, -0.0005389633, 0.030036012, -0.011986544, -0.035714198, 0.0093066525, 0.023641419, 0.009631689, -0.017260093, -0.018706173, 0.0071906, -0.014208731, 0.04821151, 0.030858552, 0.018533705, -0.0064841434, 0.008464212, 0.020974794, 0.002543907, 0.025060965, -0.031017754, 0.0043581403, -0.0013905254, 0.003386348, 0.0025223484, -0.008517278, -0.02309748, 0.05115674, 0.011396172, -0.0067561124, -0.03788995, 0.017299892, -0.002762809, 0.0039833533, -0.027196918, 0.008046308, -0.020735992, 0.0058606043, -0.0040894877, -0.0048191613, -0.020735992, 0.012119212, 0.010069493, -0.015376209, -0.0027412504, -0.0038175187, 0.015508877, 0.08894055, 0.01764483, -0.0035853498, 0.01887864, 0.0026765747, -0.0051342472, -0.0075620697, -0.02669278, 0.019104177, -0.02293828, 0.011164003, 0.023694485, -0.008809148, -0.016809022, -0.0074028685, -0.00865658, -0.0018009667, -0.025299767, -0.01150894, -0.016185483, 0.0038374187, -0.0180561, -0.008039675, -0.0009079459, 0.007648304, 0.012205446, 0.023283215, 0.021930004, 0.015071073, -0.009850591, -0.000742111, -0.006474193, -0.0031657876, -0.0123182135, 0.00059949304, -0.012470782, 0.011495673, -0.040729042, 0.04165772, 0.007827406, 0.012795818, 0.018122435, 0.010228694, 0.0068058628, 0.03202603, 0.00685893, -0.00644766, 0.017114159, 0.006245341, -0.008251943, 0.009578622, 0.02483543, -0.014036263, -0.016212016, -0.017127424, 0.015760945, 0.01690189, -0.009173985, 0.004258639, -0.028231727, -0.016384484, -0.011130836, 0.012676417, 0.009160718, -0.01905111, -0.009160718, 0.010573631, 0.01615895, -0.0028888434, 0.009764357, -0.008596879, -0.014328132, 0.0034327817, 0.008099375, 0.01942258, 0.007509003, -0.005873871, -0.029717607, 0.022341274, 0.0028987934, 0.016450819, 0.0042022555, 0.016795754, 0.0009933509, 0.014712869, -0.001041443, -0.01184061, -0.010958368, -0.0036118834, -0.011124203, 0.014275066, -0.021850402, 0.02743572, 0.002116053, -0.0049849963, 0.012842252, 0.017578496, 0.0108522335, 0.023813887, -0.0063415254, 0.022500474, -0.0034725822, -0.011303305, 0.002220529, 0.028497063, -0.0006185641, -0.008178975, 0.015469076, -0.008238676, -0.013008087, 0.0136515265, -0.0030181946, -0.019860383, -0.0149516715, -0.026148843, -0.0010961684, 0.012868785, -0.0076881046, 0.023177082, -0.005936888, -0.038208354, -0.047574706, 0.033538442, 0.007907007, -0.0022653043, 0.0015804063, 0.0030132195, -0.017910166, -0.018692907, -0.018573506, -0.027860258, 0.044231474, -0.006039706, 0.009757724, -0.017260093, -0.019608315, -0.029240003, -0.0034659486, -0.008848948, -0.020337988, 0.0017661414, 0.0054261168, 0.015097606, 0.027621455, -0.026254976, -0.017419294, -0.016291616, -0.0016566903, -0.0323975, 0.010248595, -0.010732832, -0.0027097417, -0.0125238495, -0.016411018, -0.018427571, -0.035050858, -0.020444123, -0.0043448736, 0.021704467, 0.012968287, 0.006586961, -0.003880536, -0.0068987305, 0.020125719, -0.0012611742, 0.0055621015, -0.00971129, -0.0015406059, -0.011734475, 0.020775791, 0.006540527, -0.0062287576, -0.010440963, -0.021903468, -0.00975109, 0.009764357, 0.011993177, -0.037969552, -0.0012246905, -0.03513046, -0.02020532, 0.00081590755, 0.0043581403, 0.0009087751, -0.03826142, 0.0013266789, 0.045690823, 0.019886917, 0.011462506, 0.012371281, 0.017896898, -0.01995325, 0.00051781937, 0.0110180685, -0.007091099, 0.022328006, -0.00322383, -0.027886791, 0.0071308995, 0.028735865, -0.00019392314, 0.0032785553, 0.0077942386, 0.010931835, -0.007183966, 0.025034431, -0.008855582, -0.01875924, 0.03735928, -0.024861963, 0.00093447947, 0.0018623256, -0.03383031, -0.040543307, 0.014898605, -0.0009261877, 0.004994946, 0.026679514, -0.01266315, -0.0049252957, 0.021027861, -0.027249984, 0.016795754, 0.0032520217, 0.005920305, 0.015588477, -0.007860573, -0.016742688, -0.021677934, -0.010467497, 0.017618297, 0.002126003, 0.03515699, -0.008318277, -0.02979721, 0.0003393396, 0.0041558216, 0.0012429323, -0.011084403, 0.019767515, 0.008371344, 0.027303053, -0.008815781, -0.038977828, -0.0030762367, 0.0027080835, 0.0055422015, 0.0075156363, 0.0030828703, -0.0050546466, 0.015615011, 0.036297936, -0.017989766, 0.00647751, 0.0074493024, -0.0070512984, 0.0057810033, -0.015840547, 0.0078075053, -0.03322004, -0.00019609973, 0.025419168, 0.013200455, 0.008835682, -0.007164066, 0.0012263488, -0.0068655633, 0.027170384, 0.0031243288, 0.021518731, 0.003220513, -0.011893677, 0.0008038845, -0.008059574, -0.014553668, -0.011654874, -0.016344685, 0.0071972334, 0.013293323, -0.007661571, -0.0048291115, -0.017114159, -0.018029567, -0.010547098, -0.0041060713, 0.0019717766, -0.035236593, -0.030964686, -0.017260093, -0.027939858, -0.026254976, -0.009936825, 0.010938467, -0.0037744015, 0.015986482, 0.007436035, -0.011979911, 0.0051541477, -0.026851982, 0.005920305, -0.0029667858, 0.024928298, 0.00030472156, 0.027727589, 0.010606798, -0.010560364, 0.012351381, -0.0129019525, -0.030938152, -0.039933037, 0.012059512, 0.0004962608, -0.006630078, -0.0059468383, 0.02124013, 0.001945243, 0.000646756, 0.009883758, -0.017989766, 0.020192053, -0.0061557903, -0.01400973, 0.055508245, -0.018082634, -0.0062519745, -0.013399458, 0.010295029, 0.0050480133, -0.019581782, -0.0104741305, -0.015137407, 0.0012702951, 0.0077876053, -0.031256557, 0.010036326, 0.002601949, -0.004351507, -0.004232106, -0.0037511848, 0.002958494, 0.01574768, 0.020364521, -0.0022603292, 0.010639965, -0.01975425, -0.02809906, 0.007416135, -0.005525618, -0.026122307, -0.02727652, 0.0030613116, 0.05020153, 0.005827437, -0.027409187, -0.01694169, 0.010931835, -0.066227816, -0.014328132, -0.010149094, 0.0039535034, 0.010626698, 0.013983196, -0.0026467245, 0.018029567, 0.023110747, 0.006082823, 0.014978205, -0.027515322, 0.0047959443, -0.017339693, 0.0007980803, -0.022208605, -0.0072635673, -0.030487081, 0.0098903915, 0.00791364, 0.01297492, 0.0066466616, -0.029903343, -0.009406154, -0.014805737, 0.025485503, 0.026188642, 0.03653674, 0.02587024, -0.030752419, -0.027249984, 0.012557016, 0.01838777, -0.009087751, 0.01975425, 0.002925327, 0.023999622, -0.0025273233, -0.031336155, -0.044231474, -0.0061159898, 0.0009784257, 0.0039933035, 0.0035986167, -0.004165772, -0.00395682, 0.010381263, -0.038792092, -0.02913387, 0.009950092, -0.0110180685, -0.020444123, 0.008835682, -0.017750964, -0.007999874, 0.0065703774, 0.01668962, 0.0016890281, -0.026347844, -0.003396298, 0.004955146, -0.015482343, 0.004888812, 0.015721146, -0.007946807, -0.024145557, -0.010394529, -0.007495736, 0.01913071, 0.0031259872, -0.021969803, -0.034228317, 0.012377914, -0.017087625, -0.018281635, -0.018069368, 0.003747868, -0.0040165205, 0.0047926274, 0.042002656, 0.19878957, 0.011349739, -0.0074891024, 0.026016174, 0.0020381105, 0.028072527, -0.0020712775, -0.013220356, -0.003747868, -0.002301788, 0.0062519745, 0.015774213, -0.02913387, 0.0007653279, 0.031123888, -0.007482469, -0.03842062, 0.00058664085, -0.018069368, 0.0023896804, -0.009757724, 0.0055388846, 0.01921031, -0.018334704, 0.00539295, 0.007177333, -0.0071308995, 0.0042918064, 0.024410892, -0.004713027, -0.021916736, -0.00787384, 0.013353024, -0.0035057492, 0.014036263, -0.00011919381, 0.017034557, 0.008457578, 0.0029120604, 0.009280119, -0.0009974968, 0.024211891, 0.026135575, -0.020311454, 0.0045538256, 0.010858867, -0.028258262, 0.00012209592, 0.006885464, 0.008046308, -0.018255102, -0.015097606, 0.02425169, 0.015482343, 0.00025953157, -0.008630047, 0.021425866, -0.022341274, 0.00010685984, 0.010527197, -0.017299892, 0.02020532, -0.0042055724, 0.016225284, -0.012676417, 0.04441721, 0.010401163, 0.014474067, -0.001169965, -0.0069517978, 0.008271843, -0.0031492042, -0.014646536, 0.024384359, -0.0053000823, -0.024981365, -0.005601902, 0.015137407, -0.004858962, 0.029346138, 0.015429276, -0.0015430935, 0.00050869846, 0.0039302865, -0.004215522, -0.029399205, 0.015920147, -0.013585192, 0.0043548234, 0.0077080047, 0.015296608, -0.014712869, -0.021677934, -0.002910402, 0.012278413, 0.00025559298, -0.022248406, 0.036961276, 0.010328195, 0.00791364, -0.029903343, 0.016583487, -0.0120661445, 0.010712933, 0.0025521987, 0.012411081, -0.0004266102, 0.02594984, 0.024689496, -0.025405902, -0.00053191534, -0.046513364, 0.011130836, -0.011051236, 0.0016442527, -0.00967149, 0.015416009, -0.006925264, 0.016543686, -0.0077279047, 0.024450693, -0.020125719, 0.025750838, -0.023442417, -0.0072702006, -0.01905111, 0.009930192, 0.03499779, -0.008086108, -0.014646536, 0.010759366, 0.020536989, 0.0086366795, -0.01764483, -0.02272601, -0.022779077, 0.015933413, -0.01483227, -0.004467591, 0.006192274, -0.02065639, 0.008232043, 0.0076549374, 0.024941564, 0.020603323, -0.0062519745, 0.021744268, -0.022527007, -0.0077544386, 0.022420874, -4.0707277E-05, 0.001232153, -0.0037810348, -0.008112642, 0.014036263, -0.00824531, -0.03446712, -0.028152127, -0.028497063, -0.008497379, -0.024145557, 0.02653358, 0.012391182, -0.0287624, -0.021187063, 0.02219534, -0.16801062, 0.01739276, 0.009830691, -0.023747552, 0.0061093564, 0.004056321, 0.009465855, -0.008775981, -0.04128625, 0.0062619247, 0.020444123, -0.0004622647, -0.017220292, -0.009916925, 0.014208731, -0.013552025, 0.0073697013, 0.026095774, 0.020855393, 0.014341399, 0.013081054, -0.026029442, 0.0059302547, 0.013226989, -0.0029866858, -0.009319919, 0.0021293196, -0.0048058946, 0.0149516715, -0.030089078, 0.013956662, -0.020921728, 0.031548426, -0.01119717, 0.022235138, -0.028417462, -0.007595237, 0.02350875, -0.011754375, 0.036191802, 0.018905174, 0.008517278, 0.024079222, -0.011946743, -0.00040836836, 0.0016517153, -0.006397909, -0.0005858117, 0.015150674, -0.01967465, 0.013465791, -0.025233433, -0.028842, -0.0062088575, 0.031203488, 0.012411081, -0.009618422, 0.000485067, 0.030725883, -0.008603513, 0.013498958, -0.032583233, 0.029929876, -0.003029803, -0.0039070696, -0.0016243525, 0.015853813, 0.027515322, -0.010639965, -0.0030795534, 0.0047395607, 0.021253396, -0.024158824, -0.016437553, -0.00196846, 0.013359657, -0.024556827, 0.014659802, 0.012238613, -0.027303053, 0.0062984084, 0.031919897, -0.025140565, 0.0037777182, -0.009034684, -0.01045423, -0.023309749, 0.0013051204, 0.021120729, -0.015548677, 0.009777624, -0.033060838, -0.010819066, 0.01008276, 0.034042582, 0.015853813, -0.0021707783, -0.010295029, 0.012032978, -0.01479247, 0.005323299, -0.005618485, -0.026162108, 0.002805926, 0.015615011, 0.0055720517, 0.017843831, 0.00362515, 0.0054924507, -0.0030895036, 0.012145746, 0.00902805, -0.016702889, 0.004122655, 0.014407733, -0.0035289659, 0.01225188, -0.02417209, 0.018838841, -0.01834797, 0.030805485, -0.013054521, -0.00400657, -0.0070645656, -0.0056781857, -0.015004739, -0.08989576, -0.019263377, 0.0321587, 0.013392824, 0.015840547, 0.0015447518, -0.010905301, 0.034944724, -0.023362815, 0.009047951, -0.019979784, -0.0027114002, 0.014964938, 0.009684756, 0.028895067, -0.01014246, 0.005847337, -0.042719062, -0.013260156, 0.030036012, 0.015575211, -0.006278508, -0.004447691, -0.0041259713, -0.02235454, -0.008742814, -0.008484112, -0.0002649212, 0.01661002, -0.0010630015, 0.020470656, 0.011661508, 0.014129131, -0.021372797, -0.02219534, -0.014036263, -0.048158444, 0.0013656501, 0.027860258, 0.002615216, 0.003039753, 0.012689684, 0.0050281133, -0.03868596, 0.003172421, -0.005645019, -0.006258608, -0.0057810033, 0.026971383, -0.017671363, -0.0027992926, -0.008351444, -0.00090297085, 0.0039070696, 0.01295502, -0.018202035, 0.011256871, 0.022580076, 0.0031608127, 0.0072105, -0.00981079, 0.011887043, -0.009293386, 0.009326553, 0.0055057174, -0.002406264, -0.0014916846, -0.0018424253, 0.013757661, -0.006563744, -0.005578685, 0.0036218334, -0.027037717, 0.020258388, -0.013797461, -0.017512161, -0.023177082, -0.011376272, 0.0037511848, -0.013047887, -0.013154021, -0.036430605, 0.016318152, -0.014168931, 0.009114284, 0.015376209, 0.02913387, -0.024782363, 0.00013774658, -0.017087625, 0.013691327, 0.022672944, 0.024490492, -0.0072901007, -0.025750838, -0.004955146, -0.004066271, -0.021956537, -0.0016177191, 0.004053004, -0.017472362, -0.0035123825, -0.07822099, 0.027117318, 0.008623413, -0.020563524, 0.010732832, 0.0063647423, -0.0068456633, -0.00036297107, 0.027409187, -0.012384548, -0.010175628, 0.0015480685, -0.001917051, -0.014487334, 0.0013100954, 0.012590183, 0.0010489055, 0.0020447439, 0.03908396, -0.01008276, -0.027157119, -0.010998168, -0.030778952, -0.009293386, -0.026308043, -0.015482343, -0.019303178, 0.014898605, 0.0004975046, 0.0033216723, -0.004417841, -0.010003159, 0.0088025145, 0.04115358, -0.017910166, -0.031548426, 0.011562007, 0.015959948, -0.0020812275, -0.02913387, -0.011363005, -0.009983259, 0.013425991, -0.035926465, -0.015654812, -0.0047760443, 0.0061358903, 0.0045704087, -0.0014212048, -0.0057279365, 0.017711164, 0.016212016, 0.021770801, -0.021784067, -0.014221998, -0.005588635, -0.0009469171, -0.008358077, -0.00052528194, -0.021585066, 0.036881674, 0.0062486576, 0.018109167, 0.0045206584, 0.013353024, 0.0012611742, -0.019356245, -0.002291838, 0.0019220262, 0.013014721, -0.033193506, -0.028603198, 0.028337862, 0.0008946791, 0.004703077, -0.014739403, 0.015084339, 0.018785773, -0.020019585, 0.028629731, -0.024079222, 0.0024792312, -0.041923054, 0.025140565, -0.014434267, -0.0041558216, -0.020218587, 0.0038440523, -0.014673069, 0.018560238, -0.0216116, 0.008669847, -0.027382653, -0.00434819, 0.012079412, 0.0033084056, -0.0012868786, -0.018785773, 0.0016268401, 0.007044665, 0.006649978, 0.008311643, -0.010951734, 0.0129019525, -0.012629983, -0.0154956095, 0.0056781857, -0.025697771, -0.03640407, -0.008795882, 0.010288395, -0.0042254725, -0.0072304, 0.012762652, -0.018573506, -0.002591999, 0.0068987305, -0.013452524, -0.019157244, 0.006520627, 0.016304884, 0.007661571, 0.013784194, 0.01371786, 0.003847369, 0.011979911, -0.014434267, -0.009625056, 0.0047329273, 0.025976373, 0.031787228, -0.0042553227, 0.01731316, -0.00834481, -0.037783816, 0.013943396, -0.013624992, 0.04619496, 0.0073829684, 0.056834925, 0.0069186306, -0.03218523, 0.028205194, -0.0077544386, 0.013532125, 0.027647989, 6.472742E-05, -0.020112453, -0.04086171, 0.0072503, 0.009313286, -0.0061425236, 0.017260093, -0.028152127, 0.0054194834, 0.0360326, 0.004769411, -0.029823743, -0.012683051, 0.045027483, -0.0144608, 0.01363826, 0.0034029314, -0.022739276, 0.0066599282, 0.02301788, 0.013585192, -0.0015605061, 0.0043846737, 0.017764231, -0.0059667383, -0.011369638, -0.020643124, 0.0045969426, 0.0068257633, -0.016291616, 0.02082886, 0.023654686, 0.020391054, 0.025856972, 0.009227052, -0.0019651433, -0.016212016, 0.01909091, 0.0057909535, -0.0036185167, -0.034732454, -0.0031243288]
+ },
+ {
+ "Id": 16,
+ "Type": "Ski/boarding",
+ "Brand": "Solstix",
+ "Name": "Expedition 2022 Goggles",
+ "Description": "Solstix Expedition 2022 Goggles provide clear vision and optimal protection on the slopes. With an anti-fog lens, UV protection, and a comfortable foam lining, these goggles ensure a great fit and unrestricted vision even in challenging conditions. The matte black frame gives them a sleek and modern look.",
+ "Price": 89.00,
+ "Embedding": [0.021530626, -0.00015365973, -0.027035616, -0.033383347, -0.016107192, 0.017276153, 0.0023430188, -0.02794632, 0.011444942, -0.025132658, 0.03509601, 0.011424554, -0.00030370895, -0.020864591, -0.013198383, -0.009881796, 0.025689952, -0.003952039, 0.0012275787, -0.009548779, 0.0017670338, 0.0052569257, 0.0056613046, 0.0031194943, 0.004648658, -0.02000826, 0.0073875603, -0.006062285, 0.0069084223, 0.005199157, 0.015237268, -0.017874226, -0.00727882, -0.014217826, 0.003065124, -0.0009922575, 0.013524605, -0.005929758, 0.0031772626, -0.004862741, 0.023216106, -0.006205007, 0.003666595, -0.0039588353, -0.006735117, 0.011431349, -0.008658466, -0.011322609, -0.018676188, 0.008073986, -0.00046979313, 0.009854612, 0.0013966364, -0.024371473, 0.02148985, -0.019845149, 0.0034525122, -0.008991484, 0.0047370098, -0.01916552, -0.011893497, -0.016501376, -0.02609773, 0.026546285, -0.0107924985, 0.002059274, -0.03161631, -0.0014578028, -0.007550671, 0.0025757917, 0.0025282176, 0.020918962, 0.010085685, -0.004495742, 0.013633345, -0.019845149, -0.0181053, -0.010459481, 0.011152701, 0.014761529, 0.012301274, -0.013014884, -0.034226086, 0.014489677, 0.008413799, 0.0301755, 0.019614074, 0.004550112, -0.023270477, -0.020932553, 0.00263356, 0.0217617, 0.013300328, 0.017126635, -0.02704921, 0.026614247, -0.006391905, 0.029577427, -0.009616742, -0.0018349966, -0.0006944953, 0.0006698587, 0.004342825, -0.01768393, -0.045181695, 0.0014586524, 0.0066977376, 0.009113817, 0.020864591, 0.0009871603, -0.023365624, 0.017615968, 0.022373367, -0.01953252, 0.0073399865, -0.00828467, 0.029930834, 0.0056613046, -0.0033556651, -0.018010153, 0.013381883, 0.0002317108, 0.021041295, -0.015250861, 0.01805093, -0.0057734433, -0.030664833, -0.0062933587, 0.03403579, -0.005844804, 0.017344117, 0.015128528, -0.0049986667, 0.0054132403, -0.014883862, 0.03604749, 0.004709825, 0.011621646, -0.022889884, 0.018132485, 0.015006195, 0.019124743, -0.003996215, 0.010146852, 0.013273142, 0.016066415, -0.0048457505, 0.0029682769, 0.024466623, -0.013640142, 0.028761873, -0.045072954, 0.03425327, 0.020130593, 0.011016776, -0.0040335944, 0.020144185, 0.024317104, -0.03795045, -0.014924639, 0.006157433, -0.030202685, 0.010269185, -0.0025061297, 0.014870269, 0.023542328, 0.011207072, -0.021612182, -0.0097526675, 0.009609945, -0.004081168, 0.025132658, -0.015794564, 0.0125867175, 0.022536477, 0.033763938, 0.004767593, 0.013089643, -0.015101342, 0.0023820975, -0.013660531, 0.002057575, -0.011057554, -0.01159446, -0.022087922, -0.01975, 0.020606333, 0.030039575, 0.0013422661, -0.017561598, 0.0057802396, 0.021177221, 0.012117774, 0.011913885, -0.6541831, -0.026220063, -8.8457884E-05, -0.0382223, 0.011574072, 0.024344288, 0.014734344, 0.010833276, -0.021884033, 0.014788713, 0.00011436871, 0.034579493, 0.004723417, -0.01106435, -0.002463653, -0.040098075, -0.0093924645, 0.0049205096, 0.03939126, -0.0144489, -0.02567636, 0.0049205096, -0.00627297, 0.018907262, 0.017221782, 0.011941071, 0.01788782, -0.03240468, -0.030664833, 0.009664316, -0.02244133, 0.03175224, -0.021367516, 0.0044583622, 0.04542636, -0.047791466, -0.00034215042, 0.020320889, 0.012899347, 0.024466623, -0.03028424, -0.0026148702, 0.00078539556, -0.02683173, -0.0029614808, 0.03520475, 0.023311254, -0.010201222, 0.0073943567, -0.010602203, 0.017031487, -0.013694512, -0.005290907, 0.0035068823, 0.00727882, -0.009609945, 0.02699484, -0.006633173, 0.0076526157, -0.009616742, -0.018866483, 0.017711116, -0.029658983, -0.00073782157, -0.029305575, 0.041538887, -0.058828633, -0.0128245875, 0.03129009, -0.026763765, 0.016718859, 0.020103408, -0.0160936, 0.01397316, 0.0063307383, 0.015060565, 0.011852719, -0.027660875, 0.007441931, 0.015957674, 0.011845923, -0.0022427738, -0.015359601, -0.013069253, 0.021992775, -0.023433587, -0.008481762, -0.0019658252, 0.0051617776, 0.010146852, 0.00709532, 0.024996731, 0.009555575, -0.021109257, -0.0025808888, 0.005787036, -0.022577254, 0.016501376, 0.04303407, -0.0024806436, -0.005919563, -0.0022937458, 0.013986752, 0.007020561, 0.026274433, 0.029577427, -0.0025231203, -0.012647884, -0.002823856, -0.042164143, -0.015114935, 0.00727882, -0.027402617, -0.0007437683, -0.0024449632, -0.029658983, 0.0038704837, -0.031426016, -0.008067189, -0.014027529, 0.038874745, -0.009970148, -0.0017670338, 0.0025469074, 0.0013923886, 0.007373968, -0.0016209137, 0.002251269, -0.025390916, -0.0125051625, -0.003110999, 0.014054715, 0.015046973, -0.0037685393, -0.0009846116, 0.010826481, -0.005841406, -0.011533294, 0.018431522, -0.015101342, -0.041729182, 0.011730386, -0.0062933587, -0.018812114, -0.0062389886, -0.017126635, -0.027293876, -0.0025995786, 0.012702255, -0.03610186, 0.0049646855, -0.011424554, -0.0072108572, 0.011818738, 0.03235031, -0.010704147, 0.013911993, -0.008930317, -0.009603149, -0.007686597, 0.035612527, 0.0011876506, 0.012831384, -0.028326912, -0.0003621145, 0.0100585, -0.018349966, 0.035231937, -0.0053520733, -0.03604749, -0.013511012, -0.009467224, 0.0012912939, 0.014802306, -0.0043224366, 0.00502925, -0.0082778735, -0.0034830954, 0.01238283, -0.013470234, 0.014027529, -0.013857623, -0.02419477, 0.014326566, 0.016664488, 0.00868565, 0.008311855, 0.006483655, 0.00976626, 0.0075778565, 0.0033845494, 0.015590675, 0.005939952, 0.0042510754, -0.016542155, -0.031589128, 0.0040981593, -0.0020100009, 0.03754267, 0.038032003, 0.025227806, -0.040070888, 0.016311081, -0.020239333, 0.022781143, -0.026587062, 0.0035612527, -0.009005076, -0.0017568393, 0.020973332, 0.014245011, -0.036890227, -0.015250861, -0.011376979, 0.022210255, 0.007591449, 0.013130421, 0.021462664, -0.0051176017, -0.007115709, -0.010942017, -0.01254594, 0.017452857, -0.0347426, -0.028272541, -0.0014968815, -0.0042986497, 0.005929758, 0.014285789, -0.014272196, 0.01991311, 0.00071658316, -0.0007726525, 0.01852667, 0.009888593, -0.002443264, 0.008937113, -0.013429457, 0.048090503, 0.016895562, 0.023583105, 0.0104255, 0.02472488, 0.0131847905, 0.012736236, 0.010316758, 0.049041983, -0.0041729184, 0.0030940082, 0.017248968, -0.021136442, 0.0031687673, -0.011614849, -0.014584825, -0.0068302653, -0.0032944987, 0.004505936, 0.03911941, 0.014245011, 0.03207846, -0.011893497, 0.0051345923, -0.003928252, 0.011383776, 0.028082244, -0.0050224536, -0.037461117, -0.046894357, -0.019029595, -0.02604336, 0.00065201847, -0.0060011186, -0.0006571157, -0.0034525122, 0.026451137, 0.00852254, -0.0021187414, 0.01556349, 0.004081168, 0.026383175, -0.019682039, -0.019858742, -0.002128936, 0.014720751, 0.0026930275, -0.009589557, -0.0033454706, -0.003253721, -0.0032384293, 0.021829663, 0.004244279, 0.00047573986, -0.018825706, -0.006650164, -0.004268066, -0.009521593, 0.015536305, -0.014122678, 0.018173262, -0.0053690644, -0.007924467, 0.008454577, 0.00309061, -0.024820028, 0.0389563, 0.008114763, -0.0050224536, 0.0016005249, 0.012219719, -7.6989156E-05, 0.008175929, -0.008155541, -0.01111872, -0.01784704, -0.007238042, -0.007183672, -0.020157779, -0.025499657, 0.024385067, -0.012892551, -0.013572179, -0.021530626, 0.0033930447, -0.04039711, 0.06301514, 0.01397316, 0.008774002, 0.026967654, 0.01874415, 0.00579723, -0.011404164, -0.002317533, 0.001891066, -0.0019964084, -0.0014348654, 0.023895733, -0.012987698, -0.0025672961, 0.011614849, 0.011472127, 0.008869151, -0.01805093, -0.015685823, 0.0044141863, -0.01230807, 0.0012139862, 0.0038840761, 0.023270477, -0.0019182512, -0.01587612, 0.008678854, 0.03843978, 0.0013414165, -0.01000413, -0.008896336, -0.013069253, 0.004332631, 0.013347901, -0.021680145, -0.02207433, 0.0020286907, -0.033954233, 0.02721232, 0.005246731, 0.0076730046, 0.013150809, -0.0014730946, -0.0055355732, -0.008298263, -0.00929052, 0.0029886658, 0.0034796973, 0.013959567, -0.022889884, 0.02128596, -0.0053350828, -0.016052822, 0.005555962, -0.0076458193, 0.0029359946, 0.006507442, -0.010928424, -0.014843084, -0.03884756, -0.007802134, -0.02419477, 0.01603923, -0.01260031, -0.004961287, -0.025649175, -0.0015724902, 0.0063511273, -0.019151928, -0.009433242, 0.01715382, -0.0016956729, -0.01349742, -0.00014696964, 0.009813834, 0.013402272, 0.014340159, -0.032160014, 0.009664316, 0.0031738644, 0.01947815, -0.0041389368, -0.003450813, -0.014163456, 0.026220063, -0.0142993815, -0.0020456815, -0.0052535273, -0.02503751, 0.008135152, 0.026954062, 0.0016990709, -0.018825706, -0.007883689, -0.009569168, 0.016025638, 0.024262734, 0.01879852, 0.0009361881, 0.0029088096, 0.0014051317, -0.033600826, 0.0031025035, 0.005192361, 0.011737182, 0.0011579168, -0.0037413542, 0.023569513, 0.0027932727, -0.015182898, -0.0033981418, -0.028082244, -0.00037910521, -0.024344288, -0.0021951997, 0.009283723, 0.0027643885, 0.00793806, 0.0060351, -0.020633517, 0.0034287253, -0.034062974, 0.02335203, -0.011655627, -0.013456642, -0.000711486, 0.012715847, -0.029631797, 0.002969976, 0.008250688, -0.00025379873, 0.025241397, -0.00024594052, -0.0045093345, -0.021367516, -0.012613903, -0.015155713, -0.0122672925, -0.0038976688, -0.00086695096, 0.019151928, 0.0019046585, 0.013028476, -0.0049137133, 0.0046282695, -0.018091708, -0.007856504, -0.019709224, -0.01989952, 0.03330179, -0.01135659, -0.0016540455, -0.021693738, -0.04091363, -0.010608999, -0.052548867, -0.03414453, -0.020348074, 0.027022025, 0.038602892, 0.016977116, -0.0057598506, 0.036618378, 0.00104238, -0.009671112, -0.015753785, -0.032295942, -0.0066909413, -0.025268583, -0.0016115688, 0.004842352, -0.014571233, 0.032051276, -0.015237268, -0.009147798, 0.006704534, 0.0002960631, 0.001914853, -0.0033403735, -0.029088095, -0.00852254, 0.0048899264, 0.022753958, 0.0053248885, -0.019505335, -0.010065297, 0.03001239, 0.005100611, -0.010017722, -0.008882743, 0.005691888, -0.020973332, 0.031099794, -0.00075778563, 0.00526712, -0.016977116, -0.019600483, -0.020619925, -0.010439092, 0.0057496564, -0.0058719893, 0.021652961, -0.0006889733, -0.006221998, -0.0014204233, 0.022577254, 0.0010653175, 0.00594335, 0.012566329, -0.029903648, -0.003591836, -0.02710358, -0.032377496, -0.035177566, -0.00852254, 0.009569168, -0.0033267809, 0.015549897, -0.019097557, -0.00976626, -0.008570114, -0.022536477, 0.031888165, 0.0015172703, 0.014911047, 0.033899862, 0.00061209034, -0.024847213, -0.030882314, 0.005933156, 0.008563317, 0.004502538, 0.013891604, -0.03482416, -0.0064496733, -0.0031194943, 0.021788886, 0.004669047, -0.013599364, 0.013150809, 0.024289919, 0.031915348, -0.010622592, -0.01331392, -0.010507055, 0.017602375, 0.0028204578, 0.013402272, -0.014815899, -0.01077211, 0.0048797317, 0.011193479, -0.00963713, -0.004118548, 0.018078115, 0.0019675242, 0.0149790095, 0.006300155, 0.020973332, -0.0046282695, -0.01254594, 0.03482416, -0.0048763338, 0.012450792, 0.009548779, 0.019016001, 0.007639023, 0.015250861, -0.005481203, 0.024262734, -0.013864419, -0.02064711, 0.010174037, -0.018336374, 0.021843256, -0.03302994, -0.0224957, -0.005464212, 0.020443222, 0.013470234, 0.01964126, -0.009276927, -0.027973505, -0.026437543, -0.011852719, -0.012532348, -0.021775294, -0.00065541663, -0.0043258346, -0.0334649, 0.0037481505, -0.005800628, 0.016175155, 0.006018109, -0.012695458, 0.002851041, -0.0053011016, -0.0062321923, -0.023596697, 0.0033335772, 0.03653682, 0.01991311, -0.026179286, 0.02604336, 0.004951093, -0.019817963, 0.0009982042, 0.006527831, -0.034960084, -0.032486238, -0.0063817105, -9.074101E-05, 0.020687887, -0.015971268, 0.0070477463, -0.008549725, 0.001640453, 0.0002854439, -0.03044735, 0.022373367, 0.008216707, 0.029468687, 0.009141002, -0.022196664, 0.010445888, 0.0021493249, 0.0023209308, 0.025730731, -0.042843774, -0.012090589, 0.0017220085, 0.005583147, 0.00627297, -0.028190985, -0.009073039, -0.012369237, -0.004495742, 0.007849708, -0.009942963, 0.015332417, 0.03414453, -0.013660531, 0.018676188, 0.0060011186, -0.05515864, -0.035558157, -0.0031449804, -0.016107192, -0.004050585, -0.022454921, 0.013069253, 0.04594288, -0.008033208, -0.023202512, 0.027253099, -0.009059446, -0.018431522, 0.0014527057, -0.018254818, 0.0070477463, 0.03022987, 0.01989952, -0.017004302, 0.024208363, 0.020320889, -0.0036326137, -0.0020422833, -0.013660531, 0.011220665, 0.0024959352, 0.0021493249, -0.026002582, -0.035476603, 0.004471955, 0.029196836, -0.025703546, 0.013857623, 0.02556762, -0.03240468, -0.019369408, 0.00349329, 0.000616338, 0.03833104, 0.003619021, -0.005647712, -0.02520062, 0.0038908725, 0.0011290327, 0.023814179, -0.010561425, -0.0065652104, 0.0011001484, 0.005698684, 0.015848935, 0.0018502882, -0.038874745, -0.009902186, -0.020728666, 0.016229525, -0.0011672617, 0.013653734, 0.00828467, 0.032377496, -0.014312974, -0.0015538004, 0.035449415, -0.011818738, -0.014829491, 0.0033352764, 0.0007029906, 0.017996559, 0.0025672961, 0.0018842696, 0.009827427, -0.0035306695, -0.002062672, 0.023039402, -0.0301755, 0.007373968, 0.016215933, -0.027402617, -0.0217617, 0.025499657, 0.0071225055, 0.021449072, -0.0049680835, -0.0041049556, -0.023311254, 0.01720819, -0.001770432, 0.0017908207, -0.023039402, -0.0087943915, 0.0016659391, -0.0014926338, 0.0028680319, 0.20965177, 0.007863301, -0.006171026, 0.0395, 0.02042963, 0.012607107, 0.014530455, 0.0030838137, 0.033682384, 0.016311081, 0.0022869494, 0.0037447524, 0.0012590116, -0.007897282, 0.0044685565, -0.0019080567, -0.038766004, -0.0068370616, -0.019016001, 0.005202555, -0.0003854767, 0.010051704, 0.0071700793, -0.019600483, 0.009222557, -0.0047064265, 0.010887647, -0.0077545596, -0.009773056, 0.0036767896, 0.020239333, -0.035530973, 0.008413799, -0.0019471353, -0.008617688, -0.0095147975, -0.004934102, -0.013878011, 0.0010610698, 0.022835514, -0.005416638, 0.0051108054, -0.0077205785, -0.008733225, 0.02180248, -0.010846869, -0.01709945, -0.0031857581, -0.021408293, -0.0058787856, -0.025064696, -0.011574072, 0.016107192, 0.020579148, 0.0031891563, -0.026179286, 0.027511356, -0.011900293, 0.0031042027, -0.021612182, -0.029196836, 0.024969546, -0.014258604, 0.03001239, 0.006684145, 0.029495873, 0.0012624097, -0.034443565, -0.0043802047, 0.004614677, 0.019777186, 0.008984687, -0.02366466, 0.028843429, 0.00046044824, -0.021680145, -0.0034644057, -0.014462492, 0.0036054286, 0.035802823, 0.005919563, -0.018716965, -0.0036530027, -0.0022682596, -0.018417928, -0.022753958, 0.015658638, -0.010262389, -0.006391905, 0.013823641, -0.009623538, -0.0019267465, -0.0071700793, 0.0009361881, 0.004342825, 0.008583707, -0.00024339191, 0.028843429, -0.026614247, 0.0072652274, -0.00952839, 0.018662596, -0.012165348, 0.011125517, 0.0029954622, -0.011016776, -0.024643324, 0.011499313, -0.002895217, -0.005430231, 0.017751893, -0.03563971, 0.019029595, -0.008114763, -0.02710358, 0.0030702213, 0.006323942, -0.017670337, 0.0036564006, -0.005787036, 0.026532693, 0.0016710362, 0.009100224, -0.0057836375, -0.00021004764, -0.029305575, -0.015699416, 0.024643324, -0.0035306695, -0.039635926, 0.012770217, -0.012851773, 0.025350139, -0.022590848, 0.011295424, -0.007605042, 0.021870442, 0.00416952, -0.0010576716, -0.015182898, -0.015373194, -0.00079856336, 0.00709532, 0.015060565, 0.030039575, -0.009351687, 0.010826481, -0.015413972, 0.009705094, 0.01989952, -0.018254818, -0.018649003, 0.015835341, -0.0037787338, -0.0034100355, 0.00026887798, -0.044556435, -0.00254181, 0.0059909243, 0.03319305, -0.019016001, 0.011757571, 0.02456177, -0.044746734, -0.019206299, -0.00521275, -0.1746373, 0.019872334, -0.007238042, -0.004866139, 0.011444942, 0.009168187, 0.028245356, 0.0059263594, -0.036373712, 0.0039588353, 0.026750173, 0.0019777187, -0.024520991, -0.013137217, -0.0044855475, 0.009643927, -0.006670553, 0.019709224, 0.005647712, 0.012797402, 0.039635926, -0.012172144, 0.006004517, -0.009698297, 0.007326394, -0.010520647, 0.005793832, 0.021870442, 0.00074334355, 0.006171026, -0.01757519, -0.011941071, 0.031480387, 0.0094740195, -0.010289574, -0.007999226, -0.019627668, 0.014612011, -0.014911047, 0.035123195, -0.0062627755, 0.0028085643, 0.028625948, 0.0006239838, -0.01757519, 0.009535186, -0.0038365023, 0.0051821666, 0.004716621, -0.0033658596, 0.03843978, -0.03251342, -0.017452857, -0.0039554373, 0.04722058, -0.0017398486, 0.02604336, -0.006701136, 0.030827943, -0.008393411, -0.0007191318, -0.024738474, 0.0080400035, -0.01768393, -0.020864591, -0.017262561, -0.000801112, -0.0021442275, -0.017751893, 0.005437027, 0.016827598, 0.015223675, -0.0012335255, -0.0109488135, 0.016868377, 0.008203114, -0.0018995614, -0.0021391304, -0.0021374312, -0.018540263, -0.020918962, 0.030420167, -0.00055517146, 0.010520647, -0.009120613, 0.0018774734, -0.033682384, 0.013694512, -0.009406057, 0.0079176705, 0.0033607623, -0.018404337, 0.008508948, -0.012987698, 0.011608053, 0.019043187, 0.012681866, -0.0025027315, 0.02424914, -0.017031487, -0.008141948, -0.007401153, -0.013803252, -0.001532562, 0.029876463, 0.00396903, 0.032758087, 0.026804544, 0.016311081, -0.012321662, -0.002490838, 0.0024347687, -0.016175155, -0.026845321, -0.0042986497, 0.017480042, -0.009358482, -0.0097934455, 0.01874415, 0.004495742, 0.011709997, -0.035476603, -0.026967654, -0.01794219, -0.011213868, -0.011043961, -0.09395183, -0.022251034, 0.03001239, 0.019029595, 0.016012045, 0.014245011, 0.009569168, 0.018377151, 0.0005581448, 0.020918962, 0.033954233, 0.0005148185, 0.017439265, 0.012090589, 0.0075370786, -0.009222557, 0.004981676, 0.0024738472, -0.05616449, 0.0012743032, -0.013911993, -0.010541036, -0.001148572, -0.0011239354, -0.032839645, -0.011852719, -0.020633517, 0.029088095, 0.014245011, 0.03667275, 0.0042035016, -0.006106461, 0.0069797835, -0.014285789, -0.010561425, -0.006374914, 0.0025010325, -0.012240107, 0.027334653, -0.03313868, 0.008767206, 0.013354698, -0.00894391, -0.02556762, -0.026954062, 0.008209911, 0.016854784, 0.0026913283, 0.010337148, 0.0035374658, -0.034226086, -0.016650895, -0.024126807, -0.0012369236, 0.010527444, 0.01662371, -0.0034372206, -0.0065040435, -0.0029801705, 0.0035374658, 0.0058583966, 0.030528907, -0.01709945, -0.0049782777, 0.0006545671, 0.009147798, -0.01832278, -0.007006969, 0.009596352, -0.0049476945, 0.0040437886, 0.021884033, -0.009270132, 0.039554372, -0.020198556, -0.003306392, -0.00022342784, -0.019355817, -0.0022104913, -0.009283723, -0.017534412, -0.012090589, 0.033220235, -0.019845149, 0.017507227, 0.044556435, 0.011859516, -0.023746215, 0.019668445, -0.0109488135, 0.017004302, 0.030637648, 0.01975, -0.012810995, -0.010309963, 0.01278381, -0.003782132, -0.011472127, 0.0075030974, 0.0043258346, -0.027606504, -0.014217826, -0.07073572, 0.026070544, 0.020551963, -0.012831384, -0.012165348, 0.014883862, 0.021462664, -0.020973332, 0.02223744, -0.01975, -0.007890485, -0.0067657004, -0.0075370786, -0.0026080739, -0.028490022, -0.006629775, 0.012573125, 0.003999613, 0.0281638, 0.0047506024, -0.0020049037, -0.0029801705, -0.015427564, 0.004743806, -0.045698214, 0.016270304, 0.0016633904, -0.00354766, -0.004570501, -0.01270905, 0.009385668, 0.0041083535, 0.015196491, 0.03563971, -0.033328976, -0.029876463, 0.045915693, 0.005297703, 0.011648831, -0.031996906, -0.030338611, -0.0036088268, 0.010309963, -0.016487785, -0.028490022, -0.0037685393, 0.0021646165, 0.009603149, 0.030610463, 0.012953717, -0.003619021, 0.02223744, -0.005093815, -0.011805145, 0.0077953376, -0.012511958, -0.0026794348, 0.0010848568, 0.0068166726, -0.013449846, 0.037134893, 0.0068642464, 0.025540434, -0.022332588, 0.03107261, 0.00349329, -0.029985204, -0.007870097, -0.0050190557, 0.0016965223, -0.006843858, 0.0011086438, 0.017792672, 0.025051102, -0.005178768, -0.027592912, 0.007401153, -0.012335255, -0.012056608, 0.015862526, -0.00870604, -0.0101944255, -0.02821817, 0.018499484, 0.014068307, 0.00029054112, -0.031915348, 0.012280885, -0.007564264, 0.02339281, -0.034960084, -0.005671499, -0.023596697, -0.010887647, 0.018064523, 0.026029767, 0.0011944469, -0.0035238732, 0.01991311, -0.004356418, -0.01135659, 0.0033539662, -0.014856677, -0.00024211762, -0.005552564, 0.03107261, -0.0044345753, -0.028517207, -0.0065040435, 0.02583947, 0.014571233, 0.0022138895, -0.0048049726, 0.010174037, -0.0031738644, 0.009222557, -0.008019615, -0.020280112, -0.01111872, 0.001936941, 0.012301274, 0.02196559, 0.008352633, -0.020973332, 0.0134226605, -0.039581556, 0.0069322097, -0.014571233, -0.00069746864, -0.0019777187, 0.005345277, -0.007081728, 0.00018912784, -0.006898228, -0.011444942, 0.0026046757, 0.00034406187, 0.031534757, -0.026342396, 0.07166002, 0.019383002, -0.0046180747, 0.00698658, -0.026641432, 0.010343944, -0.009310909, 0.006154035, -0.004356418, -0.023746215, -0.0076458193, -0.009331298, -0.012199329, 0.00868565, -0.03096387, -0.009643927, 0.011329405, 0.0341989, -0.04442051, -0.0065889973, 0.053962495, -0.02525499, 0.012342052, 0.0022784541, 0.0059059705, -0.031018239, 0.012654681, -0.0011952964, -0.013850827, -0.008624484, 0.006018109, 0.020388851, -0.011173091, -0.02726669, 0.0023396206, -0.009276927, 0.010411907, -0.0015894809, -0.0052943053, 0.008848761, -0.0033930447, 0.012722643, -0.0048287595, -0.0059773317, -0.00064607174, 0.0003491591, -0.011213868, -0.0039860206, -0.0040743724]
+ },
+ {
+ "Id": 17,
+ "Type": "Climbing",
+ "Brand": "Legend",
+ "Name": "Apex Climbing Harness",
+ "Description": "The Apex Climbing Harness by Legend is a lightweight and durable harness designed for maximum comfort and safety. With adjustable leg loops, a contoured waistbelt, and a secure buckle system, this harness provides a secure fit for all-day climbing sessions. Available in bold orange, it also features gear loops for easy access to your equipment.",
+ "Price": 89.99,
+ "Embedding": [0.009159603, 0.004486743, -0.013799228, -0.041796505, -0.0009480322, 0.033660542, -0.012383411, -0.013240878, 0.042062387, -0.03288949, 0.006085353, -0.009053251, -0.0043936847, 0.015992746, -0.027757984, 0.0045233015, 0.037143584, -0.0051747104, -0.027093282, -0.008142608, 0.006577233, 8.194538E-05, -0.00017573078, -0.0044103023, 0.009884129, -0.018585088, 0.02689387, -0.009219426, 0.037276525, -0.024514236, 0.02374318, 0.0055436203, 0.010376009, 0.011306592, -0.02154966, 0.0037455996, -0.0123102935, -0.0067301146, -0.0009480322, -0.00836196, 0.027013516, -0.020619078, -0.013759346, -0.00087242224, -0.014011933, 0.0034365128, 0.0037788348, -0.023503887, -0.01770768, 8.625556E-05, -0.010854594, -0.0010086863, -0.011685473, 0.0017946973, 0.0068863197, -0.0064941454, 0.006052118, 0.016963212, 0.0312942, -0.019794846, -0.018119795, 0.008634488, -0.019037085, -0.011326534, 0.0026255755, -0.023623534, -0.002527532, 0.0060355, -0.0041975975, 0.021376839, 0.041184977, 0.020592488, 0.012110882, -3.0716536E-05, -0.005340886, 0.0063279695, -0.016551096, -0.002806707, -0.019209908, 0.018385677, 0.031373966, -0.02836951, -0.006530704, 0.017601326, 0.039376985, -0.018226147, -0.00560012, -0.009691365, -0.0061717643, -0.033687133, 0.010296244, -0.008229019, 0.017521562, 0.009704659, -0.04506684, 0.006118588, 0.018279323, -0.0014191403, -0.0083752535, -0.026242461, -0.0012961702, 0.003748923, 0.0042108917, -0.0065207332, -0.022147894, -0.038579345, 0.0047559477, 0.0064243516, 0.03227796, -0.0041643623, -0.022068128, 0.024274942, 0.02135025, -0.031879142, 0.006959437, -0.014118285, 0.024221765, 0.0032952635, 0.009378955, -0.005683208, -0.0009197823, 0.005347533, 0.02662799, 0.004077951, 0.0006331293, 0.007710551, -0.025923405, -0.00510824, 0.009963893, -0.009771129, 0.014543694, 0.0056400024, 0.02193519, -0.020884959, 0.007411435, 0.030390207, 0.02836951, -0.0046130368, 0.0034331894, 0.0016559405, 0.02892786, 0.0155540425, -0.01446393, 0.00082464673, -0.008840546, 0.019967668, -0.0021453279, -0.00012265841, -0.011419592, -0.0019525641, 0.013679581, -0.026774224, 0.04296638, 0.015753454, 0.003994863, -0.0095517775, 0.016497921, 0.037436053, -0.027173046, -0.025883522, -0.014410754, -0.010316186, -0.0069660842, -0.0138922855, 0.019502377, 0.021204015, -0.007943197, -0.030576324, -0.009359013, -0.0049487115, 0.010382656, 0.017760856, 0.0011374725, 0.020752018, 0.013825816, 0.020153785, -0.011951354, 0.010828007, -0.016484626, -0.0109543, -0.0005375783, -0.007816903, 0.0032287932, 0.012223883, -0.020206962, 0.005500415, 0.0010261347, -0.0051614163, 0.004835712, -0.021430014, 0.0062349113, 0.0032520578, -0.015288162, -0.00651741, -0.650026, 0.0026056345, -0.00033546714, -0.031054908, 0.03709041, 0.012729056, 0.0158731, 0.010243068, -0.010788124, 0.013207642, -0.0043305377, 0.03597371, 0.0024161942, -0.014051815, 0.0043704202, -0.030257266, -0.020884959, -0.016524509, 0.014477224, 0.000710401, -0.030124325, 0.0044136257, -0.01725568, -0.008840546, -0.016949918, -0.005995618, 0.0126359975, -0.0061418526, 0.00082672393, 0.023995766, -0.019502377, 0.026867282, -0.0059856474, 0.0069062607, 0.04987929, -0.01446393, -0.015048869, 0.035893943, 0.009757835, 0.04791177, -0.027492102, -0.00449339, -0.00045324414, -0.013958756, -0.006806555, -0.0043936847, 0.03358078, -0.018106502, 0.021124251, -0.022719538, 0.027412338, -0.021602837, 0.022520127, 0.00990407, -0.021190722, 0.0012080971, 0.026441872, -0.015620513, 0.0041676858, 0.0068397904, -0.023144947, 0.015195103, -0.02718634, -0.044774372, -0.027864337, 0.03637253, -0.0124299405, -0.00062315876, 0.006098647, -0.017162623, 0.017096153, 0.040945686, -0.008514841, -0.0018761234, 0.029964797, 0.016085805, 0.0069461428, -0.0017066242, -0.0004665382, 0.010176598, 0.0064210277, 0.01488934, 0.009026662, -0.0072652004, 0.014304401, 0.0068132025, 0.0007972278, -0.015128633, 0.019276377, -0.0030858822, 0.04522637, 0.018970614, -0.021682601, -0.022214364, -0.017601326, 0.017082859, -0.020765312, 0.012483116, 0.012994938, -0.027890924, -0.0016841904, -0.023969179, -0.037568994, -0.026295638, 0.028821507, 0.014091697, 0.016351687, -0.015035574, 0.036080062, -0.019595435, -0.015966158, -0.005271092, -0.027784571, -0.03344784, -0.013513406, -0.022799302, 0.012469823, -0.014104991, 0.008681017, -0.047964945, 0.034910183, -0.0048623, 0.019263083, 0.0061983527, -0.017468387, 0.024859881, 0.014862752, -0.0155141605, -0.019701788, -0.018930731, -0.007032554, -0.020313313, 0.015301456, 0.015686983, 0.014650047, 0.009558424, 0.0027950748, 0.0064177043, 0.038978167, -0.027438927, -0.019116849, 0.00031739552, 0.012695821, -0.01359317, -0.030576324, -0.057483487, -0.02361024, 0.005573532, 0.013426994, -0.00029724673, -0.015088751, -0.017641209, -0.0045365957, 0.00062315876, 0.013446935, -0.008521488, -0.003619306, -0.011652238, -0.017641209, -0.021629425, 0.019050378, 0.0088206045, -0.020752018, -0.017122742, -0.008255607, 0.0038851872, 0.014915928, 0.00012058122, -0.006500792, -0.042195328, 0.0022151216, -0.011818414, -0.034803834, 0.024048943, 0.0040048338, -0.018718027, -0.014304401, -0.047672477, 0.009339073, 0.0008857163, -0.0066137915, 0.011459474, -0.018359087, -0.00498527, 0.007178789, 0.00095301744, 0.011638944, 0.048922118, -0.007743786, 0.0012080971, -0.01580663, 0.024328118, -0.009039956, 0.01665745, -0.00051556004, -0.019302966, 0.0062182937, 0.016816977, 0.02407553, 0.020632371, 0.027438927, -0.023650121, 0.024833292, -0.009950599, 0.026721047, -0.0019459171, -0.0025026056, -0.003340131, 0.016750507, -0.0068331435, -0.008322078, -0.022972124, 0.01149271, -0.022147894, 0.033181958, 0.013639699, 0.04844353, 0.037834875, -0.01390558, -0.017162623, 0.021084368, -0.008634488, 0.016444745, 6.2108156E-05, -0.02030002, 0.0055702087, 0.021310369, 0.040254395, -0.018624969, -0.026721047, 0.016072512, -0.012576175, -0.00431392, 0.011785178, 0.035202652, 0.024687057, 0.0005728906, -0.021815542, 0.032916076, -0.015952865, 0.019967668, 0.00076523895, 0.030124325, 0.004995241, 0.042381443, 0.027545279, 0.036904294, -0.00036932543, -0.013666287, -0.02128378, 0.0045930953, -0.00082672393, 0.001734874, 0.040892508, 0.0018794468, 0.0040613334, 0.023291182, 0.025723994, 0.008189137, 0.0033168665, 0.016537802, -0.014809576, 0.0073781996, 0.0058859424, 0.0234773, -0.02387612, -0.02305189, -0.013785933, -0.023291182, -0.029885033, 0.019209908, -0.0039915396, -0.012356822, 0.0061551468, 0.02557776, -0.015859805, 0.0004910491, 0.010196539, -0.0067799673, 0.019063672, -0.019582141, -0.040786155, 0.010110128, 0.021124251, 0.011884884, -0.024288235, -0.038153935, 0.009039956, -0.0058826185, 0.053548448, -0.003619306, 0.015035574, -0.021336956, -0.012775585, 0.009664777, 0.02656152, 0.017308857, -0.02311836, 0.038871814, -0.020246843, 0.0011216857, -0.0012513028, -0.007517787, -0.001809653, 0.034245484, 0.0036857764, -0.015421102, -0.03695747, 0.016458038, -0.0024677087, 0.00628144, -0.0145835765, 0.027704807, 0.0057829134, -0.0011590753, -0.011845002, -0.012090942, -0.010615301, 0.023729885, -0.018651556, 0.007212024, -0.0045532132, -0.004922123, -0.0021237251, 0.08359301, -0.0034664245, -0.0009314146, 0.023224711, 0.012390058, -0.026003169, -0.001414155, 0.0001108184, -0.014038521, 0.015261574, 0.0070259073, 0.0014714856, -0.014849458, 0.008062843, 0.0065872036, -0.0036625117, -0.0013061408, -0.019675199, -0.011712061, -0.004925447, 0.00947866, 0.0020838429, 0.019528965, 0.011931413, -0.010695066, 0.012735703, 0.018784497, 0.012815468, -0.014184755, -0.008641135, 0.0058826185, -0.016750507, 0.0083752535, 0.022706244, -0.0063179987, -0.0045532132, -0.031560082, -0.01538122, 0.031001734, -0.0013925522, 0.013473523, 0.03834005, -0.0034265423, -0.023902709, 0.021230603, 0.00028914565, 0.01310129, 0.023370946, -0.002698693, -0.009378955, 0.00461636, 0.0045864484, -0.02584364, -0.0035395417, 0.020911546, 0.008907015, -0.00023430769, 0.003552836, -0.009312484, -0.023902709, 0.010582067, -0.013772639, 0.018731322, -0.010076893, -0.009717953, -0.009285896, -0.020951428, 0.01846544, -0.013559935, -0.017056271, -0.02610952, 0.004207568, 0.0065872036, 0.012981643, 0.035043124, 0.014477224, 0.00077604037, -0.014291108, 0.019967668, 0.023929296, -0.004835712, 0.013626405, -0.018212853, -0.004486743, 0.006643703, -0.0025391642, 0.0063911164, -0.018704733, 0.0051115635, -0.007178789, 0.017534856, 0.003469748, 0.026388695, 0.009312484, -0.012263765, -0.0068863197, 0.008235666, 0.01267588, 0.0065406743, -0.01433099, 0.016816977, -0.01725568, -0.005613414, 0.01274235, 0.04325885, 0.016511215, 0.024833292, 0.014782988, -0.011977943, 0.0035063066, 0.024274942, -0.0008533121, 0.009359013, -0.0070857303, -0.0131212305, 0.007431376, 0.015141927, -0.0023912678, 0.036452293, -0.033633955, 0.0051315045, -0.048948705, 0.025471406, 0.016072512, -0.016537802, 0.025178937, -0.01120024, -0.0147431055, -0.002240048, -0.0013908903, 0.0068132025, 0.011339827, 0.01120024, -0.011725355, -0.007896668, -0.0013260818, -0.02311836, 0.008155902, -0.0016783742, 0.0008204924, -0.004868947, 0.006072059, 0.02128378, -0.0008225696, -0.024248354, -0.016006041, -0.027970688, 0.010123421, -0.034378424, -0.0024826645, -0.016843567, -0.004466802, -0.023902709, -0.008036256, 0.005005211, -0.012263765, 0.00086245174, 0.009698012, 0.01994108, 0.005340886, 0.022373892, -0.029885033, 0.038659107, -0.0037721877, -0.025205525, 0.0046894774, -0.016006041, -0.0062947343, -0.016497921, 0.025006115, -0.009152956, 0.008109373, 8.905977E-05, 0.0028598832, 0.0024710323, 0.01169212, -0.0013576553, -0.02515235, -0.006620439, -0.039376985, -0.0019592112, -0.004151068, 0.009578366, -0.00164597, -0.030071149, 0.0061717643, 0.04525296, 0.028023865, -0.015607219, 0.002198504, 0.017548151, -0.029991385, 0.03272996, -0.0065240567, -0.008667723, -0.0038386579, -0.00646091, -0.014503812, 0.017574739, 0.0017182564, -0.010595361, 0.0004486743, -0.0113797095, -0.017574739, -0.011732003, 0.01359317, 0.012948408, -0.014836164, 0.02501941, -0.017986855, -0.009890776, -0.0043272143, -0.013300701, -0.023410829, 0.01627192, 0.019781552, -0.002997809, 0.022586597, -0.007165495, 0.0069660842, 0.012848703, -0.0018345794, 0.015314749, -0.008202431, 0.024780115, 0.009578366, 0.0067699966, -0.03171961, -0.037701935, -0.02148319, 0.012423293, -0.009531836, 0.021124251, -0.003748923, 0.0003603935, -0.004397008, 0.011632297, -0.015540749, -0.03177279, 0.023769768, 0.015088751, 0.03033703, -0.0056898547, -0.027173046, 0.0119447075, 0.0156471, -0.0066902325, 0.0042175385, -0.012217235, -0.022347303, 0.0135266995, 0.036266178, -0.021762365, 0.018638263, 0.007484552, -0.013147819, -0.012197294, -0.00292303, -0.0022649744, -0.024487646, 0.008840546, 0.028449275, 0.0012072662, -0.011958001, -0.0063279695, 0.0091463085, -0.02767822, 0.0014382504, 0.030709263, 0.022174481, -0.015593925, -0.0027302662, -0.016750507, -0.015780041, 0.010947653, -0.015261574, 0.000341491, -0.01260941, 0.028635392, -0.0009405543, 0.01433099, 0.0008329555, 0.00045407502, -0.015766747, -0.0028665303, 0.03246408, -0.025099173, -0.025311878, 0.021376839, -0.03506971, -0.030576324, 0.0002864453, 0.006610468, 0.008215725, -0.000611111, -0.033049017, -0.02394259, 0.013254171, -0.031666435, 0.0052544745, 0.018478734, 0.02977868, -5.94078E-05, 0.015633807, 0.023530474, -0.0062382347, 0.02823657, -0.0009646498, -0.01665745, -0.019183319, 0.020645665, 0.013626405, 0.0028532362, -0.019130142, -0.002485988, -0.013107937, 0.023623534, -0.003871893, -0.028289746, -0.0030426765, 0.004991917, -0.0016135657, 0.039509926, -0.017627915, 0.007670669, -0.00040110652, 0.018359087, 0.01361311, -0.022387186, -0.022679655, -0.026255757, -0.0044335667, -0.0125961155, -0.043205675, -0.0036492178, -0.0147431055, -0.020313313, 0.011273357, -0.008348665, 0.0058759716, 0.02499282, 0.0067832908, 0.018053325, 0.013247524, -0.013553288, -0.022573303, 0.012702468, 0.0019625346, -0.015979452, -0.01741521, 0.0073582586, 0.028848097, 0.007205377, -0.043923553, -0.018385677, -0.019781552, -0.045332722, 0.010861242, -0.017508268, 0.0194492, 0.008720899, 0.023464005, 0.029060801, 0.029034212, 0.035468534, 0.019063672, -0.0041477447, -0.016816977, 0.006630409, -0.014065108, -0.01446393, -0.030443383, -0.011585767, -0.025418231, 0.031081498, 0.01826603, -0.0004308104, 0.018478734, -0.014184755, -0.0020987988, -0.028901272, 0.0070059663, 0.027465515, 0.013706169, 0.003456454, -0.01846544, 0.00024448594, -0.0052877096, 0.021961777, -0.019409318, 0.009571719, 0.0009804365, 0.013692875, 0.011107182, -0.01938273, -0.021017898, -0.015048869, -0.021270486, 0.018000148, -0.011087241, -0.01482287, 0.010548832, 0.023291182, -0.025657523, -0.009432131, 0.018731322, -0.0027767955, -0.015912982, -0.0014964119, -0.019076968, 0.013426994, -0.005340886, 0.04030757, -0.017056271, -0.012875291, 0.0027418986, -0.0183325, -0.026920458, 0.020579195, 0.017681092, -0.005879295, -0.0377817, 0.026029756, -0.006474204, 0.012994938, -0.0013086334, -0.018212853, -0.027332574, 0.011346474, -0.021363543, -0.024248354, -0.00923272, -0.012689174, -0.006756703, 0.010628596, 0.043072734, 0.19037084, 0.017720973, -0.020100608, 0.023862826, -0.0004378729, 0.008973486, -0.0044136257, 0.011299945, 0.009292544, 0.002916383, 0.009870835, 0.011193593, -0.017574739, -0.004519978, 0.02866198, -0.021177428, -0.046582364, 0.0135665815, -0.0324109, 0.0013476847, 0.00033152045, 0.010050304, 0.017654503, -0.0139321685, 0.0075510223, 0.0031673082, -0.0020040786, 0.00038428124, -0.01482287, 0.028981037, -0.0043704202, -0.01781403, 0.010821359, -0.010947653, -0.020313313, -0.012775585, 0.028316334, -0.002472694, -0.0075643165, 0.015248279, 0.0061119413, -0.015899688, 0.011924766, -0.010934359, -0.00035810858, -0.002288239, 0.00990407, -0.008707605, -0.01797356, 0.016338391, -0.014915928, -0.0038984811, 0.019821433, 0.016843567, 0.00941219, -0.020539314, 0.027279397, -0.010548832, -0.0039981864, 0.016989801, -0.014650047, 0.008926957, 0.011326534, 0.011120476, -0.007903315, 0.013985344, -0.0071721417, -0.015660396, 0.0119048245, -0.001462346, 0.013639699, 0.009013369, 0.0039848927, 0.007717198, -0.017069565, -0.023131654, 0.020964723, 0.000201488, 0.0048124474, -0.010874536, 0.029938208, -0.0042275093, 0.0062149703, -0.01064189, -0.024939645, -0.011406298, 0.020074021, -0.00060072506, -0.016285216, -0.012729056, -0.0019891227, -0.0230253, -0.011545885, -0.014118285, -0.00806949, 0.036186412, -0.03227796, 0.009299191, -0.022121305, -0.00066428725, -0.016152276, 0.017667796, -0.00782355, 0.007484552, -0.027784571, 0.017082859, 0.011412945, 0.016843567, -0.0064509395, -0.008248961, 0.00083752535, -0.02555117, 0.007158848, -0.0034365128, -0.013746051, -0.00035353875, -0.0025591054, 0.008122667, 0.0027369133, -0.018385677, 0.0010161642, -0.025045997, 0.017867208, -0.00068547466, 0.0022533422, -0.0007124782, -0.0073449644, 0.026508342, 0.004117833, -0.019302966, -0.003994863, -0.005839413, 0.018917438, -0.0032121758, -0.01446393, -0.013998639, -0.015686983, -0.037249938, 0.010741595, 0.017787443, -0.0039782454, 0.008441724, 0.031108085, 0.028263157, 0.028023865, 0.009545131, -0.00406798, -0.0035428652, -0.018545205, 0.0045532132, 0.021735778, -0.0060687354, -0.0025042673, 0.0003647556, 0.0012421631, -0.027332574, -0.040972274, -0.011067299, -0.013360524, 0.0026288992, -0.017920384, 0.009531836, 0.0014847796, -0.030310443, -0.0022068128, -0.022134598, -0.1685686, 0.009033309, 0.02738575, -0.03562806, -0.010070246, 0.0172158, 0.010050304, -0.0007930734, -0.02030002, 0.0007249414, 0.0013709493, -0.014849458, -0.022865772, -0.019715082, 0.022839185, -0.007830198, 0.014251226, 0.00065805565, 0.023663415, 0.0029728827, 0.01267588, -0.002793413, 0.019622022, 0.003572777, 0.010110128, -0.00030140113, -0.004952035, -0.002485988, 0.033128783, 0.00596903, -0.018997202, -0.011718708, 0.01627192, 0.00028021372, 0.005470503, 0.006766673, 0.0021602837, 0.0153546315, -0.033421252, 0.037037235, 0.009604954, 0.017268976, 0.011127123, -0.011831707, 0.0355483, 0.035574887, 0.0016177201, -0.00010027663, 0.00898678, -0.0071189655, 0.021602837, -0.007916609, 0.010861242, 0.00095800275, 0.0050085345, -0.0005679054, 0.012203941, -0.014862752, 0.018850967, -0.0016243672, 0.02892786, -0.0073449644, 0.0039184224, -0.029087389, -0.031108085, -0.007943197, -0.0067201443, 0.013014878, -0.015926275, 0.025099173, 0.012443234, 0.011280005, -0.020020844, -0.0172158, 0.015899688, 0.020512724, -0.01236347, 0.0058028544, 0.0024876497, -0.007670669, 0.010249715, 0.019794846, -0.020752018, 0.002485988, -0.022520127, 0.0051846807, -0.0060188826, -0.0019027115, -0.021110957, -0.022852479, 0.014929222, -0.018372381, -0.00024573228, -0.018106502, -0.0076374337, 0.016032629, -0.003223808, -0.028848097, -0.0020173725, -0.025564466, 0.009585013, 0.006178411, -0.012748998, 0.037249938, 0.02515235, 0.0064243516, 0.012928467, 0.0038087463, 0.010874536, 0.0024942968, 0.01741521, 0.009425484, 0.004952035, 0.02767822, -0.020911546, 0.012197294, 0.017388621, -0.035867356, 0.007424729, -0.019489083, 0.02144331, -0.02200166, -0.01285535, 0.0031290879, -0.012935114, 0.008720899, -0.09444096, 0.003805423, 0.026215874, 0.017016388, -0.017694386, -0.0034631009, -0.011991236, 0.02499282, -0.010794772, 0.011286652, 0.00059989415, 0.008694311, 0.0009945614, 0.006125235, 0.021097664, -0.008395195, 0.019861316, -0.0049187997, -0.029831856, 0.036159825, 1.6578619E-05, 0.018359087, -0.015008987, -0.022945536, -0.011831707, -0.04554543, -0.02781116, 0.009053251, 0.025989875, 0.008880428, 0.011951354, 0.0048755943, -0.0034099247, -0.0028249864, -0.0039283927, -0.041131802, -0.041371096, 0.021656014, 0.03259702, -0.022187775, -0.024274942, 0.0064509395, 0.026082933, -0.023198124, -0.0057829134, -0.028023865, -0.007225318, -0.0047625946, -0.0011383033, -0.015992746, -0.008534783, -0.019688493, -0.015261574, 0.00027128178, 0.01846544, -0.0067367614, -0.0057962076, 0.010123421, 0.00055710395, -0.00012099666, -0.017960267, 0.016564392, 0.0016418156, -0.019422613, 0.027159752, 0.00806949, -0.023238005, 0.03203867, -0.018478734, 0.016258627, -0.024886468, 0.008029608, -0.016484626, 0.029752092, -0.008262254, -0.0060421475, -0.041078627, -0.00043039498, -0.00071330904, 0.00719873, -0.00044825886, -0.020552607, 0.008707605, -0.02387612, -0.01070836, -0.0066769384, 0.0050617107, -0.019076968, 0.014503812, -0.024886468, 0.015912982, 0.0006480851, 0.034670893, 0.013400406, -0.022918949, -0.01784062, 0.026362108, 0.002929677, -0.0230253, -0.00043828832, -0.023198124, -0.0077570803, -0.07784998, 0.03118785, -0.0007581765, -0.010562126, -0.008282196, -0.0064309984, -0.0002492635, -0.010828007, 3.1988817E-05, -0.042088974, -0.015075456, 0.0007814411, 0.01334723, -0.0078036096, -0.0025258702, -0.0068132025, 0.0074712583, 0.0065672626, 0.020964723, -0.0098375995, 0.00090316474, -0.008754134, -0.028396098, 0.025072586, -0.02633552, -0.0014465592, 0.0058360896, 0.018811086, 0.013825816, 0.004014804, 0.013539993, -0.02253342, 0.0115392385, 0.058493834, -0.021802248, -0.022918949, 0.0038951577, 0.019342847, 0.02977868, -0.022719538, -0.01629851, 0.005663267, 0.00811602, -0.022427069, -0.011751943, -0.009864188, 0.016351687, 0.004293979, 0.025657523, -0.0027684867, 0.024381295, 0.011698768, 0.006284764, -0.007145554, -0.01328076, -0.022972124, -0.0056898547, -0.019489083, 0.003456454, -0.034378424, 0.03190573, -0.016976506, 0.017069565, 0.0070790835, 0.007497846, -0.0036359236, -0.017627915, -0.012974996, -0.0043538027, 0.0073516117, -0.014610165, -0.00017396515, 0.008195784, -0.0060820295, 0.0045565367, 0.017601326, -0.00658388, 0.012217235, -0.017867208, 0.005211269, -0.011147064, -0.0449339, -0.03849958, 0.0073516117, -0.005114887, -0.012469823, -0.029885033, 0.007384847, -0.007923256, -0.007703904, -0.026880577, 0.017388621, -0.015726866, -0.009777776, -0.018133089, 0.01155918, -0.022161188, -0.012948408, -0.0019193289, 0.019263083, 0.004131127, -0.01151265, -0.008960192, -0.012702468, -0.008700958, -0.008867133, 0.013294053, -0.021855423, -0.016870154, -0.0020938134, 0.0183325, -0.011964648, -0.004254097, 0.005530326, 0.001311126, -0.007225318, 0.015819924, -0.0044834195, -0.015926275, 0.01679039, 0.01734874, 0.02568411, 0.0012213911, 0.00091230444, 0.02767822, 0.014251226, -0.005683208, -0.008062843, 0.018704733, 0.01334723, 0.018518617, -0.008342018, -0.013446935, -0.004416949, -0.0072784945, 0.010508949, 0.0061318823, 0.016245333, -0.022280835, 0.071149774, 0.006364528, -0.01895732, 0.030390207, -0.012994938, 0.032118432, 0.005889266, -0.007218671, -0.0035428652, -0.017654503, -0.0063911164, -0.0033368075, -0.0027817807, 0.004912153, -0.0324109, -0.0071189655, 0.008262254, 0.004596419, -0.004849006, -0.026096227, 0.037728526, -0.025737287, 0.012642645, -0.0025158997, -0.012689174, 0.011898178, 0.017401917, 0.02085837, -0.018212853, -0.0023779739, 0.010847948, 0.009192838, -0.025817052, -0.021868719, 0.0026189284, -0.01131324, -0.008594606, -0.009870835, 0.0038951577, 0.01974167, -0.012257118, 0.01359317, -0.0052212398, -0.020020844, 0.005367474, 0.022267539, -0.02892786, -0.0106485365, -0.0021436661]
+ },
+ {
+ "Id": 18,
+ "Type": "Climbing",
+ "Brand": "Grolltex",
+ "Name": "Alpine Tech Crampons",
+ "Description": "The Alpine Tech Crampons by Grolltex are essential for icy and challenging mountain terrains. Made from strong and lightweight stainless steel, these crampons provide excellent traction and stability. Their simple adjustment system allows for easy fitting and quick attachment to most hiking boots. Available in silver, they are suitable for both beginners and experienced mountaineers.",
+ "Price": 149.00,
+ "Embedding": [0.0027607959, -0.0042551104, 0.00014239542, -0.05430459, 0.0034777988, 0.031950183, -0.011733383, -0.03757899, 0.016618382, -0.03586354, 0.0023034553, 0.01060092, 0.0005691629, -0.0054780357, -0.010708136, -0.00802105, 0.016444158, 0.0299935, -0.017181264, -0.0072973464, -0.015934885, 0.019044131, 0.016082305, -0.010440097, -0.011498849, -0.022126572, 0.011317923, -0.010781846, 0.017623527, -0.019405983, 0.02224719, 0.001049538, -0.035381075, -0.0051932447, -0.0018042338, -0.021724515, 0.00020626395, -0.004700724, -0.0045365505, 0.025704887, 0.00071407115, -0.015036956, 0.00488165, -0.0048481454, 0.025704887, 0.0077329087, 0.0047174767, -0.0066909096, -0.01874929, 0.0056723636, 0.007062813, 0.015439014, -0.010895763, 0.001129112, 0.0039502163, -0.009448355, 0.012644713, 0.018534858, 0.022970894, 0.015050358, -0.028760524, 0.00014417536, -0.0073241503, 0.011069988, -0.0002669914, -0.0069891023, -0.024552321, -0.014634899, -0.016685393, 0.0202235, -0.012517395, -0.0015110667, 0.011773588, -0.0007710293, -0.00042257935, -0.004037329, 0.008610735, -0.0044996953, 0.009930824, 0.021791525, 0.017596724, -0.019231757, 0.012296263, 0.012396778, 0.009421551, -0.012028225, 0.004204853, -0.0103797885, -0.030181129, -0.018936915, -0.005863341, 0.014916339, 0.00864424, 0.019486394, -0.035595503, 0.0013720217, -0.007518478, -0.0011433514, -0.03639962, -0.020049276, 0.02078638, 0.008724651, 0.0002879319, -0.0146080945, -0.034818195, 0.0028663361, 0.0108555565, 0.006372614, 0.00010449311, -0.0063223564, -0.02900176, 0.0010629399, 0.013884391, -0.032968726, -0.0061816364, -0.023185324, 0.036721267, -0.011069988, 0.00327677, -0.024927575, 0.013690063, 0.0065803435, 0.026937863, 0.014112224, -0.0015127419, 0.008356098, -0.014045214, 0.004308718, 0.029242994, -0.006744517, 0.013254501, 0.02106782, 0.0047141262, -0.011545756, -0.017328685, 0.025490455, 0.006570292, 0.0037692906, -0.02782239, 0.0059001963, 0.0023788412, 0.025503857, -0.016873019, 0.009716393, 0.0065937457, 0.032539867, -0.0066239, 0.02594612, 0.00233696, 0.0045332, 0.0053339647, -0.014246243, 0.019352375, -0.015532827, -0.014286448, -0.014554488, 0.025410043, 0.017248273, -0.0558056, -0.032298632, -0.0070963176, -0.00017768017, 0.010165358, -0.011860701, 0.021148233, 0.032513063, -0.021577094, -0.012778733, 0.012262759, 0.002802677, 0.03409449, 0.003953567, 0.0038463515, 0.023587383, 0.01756992, -0.0064764787, 0.00047576823, 0.024230674, 0.0029333457, 0.011271017, -0.0060241637, -0.00669426, 0.011492148, 0.016484363, -0.024994584, -0.013482333, 0.014474075, 0.0425377, -0.0059169484, -0.04170678, 0.01610911, -0.0034342424, -0.018400839, 0.010279274, -0.64071906, -0.0012916102, 0.0089993905, -0.017074049, 0.025972925, 0.023024501, 0.030181129, 0.015304995, -0.018642073, 0.013616352, 0.011023081, 0.022783266, -0.0031528021, -0.016135914, -0.002983603, -0.030985244, 0.0062720994, 0.0023888925, 0.011351428, 0.020236902, -0.01750291, -0.001025247, -0.008570529, -0.029779071, 0.012899349, -0.0018427642, 0.003786043, -0.019915257, -0.030904831, 0.021335859, -0.040286176, 0.04690673, -0.014594693, 0.01869568, 0.054894272, -0.016966833, -0.038034655, 0.03910681, 0.0195266, 0.038329497, -0.030663596, -0.042162444, -0.014862731, -0.0027105387, 0.020518342, 0.021737916, 0.0059437524, 0.0016157692, -0.004030628, -0.015532827, -0.00920712, -0.007900433, -0.018869907, -0.007337552, 0.014286448, -0.0133215105, 0.037900634, -0.0010579142, -0.005571849, 0.011210708, -0.005062576, -0.003159503, -0.018441044, -0.031494517, -0.020035874, 0.011880804, -0.054626234, -0.021161634, 0.029055366, -0.0020722721, 0.023413157, 0.025611073, -0.019540003, -0.00038007012, -0.0008660992, 0.03500582, -0.0011843948, -0.02155029, 0.016873019, 0.00071281474, 0.0024642784, 0.023225531, 0.012034926, -0.011250913, 0.03522025, -0.006479829, 0.009374645, -0.015814267, 0.025356436, -0.0056455596, -0.01003804, 0.030181129, -0.027849194, -0.05250873, -0.0037960943, 0.024150264, 0.0041043386, 0.0041110395, 0.028465683, -0.004868248, -0.028787328, 0.0046203127, 0.0019449539, 0.0029634999, 0.013395221, 0.011693177, -0.0065233856, -0.010466901, 0.028331663, -0.013884391, -0.00871125, -0.0063424595, -0.007337552, -0.01053391, -0.014929741, -0.015747258, -0.0035883647, 0.0028211046, -0.001618282, -0.034389332, 0.024351291, -0.0054143765, 0.0005134611, 0.012939556, -0.012879247, 0.0042517595, 0.024739947, -0.005424428, -0.021818329, -0.009535467, -0.018575063, -0.00550819, 0.018173005, 0.00075427693, 0.017556518, 0.043046974, 0.0005209997, -0.018253418, 0.028760524, -0.037418164, -0.03744497, -0.010594219, -0.0038295991, -0.011277718, 0.0047409297, -0.018025585, -0.044306755, -0.0011207357, -0.0014985023, -0.03170895, 0.009910721, -0.00035221927, 0.01401841, 0.02203276, 0.01554623, -0.010513808, -0.0021459828, -0.021603897, -0.00035200984, -0.017194666, 0.022233788, 0.01359625, -0.0016132563, 0.0022548733, -0.0018762691, 0.012095234, 0.017074049, 0.009019493, -0.014353459, -0.043609854, -0.0109962765, -0.017127655, 0.00362522, 0.024793556, -0.02634818, 0.008188575, -0.020598754, 0.008751455, -0.005320563, 0.0037491876, -0.0034007377, -0.010285975, -0.015010153, 0.0022129924, 0.0089055775, 0.004355625, 0.016779207, -0.00074883236, -0.0067813722, 0.010647827, -0.014407066, 0.015921483, -0.007277244, 0.013683362, -0.008684445, -0.01861527, -0.007525179, -0.00021118498, 0.0021074521, 0.022769865, 0.023815215, -0.029377013, 0.028304858, -0.025544062, 0.03645323, -0.009716393, 0.001014358, -0.010017937, 0.039910924, -0.008007648, -0.0010260846, -0.017047245, -0.016846215, -0.021510085, 0.01143854, 0.011398335, 0.020062678, 0.041626368, 0.0038295991, -0.011740084, -0.0010394866, 0.005069277, 0.038383104, -0.0013787227, -0.03452335, 0.016149316, -0.017677136, 4.2247466E-05, -0.013556044, -0.017811155, 0.00439248, -0.0059303506, 0.019861648, -0.0021727865, 0.02545025, 0.00794734, 0.008590632, -0.025691485, 0.06706322, -0.0046404153, 0.029162582, 0.022542033, 0.0045298496, -0.0039770203, 0.003032185, 0.043529443, 0.023466766, 0.010708136, 0.008985989, 0.02553066, 0.019164748, 0.029484227, -0.012262759, -0.009716393, 0.012470488, -0.0052636047, 0.045995396, 0.0135627445, 0.009327738, 0.012671517, -0.0047375793, 0.01979464, 0.008275687, 0.004281914, 0.022260591, -0.016403953, -0.013220996, -0.022180181, -0.014916339, -0.013241099, -0.007820021, -0.015666846, 0.010292676, 0.035997562, 0.013884391, 0.013308109, 0.013308109, 0.009796805, 0.010621023, -0.0012053354, -0.020344118, -0.05752105, 0.00899269, 0.012979762, 0.007002504, -0.019821443, -0.014286448, 0.022609042, -0.001234652, 0.032191418, 0.0008686121, 0.0061950386, 0.0062285434, 0.02496778, 0.014742114, -0.010218966, 0.010426695, -0.0022850276, 0.01547922, -0.009146811, -0.007585488, 0.009602477, -0.009870515, -0.0230111, 0.059397317, -0.03144091, -0.014286448, -0.01889671, -0.0038664544, 0.0023034553, 0.023614187, -0.0029953294, 0.0045566536, -0.010909164, -0.0035615608, 0.005062576, 0.005313862, -0.0048715984, 0.034067687, -0.014219439, 0.008094761, -0.010265872, -0.00488165, -0.006144781, 0.062506564, 0.03170895, -0.0021526837, 0.025825504, 0.002420722, -0.026200756, -0.010017937, -0.021711113, -0.008456613, -0.01728848, 0.032673884, -0.028894544, 0.006855083, -0.018802896, 0.012711723, 0.009361243, 0.000809141, -0.0033454548, -0.01987505, -0.013334912, 0.009240625, -0.01569365, 0.023037903, 0.0174359, -0.0041579464, 0.026522404, 0.002015314, 0.003792744, 0.0043522744, -0.019754432, -0.00070862664, -0.01610911, 0.00892568, -0.0023687896, -0.023305941, -0.0037424867, -0.01053391, -0.00042195115, 0.007692703, -0.009622579, -0.0023470116, 0.008470015, -0.0052535534, -0.029752266, 0.007277244, -0.030502774, 0.0174359, 0.03562231, 0.010768444, -0.023104914, 0.014514281, 0.021938946, 0.011840598, -0.014929741, -0.017409097, 0.0028897894, 0.016873019, -0.005035772, 0.016122513, -0.02634818, -0.011485447, -0.025825504, 0.004623663, -0.024672939, -0.018816298, -0.008201976, -0.03709652, -0.0065669417, -0.02357398, 0.00051471754, -0.004817991, -0.0065434882, -0.034335725, -0.012892649, 0.013214295, -0.0034912007, 0.0016852916, -0.028224448, 0.00913341, 0.037927438, 0.0053440165, -0.002802677, -0.011659672, -0.019231757, 0.0053239134, -0.032673884, -0.001614094, 0.006402768, 0.008818464, -0.0028981655, 0.027500743, -0.007558684, -0.009770001, -0.0026267767, -0.005411026, 0.0056589614, 0.008697847, 0.024592526, 0.023198728, -0.011606065, 0.020196697, -0.039080005, 0.006402768, -0.024739947, 0.013870989, 0.020169893, -0.020116284, 0.007980844, 0.032459456, 0.007840124, 0.012256058, 0.0009439979, -0.013475632, 0.0063893665, -0.03243265, 0.02503479, -0.0021041017, 0.01003804, 0.0039301137, -0.012075132, 0.044092324, -0.04197482, 0.040902667, 0.025745092, -0.016296737, 0.044199537, 0.003920062, -0.044923242, -0.023225531, -0.0031394002, -0.003095844, 0.021925544, -0.005266955, -0.011116894, -0.007350954, -0.030234735, -0.04586138, 0.012772031, -0.0067512183, -0.00074925116, 0.021496683, 0.0132276965, 0.0069220928, 0.03369243, -0.016564775, -0.019271964, -0.015800865, 0.007350954, -0.007036009, 0.034201704, -0.0188297, -0.011445241, -0.025007986, -0.031119263, -0.007036009, -0.025477054, -0.0014758867, 0.006312305, 0.044574793, 0.021094626, 0.016430756, -0.012162244, 0.029859481, 0.0058063827, -0.0065669417, -0.0029802523, -0.029296601, 0.0005088542, -0.036131583, 0.021161634, 0.022126572, 0.00073459285, -0.0052200486, -0.0021175037, -0.0327811, -0.0069488967, -0.00899269, -0.024672939, 0.003920062, -0.026696628, -0.017556518, -0.014916339, 0.030797616, 0.005849939, -0.02601313, -0.011760186, 0.036640853, 0.007820021, 0.0039870716, 0.004365676, 0.035381075, -0.03312955, 0.034228507, 0.0069555975, 0.0077329087, -0.017998781, -0.02189874, -0.042778935, -0.0005679064, 0.013408623, -0.025557466, 0.009267429, 0.020089481, -0.025785297, -0.024378097, 0.008423108, -0.017355489, -0.011733383, 0.0044125826, -0.0067947744, -0.019258562, -0.011666373, -0.002782574, -0.002670333, 9.5698095E-05, 0.021523487, -0.007203533, 0.014259645, -0.02614715, 0.0098102065, 0.006861784, -0.009401448, 0.029296601, -0.005109483, -0.01366996, 0.014112224, -0.0125643015, -0.018910112, -0.0271925, 0.020772979, 0.0059437524, 0.0012019848, 0.012416881, -0.023064708, -0.010165358, -0.0012673192, 0.0209204, 0.013676661, -0.011271017, 0.012363273, 0.030368755, 0.02614715, -0.013897793, -0.016645188, -0.01554623, 0.01736889, -0.005146338, -0.002628452, 0.0044125826, -0.01317409, -0.024713144, 0.04157276, -0.019700825, 0.016216325, 0.01011175, -0.0025899215, 0.012249356, -0.03465737, -0.005746074, 0.01931217, -0.00051890564, 0.042296465, -0.010218966, -0.020585353, 0.0012178996, 0.0016341968, 0.0074581695, -0.018173005, 0.012450386, 0.028706918, -0.024806958, -0.0040406794, 0.0074782725, 0.013422024, 0.006171585, -0.028438877, 0.0025111851, 0.004868248, 0.000250239, -0.012296263, 0.027125489, -0.011961215, -0.017074049, -0.025557466, -0.0074313655, 0.0009280831, -0.024043048, 7.3605865E-05, 0.0045633544, -0.031494517, -0.008918979, -0.0013276279, 0.01101638, -0.014876133, -0.017904967, -0.010480303, -0.009716393, 0.0062452955, -0.031548124, 0.010734939, 0.015157574, -0.0016584878, -0.007411263, 0.024659537, 0.022005955, -0.032861512, 0.010165358, -0.009146811, -0.022206984, -0.013569446, -0.015157574, 0.00091384357, -0.0027440435, -0.017395694, 0.003786043, 0.0042785634, 0.021215241, -0.0014985023, -0.022488425, -0.0016048801, 0.011887505, 0.015519425, 0.02538324, -0.046853118, -0.021000812, 0.024592526, 0.0016760778, 0.0015546229, -0.032057397, -0.0031980337, -0.0037458371, 0.011552457, 0.013978205, -0.03739136, -0.0025396643, 0.0082890885, -0.011713279, 0.019995667, -0.01889671, 0.006721064, 0.020866793, 0.002983603, 0.008155069, 0.0074313655, -0.016015297, -0.002258224, 0.013361716, -0.022823473, -0.022836875, -0.007196832, 0.020612156, 0.037284147, -0.010212264, -0.022381209, 0.012664816, 0.017033843, -0.03500582, -0.012369974, -0.006010762, 0.00941485, 0.0154122105, -0.0055483957, -0.0056857653, 0.02733992, 0.0125509, -0.0028931398, -0.0026049986, 0.012001421, -0.0071566263, 0.010453499, -0.005585251, -0.017811155, -0.031414106, -0.005809733, 0.04575416, 0.00871795, -0.010801949, 0.009743197, 0.0071767294, -0.0020454684, -0.0013803979, -0.016859617, 0.015559631, 0.010493705, 0.02405645, -0.031333692, -0.0039033098, 0.015251387, 0.022501826, 0.014219439, 0.011813794, -0.02189874, 0.015934885, 0.025879111, -0.008972587, -0.023265736, -0.0077798157, -0.015465817, 0.0053339647, -0.007887031, -0.020558547, -0.007873629, 0.023118315, -0.02908217, 0.002057195, 0.01715446, -0.0028294807, -0.0072571407, 0.006198389, -0.020585353, -0.015036956, 0.017971978, 0.03409449, 0.030234735, -0.015733857, -0.009535467, 0.004090937, -0.0027373426, -0.00830249, 0.014139027, 0.0078066196, -0.00019725953, 0.0013527565, 0.01297306, 0.022823473, -0.0015060409, -0.010138554, -0.025570868, 0.017047245, 0.011793692, -0.0135627445, -0.022488425, 0.0030003553, 0.005779579, -0.006868485, 0.014447272, 0.19502477, -0.011405036, -0.008650941, 0.012986463, 0.02085339, -0.012450386, -0.0012086858, -0.010956071, 0.016779207, -0.007712806, 0.035247054, 0.014849329, -0.024954379, 0.002566468, 0.010352985, -0.0059236493, -0.033424392, -0.0019767834, -0.024860565, -0.00021443075, -0.005692466, -0.0047141262, 0.02224719, -0.012939556, 0.033343982, 0.0027222654, -0.0026452043, -0.014943142, -0.0041110395, 0.00871125, 0.007357655, -0.015573033, 0.0028881142, -0.0027909502, -0.008610735, 0.0039368146, 0.013803979, 0.016631786, -0.023332747, 0.0029819277, -0.005404325, -0.01241018, 0.01547922, 0.0018008832, 0.0023470116, 0.0041378434, -0.01039319, 0.0033638824, -0.041599564, 0.0029015162, -0.0053239134, -0.014648301, 0.010185461, 0.0150771625, 0.0046772705, -0.007712806, 0.014098822, -0.0025296127, -0.0044226344, 0.001799208, -0.018735887, 0.016470961, -0.004506396, 0.03227183, 0.0075050765, 0.0059035467, -0.0061682346, -0.02900176, -0.0026653071, 0.014165832, 2.3270133E-05, 0.0083829025, -0.010446798, 0.021376066, -0.017543117, -0.027433734, 0.016229728, 0.010426695, 0.005920299, 0.0383563, -0.006657405, -0.002991979, 0.022716258, 0.0005452907, -0.01359625, -0.019687423, 0.014929741, -0.002050494, -0.005739373, 0.0048079393, -0.00045650295, 0.0067043114, 0.0067043114, -0.0025044843, 0.014340056, 0.031119263, -0.036640853, 0.00030971004, 0.008550426, -0.003946866, 0.001792507, 0.011512251, -5.8476355E-05, 0.027259508, -0.021416271, 0.011411737, -0.010232368, -0.0023620888, -0.010098348, 0.0066842088, -0.0056020035, -0.014862731, 0.010956071, -0.017744144, -0.011673074, 0.005119534, 0.021108028, -0.03379965, 0.0024290984, -0.015707053, 0.02482036, 0.014246243, 0.016537972, -0.006047617, -0.013616352, -0.013964803, -0.0348718, 0.02183173, 0.0076591983, -0.021764722, 0.011733383, 0.009267429, 0.0030707153, -0.012115337, -0.015666846, 0.0049955663, 0.02601313, -0.048782997, -0.020397725, -0.015184377, -0.007022607, 0.010761743, 0.007719507, 0.02272966, 0.03103885, 0.009662786, 0.010935968, 0.007056112, -0.025463652, -0.0033940368, 0.010031339, -0.01248389, -0.01987505, -0.008543725, 0.014474075, 0.003062339, -0.028278055, -0.02691106, 0.0037123323, 0.009006091, -0.013937999, -0.0027088635, 0.027634762, -0.040286176, 0.008496818, 0.00073668687, -0.16929308, 0.029296601, 0.001743925, -0.015800865, 0.004419284, 0.009877216, 0.005146338, 0.0069891023, -0.018534858, -0.006372614, 0.014943142, 0.0023436612, -0.01401841, 0.0010160332, 0.0046002096, 0.002846233, 0.0258121, -0.013093677, 0.018280221, 0.015988493, 0.0067244144, -0.022676053, 0.013006565, -0.0147957215, -0.002978577, -0.013361716, 0.0070427097, -0.023480168, 0.011813794, -0.0033806348, -0.0016702145, -0.009542168, 0.021228645, 0.012718424, 0.023935832, -0.029939894, -0.0127988355, -0.00075134524, -0.0065434882, 0.029698659, -0.0014624847, 0.0002625939, 0.034121294, -0.025704887, 0.016296737, 0.038302694, -0.00878496, -0.014232841, 0.023721403, -0.009408149, 0.017409097, -0.026388384, -0.016135914, 0.025222417, 0.042269662, -0.0012455411, 0.018494653, 0.014688507, 0.0005369145, 0.028572896, 0.015827669, 0.0006282151, 0.012852443, -0.020813184, -0.0028914646, -0.0003210179, 0.010882361, 0.0132276965, -0.012148842, 0.019727629, -0.017382292, 0.008530323, -0.008952484, -0.028760524, 0.012510694, 0.012571002, -0.03369243, -0.017891565, -0.0012932855, -0.023895627, 0.011257614, 0.031012047, -0.024083253, -0.008449912, 0.012718424, 0.014554488, -0.015184377, -0.0017824556, -0.019982265, -0.018374035, -0.008537024, -0.008744754, -0.006597096, -0.03117287, -0.0076793013, -0.0066607553, -0.0074045616, -0.011391633, 0.019446189, -0.014286448, 0.010084947, -0.0014063641, -0.037766617, 0.03540788, 0.03899959, 0.025477054, 0.012048327, 0.006442974, 0.0042986665, 0.0138441855, -0.001966732, 0.02279667, -0.003688879, 0.0016526245, -0.0023604135, 0.01345553, 0.0116127655, -0.040581018, 0.0060710707, -0.0127519285, 0.014393664, -0.012142141, -0.030341951, 0.020062678, -0.024069851, -0.004777785, -0.10748342, 0.008155069, 0.019057533, 0.008671043, -0.008684445, 0.009682888, -0.0021007513, 0.016537972, -0.0036218695, 0.029591443, -0.0021074521, 0.00184779, 0.006352511, -0.008872072, -0.0035783132, 0.022635845, 0.007377758, 0.0031326993, -0.05677054, 0.027688371, 0.0034509948, 3.3923614E-05, -0.009455056, -0.022300798, 0.00017914601, 0.0012111987, -0.015975092, 0.015948286, 0.028733721, 0.014286448, 0.007022607, 0.0038932583, 0.03326357, -0.01736889, -0.00038383942, -0.016913226, -0.022180181, -0.006861784, 0.040983077, -0.009917422, -0.034469742, 0.010212264, 0.0017690536, -0.032700688, -0.005216698, -0.010835454, -0.018320426, 0.017328685, 0.019499796, -0.020947203, -0.017301882, -0.008738053, -0.019915257, -0.020866793, 0.011947813, 0.00082212413, -0.0154122105, 0.0068048257, -0.0020253654, -0.008865371, -0.0005482224, -0.010714836, -0.0026854102, 0.019405983, 0.032137807, -0.000100933226, 0.0023520372, 0.007384459, 0.003849702, -0.0066373018, -0.0055282926, 0.023252334, -0.04109029, 0.020049276, -0.010406592, 0.013026668, -0.038892377, -0.04272533, 0.0089055775, -0.005206647, -0.029859481, -0.014943142, 0.023104914, -0.03661405, -0.00071365235, 0.010654528, -0.016618382, -0.011525652, 0.027554352, -0.038409907, 0.019674022, 0.008476716, 0.025074996, 0.029484227, -0.014701908, 0.0015144171, -0.016859617, -0.008188575, -0.037337754, -0.009635982, -0.04127792, -0.0039971233, -0.06679518, 0.028117232, 0.015988493, -0.027983213, -0.007364356, -0.0013887741, 0.027875997, -0.0077061052, 0.018950317, -0.019231757, -0.027353322, -0.028438877, 0.010540611, 0.011867402, -0.0065803435, -0.015519425, 0.020370921, -0.0012279511, 0.026696628, 0.0041914512, -0.022957493, -0.005692466, -0.0313873, 0.021804927, -0.022501826, 0.008985989, -0.0014139027, 0.033853255, 0.0009054674, -0.0008150044, 0.004224956, 0.0019030729, 0.009542168, 0.028465683, -0.0056455596, -0.018950317, 0.019231757, 0.030234735, 0.013448829, -0.008617436, -0.0021007513, 0.0020454684, 0.0071566263, -0.026656423, -0.013261202, -0.010882361, 0.011096791, 0.010681332, 0.007719507, 0.016819412, 0.015425612, 0.0097566, 0.0034124644, -0.024244078, -0.012316366, -0.026589412, 0.013542642, -0.004442737, -0.0030589886, -0.02558427, 0.034684174, 0.023909029, 0.017328685, -0.0038899078, 0.00116848, 0.0074849734, -0.023131717, -0.013723568, 0.009796805, -0.016216325, -0.001541221, 0.02461933, 0.018213212, 0.014152429, -0.009233925, 0.001764028, -0.012048327, -0.004496345, -0.015425612, 0.021630703, -0.016082305, 0.004931907, -0.048461348, 0.008898876, -0.0024776803, -0.03409449, -0.017395694, 0.013582848, -0.009863814, 0.0038161972, 0.003040561, 0.01917815, -0.018146202, -0.01750291, 0.034014076, 0.022863679, -0.014701908, 0.017047245, 0.0049821646, -0.0062720994, 0.015934885, -0.004747631, -0.00418475, 0.00871795, -0.015372004, -0.0027926255, -0.0058901445, -0.015197779, -0.02357398, 0.013375118, 0.025624475, -0.008758156, -0.009314336, -0.011002977, -0.008959184, 0.005266955, 0.0021108028, -0.016537972, -0.0037290847, 0.0016375473, 0.018883308, 0.022903884, -0.008101461, -0.0058398875, -0.0033169757, -0.009254027, 0.0030221334, -0.026870854, 0.009146811, -0.0011039833, 0.017610125, 0.0023821916, -0.007230337, -0.025061594, -0.0052736565, 0.009146811, -0.0029735514, 0.009421551, -0.016859617, 0.06025504, 0.020692568, -0.014058616, 0.0015093915, 0.011324624, 0.021322457, 0.019928658, 0.0056891157, -0.012155543, -0.03562231, -0.013066874, 0.00997103, -0.015814267, 0.009937525, -0.0195132, 0.0004253016, 0.018789494, 0.025570868, -0.027795587, 0.0009816908, 0.028706918, -0.009602477, 0.013140584, 0.022769865, -0.010413294, -0.023748206, 0.013113781, 0.0131807905, 0.020652361, -0.0060442667, 0.014916339, 0.00073417404, -0.029350208, -0.01373697, -0.017047245, -0.039696492, -0.006711012, 0.013422024, -0.015774062, 0.006520035, -0.008744754, 0.0049955663, -0.006164884, -0.017811155, 0.0011894206, 0.014058616, -0.0046605184, -0.010440097, 0.01945959]
+ },
+ {
+ "Id": 19,
+ "Type": "Footwear",
+ "Brand": "Green Equipment",
+ "Name": "EcoTrail Running Shoes",
+ "Description": "Experience the great outdoors while reducing your carbon footprint with the Green Equipment EcoTrail Running Shoes. Made from recycled materials, these shoes offer a lightweight, breathable, and flexible design in an earthy green color. With their durable Vibram outsole and cushioned midsole, they provide optimal comfort and grip on any trail.",
+ "Price": 119.99,
+ "Embedding": [-0.01049344, -0.035681676, -0.007128371, 0.0007110119, 0.0025105271, 0.02134529, -0.01724349, -0.051425155, 0.008342981, -0.010944771, 0.0051206127, 0.0007379755, -0.0035641855, -0.02027006, -0.0029552209, -0.0038529043, 0.018345267, -0.0056681833, -0.008024395, 0.008980154, -0.014575328, 0.029177206, -0.0049613197, -0.023801059, 0.0059502646, -0.018823147, 0.020455902, -0.010805389, 0.022792203, -0.03204448, 0.0011167118, -0.012849651, -0.018371817, -0.0044436166, -0.011648315, 0.0100885695, 0.0026382937, 0.011057603, 0.009272192, -0.011601855, 0.016088614, -0.00033559426, -0.004762203, 0.0063020373, -0.0011200303, 0.034646273, 0.016221358, -0.012258939, -0.016154986, 0.0093053775, -0.00631863, 0.019632887, -0.008303158, -0.006000044, 0.0026465901, 0.013141689, 0.008542098, -0.003501132, 0.024385134, 0.0022002375, -0.026721435, 0.017376233, -0.03979675, 0.009550955, 0.0017654997, -0.010307598, -0.009862904, 0.00040279608, 0.013247885, 0.006779917, -0.012670447, -0.019088635, 0.008143865, 0.007977935, 0.011170436, -0.005854025, -0.015570911, -0.01013503, 0.04452245, 0.014296565, -0.0058938484, -0.023960352, -0.021570954, -0.009723523, 0.0011407717, -0.004894947, 0.009385024, 0.007831916, -0.015371794, -0.021663876, 0.001066103, 0.00476884, 0.002415947, 0.014867365, -0.03262856, -0.0016584746, -0.01574348, 0.02203556, 0.0059867697, -0.01626118, -0.021889541, 0.013015582, 0.0022118525, -0.010161579, -0.039690558, 0.003283763, 0.00515048, 0.023163887, 0.030345354, -0.0068097846, -0.026163908, 0.016340828, 0.023044417, -0.014336389, -0.0029220346, -0.0036670624, 0.0065210657, 0.013586382, -0.0014776104, -0.021358564, 0.025765676, -0.01626118, 0.017548801, -0.017110744, -0.0023860794, 0.016128438, -0.013115141, -0.0034148481, 0.010022197, -0.0052599944, -0.0032754664, 0.005525483, 0.02272583, 0.007738995, -0.037088767, 0.012033274, -0.013586382, 0.035017956, -0.032894045, 0.008064219, -0.002181985, 0.0050608777, -0.017256763, -0.0118208835, 0.00486508, 0.023469198, 0.014933738, 0.01967271, 0.01428329, 0.0028689369, 0.031009076, -0.02191609, 0.016752334, -0.00920582, 0.00787174, -0.017469155, 0.020309884, 0.010831938, -0.03207103, -0.0050044614, 0.0058772555, -0.013108503, 0.009670425, -0.008143865, 0.031248016, 0.02499576, 0.044867586, 0.009053163, -0.00033994994, -0.007931474, -0.009338564, 0.017947035, -0.026416123, 0.017137295, 0.0033816618, 0.00522349, 0.009683699, 0.016898355, -0.01030096, -0.02565948, -0.015079756, 0.01347355, 0.011084152, -0.0019281114, 0.00488831, -0.009975737, 0.008190325, -0.008150502, 0.0061659743, -0.012245665, -0.006454693, -0.004904903, -0.008933694, 0.0021853037, -0.67115533, -0.020163864, -0.0041548978, -0.0246108, 0.026668336, 0.018026682, 0.03350467, -0.0074934177, -0.02790286, 0.0024690446, -0.011741237, 0.029416144, 0.0019895057, -0.026761258, 0.020097492, -0.0056715016, 0.013121777, -0.017973583, 0.024053274, 0.01910191, -0.06069071, -0.0011225193, -0.0009565889, -0.038575504, -0.0025569878, 0.031141821, 0.004669282, -0.017376233, -0.0136593925, 0.010944771, -0.026296653, 0.049248148, 0.0079181995, 0.0024192655, 0.05458447, -0.0147744445, -0.019539965, 0.039053384, 0.021836443, 0.04364634, -0.031009076, -0.001650178, 0.0034148481, -0.010354058, -0.00880095, 0.017230215, 0.039876398, -0.011873981, 0.024796642, -0.0067765983, 0.017349685, 0.010984594, -0.017084196, -0.01178106, 0.016871804, -0.008621745, 0.037885234, 0.019354124, 0.02532762, 0.024969209, 0.0010395541, 0.003049801, 0.010573086, -0.020070944, -0.011761148, 0.023734687, -0.028646227, -0.01020804, 0.008880596, -0.022659458, 0.023031142, 0.02494266, 0.008216875, -0.0059369905, 0.0059701763, 0.02530107, 0.014469133, -0.016460298, -0.013208061, 0.007991209, 0.01922138, 0.012703633, 0.0075066923, -0.0053363224, 0.004134986, 0.0011507275, 0.0061593372, -0.01590277, 0.017469155, 0.008774401, 0.014840817, 0.03092943, -0.031248016, -0.020628469, -0.016340828, 0.008907145, -0.013858508, 0.03159315, 0.017588625, -0.022792203, -0.019978022, -0.001614503, 0.00815714, -0.0065575703, -0.0019413859, 0.028407289, 0.013938155, -0.0027743566, 0.019234654, -0.0039624185, -0.0017522252, -0.010108481, -0.014601877, -0.023509022, -0.013606294, -0.024438232, 0.012000088, -0.0054690666, 0.030106416, -0.039929498, -0.0015116262, -0.011236808, 0.00398233, -0.015252324, -0.028672777, 0.01580985, 0.00075124996, -0.010048746, -0.009989011, -0.0181727, -0.020668292, 0.02093378, 0.023814334, 0.0040420652, -0.00085786026, 0.01073238, -0.016924903, -0.003464627, 0.013161601, -0.03446043, -0.00913281, -0.010247863, -0.013008945, -0.031964835, -0.024305487, -0.015663832, -0.014362937, -0.0044037933, -0.011887255, -0.022261225, 0.012862926, -0.022460341, -0.005186985, 0.015823124, -0.004397156, -0.0146417, -0.009066438, -0.023986902, -0.009889453, 0.0072478405, 0.021809895, -0.0022616317, -0.008256698, -0.0064978353, -0.012046549, -5.4705186E-05, -0.01907536, 0.0087478515, 0.012079734, -0.03331883, 0.0016053768, -0.0105399005, -0.016327552, 0.03613301, -0.0046526887, -0.000608135, -0.020177139, -0.021876266, 0.01559746, 0.010460254, -0.0053230477, -0.005090745, -0.015610734, 0.015132855, 0.016619591, 0.0019214742, 0.011648315, 0.0328144, -0.0007728209, 0.030292258, -0.0045365375, 0.018889518, -0.013042131, 0.01946032, -0.010719105, -0.027398432, -0.008535461, 0.01182752, 0.01724349, 0.005983451, 0.02470372, -0.026628513, 0.026801081, -0.014548779, 0.02706657, -0.010334146, -0.004141623, -0.017283313, 0.028407289, 0.02155768, 0.009670425, -0.02604444, -0.021212544, -0.015013385, -0.00550889, 0.0049812314, 0.0077721807, 0.03796488, -0.008435902, -0.019659435, 0.01275673, -0.01676561, -0.006398277, -0.028035603, -0.014243467, 0.026296653, -0.049115404, 0.017296586, -0.008933694, -0.029708182, 0.016593043, 0.009504494, 0.013646117, 0.0061427443, 0.003932551, -0.0032771258, 0.021451484, -0.0077323574, 0.045133073, 0.016739061, 0.03262856, 0.035522383, 0.00977662, -0.013566471, 0.028327642, 0.009165997, 0.009710249, -0.0035708225, 0.011761148, 0.0047953892, -0.01137619, 0.010997868, -0.015770027, -0.0035542296, 0.008774401, -0.028460385, 0.008548736, 0.0039856485, 0.023668315, 0.0093053775, 0.0064679678, 0.0114292875, 0.022261225, 0.013075317, 0.019871827, -0.010108481, -0.012391684, -0.008688116, -0.01638065, -0.015504538, 0.02060192, -0.0067633237, -0.0039026835, 0.0007325828, 0.00307635, 0.013739039, 0.028513484, -0.032708205, -0.009517769, 0.02077449, -0.006723501, 0.0051073385, 0.014588603, -0.00025885145, -0.0005815861, 0.0006292911, -0.02670816, 0.011011142, 0.0052500386, 0.044363156, 0.013002308, 0.0054358807, 0.01154212, 0.010573086, 0.02024351, 0.0072345664, 0.0138850575, -0.0029303313, 0.025486913, -0.027398432, -0.012285489, 0.0017804333, -0.016154986, -0.0057843346, 0.037301157, 0.0043772445, 0.0019928243, -0.0019164963, 0.0109779565, -0.019632887, -0.017562076, -0.004417068, 0.017230215, -0.020296609, 0.0108717615, 0.0019214742, 0.00065998826, -0.025911694, 0.013533285, 0.003255555, 0.006507791, -0.022234676, -0.03257546, -0.0055885366, 0.0819298, 0.0019397266, 0.0031559966, 0.017270038, -0.0070885476, -0.03305334, -0.03331883, 0.00036193573, -0.0062323464, -0.01130318, 0.0005459111, -0.009079712, 0.0050442847, -0.023628492, 0.007287664, 0.015079756, -0.0013963045, -0.0234161, -0.0136593925, -0.023137338, 0.010885036, -0.011396102, 0.013028856, 0.008090767, 0.004201358, 0.011548758, 0.018756775, -0.004636096, 0.019725809, -0.0064878794, 0.027013473, -0.0055321204, 0.0026913914, 0.014084174, -0.02790286, 0.014137272, -0.0115354825, -0.0050741523, 0.028247995, 0.0048451684, 0.02706657, 0.019765632, 0.006474605, -0.025261248, 0.00767926, 0.0025835366, -0.010168216, 0.0142169185, 0.027212588, -0.017084196, 0.047495924, 0.00013170727, -0.017907212, 0.015663832, 0.0030564384, 0.006988989, 0.025500188, -0.0013689259, -0.0030066592, -0.034805566, 0.004294279, -0.022208128, 0.0024524515, -0.007340762, -0.0114292875, 0.0067765983, 0.002220149, 0.011741237, -0.0003328979, -0.026309928, -0.033000242, -0.024159469, -0.027451528, 2.5822921E-05, -0.0035276806, -0.00755979, 0.008004484, 0.000289756, 0.006066416, -0.003049801, 0.009391662, 0.02024351, 0.0045133075, 0.0024922749, 0.012623986, 0.00038018808, -0.032442715, -0.020973604, 0.0024989122, 0.0043341024, 0.023708139, -0.019486869, 0.022792203, 0.012398321, -0.013606294, 0.0009316993, 0.036451593, 0.030796686, 0.00021042052, -0.004420386, 0.00913281, -0.013699216, 0.007002264, -0.0052732686, 0.013533285, 0.006730138, -0.016845256, 0.0059104417, 0.031433858, -0.0064812424, 0.009849629, -0.023163887, 0.005591855, -0.00063302455, -0.016685963, 0.028327642, 0.0007802878, -0.018331993, 0.002787631, -0.021610778, 0.003255555, -0.031513505, 0.034752466, 0.013453638, 0.009046527, 0.01757535, 0.017110744, 0.006182567, 0.0043108724, 0.036000263, -0.011077515, 0.029814377, 0.015385069, 0.010234588, -0.026309928, -0.018677128, -0.024411684, 0.014535504, 0.0002260802, -0.010606272, -0.016062064, 0.016991274, -0.0022301048, 0.030876333, -0.0078584645, -0.021610778, -0.018318718, 0.00023064329, -0.027239138, 0.022048835, -0.0083562555, 0.0007831916, -0.047734864, -0.002542054, -0.026535593, -0.020455902, -0.007460232, -0.012962485, 0.033239182, 0.021756796, 0.0107058305, -0.04099145, 0.0115952175, 0.004894947, -0.0071814684, -0.009623964, -0.015424891, -0.006195842, -0.026761258, 0.018318718, 0.011362915, -0.00880095, -0.018517835, -0.013380629, -0.025354167, 0.0016949793, -0.026668336, -0.0056051295, -0.012398321, -0.029655084, -0.0021156128, -0.012265577, 0.00028208172, 0.011515571, -0.0065376586, 0.0010320873, 0.02904446, 0.031035626, -0.011787697, 0.009338564, 0.030053318, -0.0064945165, 0.026694886, -0.021424936, -0.005230127, -0.014601877, -0.009053163, -0.046354324, -0.014960286, 0.0146682495, -0.008243423, -0.01781429, 0.002346256, -0.0107058305, -0.013081954, -0.0073341248, -0.01249788, -0.017389508, 0.014389486, 0.007287664, -0.01249788, -0.020854136, -0.01805323, -0.05033665, -0.021929365, 0.013121777, -0.009504494, 0.017296586, -0.013911607, -0.0051571173, -0.0021803258, -0.00035882453, 0.0019098591, 0.010533263, -0.0010644436, -0.0008951946, -0.021332014, -0.00973016, 0.0049281335, -0.0040951627, -0.014628426, 0.015438166, 0.00815714, -0.022553263, -0.029655084, 0.015849674, -0.00040507765, -0.020137316, 0.00077821367, 0.02883207, 0.026907276, 0.013672667, -0.013646117, -0.009544318, -0.012643898, 0.038097624, -0.009219094, 0.014190369, -0.008183688, -0.02332318, -0.007938111, 0.018570932, -0.021424936, 0.024809916, -0.003501132, -0.02766392, -0.011933716, -0.0051571173, 0.01371249, 0.0047821146, 0.00040217384, 0.030637393, -7.9024365E-05, -0.016712511, 0.029230302, -0.0075199665, 0.0023545527, 0.0013100207, 0.0033169491, 0.026203731, -0.01101778, -0.0010860146, 0.016008968, 0.0061427443, 0.015796576, 0.0035442738, -0.004762203, -0.011435924, -0.006703589, -0.020787762, 0.0114292875, 0.00789165, -0.01922138, -0.038575504, -0.01359302, 0.0017240171, -0.04051357, -0.023787785, 0.019141734, -0.0067633237, 0.0010163238, -0.0015174337, 0.017469155, 0.024451507, -0.01046689, 0.009630602, -0.014840817, 0.013672667, -0.019447045, 0.019632887, 0.0049945056, 0.0121527435, 0.00065044727, 0.0013166579, -0.002039285, -0.0228453, -0.018836422, -0.0038827718, -0.016712511, -0.029309949, -0.016739061, -0.01359302, -0.0018849695, -0.009172633, 0.017615173, 0.013566471, 0.016128438, -0.0251816, -0.03536309, -0.0030995803, -0.00022525055, -0.015610734, 0.011880618, -0.018119602, -0.0055354387, 0.0026167226, -0.0027843125, 0.0066836774, 0.01569038, -0.021093074, 0.016340828, 0.007612888, 0.012000088, -0.02997367, -0.0027677193, 0.0064015957, -0.0034513527, -0.012019999, -0.004493396, -0.014336389, 0.0073673106, 0.021411661, 0.004015516, 0.012942573, -0.0034944946, -0.006627261, -0.015026659, -0.0049248147, -0.022672733, -0.013393903, 0.0059303534, 0.04592954, 0.01631428, -0.023482474, -0.010838575, 0.007015538, -0.0609562, -0.027796663, -0.0028606404, -0.004423705, 0.0062655327, 0.011296543, -0.0070354496, 0.02098688, -0.012677084, 0.027093118, -0.0019612976, -0.006531021, 0.0061427443, 0.017283313, -0.010958045, 0.0014344684, -0.03775249, 0.014309839, 0.03607991, 0.0046294588, 0.009019977, -0.019247929, -0.014960286, -0.008163776, -0.008794312, -0.00065584, 0.048531327, 0.012736819, 0.014110723, -0.037487, -0.026641788, 0.001235352, -0.0030298894, -0.004390519, -0.0054192874, -0.0034281225, -0.01667269, -0.010221314, -0.019818729, -0.034301136, -0.0079181995, -0.010672645, 0.017177116, 0.009836355, -0.013579746, -0.008289884, 0.020402804, -0.029469242, 0.014389486, 0.010845212, 0.01655322, 0.019885102, 0.0036040088, -0.0020276697, 0.010334146, -0.009604053, 0.009989011, 0.0016966385, 0.0011125634, 0.0030448232, 0.011860707, 0.01020804, -0.0071549197, 0.008070855, -0.02308424, -0.021451484, -0.004151579, -0.012809829, 0.02143821, -0.0138850575, 0.0013564812, -0.02835419, 0.018026682, -0.004951364, -0.04197376, -0.008568647, -3.4663903E-05, -0.023641767, -0.020070944, 0.044602096, 0.19816074, 0.0008794312, -0.0075863386, 0.030637393, 0.0119868135, -0.006049823, -0.0018999033, -0.003939188, -0.008050944, 0.00815714, 0.01652667, 0.019035539, -0.00732085, -0.004141623, 0.00073673105, -0.021942638, -0.037858684, -2.460437E-05, -0.01535852, 0.0049214964, -0.006099602, -0.014084174, 0.024756819, -0.027584273, 0.0151063055, -0.0019546603, 0.0012677084, -0.0011664908, 0.006587438, 0.023708139, -0.0065808003, -0.03422149, 0.0015456418, 0.004964638, 0.02682763, 0.007380585, 0.028672777, 0.016539944, 0.012916024, -0.004636096, -0.014429309, 0.00078609533, 0.0047157425, -0.0076394365, -0.0056217224, 0.006789873, -0.023694864, -0.004675919, -0.013101866, -0.0041051186, -0.04242509, 0.0038529043, -0.0056084483, 0.0072345664, -0.009292103, 0.009351838, 0.027557723, -0.020442627, 0.0020094174, 0.00803767, -0.021650601, 0.033159535, -0.0035110877, 0.022593087, -0.02551346, -0.010725742, -0.017402783, -0.027504627, 0.020110767, 0.0035210436, 0.0009574185, 0.002787631, -0.0035608667, 0.03350467, -0.007626162, -0.018902794, 0.016088614, 0.009750072, 0.011588581, 0.03119492, 0.0050741523, -0.004417068, 3.5623187E-05, -0.01745588, -0.027318785, -0.039876398, -0.011628404, -0.019088635, 0.001767159, 0.017429331, 0.01781429, 0.0048252568, 0.0045199445, 0.0029734732, -0.0062987185, 0.031540055, -0.038522407, 0.016685963, -0.022447066, 0.03913303, -0.041017998, 0.014137272, -0.009000066, 0.015172677, 0.006726819, 0.02568603, -0.01886297, 0.0006193353, 0.010141667, -0.0041316673, -0.0124846045, -0.028672777, 0.013247885, 0.0016128437, -0.0038230368, 0.00023935463, 0.005160436, -0.020628469, 0.011528846, -0.013493462, 0.025221424, 0.0048849913, 0.01061291, -0.0029867475, 0.007997846, -0.0058706184, -0.0020509, 0.021836443, 0.02296477, -0.018451463, -0.0013058725, 0.00262336, 0.017203666, -0.0042312257, -0.026482495, 3.051564E-05, 0.01590277, -0.022858575, -0.012385046, 0.006982352, -0.0088075865, -0.00082882243, -0.010247863, -0.00026984434, 0.024026725, -0.0105863605, 0.02494266, -0.013115141, -0.029947123, 0.0011847432, 0.011628404, -0.00032522363, -0.014110723, -0.011396102, -0.0045630867, -0.0073739477, -0.039637458, -0.012604075, -0.004217951, -0.0011125634, -0.04754902, 0.0020426034, 0.017057648, 0.0002592663, -0.021252368, 0.0042577744, -0.16959417, 0.0070819105, 0.012338586, -0.005863981, 0.025128502, 0.0077854553, 0.005625041, 0.028752424, -0.023004593, -0.007977935, 0.03135421, 0.01452223, -0.037327707, -0.0040321094, -0.010214677, 0.014708072, 0.0023811015, 0.025765676, 0.02155768, -0.00016344147, -0.010214677, -0.014827542, 0.006856245, -0.021358564, -0.0006774109, 0.0099226395, 0.020920508, -0.00262336, 0.015504538, 0.006769961, -0.0022068745, -0.01371249, 0.0110376915, -0.0034413969, 0.0018551021, -0.007075273, 0.0022931583, 0.00913281, -0.0032057757, 0.024982484, 0.015371794, 0.0061726114, 0.00796466, -0.0056150854, 0.03355777, 0.0013075317, -0.014654974, 0.0056582275, -0.011515571, 0.0025121865, 0.02275238, -0.002830773, -0.029628536, 0.009736797, 0.023601944, 0.009577503, 0.0053993757, 0.009710249, 0.017190391, -0.030796686, -0.019181557, -0.04473484, 0.0019447046, -0.0052765873, -0.006567526, 0.0057146437, 0.002673139, -0.002558647, -0.019155007, 0.017960308, -0.026761258, -0.022407243, -0.009391662, -0.0012088032, 0.010931496, 0.010048746, 0.008143865, -0.009497858, -0.012398321, -0.019924926, -0.014070899, 0.01602224, -0.02296477, 0.02065502, 0.0053263665, 0.013261159, -0.008568647, -0.0091991825, -0.028513484, -0.005163755, -0.003524362, -0.021716973, -0.014654974, -0.013413815, 0.0018617393, 0.01342709, 0.019168282, -0.009902728, -0.004058658, -0.0011125634, 0.0067434125, 0.0072279293, -0.016234633, 0.014535504, 0.03305334, 0.016632866, 0.015876222, 0.0028656183, 0.040460475, -0.010154942, -0.026455946, 0.014044351, 0.0029120788, 0.015836399, 0.0012768346, 0.0071084592, 0.01061291, -0.01724349, 0.0074867806, -0.018544383, 0.016685963, -0.024756819, -0.028540032, 0.005542076, 0.004134986, -0.011236808, -0.09414228, 0.005170392, 0.016632866, 0.0004251967, -0.0036537878, -0.004417068, -0.006779917, 0.036637437, 0.012989033, 0.006491198, 0.013088591, 0.0023147294, 0.00032335692, 0.011575306, 0.008522186, -0.004748929, 0.0054856595, 0.0031974793, -0.037194964, 0.016168261, -0.012464693, -0.006856245, -0.0031294478, -0.020562097, 0.009623964, 0.009046527, -0.022619635, 9.862489E-05, 0.016367376, 0.02329663, 0.013201424, 0.00034223148, 0.013320894, -0.014734621, -0.007812004, -0.011250082, -0.010221314, -0.024026725, 0.01700455, -0.020522274, -0.033212632, -0.030318806, 0.012617349, -0.006305356, 0.018093053, -0.016447023, 8.7476445E-05, 0.028301092, -0.0016559856, -0.017774466, -0.023708139, -0.0023230258, 0.003016615, -0.008435902, 0.02787631, -0.031885188, 0.003806444, 0.013334168, -0.0025105271, 0.016101887, -0.010831938, 0.0115952175, -0.0045863166, 0.02353557, -9.87286E-05, -0.024889562, -0.012106284, 0.034380782, 0.024531154, -0.009318653, -0.00036732847, 0.014296565, -0.009564229, 0.027823213, 0.0054624295, 0.008913782, -0.024265664, -0.020163864, 0.005907123, -0.015836399, -0.00045962725, -0.014734621, 0.030637393, -0.042584382, -0.012683721, 0.009763346, 0.0017090833, -0.010354058, -0.01178106, -0.025048856, -0.008216875, 0.0070951846, 0.014681524, -0.011873981, -0.019964749, -0.01223239, 0.011177073, -0.0025536693, 0.0090332525, -0.021292191, -0.017787741, -0.0063584535, -0.0725846, 0.027504627, -0.0059535834, -0.023747962, 0.009683699, -0.00018210863, 0.036478143, -0.014867365, 0.015265599, -0.028991362, -0.023854157, -0.0047091055, 0.014840817, 0.0046991496, -0.013274434, -0.0057976088, 0.0038894091, 0.0057245996, 0.03026571, 0.013500099, -0.0050542406, -0.014031076, -0.00925228, 0.008940331, -0.02565948, -0.0037068855, -0.016473573, 0.026349751, -0.008269972, -0.012046549, -0.0023429375, 0.0038894091, 0.023947079, 0.026177183, -3.3315716E-06, 0.008449177, 0.01602224, 0.018610755, 0.023137338, -0.025712578, -0.025340894, -0.016978001, -0.009477946, -0.010048746, -0.01371249, 0.0031360849, 0.027053295, -0.0035177248, 0.020734666, 0.015438166, -0.023641767, 0.013559834, 0.016460298, -0.017017825, 0.02368159, -0.020920508, 0.00023458413, -0.007752269, 0.0030298894, -0.012219116, 0.035442736, 0.015093031, 0.008940331, 0.021743523, 0.01428329, 0.019951474, -0.007898288, -0.012809829, 0.023827609, -0.012358498, -0.018318718, 0.013911607, 0.023761235, 0.007626162, -0.0024192655, -0.002208534, -0.024849739, -0.0042245886, -0.00577106, 0.03135421, -0.012106284, -0.0012253962, -0.05224817, 0.015225776, 0.004128349, 0.0014112382, 0.008316433, -0.0030580976, -0.0052699503, 0.015982417, -0.017681545, 0.008528824, -0.009152722, -0.0007848509, 0.023628492, 0.008774401, 0.008269972, 0.00010495099, 0.02089396, 0.019898375, 5.5171866E-05, 0.017495703, 0.005094064, -0.023455923, -0.018199248, 0.008880596, -0.0041316673, -0.017774466, -0.021332014, 0.003949144, 0.010991231, -0.01371249, -0.016725786, 0.00040735918, -0.03000022, 0.007878376, -0.003643832, -0.016539944, -0.0152125005, 0.03329228, 0.0074535944, 0.02766392, -0.0018285533, 0.00015887838, -0.0033816618, 0.005465748, 0.017283313, -0.00112086, 0.008933694, -0.0068761567, 0.0078584645, -0.005585218, -0.00577106, -0.0033882991, -0.0067334566, -0.0011026076, -0.0060465047, 0.010400519, -0.018225797, 0.071575746, 0.020668292, 0.019991297, 0.008767763, 0.01523905, 0.014203644, 0.014482407, 0.012896112, -0.01721694, -0.045557857, 0.0018899475, 0.0019928243, -0.018371817, 0.010573086, -0.049088854, 0.014548779, 0.0021670512, 0.015464715, 0.00068570743, 0.01077884, 0.034301136, -0.017708095, 0.030079866, 0.009869541, -0.012285489, 0.002651568, 0.027119668, 0.025075406, -0.007944749, 0.0051073385, 0.027610822, 0.011396102, -0.022951495, 0.0013241248, 0.00071889354, -0.0066936333, -0.009232368, 0.013367355, 0.0027677193, 0.027093118, 0.0110974265, 0.008754489, -0.007261115, -0.016778884, 0.0015655535, 0.0031543372, -0.013818685, -0.0039624185, -0.0077124457]
+ },
+ {
+ "Id": 20,
+ "Type": "Navigation",
+ "Brand": "B&R",
+ "Name": "Explorer Biking Computer",
+ "Description": "The Explorer Biking Computer by B&R is the ultimate accessory for cyclists seeking data and navigation assistance. With its intuitive touchscreen display and GPS capabilities, it allows you to track your route, monitor performance metrics, and receive turn-by-turn directions. Its sleek black design and waterproof construction make it a reliable companion on all your cycling adventures.",
+ "Price": 199.99,
+ "Embedding": [0.0012511233, -0.008396846, -0.0012476931, -0.013171524, -0.017273905, 0.008767296, -0.008362546, -0.03388923, 0.0060472386, -0.031666536, 0.002651455, -0.007779431, -0.036468655, 0.008877058, -0.022322988, 0.010063867, 0.023159929, 0.0043356265, 0.00936413, -0.006057529, 0.0013025745, 0.0060540987, 0.014474955, -0.013356748, -0.016711371, -0.03048659, 0.008904499, -0.02606864, -0.0003683053, -0.013459651, 0.019894488, 0.03416364, -0.011634845, -0.02033354, -0.018591056, 0.012890257, -0.0032088438, 0.00063413684, 0.0028761255, 0.022144623, 0.022213226, -0.003906866, -0.009652257, 0.02728975, -0.033559944, 0.024394758, 0.008732994, -0.022254387, -0.011737748, 0.0008287941, -0.009638537, 0.008053837, -0.009233787, -0.007450143, 0.0012279701, -0.0021403725, 0.0139604425, -0.007655948, 0.0341362, -0.012046455, -0.0033460471, 0.006397107, -0.03136469, -0.0019860188, 0.0024971012, -0.019071268, -0.0015332476, 0.012807935, 0.018522454, 0.0018127995, 0.015270735, 0.020100294, 0.0071551558, 0.03133725, 0.0040063383, -0.010646981, -0.035343587, 0.0011250676, 0.005381802, 0.026672335, 0.009617956, -0.018934065, -0.020155175, 0.0140770655, 0.008678113, 0.010893947, 0.0010178775, 0.0040989504, -0.026178403, -0.013836959, -0.008438007, 0.009192626, -0.008636952, 0.018165726, 0.011305558, 0.015202133, -0.007992096, 0.013953582, -0.015339336, -0.009501333, 0.011751468, 0.012986299, -0.005248029, -0.018042242, -0.044179484, 0.006767556, -0.0034969707, -0.018028522, 0.031501893, 0.009041702, -0.019771006, 0.051067095, 0.022172064, 0.019469159, -0.0062256027, -0.02121164, 0.014029045, -0.019427996, -0.004959902, -0.013665455, 0.025204258, 0.0072237574, 0.02362642, -0.028702945, -0.018248048, 0.023516657, -0.013493951, -0.0047129355, 0.027495556, 0.0022690007, -0.0128628155, 0.0019654382, 0.010310833, 0.018165726, -0.016670208, 0.009254367, -0.0070179524, 0.018988946, -0.014790523, -0.009919804, 0.006434838, 0.018055962, -0.009864923, -0.01791876, -0.014145668, 0.018344091, -0.010276533, 0.020045413, 0.026548851, -0.0026137242, 0.009542494, -0.014859125, 0.015037489, 0.005090245, -0.01629976, -0.005265179, -0.01058524, 0.0105578, -0.008911359, -0.027975766, -0.009871783, -0.004671775, 0.020703988, -0.016436964, 0.041737266, 0.027111385, 0.005793412, -0.011627985, -0.0020031692, -0.02121164, -0.013096062, 0.025108216, -0.008245923, 0.003337472, -0.0050319335, 0.0073403805, -0.0074021216, 0.02605492, 0.0067812763, -0.0007481871, 0.015778387, 0.00044290963, 0.0078343125, -0.002488526, -0.018261768, -0.021760454, 0.0030441997, -0.0152295735, 0.018426413, -0.017630633, 0.019359395, -0.0036598998, 0.007937215, 0.011086032, -0.6493561, 0.0004161121, -0.007875473, -0.016807413, 0.020827472, 0.0012082472, 0.008911359, 0.0170681, 0.0024284995, 0.0071071344, 0.0143651925, 0.013933002, 0.009693418, -0.013809519, -0.017712954, -0.0170681, 0.010400015, -0.011511363, 0.027015343, -0.006479429, -0.025176818, -0.01261585, -0.025176818, 0.013178384, 0.00651716, 0.0039651776, -0.005165707, -0.013336168, -0.01874198, 0.02160953, -0.014104506, 0.031172605, 0.0043047555, -0.010722443, 0.046127774, -0.043767873, -0.007566766, 0.028401097, 0.00611241, 0.047609568, -0.0066200625, -0.021074437, 0.0052343085, 0.012444345, -0.009864923, 0.015984192, 0.035727758, -0.0016644484, 0.0065102996, -0.021883937, 0.018975226, 0.0061295605, -0.0061707217, 0.01588815, 0.001589844, 0.0025931436, 0.017452268, 0.008781016, 0.0040234886, -0.008465447, -0.006311355, 0.017411107, -0.03224279, -0.019688683, -0.014817964, 0.038526706, -0.051012214, -0.025272861, -0.0058139926, -0.025519827, 0.02244647, 0.014337752, 0.0075942064, 0.005457264, 0.011895532, 0.015984192, 0.029635929, -0.006647503, -0.013171524, -0.0013171523, 0.035178944, -0.013301867, -0.0040989504, -0.029141996, 0.037291877, -0.02324225, -0.006956211, -0.017164141, 0.011319278, 0.011051731, 0.015517701, 0.008300804, -0.022515073, -0.017397387, -0.010653841, 0.019304514, 0.0014011894, 0.009892363, 0.010249091, -0.027179988, -0.02362642, -0.008822177, 0.009501333, 0.011031151, -0.00035458495, 0.014406354, -0.0013343027, 0.00897996, 0.011744608, -0.027866004, -0.007408982, -0.022226946, -0.018645938, 0.006853308, -0.005467554, -0.0301573, 0.013782078, -0.010496058, 0.009645397, -0.042889774, 0.03424596, -0.023324573, 0.017040659, -0.025121937, -0.025314022, -0.011319278, 0.019194752, -0.0004311187, -0.028538302, -0.00084765954, 0.0078000114, -0.0053303507, 0.0047129355, -0.0035501372, 0.008602651, 0.020745149, 0.010475477, -0.021239081, -0.008842757, -0.0317763, -0.03756628, 0.0066612237, -0.005481275, -0.008520329, -0.0015606884, -0.026713496, 0.007827452, 0.005587607, -0.012286562, -0.014845405, 0.0073541007, -0.014570998, 0.0018145145, 0.011593685, 0.018549895, -0.031529333, -0.010791045, -0.0049290312, -0.0038588447, -0.008726134, 0.009398431, -0.0029961786, 0.0012974293, -0.017026938, 0.006856738, 0.009480753, 0.00032307106, 0.05589665, -0.020264938, -0.043740433, 0.0064245476, 0.006181012, -0.023845946, 0.031090284, -0.00938471, 0.00857521, -0.028263895, -0.029882893, 0.02075887, -0.012938278, -0.0073884013, -0.0048638596, -0.014859125, -0.010077587, 0.014872845, 0.0045311414, 0.0047197957, 0.0098580625, -0.01712298, -0.006283914, 0.020703988, 0.022871802, -0.021801615, -0.018467573, 0.0064485585, -0.0035569973, -0.0011216375, 0.0046546245, 0.020443302, 0.029581046, 0.025945157, -0.012931418, 0.018961506, -0.007992096, 0.017026938, -0.02646653, 0.009041702, -0.003831404, 0.020703988, 0.019716125, 0.005676789, -0.036029603, -0.021733014, -0.022034861, -0.0013720337, 0.0013986168, 0.017369946, 0.030267064, -0.0069939415, -0.013109782, -0.005896315, 0.012560968, 0.024518242, -0.016560446, 0.004520851, 0.03707235, -0.008369406, 0.040557317, -0.0027612178, -0.025464945, 0.028263895, 0.03048659, 0.013891841, -0.0041435417, 0.018110845, 0.025574708, -0.0034695303, 0.0031265218, 0.034739893, 0.01302746, 0.004390508, 0.03666074, 0.010077587, -0.031501893, 0.0003987473, 0.02277576, 0.021472327, 0.008191041, 0.012718752, 0.03539847, -0.01587443, -0.005481275, -0.015558862, 0.01466704, -0.003291166, 0.0062153125, 0.01750715, 0.0029807433, 0.02322853, 0.025917716, 0.015298176, 0.021280242, 0.008321384, 0.022144623, -0.004579162, -0.022473913, -0.013871261, 0.00122454, -0.005580747, -0.016066514, 0.023132488, -0.032819048, 0.0071894564, 0.016395802, 0.015421659, -0.0031625377, 0.0075187446, 0.016039073, 0.0017887889, 0.014859125, -0.007367821, -0.027769962, 0.0021420876, 0.007244338, 0.010749884, 0.00022188357, -0.025574708, 0.01180635, 0.00029177155, 0.01669765, 0.005062804, 0.021444887, -0.0069459206, 0.0018505304, 0.002076916, -0.0012596984, 0.027221149, -0.02564331, 0.018371532, 0.015778387, -0.014804243, 0.009055423, -0.016903454, -0.034904536, 0.031584214, -0.02328341, -0.0033717728, -0.03018474, 0.010255951, -0.011305558, -0.021019556, -0.0052000075, -0.0044556796, -0.037950452, -0.02971825, 0.018865462, -0.0018831162, -0.017465988, 0.021540929, 0.0023547527, -0.021458607, -0.018248048, -0.012087617, 0.0023376024, 0.079138905, -0.015682345, -0.010345134, 0.005076525, -0.004606603, -0.015270735, -0.04321906, -0.020841192, 0.016505565, 0.02112932, 0.010118748, 0.00060455233, 0.012341443, -0.0146533195, 0.004764387, -0.0030682103, 0.001469791, -0.04234096, 0.0021678132, -0.012245401, -0.003543277, -0.011140914, 0.025423784, 0.021870216, 0.017589472, -0.013836959, 0.030349385, 0.01506493, 0.005062804, -0.008451727, -0.009542494, 0.007902914, 0.0040474995, -0.012437485, -0.005453834, 0.010667562, -0.00027440675, 0.006596052, 0.0058414335, 0.018604776, 0.019181032, 0.021486048, 0.018892905, -0.0023650432, 0.00090725726, 0.0006701527, 0.0037387917, -0.00059083203, -0.00031771156, -0.030870758, 0.0081293, 0.017589472, -0.001303432, 0.0037182113, -0.010756744, 0.020045413, -0.0022209794, -0.0135008115, -0.008630092, -0.028181572, -0.004112671, -0.0005320918, 0.028977351, -0.00018865464, 0.018618498, 0.0014011894, -0.025108216, -0.012773634, -0.02324225, -0.0015598309, -0.0068635987, -0.0228032, -0.006181012, -8.339392E-05, 0.016656488, 0.012300282, 0.014035905, -0.007463863, -0.009117164, 0.030349385, 0.012643291, 0.00083779806, -0.022652276, -0.0073129395, -0.012526668, -0.009322969, -0.010496058, -0.012067037, -0.010530358, 0.008273363, 0.009178906, -0.012169939, 0.02488869, -0.0034746754, 0.014282871, 0.0033048862, 0.016039073, 0.020992115, 0.018426413, -0.0244222, 0.027344631, -0.01179949, -0.014749362, -0.00183338, 0.04563384, 0.026919302, -0.011490782, 0.010804765, 0.0105578, 0.0016695935, -0.024957294, -0.007937215, 0.0029807433, -0.0008622374, -0.0034352294, 0.04404228, -0.0012382604, -0.014914006, 0.015298176, -0.015600023, -0.017562032, -0.04151774, 0.028209012, -0.026754657, 0.009467033, 0.0038382642, 0.008444867, 0.0016738811, 0.0069939415, 0.0071482956, 0.036550976, -0.002886416, -0.019208472, -0.024929851, -0.02324225, -0.020649107, -0.012163078, 0.020045413, -0.0071894564, -0.00081164367, -0.012478647, 0.025067056, 0.030870758, 0.01550398, -0.020882353, -0.016972058, 0.0069905114, -0.02406547, -0.023352014, 0.020676548, -0.0025691332, 0.015339336, -0.020539345, -0.0038622748, -0.0011293553, -0.03951457, -0.027907165, 0.000662435, 0.024559403, 0.032434877, -0.0037387917, 0.0010110174, 0.015819548, 0.017603192, -0.007175736, 0.0002967023, -0.025533548, -0.01179949, -0.020415861, -0.006969931, 0.00040282053, 0.0023015866, -0.022172064, -0.026672335, -0.010873367, -0.0015907015, 0.0024062041, 0.003872565, -0.01715042, -0.046319857, -0.01096941, -0.0148316845, 0.007765711, 0.012691312, -0.030925639, -0.008197901, 0.043383706, 0.025547268, 0.009823761, 0.007532465, 0.009960964, -0.011038011, 0.023516657, 0.014817964, 0.019729845, 0.015133532, -0.012540388, -0.035700317, -0.023310853, 0.008911359, 0.014186828, -0.0171367, 0.010077587, -0.007841173, -0.006400537, 0.019373115, 0.0012802789, 0.0012974293, 0.009542494, 0.014680761, -0.008684973, -0.023832224, -0.012643291, -0.005505285, -0.0078891935, -0.0019036967, -0.00938471, 0.014214269, -0.023461776, -0.0108390665, -0.0030081838, -0.011998435, 0.024353597, -0.0022552803, 0.031474452, 0.019331954, 0.0015109521, -0.0086438125, -0.04242328, -0.013295006, -0.012300282, 0.01303432, 0.006548031, -0.006184442, -0.020100294, 0.012780494, 0.015517701, 0.007093414, -0.019222192, 0.009734579, 0.016203718, 0.0038073934, -0.016862294, -0.007457003, -0.0133841885, 0.033697147, -0.039569452, 0.01017363, 0.006997372, 0.002527972, -0.0007713402, 0.019482879, -0.052301925, 0.022858081, -0.007360961, -0.0050319335, 0.006194732, 0.00075290346, -0.0016250024, -0.01018049, 0.03100796, 0.0040406394, -0.004843279, -0.002894991, 0.009137744, 0.012362024, 0.0079509355, 0.008259643, 0.022515073, 0.028840149, 0.005903175, -0.029361522, -0.0008690976, -0.014145668, 0.0053989524, 0.005079955, -0.017562032, -0.024326157, -0.00079792336, -0.00487415, 0.0040166285, -0.0056836493, -0.022926683, -0.015010049, 0.0010727588, -0.012265981, -0.039788976, 0.0021678132, -0.013651735, -0.029032232, -0.0187557, -0.015394218, 0.036111925, 0.037346758, 0.011360439, 0.005862014, 0.0004008911, 0.013878121, -0.032023266, 0.009467033, 0.026699776, 0.021362564, -0.014817964, 0.024175234, 0.002601719, -0.017191581, -0.008719274, -0.009247507, -0.0211842, -0.036935147, -0.0043459167, 0.011511363, 0.01712298, -0.016601607, -0.007292359, -0.015627464, 0.02359898, -0.027056504, -0.04042011, -0.009597376, 0.001989449, 0.0070316726, 0.026960462, -0.017452268, 0.025039615, -0.010057007, 0.0045242812, 0.0039445967, -0.0046649147, -0.01953776, -0.02034726, 0.010111888, 0.016711371, -0.002735492, -0.0186871, -0.0027114816, -0.022652276, -0.0053577917, -0.004277315, 0.0326544, 0.014049625, -0.022144623, 0.020813752, 0.038224857, -0.019373115, -0.023983149, -0.015188413, -0.02486125, -0.011888672, -0.006582332, 0.015792107, 0.047883976, 0.011943554, -0.033258095, -0.03386179, -0.018289208, -0.044261806, -0.024559403, 0.015613743, 0.020292379, 0.045085028, 0.004579162, -0.005333781, 0.022487633, -0.006160431, 0.029828012, -0.011017431, -0.033477623, 0.0015503981, 0.0096248165, -0.022624835, -0.008767296, -0.033175774, -0.031062843, 0.018481294, -0.00074690086, 0.008335104, 0.007957796, 2.4077583E-05, -0.025396343, 0.021774175, -0.017191581, 0.051067095, 0.01994937, 0.009590516, -0.018261768, 0.0029481575, -0.009419011, 0.006561751, 0.0056287684, 0.0030030387, -0.0073129395, 0.005172567, 0.016176278, 0.005505285, -0.014900286, -0.00096899876, -0.004150402, -0.005388662, -0.017411107, -0.00896624, 0.029087115, -0.016642768, -0.033230655, -0.0021403725, 0.027042784, -0.016903454, -0.0006868744, -0.0040989504, -0.05016155, -0.0055567366, -0.015558862, 0.009597376, -0.0014089071, -0.00045019857, -0.008671253, -0.0018539606, -0.021774175, 0.021390006, 0.028593183, 0.0007880618, -0.04365811, 0.011435901, 0.00058139925, -0.012073897, -0.000875529, 0.0082939435, -0.04228608, 0.006479429, -0.00366676, -0.015380498, -0.025176818, 0.02933408, 0.013651735, 0.011710308, 0.0008309379, 0.19351164, 0.0005235166, -0.011696587, 0.032325115, 0.0024079191, 0.019825887, -0.013253845, 0.008856477, 0.026699776, -0.0211156, -0.006030088, 0.01951032, -0.028538302, -0.007923494, 0.028675504, -0.018261768, -0.02726231, -0.011175214, -0.021856496, -0.0057248105, 0.022103462, 0.007086554, -0.007532465, -0.033697147, 0.02362642, 0.0037971032, -0.016107675, -0.0015589732, 0.02723487, 0.010516638, -0.0014020469, -0.026027478, 0.0014603584, -0.0048364187, -0.007162016, 0.017520871, 0.007079694, -0.0026188693, -0.0016987493, 0.019057548, -0.015353057, 0.0022690007, -0.013720337, -0.011531943, 0.027619038, -0.021307683, -0.011038011, -0.018934065, 0.0003129952, -0.021554649, -0.019880768, -0.015257015, 0.005488135, 0.023448056, -0.01791876, -0.010633261, 0.00026218707, -0.010852787, 0.0074707232, -0.016382081, -0.027495556, 0.012197379, 0.0033563373, 0.018851742, -0.00935727, 0.009151464, -0.00048535693, 0.022611115, 0.022652276, -0.009288668, -0.0021832485, 0.0068121473, -0.0069527808, 0.0081773205, -0.0152295735, -0.008472308, 0.021911377, 0.0073403805, 0.030870758, 0.013020599, 0.002927577, 0.0073197996, 0.0005248029, -0.02038842, -0.0068944693, -0.02606864, 0.016409524, -0.017808998, 0.030321945, 0.0033288968, 0.007772571, -0.017205302, -0.0063044946, -0.0034918257, 0.011778909, 0.016148837, -0.039679214, 0.028840149, -0.035069183, 0.019304514, -0.00055138604, 0.028977351, -0.015243295, -0.026617454, -0.021815335, 0.0060335184, 0.004160692, 0.016766252, -0.0036084487, -0.021033276, -0.002896706, -0.018577335, 0.0067435456, -0.010310833, -0.0004660627, 0.013425349, 0.014968888, -0.005669929, -0.004640904, -0.008918219, 0.0090485625, -0.026891861, -0.0041778428, -0.012307142, -0.008595791, -0.006877319, 0.00016057082, 0.0023856235, 0.0022209794, -0.007971516, 0.0030304794, -0.006369666, 0.0089319395, -0.024545683, 0.0023924836, -0.009226927, 0.005772832, -0.019126149, -0.021403726, -0.0021866786, 0.019427996, 0.018522454, 0.005958056, 0.008863337, 0.019208472, -0.0025022465, 0.0031110863, 0.0033649127, -0.033614825, -3.6364254E-05, 0.0027972336, -0.0219251, 0.007004232, -0.008369406, 0.020978395, 0.008664393, -0.046182655, -0.020292379, 0.004201853, -0.0024645156, -0.025176818, 0.01097627, 0.023887107, -0.014392633, -0.012444345, 0.006561751, -0.17616913, 0.01220424, 0.0077931513, -0.035069183, 0.0051965774, 0.008094999, 0.01015305, 0.004273885, 0.009652257, -0.00097585894, 0.033093452, 9.925806E-05, -0.051478703, -0.0151746925, 0.010715583, 0.018659659, -0.012588409, 0.010050147, 0.02482009, -0.0051039653, -0.00076919637, 0.010804765, 0.016533006, -0.0152295735, 0.020017972, -0.005460694, -0.014502396, 0.009494473, 0.010461757, -0.013576273, 0.022144623, -0.014955167, 0.02731719, 0.0001336661, 0.023818504, -0.009007401, -0.023708742, -0.008726134, -0.009432731, 0.016244879, -0.012032735, 0.016711371, 0.03709979, 0.014090786, 0.012156218, 0.021513488, -0.0049564717, -0.01017363, 0.016011633, -0.020210056, 0.02606864, -0.03095308, -0.0105578, -0.029141996, 0.023873387, 0.014694481, 0.0055087153, -0.000692877, 0.013727197, -0.020031692, -0.03136469, -0.009288668, -0.0029670228, -0.023297133, -0.006187872, -0.022926683, 0.0059992173, 0.024573123, 0.0029138566, 0.004356207, -0.014420074, 0.0072992193, 0.011916112, -0.0049050204, 0.01957892, -0.001751058, -0.008691833, -0.0034386595, 0.011429041, 0.00036187388, 0.0154079385, 0.024696607, -0.015750946, -0.014337752, -0.021362564, -0.018810581, -0.002601719, 0.0060403785, -0.009734579, 0.00529262, 0.018110845, -0.026864419, 0.0035912981, 0.0071551558, -0.0071414355, 0.012135638, 0.02320109, -0.013514532, -0.003958317, -0.020457022, 0.004692355, -0.005862014, -0.016834853, 0.004778107, 0.04519479, 0.006150141, 0.04395996, -0.005100535, 0.042917214, 0.0059614866, -0.015654905, 0.0067126746, -0.006266764, 0.02971825, -0.009062283, 0.004767817, -0.020292379, -0.012060176, 0.013171524, -0.028730385, 0.02483381, -0.021293962, -0.009672837, 0.0034095037, -0.019990532, 0.0053269207, -0.0944508, -0.024943572, 0.03548079, -0.0064245476, 0.0021249373, 0.007896054, -0.0032157039, 0.03141957, 0.0105509395, 0.026933022, -0.012005295, -0.020607946, 0.004181273, 0.010139329, 0.013603714, 0.009480753, 0.022844361, -0.020100294, -0.00529605, 0.010873367, -0.009419011, -0.026260724, 0.00610898, 0.010688143, -0.007498164, -0.008835897, -0.020251216, -0.002737207, 0.021829056, 0.019016387, 0.024477081, -0.030102419, 0.02524542, -0.01098313, -0.011559384, -0.007937215, -0.014639599, -0.0022244097, 0.023434335, -0.02648025, 0.010228511, -0.014296591, 0.01668393, -0.01997681, -0.021088157, -0.0033100313, -0.023763623, 0.031858623, 0.0049564717, -0.021527208, -0.011573104, -0.030294504, -0.014269151, -0.0045071305, 0.008444867, -0.021335123, -0.004644334, -0.003992618, 0.0020031692, 0.009322969, 0.010207931, -0.01878314, -0.007244338, 0.014845405, -0.011772049, -0.0076079266, -0.023022726, 0.026850699, 0.015943032, 0.0005162277, 0.0025502676, 0.02730347, -0.0052171582, 0.029087115, -0.012176799, 0.0023598978, -0.003174543, 0.0039205863, 0.013459651, -0.0060232277, -0.0125746885, -0.02444964, 0.022487633, -0.008787876, 0.02196626, 0.019647522, -0.0072374777, 0.012355164, 0.0077245496, -0.027358351, 0.034465488, 0.04681379, 0.032379996, 0.0203061, -0.023159929, -0.030459147, 0.0040200585, -0.005206868, -0.015915591, -0.022597395, 0.0041709826, 0.012828515, -0.08078534, 0.004675205, 0.0030613502, -0.014735642, 0.014049625, 0.017479708, 0.015929312, -0.021678133, 0.016080234, 0.006150141, 0.01262271, 0.0035981582, 0.010832206, -0.00044676848, -0.0097414395, -0.025396343, 0.020196335, -0.021390006, 0.0095081935, 0.03827974, -0.005494995, 0.005738531, 0.018440133, -0.0014800814, -0.028812708, 0.007655948, -0.017040659, 0.0081773205, -0.0021197922, -0.024710327, 0.005892885, 0.0081773205, -0.0009887217, 0.025163097, -0.0078343125, -0.014790523, -0.012272841, 0.021554649, 0.013240125, 0.011470201, 0.007168876, -0.016395802, 0.013493951, -0.0045037004, -0.028483419, -0.01627232, -0.0030304794, -0.014584718, -0.0089319395, 0.020676548, -0.009446452, 0.013638015, 0.012924558, -0.017273905, 0.0028366796, -0.0373742, -0.025931437, -0.0059168953, -0.011881812, -0.0014226275, 0.041847028, 0.022487633, -0.0022724308, 0.023434335, 0.021390006, 0.00448998, -0.04513991, -0.0054332535, 0.01550398, 0.0025622728, -0.024257556, 0.006976791, 0.029087115, -0.010516638, 0.015641185, -0.025533548, 0.01019421, -0.0078068716, -0.012753054, 0.01101057, 0.0069013294, 0.009007401, -0.022213226, -0.0003878139, 0.01959264, 0.0025948586, -0.008431147, -0.015106091, 0.0015040919, 0.0060163676, -0.023791064, 0.0034043586, 0.0046992153, 0.0029172867, 0.0025622728, 0.003992618, -0.0071414355, -0.0073541007, 0.017548312, 0.020676548, -0.014008464, 0.003177973, -0.011717168, -0.0069356305, 0.01179263, 0.03781325, -0.005165707, -0.033532504, -0.020635387, 0.031886064, -0.014680761, 0.019373115, -0.004201853, 0.006867029, -0.025094496, -0.008389986, 0.003294596, -0.004390508, -0.0163272, -0.0053577917, 0.025519827, 0.010454897, -0.0068087173, 0.004184703, 0.02971825, -0.008266503, 0.023708742, -0.028154131, -0.015833268, -0.0032602951, 0.023832224, 0.0032054137, 0.010276533, -0.003951457, -0.007662808, -0.0040029082, -0.005868874, 0.009727719, -0.032023266, 0.08468192, 0.020635387, 0.013576273, 0.019688683, -0.035617996, 0.003135097, 0.016080234, 0.001871111, -0.045853365, -0.025135657, 0.022693437, 0.01871454, -0.009425871, 0.0143651925, -0.04201167, 0.0357552, 0.020484462, 0.01262271, -0.007484444, -0.017397387, 0.024778929, -0.022926683, 0.012416905, 0.002773223, 0.009645397, 0.016368361, 0.028016929, 0.024188954, -0.014488676, -0.02200742, 0.025780514, -0.018344091, -0.0194966, 0.011332998, -0.004791828, -0.029828012, -0.0131509425, 0.0042327237, 0.018508734, 0.0067023844, 0.023873387, -0.009165185, -0.0062290328, -0.007127715, -0.0027389221, -0.013596854, -0.020566786, -0.01669765, -0.025121937]
+ },
+ {
+ "Id": 21,
+ "Type": "Footwear",
+ "Brand": "Legend",
+ "Name": "Trailblazer Black Hiking Shoes",
+ "Description": "The Legend Trailblazer is a versatile hiking shoe designed to provide unparalleled durability and comfort on any adventure. With its black color, these shoes offer a sleek and minimalist style. The shoes feature a waterproof GORE-TEX lining, Vibram rubber outsole for enhanced traction, and a reinforced toe cap for added protection. Conquer any trail with confidence in the Legend Trailblazer Black Hiking Shoes.",
+ "Price": 129.99,
+ "Embedding": [-0.013866203, -0.026879102, -0.027252423, -0.018506048, 0.0065331147, 0.015266156, -0.016319454, -0.037945397, 0.0125729125, -0.03850538, 0.002771574, 0.0014374519, 0.0078064054, -0.010766307, -0.0064231185, 0.009866336, 0.026825769, 0.013446217, 0.02354588, 0.0021449283, -0.0023832535, 0.010139661, -0.00069039356, -0.0023399217, -0.011899602, -0.010606312, 0.028185723, -0.01255958, 0.01246625, -0.017012764, 0.0041531944, 0.014319521, -0.015959466, 0.010152994, -0.012892902, -0.001017466, 0.0037698739, 0.00049248355, 0.018772706, 0.011852937, 0.013326221, -0.013359553, -0.010166327, 0.01578614, 0.0009183026, 0.0073997527, 0.0018249389, -0.024959166, -0.013879536, 0.0044398517, -0.0044365185, 0.006866437, -0.009399686, -0.011032964, 0.011252957, 0.0017299422, 0.017372752, 0.015359486, 0.01874604, 0.0033598877, -0.016372785, -0.0065164487, -0.02110596, 0.007953067, -0.008413052, -0.02733242, -0.016612777, 0.006799773, -0.004496516, 0.023079228, 0.0088130385, 0.0041398616, 0.007953067, 0.011206292, 0.008946368, -0.018226057, -0.022052595, -0.0026549113, -0.005569814, 0.013086229, 0.014852837, -0.02225259, -0.011532947, -0.0092263585, 0.023132559, -0.014532847, 0.008353054, -0.0044131856, -0.03781207, -0.014652844, 0.017426085, -0.0041231955, -0.0011032964, 0.008279723, -0.0044665174, 0.0053598206, -0.0057898066, 0.01006633, 0.010706308, -0.0037532079, 0.006049798, -0.0063497876, -0.010746308, -0.019066028, -0.04165194, 0.0002733242, 0.00288657, 0.03191893, 0.027545746, 0.004566514, -0.010399653, 0.029439015, 0.013532881, -0.026425783, 0.008453051, -0.01786607, 0.0110062985, 0.0044498513, 0.014639511, -0.030852301, 0.023932533, -0.0056564775, 0.010519648, -7.52579E-05, 0.010672976, 0.014492849, -0.014052863, -0.0058564707, 0.015372819, 0.0004874837, 0.012959567, 0.015586145, 0.012832904, -0.033625543, -0.0056431447, 0.008419719, -0.025799137, 0.012772907, -0.021065962, 0.015292822, 0.004309856, 0.016506115, -0.027545746, 0.004716509, -0.00119746, 0.019812671, 0.0062031257, 0.01216626, 0.0012241257, -0.0088463705, 0.02839905, -0.0060397983, 0.0169461, -0.013732874, 0.009219692, 0.000628729, 0.015799472, 0.027185757, -0.014772839, -0.011246291, -0.012372919, 0.0009283023, 0.010532981, -0.008513048, 0.04405186, 0.030745639, 0.00837972, -0.0040631974, -0.008019731, -0.00066997757, 0.0030048995, 0.016079463, -0.027492413, 0.027145758, 0.011859603, 0.0022499247, 0.021319287, 0.012932901, -0.00548315, 0.02447918, -0.019786006, -0.0067864396, 0.02082597, -0.0026149126, -0.008806372, -0.011146294, 0.017212758, -0.01717276, 0.009153027, -0.017759407, 0.002913236, -0.0033215557, 0.00408653, 0.0009708009, -0.66643107, -0.017892735, -0.010299656, -0.041758604, 0.029892335, 0.0068864366, 0.025972465, 0.007599746, -0.033678874, 0.009733008, -0.012719574, 0.038158722, -0.0041065295, -0.017466083, -0.0125729125, -0.021905934, 0.0034932166, 0.0050131655, 0.031945597, 0.002668244, -0.025825802, -0.0015782806, -0.009933001, -0.031065628, -0.012399585, 0.025799137, -0.012346254, -0.0022965898, -0.022919234, 0.009726342, -0.046025127, 0.029439015, 0.004916502, -0.0064964495, 0.05245158, -0.025612477, 0.0052498244, 0.054318182, 0.03479884, 0.060317982, -0.021825938, -0.010752974, 0.0043931864, 0.0047531743, 0.00957968, 0.0033265555, 0.0408253, -0.013479549, 0.015706142, -0.0036998764, 0.018106062, -0.0014707842, 0.010466317, 0.009999665, -0.010672976, -0.011312955, 0.031732272, 0.0053598206, 0.018266056, 0.0051631606, -0.026199125, 0.021492615, 0.00022728406, -0.0219326, -0.022879235, 0.023679208, -0.03749208, 6.3279134E-05, 0.005353154, 0.0023582545, -0.002638245, 0.022292588, -0.0043065227, 0.01334622, 0.0098196715, 0.021305954, 0.010052998, 0.0011624611, -0.007199759, 0.020812638, 0.015159493, 0.0048498376, 0.005259824, -0.029705673, 0.009266357, -0.0041231955, 0.007673077, -0.010786306, 0.026252456, -0.0049865, 0.027172424, 0.03647878, -0.04991833, -0.040051993, -0.016572779, 0.031945597, -0.012779573, 0.030372318, 0.006559781, -0.030772304, -0.025652476, -0.012046264, -0.0015732808, -0.0038232056, 0.006816439, 0.029385684, 0.003224892, -0.003499883, 0.0016357786, -0.015172826, 0.008993032, -0.0071330946, -0.020292655, -0.037892066, 0.005209826, -0.028612377, 0.014586179, -0.005256491, 0.04007866, -0.03975867, 0.010939634, -0.0029199023, 0.0047265086, -0.0189327, -0.028692374, 0.004349855, 0.0022165927, -0.012866236, -0.0029015697, -0.0016282789, 0.0010974633, 0.00035894633, 0.02770574, 0.0050564976, -0.009806339, 0.0092263585, 0.0046531777, 0.0017549413, 0.035012163, -0.016506115, -0.008606379, 0.015199492, -0.0009741341, 0.01246625, -0.034958832, -0.03943868, -0.016892768, -0.0037365418, -0.01726609, -0.0037132092, 0.025279155, -0.0119596, -0.024212524, 0.022372585, 0.010586313, -0.021999264, -0.012272923, -0.025772471, -0.0018649376, 0.0046031796, 0.034505513, -0.012092929, 0.019892668, -0.012532914, -0.0075064157, -0.01675944, -0.007333088, 0.035172157, 0.006229792, -0.04021199, -0.012619578, -0.011879602, -0.02461251, 0.024905834, 0.018599378, -0.0020582646, -0.01685277, -0.028105726, 0.0041198623, 0.0091930255, -0.015479483, 0.009679676, -0.018106062, 0.011112962, 0.019906001, 0.0018932701, 0.0060931295, 0.03357221, 0.007979733, 0.009919669, -0.010079663, -0.005029832, 0.0003214476, 0.0095063485, -0.010726308, -0.018879369, 0.011192959, -0.001006633, 0.014692842, 0.020505982, 0.027292421, -0.026105793, 0.010626311, -0.030292321, 0.0072797565, -0.011966267, -0.010952967, -0.014719508, 0.01739942, 0.010626311, 0.014906168, -0.02451918, -0.02483917, -0.008313055, 0.011572947, -0.0008599712, 0.007546414, 0.02386587, 0.0038098725, -0.030772304, 0.014692842, 0.010299656, 0.00045373483, -0.019079361, -0.018866036, 0.017279422, -0.006216459, 0.009726342, -0.020612644, -0.015266156, 0.035518814, 0.021679275, 0.023585878, 0.012912901, 0.031892266, 0.00847305, 0.01274624, -0.02086597, 0.052664906, 0.010539647, 0.030505646, 0.028319053, -0.0029232355, -0.012452917, 0.008459717, 0.0429319, 0.01085297, 0.00057081424, -0.0065697804, -0.00084163854, 0.00418986, 0.012566246, -0.005273157, -0.0042898566, 0.0063631204, -0.009346354, 0.014572846, -0.0011891269, 0.01115296, 0.0051431614, 0.027839068, 0.0027232424, 0.005826472, 0.0020932634, 0.023292555, -0.014999499, -0.01939935, -0.0022849236, -0.0122262575, -0.017839404, 0.012046264, -0.009306355, -0.008326388, 0.0023282554, -0.001374954, 0.013866203, 0.03477217, -0.006743108, -0.00588647, 0.02821239, -0.013139561, -0.011786273, 0.018106062, -0.0010916302, -0.009239691, -0.027572412, -0.03749208, 0.015986132, 0.0027599076, 0.049971662, 0.0045465147, 0.02142595, 0.006986433, -0.008619712, 0.017412752, 0.027812403, 0.018959366, -0.011386286, 0.023279222, -0.009033031, -0.006743108, 0.0019582678, -0.022572579, -0.030078994, 0.030558977, -0.0091596935, -0.005939801, -0.00026165793, -0.003816539, -0.019572679, -0.008486383, -0.02479917, 0.02341255, -0.016959433, 0.007826405, -0.0041565276, 0.0043631876, -0.0050698305, 0.010819638, 0.004043198, 0.0020932634, -0.02483917, -0.02003933, 0.0011641277, 0.0907703, 0.0026249122, -0.009453017, 0.00967301, -0.0107596405, -0.010786306, -0.02401253, -0.008046398, -0.017146094, -0.0041431948, 0.009693009, -0.016319454, -0.021399284, -0.0038065393, 0.029465681, -0.011286289, 0.0017082762, -0.023359219, 0.0031365617, -0.027305754, -0.008686376, -0.013012898, 0.0027749073, 0.024345852, 0.00429319, 0.002343255, -0.0009999665, -0.020839304, 0.024692507, -0.0031132293, -0.020785972, -0.013479549, -0.01345955, 0.0066764434, -0.0076530776, 0.0006445618, -0.030825635, -0.02022599, 0.035758805, 0.0045631807, 0.044851832, 0.01555948, 0.0018482716, 0.0024449183, -0.010799639, -0.01915936, -0.017519414, 0.008726375, 0.0071397615, -0.0053131557, 0.027679075, 0.0044331853, -0.02433252, -0.011779606, -0.0016799439, -0.007926402, 0.008073064, 0.006446451, 0.010519648, -0.021359285, -0.013746207, -0.0449585, 0.02603913, -0.008059731, -0.0041198623, -0.0048131724, -0.024639176, 0.008099729, -0.010359653, -0.011186292, -0.017532747, -0.009286356, -0.021279288, 0.008919702, 0.021959266, -0.0009883003, -0.016426118, -0.017159427, 0.0067097754, 0.015279489, 0.0067231087, 0.014706175, -0.0029882335, -0.001014966, 0.012152927, -0.008259724, -0.023519214, -0.017439418, -0.0045931796, -0.005353154, 0.018172726, -0.018292721, 0.0088463705, 0.00073914195, -0.0104463175, 1.4631672E-06, 0.009493016, 0.018279389, 0.010986299, 0.0018799371, -0.0048165056, -0.010679643, 0.011286289, -0.0068864366, 0.010972966, 0.008479716, 0.012359587, 0.015212825, 0.023559213, -0.005406486, 0.009173026, -0.011292956, 0.018866036, 0.0024882501, -0.027439082, 0.012772907, 0.008466383, 0.007046431, 0.01008633, -0.03661211, 0.0041831937, -0.035065494, 0.033545546, 0.0076997424, 0.0025949131, 0.016826104, 0.016092796, -0.02183927, -0.030558977, 0.017066097, 0.009446351, 0.033145558, 0.015306155, 0.004513182, -0.015986132, -0.027625743, -0.015026164, 0.003529882, 0.019172693, -0.01939935, -0.00047165088, 0.012646244, 0.0018749373, 0.023359219, -0.023745872, -0.017212758, -0.045225155, 0.002048265, -0.04322522, 0.023305887, -0.00043248554, 0.016332787, -0.02978567, -0.0132328905, -0.00937302, -0.007886403, -0.017119428, -0.0019066029, 0.006489783, 0.009426352, -0.021492615, -0.016199458, 0.02161261, 0.014159527, -0.01345955, 0.018999364, -0.02511916, 0.011632944, -0.04013199, 0.015346154, 0.0068131057, 0.02562581, 0.001385787, -0.0015882802, -0.009959667, -0.004389853, -0.007899736, 0.0005678977, -0.014492849, -0.05069164, 0.0071397615, -0.007839737, 0.00259658, 0.0056398115, -0.024545847, -0.012946234, 0.029359018, 0.009186359, -0.0069331015, 0.022319254, 0.021812605, -0.0062997895, 0.019906001, -0.0021582611, 0.010179659, -0.013339554, -0.0027682409, -0.036825437, 0.008279723, 0.012346254, -0.0077197417, -0.010859637, -0.0052231587, -0.011859603, -0.009379687, 0.010186326, 0.0003493633, -0.015919467, 0.027199091, -0.003014899, -0.01925269, -0.023132559, -0.026452448, -0.033865534, 6.36437E-05, -0.008766374, -0.004926502, 0.00935302, -0.025879135, -0.013446217, 0.005246491, 0.010332988, 0.022572579, -0.0043165223, 0.022759238, 0.019946, 0.0016082795, -1.8358762E-05, 0.0034932166, 0.012192925, -0.008126395, -0.0026282454, -0.0036932097, -0.0078064054, -0.021292621, 0.030878967, -0.008339721, -0.018892702, -0.01267291, 0.029519012, 0.011792939, 0.014719508, -0.009919669, -0.014026198, -0.005166494, 0.016826104, -0.023559213, 0.027519079, 0.0023082562, -0.013972866, -0.0023615877, 0.012106262, -0.00059997995, 0.00858638, 0.0011916268, -0.023985865, 0.0002812406, -0.0008353887, 0.006656444, -0.0006583113, -0.021532614, 0.042398583, -0.010706308, -0.005916469, 0.015346154, 0.021065962, 0.0030598976, 0.0065131155, 0.015092828, 0.02447918, -0.028159058, 0.0012916235, 0.015306155, 0.005693143, 0.00080580637, 0.004313189, 0.001966601, -0.03023899, 0.013639544, -0.009173026, 0.00458318, -0.016226124, -0.019932667, -0.013132894, -0.004329855, -0.010399653, -0.02271924, -0.021092627, 0.00946635, -0.020212658, -0.010786306, -0.011399619, 0.015132828, 0.021452617, -0.013312888, -0.03079897, -0.01675944, 0.020372652, -0.013066229, 0.009046365, 0.013679543, 0.022905901, -0.006283123, -0.0049098358, 0.0040298654, -0.04335855, 0.002583247, -0.0016849437, -0.025185825, -0.044878498, -0.019652676, 0.006926435, 0.018306054, -0.014719508, -0.015719475, -0.0007387253, 0.019826004, -0.026252456, -0.021225957, -0.00239492, -0.0062231254, -0.007986399, 0.037092093, -0.024145858, 0.003516549, 0.005589813, -0.005043165, 0.012506248, -0.005446485, -0.025772471, 0.0029399018, 0.005829805, 0.023292555, -0.031385615, 0.016226124, 0.0022332587, -0.010012998, -0.019799339, 0.00025228324, -0.006939768, 0.014826171, 0.01809273, 0.021052629, 0.026332453, -0.008973033, -0.022639243, 0.0019766006, 0.002373254, -0.010866303, -0.010292989, 0.006779773, 0.043251887, 0.0010707976, -0.019332686, -0.0028515714, 0.006669777, -0.043491878, -0.025279155, 0.0080397315, 0.0044265185, 0.011932935, 0.010212991, -0.00062831235, 0.016986098, -0.0057264753, 0.020052662, 0.022759238, -0.015012831, -0.008279723, -0.00787307, -0.015479483, -0.0021832604, -0.01801273, -0.015999464, 0.044851832, -0.0037532079, 0.010486316, 0.011166293, -0.049705006, -0.024639176, -0.013379552, 0.012606245, 0.039118692, 0.018026063, 0.011292956, -0.05338488, -0.023252556, -0.028345719, -0.012879569, -0.013632878, -0.0074997493, -0.007859738, 0.015412818, -0.007946401, -0.0030465648, -0.035812136, -0.01546615, 0.0011041297, 0.017626077, 0.0043198555, -0.01523949, 0.0013166226, 0.018639376, -0.034745503, 0.011159627, 0.012686242, 0.019212691, 0.015666142, -0.005426485, -0.030772304, 0.014159527, -0.018772706, 0.0045431815, 0.006853104, -0.01630612, -0.0077130753, 0.0017666076, -0.017092763, 0.024785837, 0.009106362, -0.008366387, -0.021585945, -0.004069864, -0.004643178, 0.0077930726, 0.0018116061, -0.0035532145, -0.011826271, 0.028692374, -0.009773007, -0.015626144, -0.00478984, 0.0014682843, -0.024319187, -0.018586045, 0.030158991, 0.19178025, -0.00608313, -0.01865271, 0.031838935, 0.00826639, 0.0024782505, 0.01027299, 0.0008999699, 0.020105995, -0.0019965998, 0.011286289, 0.014746173, -0.016599445, 3.3905115E-05, 0.01276624, -0.018946033, -0.04871837, -0.019199358, -0.019132694, -0.016266122, -0.014479516, 0.01177294, 0.023105893, -0.032478914, 0.022612577, 0.014426184, 0.0076064123, -0.008619712, 0.0025065828, 0.018759374, -0.010332988, -0.031892266, 0.012846237, 0.011492949, 0.01855938, -0.003153228, 0.029625677, 0.000758308, -0.008479716, 0.007633078, -0.010279656, 0.005469817, -0.004643178, -0.0028165726, 0.013732874, 0.019412683, -0.025759138, 0.013139561, -0.0023915868, -0.0021982598, -0.022932567, -0.013812872, 0.0063164555, 0.0006991433, -0.013439551, -0.014199525, 0.054984827, -0.02253258, 0.00014093278, 0.0018616044, -0.030772304, 0.009779673, -0.019372685, 0.021052629, -0.0007558081, 0.0060397983, 0.0006899769, -0.01809273, 0.0131995585, 0.0045031826, 0.017986065, 0.003259891, -0.011052963, 0.024879169, 0.008279723, -0.0249325, 0.02262591, -0.002561581, -0.004279857, 0.015812805, -0.0020632644, 0.0012449584, 0.0050898297, 0.0047831736, -0.012686242, -0.020905968, 0.0042898566, -0.011492949, 0.006833105, 0.014132861, 0.011619612, 0.00667311, -0.0027182424, 0.011906269, -0.0042098593, 0.027892401, -0.03375887, 0.016519448, -0.023079228, 0.0069331015, -0.023905868, 0.007953067, 0.004803173, -0.0026415784, -0.0061131287, 0.007239758, 0.014852837, -0.003773207, 0.0006199793, -0.014319521, -0.009779673, -0.012692909, -0.0024215856, 0.002128262, -0.010919635, -0.009966333, -0.00037227923, -0.010059664, 0.0045031826, -0.023359219, 0.001625779, 0.008613045, 0.019546013, 0.01045965, -0.012046264, -0.01583947, 0.0068397713, 0.021092627, 0.007406419, -0.034478847, 0.0060031326, -0.0029449016, 0.02063931, -0.0024732507, -0.0068864366, 0.006793106, 0.01366621, -0.021732606, -0.028825702, 0.0010124661, -0.010499649, 0.0049765003, 0.0019716008, 0.01739942, 0.022412583, -0.034825504, 0.0023365885, -0.01703943, -0.016812772, 0.0027099093, 0.016186126, -0.029065695, -0.022665909, -0.024679175, 0.008346387, -0.0147995055, -0.03791873, -0.020065995, 0.00062706234, 0.012472916, -0.015612811, 0.02447918, 0.039092027, -0.025039162, 0.0019249356, 0.0046365117, -0.17023431, 0.02978567, 0.001306623, 0.0053398213, 0.032452248, -0.009099696, 0.015799472, 0.02045265, -0.021025963, -0.006913102, 0.0014491183, 0.0059864665, -0.029998997, 0.007799739, -0.0029199023, 0.0020199325, 0.016692774, 0.012312922, 0.029385684, -0.0068264385, 0.015959466, -0.02077264, 0.0070064324, -0.011179626, -0.0049931663, -0.008373054, -0.0059431344, 0.011186292, 0.016292788, 0.0028715706, -0.013839537, -0.016426118, 3.439989E-05, 3.2238506E-05, 0.021412617, -0.0017932734, 0.006026465, 0.021879269, -0.012739574, 0.02973234, 0.011286289, 0.008493049, 0.022825904, -0.019412683, 0.026932433, 0.0020582646, -0.005299823, 0.004326522, -0.0129862325, -0.015106161, 0.015012831, -0.011912935, 0.006609779, 0.0147995055, 0.03458551, 0.01285957, 0.011886269, 0.0037432082, 0.007839737, -0.01274624, -0.02003933, -0.0015749474, -0.0037698739, -0.0021399285, -0.017492749, 0.0018232723, 0.0116662765, -0.0066164453, -0.011372953, 0.008713042, -0.026959099, -0.022092594, -0.021385951, -0.013439551, 0.026452448, 0.015159493, -0.0028215724, -0.018346053, -0.0028849035, -0.019906001, -0.0014091196, 0.021745939, -0.032665573, 0.009093029, -0.010352987, 0.017599411, -0.011932935, 0.002719909, -0.01975934, -0.010486316, -0.018812705, -0.013866203, -0.014119528, -0.020999297, -0.009806339, 0.010786306, 0.020745972, -0.031598944, -0.012879569, -0.017972732, 0.007899736, 0.012299589, -0.020439317, 0.016786106, 0.030132325, 0.022425916, 0.010932968, 0.008279723, 0.030398984, -0.008533048, -0.009313022, -0.005513149, 0.012332921, 0.0070064324, 0.019412683, -0.011639611, 0.0032032263, -0.033225555, 0.014692842, -0.0070864297, 0.023665875, -0.020252656, -0.014999499, 0.014506182, -0.012212925, -0.0358388, -0.09285023, 0.011512948, 0.01763941, 0.0057898066, -0.0041065295, 0.0017166092, 7.223717E-05, 0.0101329945, 0.0070064324, 0.010339654, 0.010939634, 0.0034632175, 0.015612811, -0.0065431143, 0.02455918, 0.014052863, 0.028985698, 0.004969834, -0.04898503, 0.017786073, -0.019279355, 0.0077464078, -0.0092596905, -0.031278953, -0.0010982966, 8.859079E-05, -0.026812436, -0.016772773, 0.025985798, 0.033332217, 0.0033832202, 0.018879369, -0.0031448947, 0.0017916068, 0.009753007, -0.01814606, -0.013392885, -0.009206359, 0.025985798, -0.014159527, -0.018172726, -0.00558648, 0.015906135, -0.049758337, 0.006189793, -0.019279355, 0.019492682, 0.014306189, 0.0066931094, -0.0033782204, 0.0073664202, -0.004276524, -0.022012597, -0.016599445, 0.038825367, -0.02215926, -0.029705673, -0.01034632, -0.008719709, -0.00028749037, -0.022732573, 0.01454618, 0.007733075, 0.016812772, -0.004459851, -0.009759674, -0.02133262, 0.036345452, 0.0081863925, -0.006566447, 0.00677644, 0.015159493, -0.018412719, 0.034825504, 0.0068797697, 0.013759539, -0.035865467, -0.0119596, 0.018879369, -0.009419685, 0.005923135, -0.010592979, 0.031732272, -0.026825769, 0.002583247, 0.020079328, 0.0031415615, -0.018679375, 0.010579647, -0.028372385, 0.020932633, 0.029972332, 0.027199091, -0.007406419, -0.012992899, -0.011552947, 0.0125729125, -0.0026415784, -0.0027949065, -0.0018499382, -0.015879469, -0.0053831534, -0.07679743, 0.039358683, -0.008553048, -0.024945833, 0.006759774, 0.017479416, 0.006216459, -0.0056764768, 0.0044665174, -0.018186059, -0.007286423, -0.009866336, 0.008239725, -0.025265822, 0.003726542, -0.007993066, 0.0023332553, -0.0060397983, 0.02146595, 0.0009841338, -0.000627479, 0.006583113, -0.011746274, 0.017479416, -0.023972532, 0.0045265155, -0.0059531345, 0.02363921, 0.004219859, 0.0036432114, 0.015412818, 0.0045398483, 0.044158522, 0.04242525, -0.02341255, -0.011219624, 0.0055998126, 0.013192892, 0.0097863395, -0.01638612, -0.006396453, -0.017466083, 0.0028332386, -0.02017266, -0.02013266, -0.0005791473, 0.010392986, 0.011872936, 0.0056864764, 0.02331922, -0.026399117, 0.02086597, 0.016666109, -0.016266122, 0.0074730837, -0.0032448915, -0.010319655, -0.014599511, -0.0065564476, -0.04773174, 0.037972063, 0.010312988, 0.0060731303, 0.007946401, 0.00042394415, 0.01223959, -0.0072330916, -0.000727059, 0.026172457, 0.00087163755, -0.023425883, 0.011146294, 0.021119295, 0.023292555, -0.002048265, -0.013392885, -0.02247925, -0.026892435, -0.017786073, 0.024052529, -0.0061964593, -0.010919635, -0.027839068, 0.01814606, -0.013339554, -0.009326355, -0.014479516, -0.01754608, -0.0030698974, -0.0014066197, -0.025639143, 0.011439618, -0.008259724, 0.00648645, 0.0037532079, 0.015892802, 0.0021865936, -0.0136128785, -0.00789307, 0.0012024598, -0.031545613, 0.010239658, -0.0104796495, -0.015332821, -0.019746006, 0.016466117, 0.009119695, -0.01034632, -0.012439584, 0.0040465314, -0.0068597705, 0.0044565178, -0.0110062985, -0.004659844, -0.0066797766, -0.0066497778, 0.009299689, -0.01574614, -0.021639276, 0.028132392, 0.014212858, 0.039625343, 0.019772673, 0.0037632075, -0.0045031826, 0.008639711, 0.009959667, -0.006799773, 0.008226392, 0.012159593, 0.016172793, -0.010186326, 0.0018466049, 0.017199425, -0.01855938, 0.017652743, 0.0132995555, 0.039092027, -0.021092627, 0.06645111, 0.016826104, 0.013432885, 0.0049498347, 0.00016051547, 0.017386084, 0.017026097, 0.007833071, -0.025892468, -0.021199292, 0.00030915634, -0.010586313, -0.020585978, 0.015026164, -0.053491544, 0.013746207, -0.010632978, 0.002321589, -0.0038665375, 0.0017482749, 0.026172457, -0.0053064893, 0.023505881, -0.0020932634, -0.00043790202, -0.021132628, 0.028052395, 0.025172492, -0.010126328, -0.0011557947, 0.024759172, 0.017786073, -0.019866003, -0.025412483, -0.0046931766, -0.016426118, -0.004803173, 0.018172726, 0.006023132, 0.02110596, -0.0060031326, 0.0065097823, 0.012492916, -0.018026063, 0.009646344, 0.0019266022, -0.03130562, 0.0039265356, 0.021052629]
+ },
+ {
+ "Id": 22,
+ "Type": "Ski/boarding",
+ "Brand": "Raptor Elite",
+ "Name": "Venture 2022 Snowboard",
+ "Description": "The Raptor Elite Venture 2022 Snowboard is a true all-mountain performer, perfect for riders of all levels. Its sleek design, combined with the vibrant blue color, makes it stand out on the slopes. The snowboard features a responsive camber profile, carbon fiber laminates for enhanced stability, and a sintered base for maximum speed. Take your snowboarding skills to new heights with the Raptor Elite Venture 2022 Snowboard.",
+ "Price": 499.00,
+ "Embedding": [-0.012447547, -0.015163731, -0.024699686, -0.020960862, 0.0005227188, 0.0070933434, -0.02463455, -0.049477536, -0.016440403, -0.025168667, 0.002633135, 0.016857276, -0.015723903, -0.031056989, 0.0016161945, -0.03262026, 0.008604506, -0.0279565, -0.012454061, 0.000471424, -0.0063670734, -0.007816357, -0.008806428, 0.0014443975, 0.0044813775, -0.014186687, 0.024478223, -0.0013491357, 0.016635811, 0.008259283, 0.025272885, 0.014825023, 0.015241895, -0.029597936, -0.02472574, -0.021494979, -0.0077316794, -0.010591163, 0.017782211, 0.020570045, 0.015593631, -0.008044333, 0.0021446128, -0.0015111623, 0.0201662, -0.010539054, 0.0045041754, -0.024882067, 0.0052597565, 0.01229122, -0.0003244602, -0.0014533538, -0.017222038, 0.008402583, 0.023136415, -0.005334663, -0.0032047061, -0.0033138094, 0.03879518, -0.017704047, -0.008838996, -0.014290905, -0.011216471, 0.015684823, -0.0063312487, -0.007191048, -0.027122756, -0.00913211, 0.013639541, 0.028659973, -0.0017309972, 0.00680023, 0.025051422, 0.013066342, -0.015007405, -0.030874608, -0.01388706, 0.0018156745, -0.028998682, -0.01388706, 0.017730102, -0.018342383, -0.005292325, 0.0021283287, 0.023084305, 0.023357878, -0.001358092, -0.0038137306, -0.034652513, -0.0033072957, 0.01806881, 0.022980088, -0.015450331, 0.02063518, -0.036059458, -0.0023155955, 0.010473917, -0.0020273675, -0.025976358, -0.022980088, 0.021846715, 0.024816932, -0.011346744, -0.01702663, -0.03163019, 0.0057222242, 0.00877386, 0.00775122, 0.03538204, -0.014668696, -0.044449013, 0.012968638, 0.011809212, -0.004647475, 0.023944104, 0.0076014064, 0.042442814, 0.022706516, 0.034027204, -0.018798336, 0.03400115, 0.002154383, 0.01403036, -0.03371455, 0.0007388899, -0.008500287, -0.016792139, -0.017534692, 0.018550819, -0.002677102, 0.024504278, -0.0034131422, -0.00460188, 0.008428638, -0.0178734, 0.013131479, -0.004334821, 0.0068588527, -0.01674003, -0.008858537, 0.0015958394, 0.00526627, -0.024816932, -0.0065592257, -0.017039657, 0.005477963, 0.0022406888, 0.00034705436, 0.03790933, -0.008102956, 0.034157477, -0.044813775, 0.031395696, 0.018915582, 0.0073408615, -0.0076014064, 0.017000575, 0.008812942, -0.010871249, -0.008083415, -0.010864736, 0.0066145915, 0.0083179055, 0.011561694, 0.02572884, 0.025103532, 0.017795239, -0.013046801, 0.013229183, -0.011594262, -0.011718021, 0.015671795, -0.03496517, 0.019918682, 0.011333717, -0.00063630025, -0.0115030715, 0.002921363, -0.019501809, 0.011809212, 0.015580604, -0.025494348, 0.013730733, 0.015997477, -0.0028497132, -0.017365338, 0.01507254, 0.01826422, -0.0131575335, -0.012968638, -0.01315102, 0.020270417, 0.00908, 0.021429844, -0.6332291, -0.03986342, 0.024856012, -0.008943214, 0.019957764, -0.003344749, 0.018381465, 0.0055040177, -0.00038287934, 0.002600567, -0.019579973, 0.001957346, -0.004445553, -0.023019169, -0.005318379, -0.017847346, 0.0127797425, -0.0033512628, 0.009321005, -0.009431737, -0.032125223, 0.021794606, -0.031265426, -0.00024385404, 0.004989441, 0.014877131, 0.0022553445, -0.00782287, -0.017365338, 0.014108523, -0.0197363, 0.044422958, -0.00043967005, 0.008780373, 0.041583017, -0.025924249, -0.011340231, 0.034704622, 0.008350474, 0.030640116, -0.011535639, 0.0019996846, -0.0001132761, -0.009014864, -0.0062400578, 0.0040775323, 0.015176758, -0.012428006, -0.008982296, -0.02305825, 0.012662497, -0.012330302, -0.0032030777, -0.0022618582, 0.002792719, -0.024530333, 0.047810048, 0.0045758253, 0.0008768975, -0.002493092, -0.014108523, 0.016713975, -0.0010820768, -0.0197363, -0.011880862, 0.0063117077, -0.027800174, 0.0049829273, 0.026862212, -0.025416186, 0.0008866679, 0.024439141, -0.0040612486, 0.018199082, 0.004999211, 0.029285282, 0.028633919, -0.024360977, 0.006989125, 0.019045856, 0.011307662, 0.0068132575, -0.024895094, -0.010096127, 0.009737877, -0.02187277, -0.010350158, 0.019579973, 0.0056929127, 0.021703416, 0.014890159, 0.016648838, -0.019202182, -0.015776012, 0.0029783575, -0.0018628982, -0.024387032, 0.019892627, 0.031213317, -0.028347319, -0.01697452, 0.0030548926, 0.03394904, 0.008917159, 0.033167407, 0.004839627, -0.0033708038, -0.016987547, 0.0068979342, -0.03301108, 0.00394726, -0.034105368, -0.0068783937, -0.010597676, -0.021937907, -0.027513575, 0.0059241466, -0.015411249, -0.004950359, -0.02511656, 0.0188765, 0.010669326, -0.0057222242, -0.005158795, -0.02210726, 0.016583703, 0.0056082355, 0.013196615, -0.018016702, -0.004084046, 0.012310761, -0.004650732, 0.027096702, -0.0046246774, -0.004878709, 0.018915582, 0.0075948928, 0.010076586, 0.0057319948, -0.02330577, -0.0293895, 0.0029376473, -0.00986815, 0.0074776476, -0.011522612, -0.008545883, -0.012206543, 0.0076404884, -0.0204528, -0.027695956, -0.011639858, -0.010076586, 0.014746859, 0.008923673, 0.025390131, -0.008799914, 0.0044162413, -0.015541522, 0.00046287486, -0.014095496, 0.009763932, -0.0035629557, 0.0053965426, -0.005653831, 0.021234434, -0.01892861, -0.04085349, 0.0037811624, -0.00032425666, -0.037779056, -0.010734463, 0.009184219, 0.013066342, 0.007874979, -0.002644534, 0.009946314, -0.01674003, -0.0067741754, -0.00906046, -0.0069305026, 0.019957764, 0.025937276, -0.030614063, 0.0062921667, 0.010239427, 0.0019882857, 0.026080575, 0.038586747, -0.0012123494, 0.0077381926, -0.013320374, 0.03280264, -0.0043771598, 0.012538739, -0.015385195, -0.026080575, 0.006572253, 0.005621263, 0.019371536, 0.03384482, 0.010923358, -0.031265426, -0.0070672887, -0.0014720805, -0.0033072957, -0.010480431, -0.0060153375, -0.015776012, 0.02311036, 0.010682354, 0.020257391, -0.0484093, -0.018316329, -0.0198796, -0.00017973549, 0.006787203, -0.017886428, 0.019866573, -0.009145137, -0.025403159, -0.009125596, -0.00032832767, 0.016831221, -0.01763891, 0.0019508323, 0.002976729, -0.01968419, 0.01426485, 0.017000575, -0.0014720805, -0.009216787, 0.032516044, 0.02325366, -0.0033740604, 0.024803905, -0.0024572671, 0.0051229703, -0.0032714708, 0.034444075, -0.0047321524, 0.032646313, 0.025715813, 0.0016251508, -0.0060544196, 0.025390131, 0.012916529, 0.017704047, 0.022980088, -0.0007914061, 0.021794606, -0.025455266, -0.0010397382, 0.012597361, -0.001066607, 0.009913745, -0.0039537735, 0.014525396, 0.018655038, 0.017860373, 0.009672741, -0.0054714493, 0.018290274, -0.00069695845, 0.016805166, 0.03480884, -0.019084936, -0.029650046, -0.035017278, -0.009184219, -0.047862154, 0.0011732676, -0.036398165, 0.012232598, -0.0016707461, 0.0066536735, -0.019071909, -0.01512465, 0.020153172, -0.010552081, 0.03204706, -0.0006204233, -0.043980032, 0.031030934, 0.015176758, -0.017052684, -0.016766084, 0.004080789, -0.0013947311, -0.0013523925, 0.038534638, 0.023670532, 0.0038658397, -0.0007808214, 0.014186687, 0.004510689, -0.020153172, 0.020374635, -0.021130217, 0.019436672, 0.01645343, -0.010135208, -0.00070306496, -0.0025566, -0.0296761, 0.044501122, 0.006204233, -0.002836686, -0.01550244, -0.0038560692, 0.010285023, 0.015411249, -0.032985024, -0.004403214, -0.059508525, -0.028842354, 0.014460259, -0.009926773, -0.01892861, 0.032203387, 0.006256342, -0.003331722, -0.010004936, 0.008969269, -0.02363145, 0.08535461, 0.019566946, -0.016010502, -0.00030634418, -0.019619055, -0.0017163416, 0.0004734595, 0.0019752583, 0.006148867, -0.010610703, 0.03699742, 0.016101694, 0.01745653, -0.025663704, 0.0036867147, -0.00028497132, 0.008161578, 0.0023628194, 0.0041817506, -0.027331192, -0.010324104, 0.001805904, 0.013769815, 0.015854176, 0.006995639, 0.0025500862, 0.0117831575, 0.012981665, 0.016101694, -0.015307032, -0.01964511, 0.0014802224, -0.0115030715, 0.011379312, -0.022133315, -0.0198796, 0.0014777798, -0.037779056, 0.008806428, 0.008155065, 0.014056414, 0.021312598, 0.017560747, -0.0013605346, -0.0062270304, 0.017651938, -0.013392024, 0.004308766, 0.03262026, -0.023071278, 0.007901033, 0.0057124537, -0.03837831, 0.01982749, -0.027800174, 0.031135153, -0.0036411192, -0.010506486, -0.006021851, -0.0507021, -0.016557649, -0.021612225, -0.0009843723, -0.012994693, 0.0063573034, -0.025911221, -0.003960287, 0.017156903, -0.00068189565, 0.021012971, -0.009509901, -0.0057026832, -0.004562798, 0.01835541, 0.017222038, 0.020140145, -0.0005788989, -0.0058036447, 0.025285913, 0.009229814, 0.013470188, 0.001797762, 0.014056414, -0.009334032, -0.0027780633, -0.020192254, 0.0060511627, 0.009887691, 0.005976256, -0.005067604, 0.013626515, -0.011379312, 0.015776012, -0.016909385, -0.0025435726, 0.0023905023, 0.010695381, 0.010441349, 0.020387663, -0.006165151, 0.0097965, -0.021286543, -0.0142127415, 0.006096758, 0.022055153, 0.0062954235, -0.0046409615, 0.008930187, 0.020843618, -0.02440006, 0.0033284652, -0.017417448, -0.01939759, 0.0010340388, -0.00313957, -0.007979197, 0.00082804525, 0.005549613, -0.0040058824, -0.0032991536, -0.0020436514, -0.026836157, 0.021573143, -0.010995008, -0.015150704, 0.009789987, -0.010265482, -0.020609125, 0.012532225, 0.020960862, -0.002633135, 0.025338022, 0.008076902, 0.01374376, -0.009288437, -0.026236903, -0.020895725, -0.02619782, 0.007647002, -0.015906285, -0.017782211, 0.027383301, 0.0064191828, 0.009666228, -0.0029897564, -0.020648208, -0.031734407, 0.015372167, -0.0029978983, 0.03332373, -0.04403214, 0.0031249141, -0.023670532, -0.009522928, 0.010213372, -0.023383932, -0.020231336, 0.0018254449, 0.012636443, 0.020713344, -0.00017525736, -0.038586747, 0.0049177906, -0.009314491, 0.00906046, -0.008760833, -0.041348524, -0.021937907, -0.023918051, 0.025403159, 0.010265482, 0.010037504, -0.009535954, -0.025663704, 0.00621726, -0.000863056, 0.014642641, -0.027904391, -0.012975152, -0.027695956, -0.014629614, -0.016987547, -0.011001522, -0.011763616, -0.04575174, 0.0067546344, 0.03100488, 0.0004095445, -0.0047810045, 0.021468926, 0.009418709, -0.039159946, 0.027513575, -0.0050122384, 0.0074255387, 0.008083415, -0.020035926, -0.026731938, -0.00036496684, 0.012343329, -0.007451593, 0.016101694, 0.013307347, 0.027096702, -0.015241895, 0.018146973, -0.0017489097, 0.0073864567, 0.015398222, -0.009066974, -0.023957131, -0.022706516, -0.016544621, -0.025702786, 0.010754003, 0.0107474895, -0.025403159, 0.01821211, -0.058257908, -0.008311392, 0.01812092, -0.017847346, 0.0060707033, 0.016531594, 0.008187633, 0.04437085, -0.019267319, -0.0007604663, -0.014108523, 0.0009640173, 0.009119082, 0.021481954, 0.010877763, -0.026432311, -0.001885696, 0.011815725, -0.00075639534, -0.022941006, -0.005477963, 0.01939759, -0.0127797425, 0.0293895, -0.014199714, -0.022706516, 0.001701686, 0.019671163, -0.018628983, 0.018824391, -0.0008247884, -0.015307032, 0.01169848, 0.017847346, -0.008949728, 0.0014981349, 0.018941637, -0.021195352, -0.0045693116, 0.011744075, 0.008604506, -0.00753627, -0.007432052, 0.04903461, -0.023019169, 0.023514206, 0.013261751, 0.0062107462, 0.0005984398, 0.024621522, -0.0034978194, 0.025846085, 0.0016756314, -0.000771051, 0.010324104, 0.011665911, -0.014225769, -0.011998107, -0.014486314, -0.0010332246, -0.0018987232, -0.0074450793, 0.019241264, -0.0127602015, -0.024686659, -0.008571938, -0.011229498, -0.02382686, -0.031994954, -0.004406471, -0.020061981, -0.017625883, -0.009614118, 0.0059957965, 0.017782211, 0.03433986, 0.026614694, 0.0045237164, -0.014629614, 0.014746859, -0.049425427, 0.011190417, 0.01309891, 0.019944737, -0.01697452, 0.009496873, 0.011737562, -0.014903186, 0.007288752, -0.005829699, -0.021364707, -0.04903461, 0.021560116, -0.008689183, -0.003012554, -0.001166754, 0.007868465, -0.0010250825, 0.01440815, -0.006832798, -0.02068729, 0.0036932284, 0.018563846, 0.007627461, -0.0034913057, -0.03848253, -0.009288437, -0.023931077, 0.0060511627, -0.0049112774, -0.035512313, -0.020140145, 0.004442296, 0.021130217, 0.00056546455, -0.035173602, -0.023761723, 0.005412827, 0.0050480636, 0.0055235587, -0.016375266, -0.020557018, 0.044970103, 0.0006863738, -0.0037648783, 0.01286442, -0.017599829, -0.04403214, 0.015958395, -0.037831165, 0.009965855, -0.02235478, 0.00074133254, 0.058362126, 0.013470188, -0.003595524, 0.010011449, 0.023423014, -0.044110306, -0.01745653, -0.006604821, 0.036267895, 0.03681504, 0.009972368, -0.004790775, -0.004862425, 0.008441665, 0.0074385656, -0.0019264062, -0.007972684, 0.018954664, -0.0114835305, 0.008174606, -0.014082469, -0.018433575, -0.02772201, 0.019241264, 0.0018352154, -0.00061594514, 0.02182066, -0.010617217, -0.0014378839, -0.016062612, 0.009829069, 0.036788985, 0.043719485, 0.019606028, -0.040957708, -0.010499972, -0.0111252805, 0.0034945626, 0.0040449644, 0.020257391, 0.007099857, 0.0156066585, 0.02063518, -0.010923358, -0.02063518, -0.01835541, 0.010024477, 0.0138349505, 0.0061293263, 0.0013613488, 0.030588008, 0.024882067, -0.018238164, -0.023123387, 0.020439772, 0.011685452, -0.029571882, -0.0053965426, -0.02535105, -0.012375898, -0.0017863631, 0.010441349, 0.008050847, -0.01640132, -0.008975782, 0.00636056, -0.026184794, 0.01535914, 0.0010967324, -0.017651938, -0.026119657, 0.005653831, -0.02182066, 0.034418024, -0.0065820236, 0.00863056, -0.021898825, 0.0008137967, 0.005253243, -0.0013792613, -0.03600735, 0.021599198, -0.014890159, -0.011314176, 0.016635811, 0.20291261, -0.0062465714, 0.0145123685, 0.015163731, 0.01726112, 0.0054030563, 0.004771234, -0.0023302513, 0.014329987, -0.02083059, 0.01716993, 0.016844248, -0.0030858323, -0.0040058824, 0.017195985, 0.004035194, -0.039003618, -0.0011146449, -0.010832167, 0.010258968, 0.012017648, -0.020192254, 0.03142175, -0.024100432, 0.00063833577, 0.008584965, -0.013365969, -0.005269527, 0.007099857, 0.008995323, -0.0071454523, -0.034261696, -0.013392024, 0.0059697423, -0.008155065, 0.0025142613, 0.021950934, 0.001418343, -0.021156272, 0.030926717, -0.0038007032, 0.011652885, 0.03642422, -0.01264947, 0.016114721, 0.01573693, -0.011731048, 0.0015307032, -0.0024426114, -0.0029457894, -0.035668638, -0.019124018, 0.013991278, 0.022836788, -0.011359771, -0.003631349, 0.03647633, -0.023983186, -0.0053639747, -0.01702663, -0.014590532, 0.028946573, -0.01309891, 0.033219516, 0.0017049427, 0.038065657, 0.01067584, -0.014890159, 0.004439039, 0.016062612, 0.022980088, 0.0097118225, -0.017104793, 0.032646313, -0.011796185, -0.033610333, 0.012994693, -0.015163731, 0.011574721, 0.01243452, 0.015398222, 0.011906916, 0.0018612698, 0.013326888, -0.022719542, -0.0299627, 0.0069109616, -0.0045758253, 0.004015653, -0.005885065, 0.021534061, -0.0054877335, -0.011418394, -0.00052475434, 0.010324104, 0.033089243, -0.0052630133, 0.023566315, -0.02182066, -0.019840518, -0.028321264, 0.026810102, -0.003276356, 0.0142127415, -0.02058307, 0.011255553, 0.011092712, 0.01229122, 0.0074971886, -0.016557649, 0.0069500436, -0.039055727, 0.017078739, -0.012134893, -0.021260489, -0.003380574, 0.007151966, -0.012708093, 0.0016235224, -0.03001481, 0.016674893, -0.008422124, 0.018759254, -0.010486945, 0.013085883, -0.0137958685, 0.0042696847, 0.027695956, 0.0029490462, -0.011587748, -0.0013882174, 0.022237534, 0.018863473, -0.019345483, -0.0015771127, -0.022458997, 0.033558223, -0.012284706, -0.006963071, -0.011372798, -0.017091766, 0.0039733145, 0.029493717, 0.029207118, 0.011190417, -0.017651938, 0.0093731135, -0.029780317, 0.0011130166, -0.004650732, -0.021612225, 0.0055821813, -0.010135208, -0.026419284, 0.025207749, 0.017625883, -0.040097907, -0.0050285226, -0.00438693, 0.008930187, -0.036450274, 0.019189155, 0.018850446, -0.026223876, -0.010623731, 0.0063898712, -0.1631013, 0.02063518, 0.017651938, -0.007881492, 0.0053118654, -0.015424277, 0.020713344, -0.01329432, -0.026784047, 0.017222038, 0.029806372, 0.003979828, -0.014199714, -0.028633919, 0.014369069, 0.0068197707, -0.0077381926, 0.020478854, 0.0010535797, 0.00089399575, 0.035642587, -0.036085512, -0.011639858, 0.016583703, 0.015294004, -0.034939114, 0.016518567, 0.023787778, -0.005315122, -0.030457735, -0.00071527803, 0.0027617794, 0.03228155, -0.0016577189, 0.03590313, -0.008239742, -0.026419284, 0.000527197, -0.027148811, 0.017886428, 0.0034294263, 0.007888006, 0.038769126, -0.009164678, 0.0013955453, 0.018225137, -0.01031759, 0.0033252083, -0.00080443337, -0.024621522, 0.015307032, -0.0006794531, 0.0058036447, -0.0002393759, 0.06841917, 0.008005251, 0.0035173604, -0.011340231, 0.019150073, 0.0013841464, -0.022914952, -0.0066829845, 0.012128379, -0.009151651, -0.017469557, -0.024790877, 0.0048168297, 0.012089298, -0.046455212, 0.0044846344, 0.020035926, 0.043094177, -0.024986286, -0.0014851077, 0.020387663, 0.025559485, -0.009829069, 0.022458997, 0.022524133, -0.016049584, 0.013587433, 0.033558223, -0.0020029412, 0.003163996, 0.0050154952, 0.0067025255, -0.03548626, 0.0034326832, 0.008728265, -0.02434795, -0.0032340174, -0.03637211, 0.0019687447, -0.002737353, 0.024517305, 0.0009851865, 0.0029050792, 0.009451278, 0.0053248927, -0.009151651, 0.0067220666, -0.017469557, -0.021612225, 0.017443502, 0.03134359, 0.005816672, -0.0044781207, 0.035877075, 0.016297104, 0.011711507, -0.016674893, 0.0296761, -0.0027617794, 0.028451538, 0.010649785, 0.007132425, -0.022927979, -0.030171135, 0.014851077, 0.005386772, 0.011815725, -0.014733831, -0.02359237, 0.0048493976, -0.0019475755, -0.03142175, -0.09014864, -0.017795239, 0.021234434, 0.011919944, -0.002361191, 0.022289643, 0.0011610546, 0.025494348, -0.008500287, 0.010206859, -0.00680023, -0.01426485, 0.009946314, 0.010421809, 0.025807003, -0.010096127, 0.017756157, -0.021534061, -0.03991553, 0.029858481, 0.009229814, -0.012805797, 0.014460259, 0.004285969, -0.019137045, -0.029988755, -0.022719542, 0.0026901292, 0.014811995, 0.008089929, -0.0023416502, 0.008493774, 0.016036557, 0.0067220666, -0.031369645, 0.016818194, -0.046350993, 0.0016837735, 0.013509269, -0.01469475, 0.0131575335, 0.0027780633, -0.023045223, -0.0285297, -0.026367174, -0.0010340388, -0.009822555, 0.004087303, 0.021664334, 0.0050154952, 0.0032291322, -0.011457476, -0.019124018, -0.004084046, -2.5596531E-05, -0.013470188, 0.009601091, 0.016727002, 0.0052141612, 0.011216471, -0.015437304, 0.007236643, -0.003471765, 0.03248999, 0.0009876292, -0.0053672316, 0.00022227764, -0.004787518, 0.02991059, 0.008311392, -0.008571938, 0.006709039, -0.013665596, 0.014877131, -0.015919313, 0.0062270304, -0.028764192, -0.003595524, 0.0075688385, 0.008044333, -0.014343014, -0.012336816, 0.03376666, -0.040827435, 0.020491881, 0.04650732, -0.001466381, -0.0010055416, 0.007099857, -0.013339914, 0.019202182, 0.018889528, 0.030978825, -0.019358508, -0.011047117, 0.0049829273, 0.005819929, 0.0030223245, -0.019436672, 0.012428006, -0.023605397, -0.011392339, -0.07305688, 0.028607864, 0.005070861, -0.016284076, -0.010200345, 0.005725481, 0.014447232, -0.033401895, 0.012603874, -0.0009241213, -0.016583703, 0.0037811624, 0.011138308, 0.009575036, -0.014199714, -0.0024230704, -0.0032047061, -0.012903501, 0.038925454, -0.00453023, -0.009946314, -0.014082469, -0.008982296, -0.0021315855, -0.022576243, -0.0055040177, -0.0114835305, 0.007959656, 0.00906046, -0.023136415, 0.0005626148, -0.017391393, 0.028269155, 0.041973833, -0.014603559, -0.029441608, 0.014238796, -0.0062856534, 7.3888994E-05, -0.01220003, -0.018472655, -0.0072561842, 0.009470819, -0.019423645, -0.016479485, -0.0017668222, 0.0024784363, -0.005458422, 0.026262958, 0.030509844, 0.016727002, 0.018655038, 0.0034750218, -0.026184794, -0.0042501437, -0.029363446, 0.030561954, -0.0013833322, -0.0024360977, -0.017104793, 0.032073114, -0.0044553233, 0.0066178483, -0.021039026, 0.0068197707, -0.00782287, -0.02129957, 0.00014075548, -0.005819929, -0.000902952, -0.014759886, -0.013418078, 0.030171135, 0.014772913, -0.013378996, 0.014629614, 0.017300202, 0.003012554, -0.035251766, 0.0023302513, -0.0065396847, 0.0065136305, -0.02782623, 0.006507117, -0.0058980924, 0.0043641324, -0.01426485, 0.0072301296, -0.019957764, 0.011509584, -0.010916844, 0.0015437304, -0.03095277, -0.0032258753, 0.0184466, 0.0012270052, 0.0012017648, -0.021833688, 0.018303301, 0.008812942, -0.008604506, 0.007347375, -0.009666228, -0.024100432, -0.011737562, -0.010213372, -0.018628983, -0.01272112, -0.0083374465, 0.015411249, 0.01200462, 0.0068849074, -0.010135208, 0.0065689962, 0.0076404884, -0.025311967, -0.011099226, -0.046377048, -0.012786256, 0.03733613, 0.03142175, 0.02201607, 0.018889528, -0.005477963, -0.0068458254, -0.0060707033, -0.0012481743, -0.010141722, -0.0025956817, 0.014069442, 0.0021364707, -0.016140776, -0.0038853805, 0.00387561, -0.011021063, 0.005657088, -0.017078739, 0.044865884, -0.0027943475, 0.06643903, 0.025455266, -0.041635126, -0.011731048, 0.0064940895, 0.029988755, 0.032411825, 0.00863056, -0.0012579449, -0.019840518, 0.00906046, -0.010258968, 0.010141722, 0.01792551, -0.008181119, -0.003927719, 0.014903186, 0.022758624, -0.034365915, -0.02192488, 0.03780511, -0.020739399, 0.018133948, -0.014681723, -0.020374635, 0.018863473, 0.0073734294, 0.015280977, -0.017039657, -0.016349211, -0.003895151, -0.005285811, -0.015059513, 0.0030060404, -0.0037616214, 0.0037941895, -0.008532856, 0.0010495087, -0.0075818654, 0.018303301, 0.026028467, 0.0017733359, -0.010780058, -0.013216156, 0.016192885, 0.001186295, -0.00087445485, -0.010643272, -0.008819455]
+ },
+ {
+ "Id": 23,
+ "Type": "Climbing",
+ "Brand": "Zephyr",
+ "Name": "Summit Pro Climbing Harness",
+ "Description": "The Zephyr Summit Pro Climbing Harness is designed for professional climbers who demand the utmost in reliability and performance. Available in a striking orange color, this harness features 30kN rated webbing, speed-adjust buckles, and multiple gear loops for easy organization. With its lightweight design, the Summit Pro Harness offers unmatched comfort and freedom of movement. Reach new heights of confidence with the Zephyr Summit Pro Climbing Harness.",
+ "Price": 189.99,
+ "Embedding": [0.0049230065, -0.020381315, -0.003963409, -0.04481727, 0.0041999295, 0.044438835, -0.018543214, -0.013893894, 0.021949109, -0.051466875, 0.015988791, 0.0068354444, 0.009602735, -0.0070347977, -0.022435665, -0.008981024, 0.023652056, -0.015961759, -0.032112736, 0.0010550506, -0.003373797, 0.0009688896, 0.0041762777, -0.017070027, -0.0040445016, -0.0043283263, 0.037681106, 0.0013169127, 0.02459814, -0.009176998, 0.023719635, 0.0057102824, 0.0011572613, -0.0024260252, -0.018745944, 0.0040580174, -0.0037944657, -0.01771877, 0.010048745, -0.0036187647, 0.023422293, -0.023354717, -0.019610934, 0.002682819, -0.009386488, -0.010886704, -0.02021913, -0.01935414, -0.016096914, -0.0015585016, -0.020394832, -0.001247646, -0.017232213, 0.008271462, 0.006345509, -0.027328262, -0.0040749116, 0.012819415, 0.013164059, -0.019516326, -0.011109709, 0.0075686583, -0.0055818856, -0.00016788737, 0.017516037, -0.03516723, -0.01069073, -0.015515749, -0.0024226464, 0.01804314, 0.0392489, 0.019502811, 0.022084264, 0.0108394, 0.009866287, 0.0025088075, -0.011380019, 0.0013642169, -0.0028365573, -0.0095892195, 0.03243711, -0.019556873, -0.005946803, -7.058661E-05, 0.025463128, -0.012718049, 0.005693388, 0.0023195911, -0.01223825, -0.024841418, 0.010859673, 0.0073861997, 0.017502522, 0.013961472, -0.026152417, 0.0028754144, 0.012988358, -0.0065313466, 0.0054974137, -0.011359745, 0.0032791889, -0.009325668, 0.014515606, -0.008548529, -0.026868736, -0.032410078, -0.005666357, 0.0052000736, 0.016691595, -0.01732682, -0.012116611, 0.021651769, 0.0032977725, -0.039924674, 0.007825452, -0.017610647, 0.03284257, 0.027706696, -0.01652941, -0.024219707, 0.005274409, 0.003814739, 0.022489727, -0.01813775, 0.019043285, 0.010190657, -0.037383765, -0.016718626, 0.042060114, 0.0025104969, 0.010859673, 0.021922078, 0.02007046, -0.00081092765, 0.0081430655, 0.04776364, 0.021651769, -0.014258811, -0.016353708, -0.0006723942, 0.014393967, 0.0088864155, -0.014245296, 0.00050429563, -0.0011023548, 0.014083111, -0.006774625, 0.0070753437, 0.008798565, -0.009663555, 0.01206255, -0.010663699, 0.047898795, 0.022368088, -0.0069874935, 0.0024682612, 0.014407482, 0.03078822, -0.031788364, -0.0038181178, -0.00011678203, -0.0019664995, -0.019489296, -0.018475635, 0.011413807, 0.01524544, 0.014299358, -0.013677646, 0.00033788654, -0.013380307, -0.001569483, 0.025814531, -0.0023381747, -0.00081177236, 0.03368053, 0.025179304, -0.0084944675, 0.0074875653, 0.010920493, -0.006717184, 0.009731133, -0.0038992106, 0.023597995, 0.03243711, -0.022165356, 0.00020199279, 0.021340914, 0.0018854068, 0.015907697, -0.010670457, 0.0076362356, 0.015745513, -0.0015416073, 0.0032437106, -0.64052474, -0.014448028, -0.012184189, -0.0123125855, 0.01369792, 0.0031186927, 0.02992323, -0.0062542795, -0.032058675, 0.036005188, 0.0060278955, 0.026422726, -0.010197416, -0.028869025, -0.0016387496, -0.012542348, -0.022692459, -0.006071821, -0.00053428306, -0.017759316, -0.027355293, -0.0024496773, -0.010285266, 0.017056512, -0.0014343283, -0.010677215, 0.0033433873, -0.017178152, 0.004493891, 0.014772399, -0.026247026, 0.025746953, -0.0015838431, 0.007865998, 0.04719599, -0.032626323, 0.0030139477, 0.03546457, 0.008798565, 0.043519784, -0.019043285, 0.0007838968, 0.0153670795, -0.005517687, -0.0069537046, 0.013353276, 0.029761046, -0.00589612, 0.027057953, -0.019394686, 0.022341058, -0.016542925, 0.018827038, 0.0008227537, -0.016637532, -0.013049178, 0.036464714, -0.010731276, -0.0032893254, -0.0062035965, -0.020746233, 0.005487277, -0.013082966, -0.03805954, -0.021165213, 0.012886993, -0.015488719, -0.009521643, -0.006629334, -0.0034312378, 0.02009749, 0.011265137, 0.002295939, 0.027084984, 0.009846013, 0.022341058, 0.008825596, 0.007001009, 0.00018837173, 0.005821785, 0.008474194, 0.00967707, -0.0010440694, -0.005750829, 0.009656797, 0.0020104249, -0.009704101, -0.011339472, 0.028301375, 0.013893894, 0.026030779, 0.015569812, -0.013988502, -0.012846446, -0.021949109, 0.025287427, -0.018556729, -0.0047270325, 0.014326389, -0.021840986, -0.004186414, -0.029004179, -0.042952135, -0.022408634, 0.033842716, 0.011826028, 0.0022469454, -0.011663843, 0.044114467, -0.016542925, -0.026395695, -0.009433792, -0.032896634, -0.03519426, -0.006291447, -0.024462985, 0.033221003, 0.0027199865, 0.027922943, -0.042168237, 0.008440405, -0.009345941, 0.0089472355, 0.022922222, -0.012697776, 0.021949109, 0.021908563, -0.019516326, -0.0025899003, -0.020975996, 0.02326011, -0.010846158, 0.006598924, 0.010940766, 0.010325813, 0.015164347, 0.008433647, 0.0027774272, 0.02680116, -0.023922367, -0.026165932, -0.0049500377, 0.0044634813, -0.006696911, -0.013069451, -0.043573845, -0.036653932, -0.017894471, 0.009616251, -0.0030173268, -0.00512236, -0.02063811, 0.0037066152, -0.0032301953, 0.022368088, -0.015502234, 0.0039262413, -0.017907986, -0.00717671, -0.024719778, 0.01861079, 0.0077443593, -0.018448604, -0.0017891092, -0.0070347977, -0.0023010073, 0.022814099, 0.0045716045, -0.01700245, -0.046087723, 0.004385767, -0.0055075507, -0.019705543, 0.01143408, 0.0040276074, -0.009893318, -0.013299214, -0.025868593, -0.0032589156, 0.0036728266, 0.0119206365, 0.0075619007, -0.031247746, -0.004939901, 0.024760325, 0.0023922366, 0.01265723, 0.035086136, -0.0050007207, 0.0065381043, -0.016353708, 0.026652489, 0.013684404, 0.030031355, -0.016205039, -0.019151408, 0.0010271751, 0.0077646323, 0.00015975698, 0.025922654, 0.012576137, -0.01658347, 0.020719202, 0.0005604693, 0.02093545, 0.0003444331, 0.012440982, 0.008832354, 0.00923106, 0.0020475923, -0.009481096, -0.00443645, -0.010521786, -0.021908563, 0.007987638, 0.01848915, 0.031761333, 0.038843434, -0.018232357, -0.012278796, 0.0062035965, -0.009683828, 0.027017407, -0.011346229, -0.013596554, 0.018962191, 0.008352555, 0.035897065, 0.005345365, 0.0024057522, 0.021732861, 0.011211075, 0.009616251, 0.0010195726, 0.02212481, 0.02215184, -0.0045783627, -0.03392381, 0.04341166, -0.003584976, 0.020111006, -0.006169808, 0.018502666, -0.010927251, 0.032869603, 0.023422293, 0.024435954, -0.003010569, 0.007960606, 0.00545011, -0.011927394, 0.017191667, -0.012603167, 0.026422726, 0.015029193, -0.00043038296, 0.017218698, 0.008467437, 0.010001441, 0.017083542, -0.0034836102, -0.0012670745, 0.024422439, 0.0010694108, 0.0347888, -0.021489583, -0.01804314, -0.0029683332, -0.001173311, -0.036005188, 0.015191378, -0.0052710297, -0.0071294056, -0.0010989759, 0.019840697, -0.015934728, 0.008622864, 0.023854788, -0.0061089885, 0.03341022, -0.027422871, -0.030707128, -0.001604961, 0.030869313, -0.011697631, -0.029788077, -0.018367512, 0.035383478, -0.012731564, 0.057251494, -0.0073929573, 0.00929188, -0.019962337, -0.002081381, 0.0076159625, -0.005436594, 0.002893998, -0.016664563, 0.0031761334, -0.017664708, -0.014312874, 0.0096703125, -0.0173944, -0.01771877, 0.039951704, 0.0073388955, -0.026963346, -0.03570785, 0.015569812, -0.005737313, 0.021327399, -0.026341634, 0.008386344, -0.008116035, 2.573745E-05, -0.01819181, -0.0049331435, -0.020894904, 0.01521841, -0.012420709, -0.011440838, 0.0058657103, -0.010129838, 0.012082823, 0.0773625, 0.0051054657, -0.006152914, 0.016921358, 0.006396192, -0.019881243, -0.004595257, -0.03630253, 0.010636668, 0.027409356, 0.0038485276, -0.011461111, -0.008399859, -0.0053048185, 0.0012941054, -0.005838679, -0.0020222508, -0.01786744, 0.0010119701, 0.0055278237, 0.008102519, 0.011826028, 0.024530562, 0.009508127, -0.006206976, 0.028274344, 0.012697776, 0.026787644, 0.017029481, -0.006896264, 0.00088779686, -0.0075483853, 0.0095284, 0.005365638, -0.02244918, 0.0018178296, -0.033869747, -0.030869313, 0.027490448, 0.0033400084, 0.010582606, 0.025746953, 0.010325813, -0.01729979, 0.019367656, -0.0026895767, 0.00929188, 0.013414095, -0.004186414, -0.002638894, 0.012082823, 0.0065549985, -0.00946758, -0.032977726, -0.0010719451, 0.013015389, 0.0018837174, -0.005044646, -0.0017173083, -0.032734446, 0.0005233018, -0.020948965, 0.019881243, 0.00080712646, -0.01158275, 0.009447307, -0.0057035247, 0.014556152, -0.0067307, -0.013447884, -0.019246018, -0.009156725, -0.0045547104, 0.00028509175, 0.026192963, 0.020124521, -0.0010432247, -0.017367369, 0.047682546, 0.029706983, 0.0129816, 0.008764776, -0.0066867745, 0.0053555015, 0.0048790816, 0.007521354, -0.0001635582, -0.015448173, 0.025922654, 0.0004270041, 0.0012527143, 0.0018060035, 0.010569091, -0.000991697, -0.0014056079, -0.0047236537, 0.014758884, -0.003760677, 0.023422293, 0.003682963, 0.034113023, -0.011393534, -0.0050209938, 0.011170529, 0.028544653, 0.005385911, 0.014164204, 0.012609925, -0.0059569394, -0.008906689, 0.025895623, -0.0040208497, 0.010386632, 0.00732538, -0.006946947, 0.005487277, 0.00093763514, 0.021462552, 0.038221724, -0.032734446, 0.0004814883, -0.054737616, 0.038329847, 0.0065144524, 0.00030071902, 0.008041699, 0.000101629936, -0.024084551, -0.008501225, 0.009954137, -0.015583327, 0.018502666, 0.015867151, 0.006720563, -0.011021859, -0.015137317, -0.017664708, 0.008021426, -0.00032986174, -0.0021489584, 0.00033260704, 0.008001153, 0.023570964, -0.0007441951, -0.005017615, -0.016502379, -0.030517912, 0.008717473, -0.029815108, -0.0005089416, -0.019394686, -0.00028572528, -0.01566442, -0.01223825, 0.0026659248, -0.031274777, -0.011352987, -0.005649463, 0.031247746, 0.03159915, 0.01420475, -0.0092378175, 0.022030203, 0.019583903, -0.017583614, -0.0044533443, -0.013258668, -0.0031609284, -0.027598571, 0.023462841, 0.0054467306, -0.004770958, -0.005541339, 0.0016193212, 0.009940621, 0.0075619007, 0.0040512597, -0.009521643, -0.011298926, -0.0396003, -0.00670029, 0.00012290622, 0.002245256, -0.010501513, -0.035248324, -0.008251189, 0.045330856, 0.027017407, -0.009129694, -0.0052811666, 0.026152417, -0.021638254, 0.029004179, -0.0017097058, 0.0205435, -0.0018364133, 0.004439829, -0.025287427, 0.0025392172, 0.0075889314, -0.016961904, 0.004017471, 0.006720563, -0.005787996, -0.012427467, 0.01902977, -0.0008751261, -0.014812945, 0.03862719, -0.027868882, -0.004345221, -0.01581309, -0.0050074784, -0.02477384, 0.0071158903, 0.00446686, -0.009285122, 0.02415213, -0.005592022, 0.0040276074, 0.020529985, -0.0051088445, 0.012582894, -0.0039701667, 0.0034971256, 0.033248033, -0.005845437, -0.010602879, -0.043492753, -0.0075619007, 0.019367656, -0.004561468, 0.03778923, -0.00973789, 0.005750829, 0.0029413023, -0.0019310216, -0.006980736, -0.029409643, 0.0058826045, 0.014448028, 0.04103294, -0.002081381, -0.027679665, 0.020786779, 0.010055503, -0.0025932791, -0.0048250197, 0.015380595, -0.020557016, -0.0017772831, 0.032383043, -0.0241251, 0.0060042436, 0.013806043, -0.0034447531, -0.019719059, -0.0035917338, -0.012738322, -0.01405608, -0.0062576584, 0.025071181, 0.013664131, -0.016799718, -0.00014391854, -0.003385623, -0.023327686, 0.004818262, -0.009109421, 0.02200317, -0.011907121, -0.007001009, -0.018570244, -0.013360034, -0.0019242638, -0.021124667, -0.006852339, -0.007244287, 0.020759748, 0.0037032363, 0.025246881, 0.000793611, -0.0003463337, -0.01816478, 0.00051232043, 0.030085417, -0.027639119, -0.023719635, 0.006396192, -0.032977726, -0.038167663, 0.0012375094, 0.014461543, 0.0037944657, -0.011812513, -0.012880235, -0.010001441, 0.029058242, -0.03311288, 0.0041458677, 0.0107853385, 0.034491457, -0.0032741204, 0.0298962, 0.004243855, 0.0046189087, 0.01208958, -0.014029048, -0.037275642, -0.010656941, 0.01935414, 0.004412798, -0.005521066, -0.01890813, 0.006946947, -0.0004886684, 0.017583614, 0.006680017, -0.0149481, -0.0009874734, -0.001152193, -0.01875946, 0.047898795, -0.035626754, -0.0041999295, 0.005592022, -0.010143354, 0.0015365389, -0.02480087, -0.037059397, -0.017191667, -0.0064570117, -0.010008199, -0.036005188, 0.0043553575, -0.019137893, -0.010062261, 0.011758451, -0.0065820296, 0.0055548544, 0.003260605, 0.008244432, 0.0067104264, 0.014921069, -0.023503387, -0.03140993, 0.016596986, -0.0065381043, -0.02635515, -0.028355438, 0.0016201659, 0.043817125, -0.0045040273, -0.042141207, -0.015772544, 0.004240476, -0.050088298, 0.0005178111, -0.017624162, 0.019408202, 0.01229907, 0.013218121, 0.026598427, 0.018381028, 0.0369783, 0.01685378, -0.013528977, -0.039708424, 0.0063421302, -0.013806043, -0.0014267259, -0.021719346, -0.020678656, -0.02376018, 0.022111295, 0.018502666, 0.010569091, 0.020475924, -0.01521841, 0.011352987, -0.010704245, 0.00050640746, 0.04046529, 0.0044026617, 0.03457255, -0.03392381, -0.04738521, 0.0103731165, 0.021665284, 0.0017274449, 0.0145831825, 0.013501946, 0.004068154, 0.0033906912, -0.020205615, -0.03573488, -0.027895913, 0.007994396, -0.0104542095, -0.0006500092, 0.004868945, 0.018299935, 0.010616395, -0.036707994, -0.010379874, 0.031545088, -0.015096771, -0.009325668, 0.010582606, -0.013961472, 0.00029522835, -0.008244432, 0.021489583, -0.0063353726, -0.031923518, -0.012103096, -0.032085706, -0.028301375, 0.019367656, 0.025098212, -0.014299358, -0.03570785, 0.0006508539, -0.022705974, 0.023354717, 0.0033569026, -0.029706983, -0.028814964, 0.014529121, -0.019259533, -0.0126234405, -0.02296277, 0.00082402077, 0.013562765, 0.010440694, 0.04333057, 0.19959633, 0.02959886, -0.0007243442, 0.037383765, 0.0037471617, 0.0100825345, -0.0018144507, 0.004666213, 0.012069307, -0.0025037392, 0.017907986, -0.0014883901, -0.017407915, -0.00783221, 0.04311432, -0.008095761, -0.045574136, -0.00025721613, -0.03313991, 0.008379586, -0.0045479527, -0.018286418, 0.019043285, -0.004237097, -0.004142489, 0.00553796, -0.0017266002, -0.011893606, -0.005700146, 0.0153265335, -0.006754352, -0.020475924, 0.009967653, -0.025260396, -0.0015314707, -0.011886848, 0.0340049, 0.0045716045, 0.001128541, 0.010467725, -0.0051527694, 0.0067577306, 0.012650472, -0.023192532, 0.002331417, -0.0063319937, -0.0067408364, 0.008406617, -0.0040715327, 0.014285843, -0.02081381, -0.018664852, 0.028193252, 0.0040039555, 0.0039769243, -0.0257875, 0.013947956, -0.035086136, -0.0030207057, 0.015407626, -0.027179593, -0.008629622, 0.0028399362, 0.020746233, -0.010792096, 0.022692459, 0.0014199681, 0.0029581967, 0.0034498214, 0.012785627, -0.0030055007, 0.006747594, 0.0054028057, 0.017056512, -0.0074875653, -0.014083111, 0.03695127, -0.022462696, 0.019489296, -0.0022114674, 0.008751261, -0.006436738, 0.0084944675, -0.009447307, -0.00013061427, -0.004264128, 0.0257875, 0.010542059, 0.010386632, 0.0007509528, -0.0011800687, -0.0077105705, -0.004091806, -0.028382469, -0.034167085, 0.031707272, -0.025017118, 0.019016255, -0.002393926, 0.008480952, -0.003716752, 0.03078822, -0.002015493, 0.009393246, -0.016624017, 0.0015137317, 0.011292168, 0.0063928133, -0.0034971256, -0.0190568, -0.010832642, -0.022773553, 0.015042708, -0.0149481, -0.010717761, -0.0059299087, -0.0029886065, -0.007021282, 0.009629766, -0.015488719, 0.019408202, -0.03719455, 0.013170817, -0.0070956172, -0.016718626, -0.012265281, 0.0030916617, 0.034302242, 0.0007049158, -0.030409787, 0.008271462, 0.010677215, 0.02551719, -0.018340481, -0.01861079, -0.030815251, 0.0045716045, -0.03605925, -0.0017156189, 0.00088103913, -0.0014360178, -0.0053014397, 0.00043333948, 0.0272742, 0.006085336, -0.0028635883, 0.0111570135, 0.00025552668, -0.009028328, 0.002409131, 0.014123657, -0.008379586, -0.0019124377, -0.021327399, -0.0029075136, -0.023003316, -0.033004757, -0.0270985, -0.020340769, -0.015434656, -0.018448604, 0.020759748, 0.0046358034, -0.037545953, -0.017205182, 0.008629622, -0.17191666, 0.013657373, 0.030842282, -0.033842716, -0.006612439, 0.014110141, 0.0021489584, -0.003218369, -0.014002018, -0.005467004, 0.031247746, -0.03076119, -0.022435665, -0.030031355, 0.0036322803, -0.0024783977, -0.0107447915, 0.005940045, 0.036789086, 0.012954569, 0.008453921, -0.025206335, 0.0067036687, 0.013691162, 0.0134884305, 6.96891E-05, -0.0038316334, -0.0024192675, 0.026625458, -0.019759605, -0.008312008, -0.005845437, 0.032599293, 0.00967707, 0.0013963161, -0.0069537046, -0.012190946, 0.0031457236, -0.015650904, 0.05127766, 0.000640295, 0.016434802, 0.026328119, -0.007717328, 0.016772687, 0.01759713, 0.0077105705, 0.0035579451, 0.008899931, -0.0036018705, 0.010798854, -0.025030633, -0.009514885, -0.002780806, 0.0068151713, 0.003377176, 0.0028213526, -0.023949398, 0.018867584, 0.0043519787, 0.024976572, -0.023233078, 0.010264993, -0.006247522, -0.025449613, 0.0016505757, 0.012353132, 0.01974609, -0.02992323, 0.021219274, 0.006152914, 0.02170583, -0.010623152, -0.026895767, 0.021449037, 0.015515749, -0.015826605, 0.0064434963, 0.0067644883, -0.030734159, 0.0060346536, 0.02930152, -0.016732141, 0.003946515, -0.011373261, 0.018448604, 0.00085949886, -0.006612439, -0.0039904397, -0.019881243, 0.005642705, -0.022530274, -0.009352699, -0.027977005, -0.0035714607, 0.0031220715, 0.00279939, -0.02843653, -0.0052169682, -0.031950552, 0.009460823, 0.0062576584, -0.030409787, 0.02444947, 0.038762342, 0.016245585, 0.022530274, 0.010920493, 0.01340058, 0.0019884622, 0.0065887873, 0.00785924, 0.015988791, 0.017772831, -0.0017958669, 0.009764921, 0.017529553, -0.03516723, 0.00652121, -0.013150544, 0.027341777, -0.021651769, -0.027652634, -0.0018397921, -0.0203678, 0.013292456, -0.1024472, 0.010346086, 0.031923518, 0.02051647, -0.0007471516, -0.00027115393, -0.005575128, 0.0259632, -0.0009266538, 0.021773407, 0.0001323037, 0.00020832816, 0.011015101, 0.017042996, 0.026814675, -0.0008341574, 0.0088729, -0.032653354, -0.017543068, 0.024881965, 0.0050074784, -0.0033991386, -0.0229898, -0.014975131, -0.0061596716, -0.024679232, -0.02244918, 0.0060245167, 0.0153670795, -0.004990584, 0.008372828, -0.010339328, 0.025017118, 0.00046797283, -0.022435665, -0.012123369, -0.039843578, -0.0071429214, 0.027341777, -0.017624162, -0.008879658, 0.0033788653, 0.013096482, -0.02239512, -0.01578606, 0.0024260252, -0.017935017, -0.011907121, 0.0074672922, -0.017853925, -0.010650183, -0.008940478, -0.0024040628, -0.009048602, 0.008548529, -0.014704822, -0.006875991, 0.028166221, -0.01208958, 0.0077646323, -0.01727276, 0.008940478, -0.00010685661, 0.008839112, 0.016421285, 0.0055312025, -0.0029700226, 0.010298781, -0.0015677935, 0.0009688896, -0.02957183, 0.028328408, -0.019232502, 0.030815251, -0.018705398, 0.002936234, -0.040789664, -0.015934728, 0.00028847062, 0.0009933864, -0.013434368, -0.027071469, 0.03132884, -0.016988935, 0.0010972865, 0.023206048, 0.015569812, -0.029193396, 0.027166078, -0.023692604, 0.011211075, 0.019246018, 0.017962048, 0.006798277, -0.007068586, -0.014096626, 0.0031913384, -0.011488142, -0.034167085, -0.0019631207, -0.041789807, 0.0029024454, -0.07384848, 0.02180044, 0.010508271, -0.022908706, 0.0027943216, 0.0022503242, -0.003909347, -0.005575128, 0.023449326, -0.012434225, -0.009663555, 0.0073861997, -0.0006719718, -0.0065887873, 0.001753631, -0.009893318, 0.013062693, -0.0077646323, 0.051358752, 0.002718297, -0.017786346, -0.010055503, -0.024165645, 0.031139623, -0.026611943, -0.021219274, -0.011542204, 0.0049703107, 0.022854645, -0.0060920944, 0.030355725, -0.015677935, 0.0027909428, 0.03784329, -0.026098356, -0.03722158, 0.018745944, 0.013211363, 0.007365926, -0.020719202, -0.017151121, 0.0018330344, 0.0023162123, -0.0033670394, -0.021854501, -0.016921358, 0.011711147, 0.0067104264, 0.035653785, 0.0038079813, 0.016326677, -0.0064130863, 0.005662978, -0.0029666438, -0.010521786, -0.01578606, 0.013650616, -0.0069672205, 0.013319487, -0.043006197, 0.036491744, 0.007933576, 0.019894758, 0.011427322, 0.00473379, 0.006798277, -0.030544942, -0.0069672205, -0.010001441, 0.015421141, -0.012663987, -0.002170921, 0.01194091, -0.003162618, 0.0040985635, -0.0070888596, -0.0064266017, 0.028031066, -0.032626323, 0.008386344, -0.00619346, -0.0065617566, -0.038248755, -0.008109277, -0.009751406, -0.002873725, -0.015826605, 0.00562919, -0.00027284338, -0.0037809503, -0.009771679, 0.013657373, -0.008061972, -0.015867151, 0.010792096, 0.017705254, -0.011278653, -0.013366791, 0.011163771, 0.01819181, -0.008264705, -0.014042564, -0.008541771, -0.0014765641, -0.007447019, -0.010724518, 0.02212481, -0.017935017, -0.029950261, 0.004419556, 0.017097058, -0.023219563, 0.0018060035, 0.0019732574, -0.0031271398, -0.006382677, 0.00034992374, -0.018529698, -0.021097636, 0.009785194, 0.001661557, 0.015894182, -0.0047608213, 0.0021151698, 0.018800007, 0.019664995, -0.00670029, -0.0042539914, 0.016934874, 0.0011192492, 0.035599723, -0.0016776066, -0.0036593112, -0.01581309, -0.0008007911, -0.006750973, -0.013224878, 0.0017772831, 0.008393101, 0.06676638, 0.012900508, -0.028247314, 0.027612086, -0.007082102, 0.011386776, 0.02435486, 0.0010584296, -0.010460967, -0.03781626, 0.0069131586, -0.006348888, -0.004017471, 0.018110719, -0.020273192, -0.011278653, 0.0068320655, 0.0067948983, -0.031545088, -0.02563883, 0.056116194, -0.04511461, 0.01566442, -0.0018870963, -0.0053723957, -0.0016480415, 0.006473906, 0.029058242, 0.0038552852, -0.02242215, 0.0025037392, -0.0095284, -0.0042033084, -0.027341777, -0.015164347, 0.0130356625, -0.02096248, 0.0012721427, -0.0027199865, 0.018827038, -0.013772255, 0.020286707, -0.018340481, -0.01202876, 0.017853925, 0.00057314005, -0.01098807, -0.02009749, -0.021273335]
+ },
+ {
+ "Id": 24,
+ "Type": "Bags",
+ "Brand": "WildRunner",
+ "Name": "Ridgevent Stealth Hiking Backpack",
+ "Description": "The WildRunner Ridgevent Stealth Hiking Backpack is the ultimate companion for your outdoor adventures. With its stealthy red color, this backpack combines style with functionality. Made from durable nylon and featuring multiple compartments, this backpack offers ample storage space for all your essentials. Whether you're venturing into the mountains or exploring hidden trails, the Ridgevent Stealth Hiking Backpack has got you covered.",
+ "Price": 69.99,
+ "Embedding": [0.0009804401, -0.012674967, 0.004669725, 0.0025488073, 0.0015810017, 0.0067080967, -0.017587274, -0.07040301, 0.020147875, -0.015228828, -0.011179038, -0.005154891, -0.0035713625, -0.0038510067, -0.0051784753, -0.006344222, 0.025862055, -0.0010132899, 0.0031956956, -0.013463362, 0.003261395, 0.01803201, -0.015821809, -0.004855031, -0.004494526, -0.027021063, 0.035120644, -0.012782782, 0.042964164, -0.0155118415, 0.012095463, -0.0028890974, -0.008793637, -0.026212452, 0.0062094536, 0.0028941513, 0.0027357982, -0.012176325, 0.026603281, -0.0012204963, 0.022991488, 0.017775951, -0.002250632, 0.018624991, -0.0052458597, 0.006441929, -0.007499861, -0.01828807, -0.0036387467, 0.0048920927, 0.0022405246, 0.0025235382, -2.3742401E-05, 0.027223215, 0.008894714, 0.016994294, 0.00036808618, 0.014622371, 0.018611515, -0.026859341, -0.015565749, -0.0014832946, -0.033746004, 0.012762567, -0.0024915307, -0.024029205, -0.024406556, -0.0107006105, -0.0014773984, 0.046549004, 0.009090128, 0.00041230704, 0.013288164, 0.015282735, 0.0055153966, -0.014703232, -0.0017620968, 0.013429671, -0.0033035101, -0.012418907, 0.0052222754, -0.018018534, -0.019851385, 0.00053949474, 0.018988866, -0.0027526445, 0.004224989, 0.00950791, -0.02191334, -0.020700425, -0.011003839, -0.0065766973, 0.0049561076, 0.019918768, -0.023773145, -0.007061864, 0.0064452984, 0.007270755, 0.012742352, -0.017614229, 0.008146749, 0.0004040946, -0.0044540954, -0.008807114, -0.053583913, -0.007883951, 0.006886665, -0.0009905477, 0.03282958, 0.013449886, -0.02212897, 0.00046663557, 0.019393172, -0.021199068, 0.0039082835, -0.021899864, 0.02502649, 0.019056251, 0.0071898936, -0.031967063, 0.02029612, -0.005232383, 0.013544223, -0.007196632, 0.016441744, 0.03714217, -0.023503607, -0.011933741, 0.04021489, -0.020686949, 0.007654845, 0.00065067864, 0.02435265, -0.02758709, -0.011232945, 0.025390364, -0.0023466547, 0.0011135238, -0.019716615, -0.000718484, -0.0012735613, 0.018436316, -0.02673805, -0.012115679, -0.0046528787, 1.1647463E-06, 0.006617128, 0.007028172, 0.02865176, -0.0025504918, 0.022155924, -0.022829765, 0.015255782, -0.0025302765, -0.018449793, 0.0075402916, 0.0018817036, 0.0007572299, -0.021401221, 0.0077828746, -0.0048954617, 0.001757043, 0.008429763, -0.0029783815, 0.029568186, 0.027479276, 0.014554987, 0.0043260655, 0.001356107, 0.005390736, 0.004386711, 0.027048016, -0.02051175, 0.011408145, 0.008200657, -0.010222183, 0.0027492752, 0.010498458, -0.012607583, -0.012722136, -0.000854937, 0.01066018, -0.005764718, 0.017978104, -0.016940387, 0.0019423495, 0.016185684, -0.00086336, 0.010350212, -0.022937581, -0.006361068, 0.018908005, -0.010902763, 0.009575294, -0.66155106, -0.0102154445, -0.0007934489, -0.016859526, 0.0373578, 0.0079850275, 0.020700425, 0.01901582, -0.0051346757, 0.016603466, 0.014891908, 0.013214041, 0.0051144604, -0.034500707, -0.018112872, -0.03377296, 0.004784278, -0.014743662, 0.02311278, -0.0021074407, -0.04317979, 0.019608801, -0.030888915, -0.013052319, -0.010431074, 0.015404027, 0.016091347, -0.015363596, -0.00045189526, 0.012385216, -0.03180534, 0.020161351, -0.010498458, 0.022883672, 0.053098746, -0.053179607, 0.010498458, 0.06053796, 0.008005243, 0.01654956, 0.007371831, 0.0045416947, 0.00051085645, -0.0042182505, -0.008557793, 0.01919102, 0.037115216, -0.021441652, 0.00067931693, -0.02008049, 0.014999722, 0.0014335988, 0.007028172, -0.006667666, 0.024999537, -0.006633974, 0.034851108, 0.0155118415, 0.00520206, -0.0024460463, -0.025080398, 0.013988959, 0.013975482, -0.034096405, -0.031481896, 0.0249052, -0.030727193, -0.030080305, 0.007533553, -0.014245019, 0.0023651852, 0.033368655, 0.0063678063, 0.013975482, 0.01927188, 0.014959292, 0.010613011, 0.017668135, -0.0055625653, 0.031131499, 0.022694997, 0.0029649045, -0.011462051, -0.012472815, 0.025619471, -0.0006873188, 0.019757045, -0.0020956486, 0.02916388, 0.01923145, 0.0010031823, 0.032721765, -0.0020788026, -0.026428081, -0.02220983, 0.033153024, 0.0046933093, 0.020215258, 0.0010730933, -0.027479276, -0.010875809, 0.014932338, 0.009743755, -0.006462144, 0.008490409, 0.02029612, 0.010538888, -0.018867575, 0.011273376, -0.02260066, -0.012991673, -0.03517455, -0.016522605, -0.010484981, -0.007567245, -0.029136926, 0.013355548, -0.009534864, 0.017169492, -0.038651574, 0.017115586, 0.0017435661, 0.016333928, -0.0016728126, -0.00831521, 0.005505289, 0.019083204, -0.018557608, -0.016576512, -0.011569867, -0.01095667, -0.018058965, 0.024271788, -0.0066878814, 0.010228921, 0.0159431, 0.00050201226, -0.0074324766, 0.0045349565, -0.037492566, -0.024312219, 0.009912215, 0.007149463, -0.03493197, -0.016131777, -0.026899772, -0.02677848, -0.028624807, -0.030376796, -0.011111654, 0.020821717, -0.026603281, -0.0084028095, -0.015323166, 0.019069728, -0.030808054, 0.007614414, -0.026751526, -0.0054715965, -0.01487843, 0.01803201, 0.012951243, 0.0057714563, -0.010127844, -0.01684605, -0.01198091, -0.015565749, 0.018463269, -0.0042418353, -0.04843576, 0.00767506, -0.008638654, -0.015970055, 0.0045518023, -0.009245112, -0.01078821, -0.013948529, -0.028409177, 0.0025673378, 0.00857127, -0.009056436, 0.012924288, -0.021118207, 0.012129155, 0.019500986, 0.012957981, 0.0021428175, 0.036306605, 0.002954797, -0.0059163324, 0.00011171036, 0.00716294, 0.023827052, 0.007769398, -0.013348809, -0.025161259, 0.019878337, 0.029029112, 0.026508942, 0.021589896, 0.0067518963, -0.028516991, 0.0049561076, -0.02102387, 0.034015544, -0.015296212, -0.014918861, -0.00404979, 0.042802442, 0.0073179235, 0.0027694905, -0.022694997, -0.015215351, -0.018908005, -0.023624899, 0.012829951, -0.001556575, 0.038301177, -0.0024578385, -0.026913248, 0.010121106, -0.008180441, 0.003530932, -0.02835527, -0.014864953, 0.0037330845, -0.021199068, 0.01219654, 0.008759946, -0.027007585, 0.03150885, 0.020619564, 0.011953956, 0.0059365476, 0.03355733, -0.000359242, 0.0023854005, -0.01684605, 0.019204495, 0.0018143195, 0.023031918, 0.014811046, 0.0030474502, -0.011879833, 0.035497993, 0.02758709, 0.018180257, 0.0014875061, -0.004834816, 0.02226374, -0.0057411334, 0.009177728, -0.008166964, -0.007648106, 0.0056703803, -0.018867575, 0.025632948, 0.00473374, 0.021239499, 0.017465984, -0.010141321, -0.0002322649, 0.02435265, -0.012183063, 0.027317554, -0.021387745, -0.029298648, -0.010572581, -0.0040531596, -0.010262613, 0.033746004, -0.026576327, 0.0075268145, -0.017937673, 0.007082079, 0.0034871323, 0.01923145, 0.023139734, -0.013052319, 0.038894158, 0.0027863365, -0.023759667, 0.014083297, 0.0077828746, -0.007021433, -0.009615725, -0.006374545, 0.0024527847, 0.0033203564, 0.025942916, 0.014137205, 0.01168442, 0.008591485, -0.007978288, 0.009528126, 0.005481704, 0.025808146, -0.037627336, 0.02226374, -0.011192515, -0.014501079, 0.00093832496, -0.020093968, -0.023840528, 0.04145476, 0.0048718774, -0.013348809, -0.012776043, 0.008241087, 0.015430981, 0.004406926, 0.0013148341, 0.019797476, -0.021589896, -0.0064452984, 0.01031652, -0.0059163324, -0.017924197, 0.02638765, 0.009056436, -0.015929624, -0.020228736, -0.020875623, 0.004622556, 0.08069931, -0.008113057, -0.0056771184, 0.008106319, 0.0011067854, -0.049082648, -0.02908302, -0.018085917, 0.0073381388, -0.028732622, 0.015740948, -0.003884699, 0.008598223, -0.0038476377, 0.00046116058, 0.02072738, 0.003935237, -0.03202097, -0.020902578, -0.029002158, 0.0019204495, -0.0042957426, -0.007270755, 0.01530969, 0.02648199, 0.013079273, 0.012156109, 0.0011522698, 0.027816197, -0.0055794115, 0.0023483392, -0.0007711279, 0.004908939, -0.014433695, -0.021239499, -0.011940479, -0.019999629, -0.025134305, 0.011866357, 0.002068695, 0.032775674, 0.024271788, 0.016091347, 0.0076952754, -0.007661583, -0.008476932, -0.0056434264, 0.013537485, 0.006613759, -0.019433603, 0.018557608, 0.009918953, -0.012587368, -0.008436501, 0.0029682738, 0.014797569, 0.019676186, 0.008113057, -0.029891629, -0.03927151, -0.01838241, -0.008921668, 0.01901582, -0.013840714, -0.0015169868, -0.014811046, -0.011232945, 0.009245112, -0.012722136, -0.014918861, -0.035929255, -0.001244923, -0.017546844, -0.00023900332, 0.02250632, 0.00481797, 0.013948529, -0.00639476, 0.016037438, 0.021387745, 0.012250447, -0.010801687, 0.012809736, -0.008254564, 0.0008039777, -0.012041556, -0.0091709895, -0.0021343944, 0.0070416485, 0.013935052, 0.010889286, -0.0028806743, 0.03851681, -0.007466169, -0.006344222, 0.010127844, 0.014649324, 0.0058186254, 0.025605995, -0.004878616, 0.027128877, -0.0018985497, -0.010869071, -0.0014428641, 0.031616665, 0.011152084, -0.0027610674, 0.0042654197, 0.0087532075, 0.014433695, 0.027438845, -0.026293313, -0.00043799728, -0.0002106809, -0.026913248, 0.03304521, 0.009925692, -0.016037438, 0.019770524, -0.014177635, -0.012742352, -0.026212452, 0.019595325, 0.01040412, -0.0040700054, 0.015848763, 0.019393172, -0.009063174, -0.017573798, 0.01351727, -0.001564998, 0.040619195, -0.01718297, -0.0029682738, -0.026926724, -0.022775859, -0.020323073, 0.0036117928, 0.0022607397, -0.013449886, -0.017789427, -0.00017319844, 0.00086672924, 0.023139734, -0.013483577, -0.016913433, -0.041859064, -0.009325973, -0.033018257, 0.039082833, -0.012459338, 0.014191112, -0.011940479, 0.003888068, -0.00831521, -0.037546474, -0.024379602, -0.0029008896, 0.0057310257, -0.0010267667, -0.015255782, -0.014177635, 0.012600845, 0.0010469819, -0.008153488, 0.002971643, -0.022182878, -0.009224896, -0.036603097, 0.011360976, 0.019379694, -0.00069995335, 0.012425646, -0.0013266264, 0.011482267, 0.01053215, 0.00554235, -0.020093968, -0.009406834, -0.04711503, -0.014770616, -0.03121236, 0.00039398696, -0.0073179235, -0.03231746, -0.020525226, 0.027519705, 0.0062060845, 0.005090876, 0.025511656, 0.020013107, -0.031562757, 0.00682265, 0.012129155, 0.017075155, -0.003884699, -0.0014984561, -0.025174735, -0.020242212, 0.03347647, -0.003116519, -0.009440525, 0.010990363, -0.0044271415, -0.020983439, 0.01714254, -0.016536081, -0.009016005, 0.014824524, -0.008665607, -0.012317831, -0.0063509606, -0.014042866, -0.018773237, 0.0046191867, -0.008766684, -0.009528126, 0.014743662, -0.02865176, 0.00464614, -0.018827144, 0.0063509606, 0.020579133, -0.0063307453, 0.0008726253, 0.019325787, -0.023692284, -0.013908098, -0.007230324, 0.0059971935, -0.0046865707, 0.007769398, -0.005010015, -0.01927188, -0.024703046, 0.022681521, -0.0031940108, -0.010889286, -0.027870104, 0.024703046, 0.029433416, 0.03134713, -0.012695182, -0.025403842, -0.008301733, 0.020242212, -0.016724758, 0.011179038, -0.017708566, -0.015336643, -0.014420218, 0.01278952, -0.011576605, 0.008268041, 0.009184466, -0.014150681, 0.008517362, -0.0024713154, 0.017519891, -0.011226207, 0.006731681, 0.033746004, -0.001136266, -0.0100739375, 0.02037698, 0.0040026214, 0.011751804, 0.01952794, -0.009501171, 0.022250261, -0.009770708, -0.0065126824, -0.010040245, -0.007304447, 0.013571177, 0.011657466, -0.006637343, 0.011111654, 0.033449516, -0.015835285, 0.0093798805, -0.014716708, -0.0073381388, -0.011900049, 0.0010688818, 0.0062667304, -0.028975204, -0.029487325, -0.013678992, -0.027061492, -0.020067014, -0.005239121, 0.0054850737, 0.010882548, -0.011199254, -0.020430889, -0.012129155, 0.02400225, -0.049540862, -0.00016382783, 0.010100891, 0.03040375, -0.015565749, 0.03436594, 0.009811139, -0.021347314, 0.01291755, -0.019514464, -0.02451437, -0.025336457, -0.023624899, -0.010801687, 0.00085535814, -0.012708659, 0.0081939185, 0.0058523174, 0.012823213, 0.004413665, -0.024783907, 0.009177728, 0.0015666826, -0.0035208242, 0.036306605, -0.019204495, -0.0015548903, -0.013160134, 0.006428452, 0.006037624, 0.01031652, -0.02549818, -0.0043260655, -0.006637343, 0.016320452, -0.021495558, 0.020282643, -0.007830043, -0.013011889, -0.012257185, 0.013550961, 0.0059399167, 0.024932152, 0.020174827, 0.0010756202, 0.015026676, -0.02396182, 0.0025993453, 0.028786529, -0.013921575, 0.0019238188, -0.018315025, 0.006586805, 0.05530895, 0.017587274, -0.007445954, -0.0016997664, 0.005040338, -0.02843613, -0.0043294346, 0.012075248, 0.010572581, 0.017519891, 0.023827052, 0.0039386065, 0.046117745, 0.011900049, 0.014838, 0.02183248, -0.0070079565, -0.0075739836, 0.00074922806, -0.0077154906, -0.017425554, -0.021684235, -0.010855594, 0.018948436, 0.0072505395, 0.010377166, 0.006987741, -0.03167057, -0.017156016, -0.013126441, 0.010451289, 0.03657614, 0.020363504, 0.014838, -0.036306605, -0.02136079, 0.002144502, 0.019177543, 0.010983624, 0.006485729, 0.006441929, 0.023274502, 0.0026700988, -0.022196354, -0.027950965, -6.6963046E-05, -0.005394105, 0.014177635, -0.0036488543, -0.023880959, 0.016738234, 0.019999629, -0.025484703, 0.008793637, 0.015201875, -0.0003739823, -0.026064208, -0.00605447, -0.018341979, 0.0014378102, -0.0025892376, 0.02396182, 0.009662894, -0.00069742644, 0.012614322, 0.006644082, -0.019999629, 0.0087532075, -0.0045147412, -0.021172114, 0.014487602, -0.0016146938, 0.0058826404, 0.02285672, -0.004881985, -0.0078098285, -0.005768087, 0.01513449, -0.012931027, -0.022951057, -0.019757045, 0.018449793, -0.035659716, -0.021455128, 0.020943008, 0.18943045, 0.019581847, 0.016239591, 0.01974357, 0.016280022, 0.011617036, 0.014393264, -0.010815163, 0.01262106, -0.00093327113, 0.007816567, 0.0012701921, 0.0060275164, -0.0075065996, 0.011772019, -0.021562943, -0.04118522, 0.0033405714, -0.032856535, 0.0041306512, 0.013840714, 0.0046360325, 0.021670757, -0.012580629, -0.0042721583, -0.006118485, 0.002063641, 0.0027425368, -0.0016121669, 0.007998504, -0.008854283, -0.017412076, 0.0051414142, -0.0008587274, -0.0065093134, 0.009696586, 0.02792401, 0.019325787, -0.012823213, 0.016873002, -0.0058725327, 0.025889007, 0.028624807, 0.0108421175, -0.016185684, -0.0018564346, -0.02063304, 0.018988866, -6.148808E-05, -0.006502575, -0.019029297, -0.0063004224, 0.011226207, 0.010458027, -0.010323259, -0.006869819, 0.033665143, -0.0061723925, -0.007419, 0.018058965, -0.027573613, 0.012594107, -0.015040153, 0.013267948, -0.010943193, 0.031320173, -0.016347406, 0.009090128, -3.3402557E-05, -0.0003550305, 0.016360883, 0.007237063, 0.004622556, 0.021266453, -0.018705852, -0.015013199, -0.013503793, 0.003790361, -0.0058253636, 0.023261024, 0.006516052, -0.00729097, 0.010437812, -0.013665515, -0.010518673, -0.022182878, -0.004791016, 0.009460741, -0.003155265, -0.0026970524, 0.019298833, -0.0071090325, 0.009993076, -0.017587274, -0.006361068, 0.024770431, -0.004315958, 0.02502649, -0.009723539, 0.018490223, -0.027101923, 0.0071359864, -0.038112503, -0.009790923, -0.028948251, 0.017277308, -0.006933834, 0.033153024, -0.0146762775, -0.015848763, -0.004524849, -0.04110436, -0.0065901745, -0.008557793, 0.0018530654, -0.0021815633, -0.006856342, -0.0038577453, -0.0034568093, -0.009878523, 0.022978012, -0.018315025, 0.024770431, -0.00933945, 0.0023988774, 7.733389E-05, 0.021333836, 0.014797569, 0.018692376, -0.02127993, -0.0034315402, 0.018368931, 0.02784315, -0.020363504, 0.0076009375, 0.0042148815, -0.007028172, -0.009063174, 0.013315117, 0.006131962, -0.006169023, 0.0037836225, 0.0282205, 0.023759667, 0.05487769, -0.025808146, 0.009676371, -0.011475529, -0.008463455, 0.0068361266, 0.0012306039, 0.0010495088, -0.01901582, -0.015552272, -0.0062970533, -0.025552087, -0.050079934, -0.016859526, 0.005094245, 0.007061864, -0.009393357, 0.0183285, 0.016738234, -0.0046966784, -0.008113057, 0.010350212, -0.17239572, 0.019406648, 0.017007772, -0.037573427, 0.01027609, 0.012075248, 0.011199254, -0.0065969126, -0.022951057, 0.010087414, 0.018705852, 0.0059635015, -0.035282366, -0.003372579, -0.0050504454, 0.01919102, 0.012439122, 0.030808054, 0.007883951, -0.005299767, 0.02946037, 0.0036993923, 0.002907628, -0.00805915, 0.0052862903, -0.022654567, 0.012742352, 0.013746376, -0.012344785, -0.0035410395, 0.011839403, -0.021145161, 0.02498606, -0.014986245, 0.02451437, -0.038112503, 0.016899956, 0.012425646, -0.0071562016, 0.029487325, 0.0033304638, 0.007681798, 0.029999444, 0.0088879755, 0.014528032, 0.025188213, -0.012055033, 0.005033599, -0.00473374, -0.01765466, 0.012715397, 0.004962846, -0.0161183, -0.0052290135, 0.028840436, -0.00028743572, 0.006472252, 0.011873095, 0.017910719, -0.0021495558, -0.008537577, -0.02528255, 0.0077626593, 0.0037970995, -0.030349841, 0.0041474975, 0.00562658, 0.019689662, -0.021387745, 0.015579226, -0.019325787, -0.019366218, -0.026455035, -0.0034163787, 0.0025707071, 0.021980725, 0.0071225096, 0.0067822193, -0.0040531596, -0.001091624, 0.0021731404, 0.029406464, -0.026172021, 0.00767506, 0.01066018, 0.0040969593, -0.003989144, 0.00046116058, 0.014460648, -0.016899956, -0.0161183, -0.042829394, 0.009501171, -0.021091253, 0.029891629, -0.0011118392, 0.029999444, -0.01185288, -0.0068597114, -0.012311093, 0.005124568, -0.010815163, -0.005720918, 0.014433695, 0.01377333, 0.005569304, 0.0073314006, 0.010464766, 0.03657614, -0.006162285, -0.007789613, 0.011320545, 0.0014487602, 0.011017316, -0.02047132, 0.017263832, 0.005266075, -0.05401517, 0.009117082, -0.031778388, 0.015713995, -0.012459338, -0.010801687, 0.010545626, -8.665187E-05, -0.019703139, -0.0937449, -0.009224896, 0.012594107, -0.0012019656, -0.009177728, 0.02664371, -0.015552272, 0.018773237, 0.016738234, 0.012486291, 0.015700517, 0.009952646, -0.012001125, 0.024204403, -0.0029918584, -0.005801779, 0.0336921, -0.026697619, -0.024635661, 0.019878337, -0.02464914, -0.014164158, -0.008766684, -0.020848671, -0.0035376702, -0.009683109, -0.022991488, 0.0034079556, 0.030942824, 0.0072033703, 0.023085825, 0.014972769, 0.014635847, -0.0106332265, -0.0073179235, -0.0025184844, -0.041131314, 0.00082924677, 0.004656248, -0.032937396, -0.0042654197, 4.156236E-05, 0.01458194, -0.026212452, -0.012513245, -0.002993543, -0.01986486, 0.0059062247, -0.004460834, -0.0050133844, 0.012290877, -0.035929255, 0.014851477, -0.01893496, 0.0054210587, -0.0075739836, -0.024999537, 0.006967526, 0.0012120733, -0.012755828, -0.008672346, 0.029918583, -0.0004405242, 0.017924197, -0.029056065, -0.012499768, 0.0018614884, 0.020242212, 0.0051009837, -0.008079365, 0.008625177, 0.013456624, -0.0075874603, 0.037115216, -0.014420218, 0.007958073, -0.03525541, 0.004642771, -0.0061723925, 0.013678992, -0.0017006086, -0.0183285, 0.0186789, -0.026320267, -0.0022978012, 0.032047924, -0.008126534, -0.019325787, -0.02132036, -0.037600383, 0.011017316, 0.015916146, 0.004764063, -0.011179038, -0.02276238, 0.0021933555, -0.022102017, -0.017156016, -0.014177635, -0.005063922, -0.014083297, 0.01018849, -0.07573984, 0.025686856, -0.0065935436, -0.027870104, -0.00383753, 0.004430511, -0.01586224, 0.0039756675, -0.0010621434, -0.021819003, 0.002737483, -0.0075402916, 0.023827052, -0.005717549, -0.002796444, -0.012297615, -0.011576605, -0.008780161, 0.028085733, 0.002114179, -0.007944597, 0.011913526, -0.008564531, -0.0026852603, -0.02047132, 0.008921668, -0.013611607, 0.017708566, 0.01897539, -0.010943193, -0.0011741696, -0.0047943857, 0.012081986, 0.020444365, -0.014096774, -0.021239499, -0.0011025739, 0.0026448297, 0.002690314, -0.034473754, -0.0027509597, -0.027870104, 0.0008587274, 0.002412354, -0.036683958, -0.005774826, -0.001637436, -0.008321948, 0.004191297, 0.020134397, 0.021940295, 0.01142836, 0.0008208237, -0.04501264, -0.017937673, -0.010505196, -0.01952794, -0.011024054, -0.006701358, -0.025093874, 0.0406731, -0.008335425, 0.01854413, 0.021266453, -0.010909501, -0.0069473106, -0.0150940595, -0.0004860085, 0.0104243355, 0.017129062, -0.011199254, -0.003005335, 0.045309134, 0.0016281706, -0.0004160974, 0.01667085, 0.004285635, 0.004157605, -0.013881144, 0.017910719, 0.002788021, -0.015363596, -0.037492566, 0.020862147, 0.0069742645, 0.005299767, -0.018395886, 0.012998411, 0.007856998, 0.012499768, -0.015174921, -0.007055125, -0.020538703, -0.020713901, 0.005559196, 0.021077776, -0.0011623774, -0.0071359864, -0.0077020135, 0.0011741696, -7.883425E-06, 0.013726161, -0.01714254, -0.030808054, -0.0016812357, 0.0025656533, 0.0077289673, -0.009568556, -0.025120828, 0.007830043, 0.013840714, -0.024891723, -0.0076346295, 0.0013940105, -0.020659994, -0.010377166, -0.020363504, -0.036468327, -0.0068293884, 0.026333744, 0.012627798, 0.036737863, 0.0010410858, -0.011111654, -0.0066272356, 0.010599534, 0.011441836, -0.017331215, 0.021401221, 0.020403935, 0.003338887, -0.0005517081, 0.011772019, 0.008524101, -0.026401129, 0.021252975, -0.004555172, 0.02336884, -0.02937951, 0.07148115, -0.006229669, -0.008018719, 0.004110436, -0.015916146, 0.0077559208, 0.036899585, -0.00087178306, -0.018099396, -0.007877213, 0.010518673, -0.0015245675, 0.004962846, 0.027533183, -0.04396145, 0.025862055, 0.008510624, 0.0010773048, -0.015269259, 0.009406834, 0.01854413, -0.020484796, 0.020969963, -0.009312496, -0.011879833, -0.002887413, 0.018894529, 0.017587274, -0.011091439, -0.016010486, 0.02033655, 0.0102154445, -0.029109973, -0.0186789, 0.00069532066, -0.005636688, -0.017924197, 0.015687041, 0.003615162, 0.022587182, 0.016563036, -0.00055297156, 0.0015759479, -0.038597666, 0.018557608, -0.00032070666, -0.023948343, -0.006131962, -0.0047505856]
+ },
+ {
+ "Id": 25,
+ "Type": "Cycling",
+ "Brand": "Daybird",
+ "Name": "Stealth Lite Bike Helmet",
+ "Description": "The Daybird Stealth Lite Bike Helmet is designed for cyclists who value both safety and style. With its sleek matte silver color, this helmet will make you stand out on the road. The helmet features a lightweight in-mold construction, adjustable retention system, and multiple ventilation channels for optimal airflow. Stay protected and look cool with the Daybird Stealth Lite Bike Helmet.",
+ "Price": 89.99,
+ "Embedding": [0.0036514944, 0.0054574325, -0.014909718, -0.02878936, 0.020826064, 0.008610396, -0.013113685, -0.037399754, 0.022041028, -0.030030735, 0.010201734, 0.002482752, -0.025659507, 0.000675576, -0.008630205, 0.008656617, 0.016600102, -0.0047674123, 0.004559416, -0.007745394, -0.004057583, 0.015068192, -0.00034212126, -0.004480179, -0.014289031, -0.019928047, 0.02210706, -0.015173841, 0.016996287, 0.00024823393, 0.029898673, 0.0040113614, -0.0037439372, -0.020060109, -0.027204623, 0.03090234, 0.01347025, -0.002504212, 0.02674241, 0.005889933, 0.019465832, 0.01308067, 0.01243357, 0.0071445154, -0.015820941, 0.017537737, 0.01719438, -0.008227418, -0.014038114, 0.009402763, -0.00023358339, 0.0042424686, -0.010551697, 0.0014898163, 0.011799675, 0.0006458622, 0.01943942, 0.0026890978, 0.056152456, -0.025804775, -0.030347683, -0.018990412, -0.024035154, 0.009554634, 0.0065931594, -0.013879641, -0.011964752, 0.0030786786, -0.008161387, 0.031589057, 0.01978278, 0.017075524, 0.034547232, 0.0012331222, 0.01323254, -0.024484161, 0.0061639603, -0.015543613, 0.01790751, -0.018198045, 0.024021948, -0.008445319, -0.026108515, 0.027706457, 0.014658802, 0.002793096, 0.013503266, 0.010723376, 0.0047509046, 0.0018075887, -0.01463239, -0.012512806, 0.023520114, 0.013694755, -0.024021948, 0.04508572, -0.0027765883, 0.016613308, 0.0045693205, 0.0017382567, 0.007223752, 0.0012116622, 0.0024860536, -0.011984562, -0.036977157, -0.025078436, 0.0002674241, 0.020139346, 0.013602312, -0.015662467, -0.021578813, 0.036316853, 0.044478238, -0.035735782, 0.01855461, -0.006735125, -0.00085674756, 0.017854685, 0.0038132695, -0.01568888, 0.031324934, 0.013853229, 0.010003642, -0.036131967, 0.0075010806, 0.012096813, -0.01868667, -0.014196588, 0.030374095, 0.013364602, -0.0060021854, -0.0070784846, -0.006371957, -0.0047509046, -0.022780571, -0.009270702, -0.0153587265, 0.015596437, -0.018132014, -0.00842551, -0.0022731049, 0.0055135586, -0.008531159, 0.011344064, -0.014275825, -0.010578109, -0.0136683425, 0.012816547, -0.008372685, -0.017696211, 0.024457749, -0.017220791, 0.02799699, 0.03114005, 0.0018818732, 0.021103393, 0.008214212, 0.028578062, 0.004648557, -0.009818756, 0.00044529414, -0.020258201, 0.027917754, -0.00833967, 0.032487076, 0.01284296, -0.010551697, -0.0060285972, -0.010908262, -0.0077123786, 0.001124997, 0.042919915, -0.021710875, 0.013615518, -0.010822422, 0.014817276, 0.01069036, -0.0065766517, -0.024391718, -0.020720415, 0.009666886, -0.016283156, 0.013311777, 0.019795986, 0.0006050057, 0.010987499, 0.021988204, -0.0035953685, -0.0035755592, 0.00061408494, 0.023995535, 0.02032423, -0.0026346226, -0.006609667, -0.64741725, -0.013536281, -0.02077324, -0.028578062, 0.024325687, -0.005635715, 0.0052263252, -0.008326463, -0.0013841673, -0.0007498605, 0.009937611, 0.0051801037, 0.0018042872, 0.008214212, -0.033675626, -0.017762242, -0.0018191441, -0.019479038, 0.010340398, -0.004189644, -0.029581727, -0.019426214, -0.019862017, 0.012367539, -0.01943942, -0.0022054233, 0.015741704, -0.0011910277, -0.011132766, 0.01275712, -0.032487076, 0.054039475, -0.009165053, -2.0905403E-05, 0.0381393, -0.015768116, 0.015147429, 0.03660739, -0.0098583745, 0.019597894, 0.002017236, -0.00657335, 0.0069530266, -0.01439468, -0.0140909385, 0.022899427, 0.025765156, -0.010360207, 0.024735078, -0.02855165, 0.029476078, 0.0022483433, 0.0016103223, 0.0028558252, 0.0002994077, -0.004450465, 0.05794849, -0.0077982186, 0.005526765, 0.005176802, -0.009627268, 0.011192193, -0.010340398, -0.004932489, -0.010261161, 0.019214917, -0.023388052, -0.032592725, 0.0049853134, -0.032143716, 0.019003619, 0.024206832, 0.0010209988, 0.022186296, 0.030057147, 0.026953707, 0.04741, -0.0054079094, 0.015900178, -0.0020981235, 0.039407086, -0.0034236887, -0.005906441, -0.011694026, 0.012981624, -0.022225913, 0.008267036, -0.013225937, 0.038218535, 0.024470955, 0.0108752465, 0.01851499, 0.012426967, -0.024338894, -0.024827521, 0.024827521, 0.0041269152, -0.0062332926, 0.021393927, -0.025884012, -0.008214212, -0.010241352, 0.0034831162, 0.00510747, 0.017405678, 0.00064338604, 0.03008356, -0.032143716, 0.0060021854, -0.024021948, 0.003618479, -0.013391014, -0.023586145, -0.0038462847, -0.018184839, -0.029370429, 0.02926478, -0.005186707, 0.014341855, -0.028974244, -7.098294E-05, -0.0071511185, 0.016534071, -0.0031562645, 0.00719734, 0.0015806084, 0.0068539805, 0.028710123, -0.012763723, -0.0018967302, 0.0112978425, 0.02878936, 0.01885835, 0.0018257472, 0.033517152, 0.04064846, 0.0010548395, -0.0129882265, 0.013826816, -0.013932465, -0.0034104825, 0.012506204, -0.011330858, -0.035973493, -0.027204623, -0.026346225, -0.024880346, -0.01855461, -0.012268493, 0.0027419224, 0.008095357, -0.017841479, 0.0010754741, -0.01103372, 0.0077652032, -0.005870124, -0.022516448, -0.024642635, -0.00023358339, -0.012162844, 0.016507661, 0.009006579, -0.0037967619, -0.036105555, -0.0262934, 0.0033972764, -0.009614062, 0.034230284, -0.008854709, -0.051900085, -0.0023457385, 0.0040972014, -0.0116345985, 0.011370476, -0.005381497, -0.012110019, -0.009257495, -0.03298891, 0.010228146, -0.020812858, -0.0015187047, 0.007831234, -0.032170128, -0.005127279, 0.028868595, -0.009937611, 0.015939796, 0.027680045, -0.00633564, 0.0366338, 0.025448209, -0.004400942, 0.00478392, -0.017947128, 0.012552424, -0.022727747, 0.014751245, 0.009931008, 0.016600102, 0.011687423, 0.038324185, -0.014223, 0.011694026, -0.0071577216, 0.021737287, -0.010043261, -0.0015475932, 0.0062828152, 0.0039453306, 0.010413032, 0.028710123, -0.025289735, -0.006807759, 0.00083858916, 0.009204672, -0.00519331, 0.003866094, 0.034467995, -0.009931008, -0.009125435, 0.013298571, -0.0058239023, 0.0071379123, -0.026715998, 0.0078048217, 0.017286822, 0.005051344, 0.025936836, 0.007745394, -0.034837767, 0.009983833, 0.028525237, -0.010895056, 0.007441653, 0.017947128, 0.013516472, 0.0009293813, -0.021341102, 0.041757777, -0.0012933752, 0.03240784, 0.01807919, -0.0015030225, -0.016402012, 0.041150294, 0.008834899, 0.051768024, -0.0010696964, -0.013437236, 0.0129882265, -0.01736606, -0.03127211, -0.0020783143, -0.00091039744, 0.022952251, -0.011370476, 0.0042358655, 0.014751245, -0.012446776, 0.0104526505, 0.009132038, 0.0038859032, 0.0107762, 0.00024059914, 0.025435003, -0.001590513, -0.013179716, -0.00907261, -0.011793072, -0.025672713, 7.6812204E-05, 0.003549147, 0.007751997, -0.019346979, 0.020033697, -0.024193626, -0.036686625, 0.04191625, -0.0029977912, 0.034996238, -0.0069596297, -0.033860512, 0.0016449883, 0.04064846, -0.016362393, 0.0034831162, -0.0060285972, -0.0122288745, 0.009052801, 0.023044694, 0.0053154663, 0.030585393, -0.008194403, 0.009052801, 0.0062431972, -0.022265531, 0.015939796, -0.025738744, 0.012242081, -0.015385139, -0.013516472, 0.012849563, -0.010340398, -0.033517152, 0.009798947, -0.0012752167, -0.020522323, -0.036871508, 0.005044741, 0.0006974486, -0.012129828, -0.010518681, -0.0037175252, -0.023269197, 0.01006307, -0.003948632, -0.036660213, -0.017405678, 0.011410095, 0.0037901588, -0.024774697, -0.0148568945, -0.006484209, 0.0034269902, 0.09265419, 0.0033939749, -0.00592625, 0.023506908, -0.012440173, -0.019558275, -0.003942029, 0.003308135, 0.020786446, -0.0016680991, -0.0151078105, -0.0008732552, -0.017313235, 0.00080351037, 0.007395432, -0.0015979415, -0.004480179, -0.013628724, -0.00035078777, -0.0054706386, -0.012222271, -0.0057479674, 0.010531887, -0.005672032, 0.004493385, -0.017828273, 0.02680844, 0.016111476, 0.010221543, 0.00044446875, 0.009402763, 0.0005480543, -0.0054376232, -0.0062498003, -0.026359431, 0.009897993, -0.008953755, -0.029027069, 0.0075605083, -0.0003631685, 0.030268446, 0.009231083, 0.002596655, 0.015200254, 0.023005076, -0.006305926, 0.015873766, 0.013041051, -0.0067549343, -0.030955164, 0.02377103, -0.0018174934, -0.024378512, 0.009997039, -0.00433161, 0.019703543, 0.01719438, -0.013344793, -0.005975773, -0.026478287, -0.02377103, -0.017603768, 0.03581502, -0.01364193, -0.0030209017, 0.0020023792, 0.0142626185, -0.0030423617, -0.018369725, -0.013324983, -0.031694707, 0.00083363685, -0.023889886, 0.0009359843, -0.016586896, 0.0032090892, 0.017881097, -0.021750493, 0.010696963, 0.014196588, 0.002533926, -0.004325007, 0.0002575195, -0.014275825, -0.012327921, -0.0039057124, 0.0049357903, -0.009237686, -0.016586896, 0.024101183, 0.023612557, 0.017537737, 0.014209794, -0.020218583, -0.044293355, 0.0054640356, 0.028129052, 0.024906758, 0.010413032, -0.005127279, 0.017445296, 0.00989139, 0.008121769, 0.0012124876, 0.0265047, -0.009990436, -0.00010172845, 0.021169424, 0.008385891, 0.00433161, 0.013747579, -0.004975409, 0.019452626, -0.010432841, -0.013397617, 0.01807919, 0.01209021, -0.016349187, 0.019558275, -0.031483408, 0.019320566, -0.027574396, 0.0072897826, 0.010016848, -0.013932465, -0.005133882, 0.03325303, -0.0148568945, -0.0064511937, 0.010274367, 0.03327944, 0.023269197, -0.0072963857, -0.015292697, -0.020271407, -0.027574396, -0.0052230237, 0.0041731363, -0.01825087, -0.01903003, -0.009541428, 0.03618479, 0.026108515, 0.009627268, -0.022410799, -0.0132457465, -0.02077324, 0.010498872, -0.024629429, 0.04410847, -0.031483408, -0.005143787, 0.0018769209, -0.001700289, -0.015992621, -0.03114005, 0.0032371522, -0.01879232, 0.017352853, 0.011079942, 0.008722648, 0.0008059865, 0.031483408, -0.011548759, -0.0075539052, -0.0057776812, -0.012288302, -0.017524531, -0.014817276, 0.010056467, 0.002898745, -0.011601583, -0.0032123907, -0.0020816159, -0.015583231, 0.022357974, 0.008366082, -0.009303717, -0.03137776, -0.035762195, -0.002312723, -0.021988204, -0.0049688057, 0.00046015103, -0.023176754, -0.006669095, 0.02960814, 0.0048994734, 0.016164301, 0.019122474, 0.026240576, -0.011390286, 0.016943462, -0.0076463483, 0.023216372, 0.0016251791, -0.018343313, -0.021499576, -0.036237616, 0.03806006, 0.024272863, -0.0035392423, -0.017643386, -0.030215621, -0.0072765765, 0.0118062785, 0.0034104825, -0.013377808, -0.018264076, -0.0043382132, -0.030849515, -0.022556067, -0.06708713, -0.04284068, -0.0050711534, 0.0018389534, -0.022622097, 0.010617727, -0.0033840702, -0.02605569, 0.020033697, -0.013985289, 0.0038925062, 0.005751269, 0.032513488, 0.02441813, -0.01620392, -0.015807735, -0.020363849, -0.009693298, -0.015134223, 0.015437963, 0.011324255, -0.014302237, -0.017867891, 0.016322775, 0.01258544, 6.830044E-05, -0.017220791, -0.013054257, 0.032355014, 0.02094492, -0.010102688, -0.023216372, -0.0032074384, 0.018964, 0.03959197, 0.007732188, 0.0066856025, 0.00012710899, 0.010637536, 0.014077732, -0.026715998, 0.010868643, 0.002898745, 0.006064914, 0.0043679266, -0.023784237, 0.0047145877, -0.01217605, 0.0068671866, 0.03008356, -0.0005067852, 0.020337436, 0.01763018, 0.005411211, 0.009382954, -3.203518E-05, -0.0062960214, 0.02019217, 0.011865706, -0.016626514, -0.022318356, -0.012110019, 0.014896512, -0.01006307, -0.017788654, -0.006441289, -0.00083446223, -0.012559027, 0.0033840702, 0.004219358, 0.0073756226, -0.011079942, -0.02684806, -0.0069926446, -0.026729204, -0.014011702, 0.01930736, -0.021776905, -0.016402012, -0.011231812, -0.010340398, -0.0021839633, 0.006031899, -0.008240624, 0.0016491152, 0.022767365, -0.024946377, 0.015305903, 0.03438876, 0.021209043, 0.00997723, 0.017458502, 0.0129882265, -0.03570937, 0.014407885, -0.01736606, -0.009587649, -0.03734693, 0.0015979415, 0.0009855073, 0.026385844, -0.024814315, 0.016283156, -0.009079213, 0.02663676, 0.0048862672, -0.036026318, 0.007243561, -0.025223704, -0.00267259, 0.017999953, -0.0009120482, 0.017247204, -0.026385844, 0.0020238392, -0.007745394, -0.012882578, -0.023705, -0.03993533, -0.0013387712, -0.010677154, -0.022318356, 0.011621392, -0.0067681405, -0.029370429, -0.011079942, -0.029185543, 0.006652587, 0.02605569, 0.00048119828, -0.010419635, 0.018330107, -0.026306607, -0.025950043, 0.002581798, -0.0155172, -0.009343335, -0.00062481494, 0.017643386, 0.048915498, 0.02002049, -0.006045105, 0.008616999, -0.021341102, -0.044029232, 0.0103668105, 0.0041434225, -0.0051239775, 0.008029326, 0.00073624164, 0.006553541, 0.014038114, 0.011172384, 0.019558275, 0.0015178793, 0.0076397453, 0.014790864, 0.0039684414, -0.012572234, 0.0034765133, -0.018739495, -0.03150982, 0.026782028, -0.017445296, 0.014698421, 0.021459958, -0.016930256, -0.015054986, 0.003456704, -0.018752702, 0.033094555, 0.023388052, -0.017854685, -0.010287574, -0.007336004, -0.009178259, 0.015121017, -0.005870124, -0.01868667, -0.009316923, 0.028446, -0.015477582, -0.027944166, -0.0063653537, -0.0018818732, -0.02066759, 0.009138641, -0.0041038045, 0.0101951305, 0.027891342, -0.003668002, -0.019492244, 0.0034930208, 0.021776905, -0.016560484, -0.027468747, -0.009818756, -0.02377103, 0.014196588, -0.0042490717, 0.009726313, -0.004381133, -0.0021492974, -0.015715292, -0.004394339, -0.012492998, 0.02042988, -0.01626995, -0.02469546, -0.025250116, 0.002174059, -0.01135727, 0.008616999, 0.008181197, -0.009488603, -0.037928, 0.01913568, -0.008022723, -0.005780983, -0.015728498, 0.023493702, -0.0012809944, -0.0003365499, -0.0069860416, 0.20696644, -0.001478261, -0.004552813, 0.023097519, -0.009409366, 0.011007308, 0.0123147145, 0.012413761, 0.0034666087, -0.00592625, 0.008088754, 0.02118263, 0.0047178892, 0.0016020684, 0.044821598, -0.0027056055, -0.009217877, -0.022727747, -0.015741704, -0.02077324, -0.011245018, 0.0025504334, -0.013628724, -0.028313939, -0.0014650548, 0.042101137, -0.012981624, -0.0057479674, 0.010254558, -0.005975773, -0.004866458, -0.029845849, -0.01405132, -0.023216372, 0.009997039, -0.010459254, -0.0029103004, -0.022450417, -0.024708666, 0.034996238, 0.0043382132, 0.0040939, 0.013047654, -0.014156969, 0.014817276, 0.0048037292, -0.018052777, 0.011132766, -0.0072633703, -0.010347001, -0.017300028, -0.00866322, 0.02878936, 0.0005744666, 0.0049423934, -0.012426967, 0.010373414, -0.010307383, 0.0024233244, -0.003062171, -0.007302989, -0.0022450418, 0.014922924, 0.013734373, -0.011944943, 0.040331516, -0.0055069556, 0.0005967519, 0.017352853, -0.0045032897, 0.017590562, -0.012611852, -0.0049291872, 0.0073624165, -0.017524531, -0.033173792, 0.013067463, -0.004311801, 0.0037472388, 0.027468747, -0.014764451, -0.027838519, -0.016005827, 0.006355449, -0.0028459206, -0.015424757, 0.011000705, -0.012116622, 0.009554634, 0.0004770714, 0.004625446, -0.0026511303, 0.0071577216, 0.022978663, 0.011000705, -0.0060352003, -0.008035929, 0.02738951, -0.01872629, -0.008346273, -0.028710123, -0.003948632, 0.012162844, -0.007217149, -0.015411551, 0.033305854, -0.0053022606, 0.012367539, 0.011548759, -0.02101095, -0.008894327, -0.036316853, 0.014130557, -0.0059889792, 0.021090187, -0.008465128, 0.0136683425, -0.010895056, 0.007831234, -0.017379265, 0.038852427, 0.013113685, 0.03956556, 0.009356542, 0.010129101, 0.0017118444, -0.01862064, 0.01446071, 0.0007870027, -0.022027822, -0.00767276, 0.006609667, 0.0028063022, 8.7800116E-05, -0.021856142, -0.004866458, 0.025276529, -0.0036944144, -0.0014972448, -0.0008608745, -0.0072831796, -0.0011728692, 0.011377079, -0.003159566, 0.041150294, -0.029766612, 0.0020700605, -0.012479791, -0.013001433, 0.009554634, -0.010895056, -0.0066856025, -0.00702566, -0.014975749, -0.0019132379, 0.009515015, -0.016494455, -0.003915617, -0.02950249, 0.012829754, -0.02674241, 0.013906053, 0.016177507, -0.019479038, -0.026385844, -0.022080647, -0.16755936, 0.0057479674, 0.031536233, -0.027072562, 0.017286822, 0.0015517201, 0.012836357, -0.01234773, -0.019716749, -0.0018505087, 0.01521346, 0.010221543, -0.04157289, -0.031879593, 0.007098294, 0.019875223, -0.0042721825, 0.03338509, 0.0113836825, -0.0020023792, 0.032487076, -0.0071115, 0.0033279443, -0.012182653, 0.0163756, 0.009627268, 0.013787198, 0.014553153, -0.0034963223, -0.008953755, -0.001467531, -0.0034930208, 0.021354308, 0.019584687, 0.021367515, -0.012658074, 0.017722623, 0.00057818077, -0.020469498, 0.0340454, 0.00239196, 0.018092396, 0.025738744, 0.0119779585, 0.008326463, 0.027891342, -0.022278737, 0.01014891, 0.012360936, -0.01807919, 0.03837701, -0.029053481, -0.024259657, -0.009825359, 0.005949361, 0.0018670163, -0.0035590515, 0.018475372, 0.0310344, -0.026782028, -0.002545481, -0.04276144, -0.0024447844, -0.018594228, -0.0068539805, -0.02404836, -0.0002054172, 0.0046947785, -0.017511325, 0.0060913265, -0.0008658268, -0.000426723, -0.008161387, -0.0034467995, 0.017273616, 0.016758576, -0.019743161, -0.012327921, 0.0014444203, -0.011218606, 0.010294177, 0.04035793, -0.0153587265, 0.018594228, -0.009039595, -0.0011844246, -0.0151078105, 0.0032371522, -0.009673489, -0.012605249, -0.0073558134, -0.028446, 0.0005117375, -0.017405678, 0.010023451, 0.017075524, 0.026821647, -0.02124866, 0.0052956576, 0.007316195, 0.007725585, -0.011165781, -0.0152794905, 0.029898673, 0.023150342, 0.0003076615, 0.010578109, 0.005127279, 0.022080647, 0.014553153, -0.020535529, 0.009442382, -0.008517953, 0.012275096, -0.007177531, 0.0113836825, 0.0010218242, -0.013443839, 0.0028525237, -0.03898449, 0.037875175, -0.012506204, -0.016177507, 0.009924405, -0.0069926446, -0.014183382, -0.08008196, -0.031483408, 0.027072562, 0.007547302, 0.0037868572, 0.016520867, -0.014751245, 0.023493702, 0.007976501, 0.024655841, 0.0027699855, -0.021697668, -0.0036349867, 0.011522347, -0.007032263, -0.0033312459, 0.0325399, -0.0004073265, -0.009917802, 0.0033840702, -0.0035260362, 0.0002643289, -0.015834147, -0.017418884, -0.017233998, -0.012750517, -0.020284614, 0.037505403, 0.015239872, 0.0075671114, -0.004430656, -0.0020056807, -0.00041104073, 0.0016540675, -0.0076595545, 0.001446071, -0.022622097, 0.007547302, 0.010393223, -0.03462647, 0.0064511937, 0.019809192, 0.02019217, -0.017458502, -0.006669095, -0.023414465, -0.010531887, 0.012380745, 0.028181877, -0.011740248, -0.02148637, -0.020812858, -0.009620665, -0.017722623, 0.012492998, -0.008801884, -0.0056984443, -0.009871581, -0.0016969874, 0.017709417, -6.0871997E-05, 0.021261865, -0.0042523732, 0.008399097, -0.0046320492, -0.02101095, -0.036316853, 0.011911928, 0.017722623, -0.002060156, -0.013721167, 0.026531111, -0.010512078, 0.044583887, 0.007732188, -0.0013544535, -0.005695143, 0.0057248566, -0.0105384905, -0.026266988, -0.020971332, -0.015503994, 0.014024908, -0.046459157, -0.0029449665, 0.025725538, 0.017471706, -0.0015154032, 0.015081398, -0.03174753, 0.006398369, 0.021301484, 0.020284614, -0.013272159, -0.028868595, -0.0064247814, 0.00629272, -0.016402012, 0.0078048217, 0.009713107, -0.019584687, -0.01609827, -0.07221111, 0.025435003, -0.013721167, -0.009798947, 0.017484913, 0.01743209, -0.0061474526, 0.0038495862, 0.003872697, 0.0067615374, -0.008379288, -0.020337436, -0.006725221, -0.0075076837, -0.014619184, -0.021618431, 0.0069596297, -0.0071709277, 0.021803318, 0.0033840702, 0.013972083, 0.00784444, -0.011007308, 0.008432113, -0.035999905, 0.01825087, -0.013100479, 0.009884787, 0.0069860416, -0.0136683425, 0.013126891, -0.021459958, 0.011429904, 0.01879232, -0.025553858, -0.034969825, -0.007751997, -0.0066922056, 0.019941254, -0.045455493, 0.0064809076, -0.015939796, 0.0091848625, -0.020588353, -0.017207585, 0.003866094, 0.015292697, -0.013199525, 0.03327944, 0.0026676378, 0.01545117, 0.0026131626, 0.007613333, -0.027336685, -0.016045446, -0.020469498, -0.0065766517, -0.012281699, -0.005642318, -0.020363849, 0.035286773, 0.00989139, -0.009244289, -0.020046903, 0.016415218, 0.015160635, -0.024946377, 0.013787198, -0.009950818, 0.005579589, -0.01603224, -0.0021492974, 0.013787198, -0.006362052, -0.0063818614, 0.0021113297, 0.025118055, -0.019346979, -0.02773287, 0.017115142, -0.011350667, -0.0013255652, -0.014038114, 0.009039595, 0.0067549343, 0.023506908, -0.032143716, 0.022767365, 0.01284296, 0.0020849174, -0.02704615, -0.007336004, 0.0006062438, 0.004268881, 0.01176666, -0.00047500792, -0.024087977, -0.010102688, -0.0037406357, 0.013879641, 0.0118921185, 0.010716773, -0.009508412, 0.0018224457, -0.013985289, 0.016943462, -0.0016846067, -0.0048928703, -0.015160635, 0.0034864177, -0.0047013815, -0.0069728354, -0.03848266, 0.017181173, -0.013324983, 0.010439444, -0.002491006, 0.0006413226, -0.0043910374, 0.011700629, 0.011284636, 0.010670551, 0.026782028, -0.023889886, 0.027468747, -0.009046198, 0.009911199, -0.010729979, 0.017841479, 0.0034666087, 0.023110725, 0.012942006, 0.0046650646, 0.0138400225, 0.003062171, 0.005325371, 0.0059955823, 0.0431048, 0.0012933752, 0.07553905, 0.00784444, -0.011839294, -0.007923677, -0.02926478, 0.0012620107, 0.009442382, 0.0029334112, -0.026874471, -0.01202418, 0.029634552, -0.0124863945, -0.015979415, 0.01405132, -0.052296266, 0.007837837, -0.018422548, -0.00020944094, -0.011476126, -0.022397593, 0.019175299, -0.014724833, 0.010987499, -0.030558981, -0.008220815, 0.015794529, 0.01844896, 0.0068473774, -0.0045924312, -0.025461415, 0.01439468, 0.022450417, -0.013800404, -0.010987499, 0.0022995172, 0.022754159, -0.009231083, 0.012354333, 0.018303694, 0.027032943, 0.023137135, 0.033411503, -0.018528197, -0.024484161, 0.023863474, -0.030955164, -0.019346979, -0.04471595, -0.012063798]
+ },
+ {
+ "Id": 26,
+ "Type": "Climbing",
+ "Brand": "Gravitator",
+ "Name": "Gravity Beam Climbing Rope",
+ "Description": "The Gravitator Gravity Beam Climbing Rope is the perfect companion for vertical endeavors. This high-quality climbing rope features a kernmantle construction, providing excellent strength and durability. With its vibrant yellow color, the Gravity Beam Rope is highly visible and easy to work with. Whether you're tackling steep rock faces or conquering frozen waterfalls, trust the Gravitator Gravity Beam Climbing Rope to get you to the top.",
+ "Price": 179.99,
+ "Embedding": [-0.0062515386, 0.00174591, -0.015006391, -0.03093044, 0.022577062, 0.015060372, -0.024155973, -0.018555565, -0.01078247, -0.023656659, -0.018528575, -0.009291277, 0.009675884, 0.013440977, -0.008191438, 0.0066665085, 0.023764618, 0.010067238, -0.019095363, -0.0019466475, 0.0024999408, -0.005947902, 0.0072737816, -0.025370518, -0.011868814, -0.013596169, 0.034978926, -0.025626922, 0.024425872, 0.006217801, 0.032900702, 0.003439527, -0.013252047, -0.009136085, -0.026895449, 0.0014591422, -0.0009100661, 0.0062751547, 0.008198186, -0.00096404593, 0.014911927, -0.013474714, -0.0058635585, 0.0019162839, -0.0072872764, 0.006906044, 0.002597779, -0.030687531, 0.0057657203, -0.0061638216, -0.004888548, 0.012314148, -0.027880581, -0.007921539, 0.0028727388, -0.005121336, -0.00084343477, 0.0040653558, 0.02014797, -0.025640417, -0.012928168, -0.0037617192, -0.010181945, -0.010694753, 0.00097163685, -0.02012098, -0.015262796, -0.015370755, -0.012563804, 0.018960414, 0.024601305, 0.030363653, 0.032954685, 0.0011732178, 0.0017998898, -0.010613783, 0.0021558192, 0.01666627, -0.01568114, 0.0040046284, 0.018474596, -0.007071357, 0.013704129, 0.01891993, 0.021335525, -0.0030296177, -0.017678393, 0.015505705, -0.014372129, -0.0216729, -0.00706461, 0.010465339, 0.023508213, 0.029365025, -0.030255692, 0.00063679327, 0.005607154, -0.009352005, 0.004382487, -0.03732705, 0.0074424683, 0.0027782742, 0.01720607, -0.005627397, -0.019297788, -0.021160092, 0.015640656, -0.004379113, 0.024034517, -0.03667929, -0.020255929, -0.008474832, 0.0042205476, -0.008056489, 7.8439436E-05, 0.010897177, 0.041699417, -0.00022751653, 0.0067947106, -0.02684147, 0.00770562, -0.005303518, 0.030390643, -0.001771213, 0.024209952, 0.02290094, -0.039513234, -0.012779724, 0.015316776, -0.014183199, 0.015694635, 0.02161892, -0.005249538, -0.012422107, -0.008137459, 0.03670628, 0.006157074, -0.022617547, -0.017597424, 0.0032893957, 0.011821582, 0.0009935661, -0.023791607, -0.009318268, -0.0016893998, 0.012239926, 0.012536814, 0.00039472748, 0.003829194, 0.005239417, 0.0014119098, -0.0045478004, 0.021133102, 0.012685259, 0.009102348, -0.008798712, -0.0039135376, 0.040997677, -0.033008665, -0.008292651, -0.0076246504, 0.009520692, 0.017745867, -0.011875561, 0.011875561, 0.016544817, -0.024439367, -0.029365025, 0.00030806454, -0.012732492, 0.016531322, 0.035923574, -0.019000899, 0.027475731, 0.010829703, 0.013454472, 0.011484208, -0.00025766934, -0.014642028, 0.002004001, -0.0143316435, -0.010323642, -0.0067575993, 0.013096855, -0.019527202, -0.005522811, 0.012880936, 0.009466712, 0.042131253, -0.03730006, -0.007294024, 0.0041058403, -0.01870401, 0.0037954566, -0.6486216, -0.024196457, 0.006467458, -0.028501349, 0.028717268, -0.009750106, 0.040916707, 0.034951936, 0.006551801, 0.0016708443, 0.0038629314, 0.022846961, -0.015397745, -0.010937662, -0.0009362126, -0.003286022, -0.010937662, -0.011416733, 0.014965907, 0.0071320846, -0.032792743, 0.020013021, -0.019486718, 0.0076988726, 0.006103094, -0.0065011955, 0.008893176, -0.02823145, -0.01570813, 0.039540224, -0.0149928965, 0.034870967, 0.013663643, 0.016018514, 0.051604714, -0.03120034, -0.01736801, 0.028879207, 0.0095949145, 0.027448742, -0.03476301, -0.009716368, 0.025330033, -0.010566551, -0.007941782, 0.007584166, 0.028312419, -0.005617276, -0.00022625137, -0.02017496, 0.018137222, -0.0052697808, 0.011133339, 0.014088735, -0.0024375266, 0.01327229, 0.03335953, 0.008987641, -0.025694396, 0.013353259, 0.003373739, 0.006366246, -0.019135848, -0.021524455, -0.026490599, 0.01859605, -0.020040011, -0.0022097991, -0.00016510236, 0.008474832, 0.03991808, 0.017853828, 0.0042441636, 0.008299398, 0.011281784, 0.044884227, 0.010512571, 0.020485343, 0.0053068916, -0.002483072, 0.006379741, -0.007125337, -0.023643164, -0.0031240825, 0.020930678, 0.011409986, -0.021389507, -6.4476635E-06, 0.03514087, -0.010411359, 0.009210308, 0.022914436, -0.02520858, -0.03136228, -0.0075369333, 0.0030852845, 0.00073083624, 0.008812207, 0.027394762, -0.019864576, -0.026908943, -0.025559448, -0.01827217, -0.021713385, -0.013650148, 0.010397864, -0.007833823, -0.0004411164, 0.02779961, -0.018838959, -0.0023649912, -0.00984457, -0.0008780156, -0.0036908707, -0.0088391965, -0.03395331, 0.015856573, -0.0045444267, 0.02790757, -0.040916707, 0.036517352, -0.007604408, 0.015073867, 0.029014157, 0.016828211, 0.009372247, 0.0048278207, -0.026274681, -0.036409393, -0.01560017, -0.021686396, 0.009918793, 0.009750106, 0.013292532, 0.015222311, 0.054924473, -0.0057758414, 0.001538425, 0.014399119, -0.020525828, -0.012179199, -0.0071995594, 0.00784057, 0.0032927694, -0.024398882, -0.035923574, -0.044587336, -0.013926795, 0.004564669, -0.023670154, -0.015721625, -0.0077393577, 0.017273545, 0.014857947, 0.009446469, -0.018096738, -0.015289785, -0.026477104, 0.00784057, -0.016895685, 0.02785359, -0.015613665, -0.024871204, 0.0085558025, 0.014965907, -0.009905298, -0.0005600407, 0.009520692, -0.008171196, -0.031794116, 0.0051449523, -0.0021625669, -0.009480207, 0.015100856, 0.009959278, 0.013130593, -0.010559804, -0.01402126, -0.020633789, -3.5793262E-05, 0.0019955668, 0.01246934, -0.032900702, -0.011970026, 0.026247691, 0.0074694585, 0.024412377, 0.006696872, -0.0030296177, -0.006194185, -0.022104738, 0.04072778, -0.014480088, -0.00081855344, -0.0077191154, -0.02790757, -0.016382877, 0.0041800626, 0.0057488517, 0.02041787, 0.009885056, -0.011632653, 0.02785359, -0.01099839, 0.01399427, 0.0028288802, 0.01075548, -0.02480373, 0.018164212, -0.019635161, 0.00082066207, -0.012334391, -0.0054722046, -0.004756972, 0.02801553, 0.008974146, -0.010181945, 0.023022396, -0.005887175, -0.016733747, 0.015303281, 0.002391981, 0.0013132279, -0.0027647791, -0.02191581, 0.0083196405, -0.004230669, 0.034978926, 0.009615157, -0.019527202, -0.004072103, -0.004409477, 0.024952175, -0.006143579, 0.0067407307, 0.016625786, 0.010316894, -0.013818836, 0.0556532, -0.0061638216, 0.019068373, -0.0032961431, 0.017435484, -0.013602916, 0.025613427, 0.022752497, 0.008866186, 0.0040248707, 0.005674629, 0.0003512906, -0.0171251, 0.016531322, -0.019108858, 0.0063055186, 0.0057859626, 0.008495075, 0.034870967, -0.004824447, 0.00664964, 0.022050759, 0.022266679, 0.017529948, 0.02796155, 0.0040586083, 0.009709621, -0.011517946, 0.0040046284, -0.007617903, -0.0046625077, -0.016261423, 0.02758369, -0.013150835, 0.020471849, 0.011787845, -0.0026230821, 0.00092777825, 0.014007765, 0.00620768, -0.008771722, 0.02823145, 0.006248165, -0.029661914, 0.006467458, 0.0030127491, -0.0042981436, -0.022064254, -0.030174723, 0.0063426294, 0.004780588, 0.032333914, 0.004422972, 0.016625786, -0.008238671, 0.004618649, 0.008940409, 0.005418225, -0.0027495974, -0.02771864, 0.04113263, -0.013751361, -0.012401865, -0.01565415, -0.016801221, -0.014399119, 0.032468867, -0.007152327, -0.0067542256, -0.014938917, 0.029823855, 0.010384369, -0.006909418, -0.026989913, -0.00035867063, -0.029365025, -0.0081307115, -0.02295492, 0.0047299825, -0.041267578, 0.02611274, -0.009743359, -0.00062625034, -0.011436976, 0.0006890862, -0.0076988726, 0.07092949, 0.0232788, 0.0058197, 0.02322482, 0.006477579, -0.013704129, -0.01238837, -0.0318481, -0.009729864, -0.010316894, 0.029526966, -0.010580046, 0.012300652, -0.012327643, -0.015289785, 0.014210189, 0.0013157582, -0.0064573367, 0.01308336, 0.0017307282, 0.012300652, 0.010451844, 0.020890193, 0.020782232, -0.000950551, 0.025815852, 0.011335763, 0.024115488, 0.00659566, -0.023940053, 0.0013005765, -0.009885056, 0.012570552, -0.009615157, -0.020647284, -0.014493584, -0.017529948, -0.0018420615, -0.0012972027, -0.016841706, 0.017138595, 0.010256167, -0.00026631454, -0.010451844, 0.014628533, -0.006018751, 0.0068992963, 0.04016099, -0.014736492, 0.0034749513, 0.01570813, 0.012192694, -0.0031578199, -0.015978029, -0.005300144, 0.028393388, -0.01894692, 0.0074559636, -0.0076516406, -0.04024196, 0.006491074, -0.024101993, 0.025856337, 0.014426108, -0.013157583, -0.020660779, -0.018096738, 0.012341138, -0.00078481605, 0.0019517081, -0.030498601, -0.004541053, -0.029877834, 0.0030835976, 0.023953548, -0.0018454354, 0.015114351, 0.0031966178, 0.003065042, -0.00033863907, -0.009169823, -0.002287395, 0.00017669958, 0.0037583455, -0.007631398, 0.028285429, 0.013643401, 0.0042138, -0.023791607, -0.008441095, 0.028123489, 0.02523557, 0.031254318, -0.008110469, 0.0058163265, -0.00040927672, 0.008407358, 0.015478715, 0.014669018, 0.0074694585, 0.006238044, -0.015019886, 0.01870401, -0.0070173773, 0.026018277, 0.0061773164, 0.0034816987, 0.02156494, -0.020849708, 0.018731, 0.0072602867, -0.024628296, 0.018150717, -0.02485771, -0.014763483, -0.0076448927, 0.029931813, 0.01990506, 0.0021541324, -0.030147733, -0.019702636, -0.042886972, 0.024250437, 0.030228702, 0.0014582988, 0.017421989, -0.000850604, -0.019851081, -0.028393388, 0.0024004155, -0.021052131, -0.009061864, 0.004072103, -0.020485343, -0.01669326, -0.0278266, -0.019041384, 0.0055666696, 0.0101617025, -0.0071118423, -0.021011647, 0.017233059, 0.029553955, -0.01091742, -0.01238837, -0.018690515, -0.031605188, 0.015249301, -0.04045788, 0.0009868187, -0.002172688, 0.0013587734, -0.03454709, -0.021659406, 0.011113097, -0.011214308, -0.0073614987, 0.00618069, 0.042509113, 0.019581182, 0.028933186, 4.2830674E-05, 0.03989109, -0.005742104, -0.009621904, -0.010006511, -0.01399427, -0.00698364, -0.035302807, 0.025599932, 0.012921421, 0.008016004, 0.0046760025, -0.013467967, -0.009763601, -0.006545054, 0.0062009324, -0.010910672, -0.010053743, -0.032522846, 0.010843198, -0.00706461, -0.0017779606, -0.008845944, -0.035869595, -0.018164212, 0.028150478, 0.013548937, 0.00043015173, -0.0002292034, 0.0184611, -0.016517827, 0.024115488, -0.014628533, 0.029607935, -0.009831076, 0.008609782, -0.026935933, 0.00043521234, 0.011652895, -0.011038874, -0.010472086, -0.009939035, -0.03427719, -0.035680667, -0.020485343, -0.0094532175, -0.013211562, 0.019675646, -0.028582318, -0.013440977, -0.03133529, 0.0018319404, -0.026288176, 0.004446588, 0.019270798, -0.0042104265, 0.020188455, -0.008987641, 0.0053507504, 0.008353378, 0.008872934, 0.023899568, -0.0029823855, 0.018245181, 0.004153073, -0.009898551, -0.011045622, -0.019068373, -0.012408612, 0.0007742731, -0.0034951938, 0.003439527, -0.016153462, -0.03147024, -0.00984457, -0.006585539, -0.0032168604, -0.033062644, 0.03114636, -0.014979402, 0.022428617, -0.015586675, -0.018123727, 0.005978266, 0.023805104, 1.3679458E-05, 0.014871442, 0.0042779013, -0.005681377, -0.04021497, 0.028150478, -0.03438515, 0.030282682, 0.015303281, -0.022455608, -0.011511198, 0.016288413, -0.0032404764, 0.011484208, 0.030066764, 0.01720607, 0.0038764263, -0.012860694, 0.035950564, 0.007051115, -0.0022182334, -0.0065011955, 0.012867441, 0.020728253, -0.019891566, 0.0031139613, -0.0030717894, -0.017165584, 0.0246148, -0.0042138, -0.0086974995, 0.013346512, 0.016828211, -0.0096421465, 0.02483072, 0.016814716, -0.01099839, -0.0063831145, 0.0030937188, -0.0032573452, -0.017948292, -0.016342392, -0.018771484, -0.015114351, -0.04439841, -0.0038258203, 0.018906435, 0.018339645, 0.0071320846, -0.010661015, 0.004719861, 0.010600288, -0.027880581, -0.005408104, 0.037758887, 0.012314148, 0.0033265068, 0.018501585, 0.03138927, 0.0031848098, 0.011862067, -0.0028373145, -0.019311283, -0.028798237, -0.009534187, 0.004331881, 0.003400729, -0.012779724, -0.009486955, -0.006119963, 0.014844452, -0.0073817414, -0.013015886, -0.020566314, 0.001396728, 0.0021811223, 0.045990814, -0.033548463, -0.017246554, 0.012651522, -0.005704993, -0.03381836, -0.011356006, -0.032360904, -0.026800985, -0.012172451, 0.017948292, -0.03470903, 0.014601543, -0.019540697, -0.0024021023, 0.015451726, -0.008717742, 0.017799847, 0.02665254, 0.020674273, 0.022307163, 0.021173587, -0.018771484, -0.026099246, -0.0056712553, -0.00026526023, -0.022428617, -0.009122591, 0.028528338, 0.026099246, 0.0028356276, -0.02298191, -0.011740612, -0.015451726, -0.036760263, 0.012077986, -0.0075436807, 0.0014776977, 0.019486718, 0.0097838435, 0.01704413, 0.021632416, 0.017691888, 0.004875053, 0.02191581, 0.0055902856, 0.01998603, -0.003711113, -0.0039810124, -0.029931813, 0.0032252946, -0.02362967, 0.021848334, 0.006194185, 0.0038325677, 0.015640656, 0.028879207, 0.0021878697, -0.0039034162, -4.533462E-05, 0.01728704, 0.01835314, 0.0048075784, -0.03128131, -0.026261186, -0.01573512, 0.020471849, -0.004780588, 0.030498601, 0.012233178, -0.0044195983, 0.005468831, -0.019675646, -0.009635399, -0.009325015, -0.0050606085, 0.0029705772, 0.0049189115, 0.016436856, 0.015856573, 0.019702636, -0.021079123, 0.0007797555, 0.014803967, -0.007833823, -0.004045113, 5.6457415E-05, -0.005391235, 0.0045478004, -0.012813461, 0.028771248, 0.0015198694, -0.011821582, 0.005418225, -0.028474359, -0.02518159, -0.00016678922, 0.023130355, 0.0064742053, -0.044641316, -0.005225922, -0.011727117, -0.001119238, -0.017975282, -0.0068756803, -0.01717908, -0.0068520643, -0.0023312538, -0.010897177, -0.00786756, -9.350265E-06, 0.017948292, 0.0032101127, 0.018960414, 0.19670248, 0.0032421632, -0.0005575104, 0.04348075, 0.0028103248, 0.0063426294, -0.0070173773, -0.012037502, -0.00030764283, -0.015856573, 0.023940053, -0.0068621854, -0.016112978, -0.006268407, -0.0005933564, 0.0033568705, -0.025168095, 0.00271586, -0.017502958, -0.010404612, 0.010181945, 0.0042205476, 0.022806477, -0.009318268, -0.016099483, -0.0031611936, 0.0017728999, -0.012442349, -0.009021378, 0.020053506, -0.007833823, -0.028744258, 0.0034749513, -0.006868933, -0.010627278, -0.004564669, 0.032846723, -0.02801553, -0.004409477, 0.032657795, 0.007267034, 0.005718488, 0.025168095, 0.00084723026, 0.004824447, 0.0104450965, -0.01091742, 0.021524455, 0.017786352, 0.0009707934, -0.038109757, -0.01827217, 0.020377384, 0.017637908, -0.009486955, 0.010357379, 0.0014135967, -0.025141103, 0.023643164, 0.031578198, -0.021686396, 0.01715209, -0.008542308, 0.032037027, -0.012334391, 0.0027226075, -0.007435721, 0.003129143, 0.013346512, 0.0060322457, 0.0011411672, 0.00063679327, 0.008171196, 0.022469103, -0.019122353, -0.017273545, 0.032252945, -0.0034175979, 0.020795727, -0.0044027297, -0.0057488517, -0.006922913, -0.0013537129, -0.029122116, -0.015303281, -0.0018521828, -0.0081307115, 0.025802357, -0.012158955, -0.0055025686, 0.011652895, -0.0030127491, 0.009446469, 0.012287158, -0.019270798, 0.027259812, -0.032630805, 0.0017222938, -0.019324778, 0.0037313555, -0.012766229, 0.018865949, 0.0018774858, 0.0009724803, -0.019027889, 0.012557057, -0.011497703, 0.012287158, -0.011875561, 0.001914597, 0.0015291473, -0.018258676, 0.01666627, -0.024628296, -0.023859084, 0.006160448, 3.5160687E-05, -0.009520692, 0.0067407307, -0.026058761, 0.0019719505, -0.024641791, 0.0039135376, 0.010411359, -0.0012263542, -0.0059074173, -0.0072535393, 0.0010332076, 0.00017395843, -0.013677139, -0.028636297, 0.012779724, 0.028987167, -0.046989437, 0.006507943, 0.01897391, -0.004436467, -0.03670628, 0.0025893447, -0.012617785, 0.0014844452, 0.0039067897, 0.011936289, 0.020404374, 0.018744495, 0.0011850259, -0.013252047, 0.0016936171, -0.010499076, -0.02477674, -0.003309638, -0.005225922, -0.0018201323, -0.012044249, 0.010984895, -0.02028292, -0.021106113, -0.034466118, 0.02172688, 0.0023818598, -0.028150478, 0.009298025, 0.017705383, -0.038703535, 0.0039641433, -0.024169467, -0.17219564, 0.013542189, 0.009932288, -0.03460107, -0.013292532, 0.0036031534, 0.021645911, 0.013953785, -0.017651403, 0.004976265, 0.00040316183, -0.0012196067, -0.03136228, -0.02493868, -0.008953904, 0.0040552346, -0.005661134, -0.014264169, 0.027165348, 0.0068723066, 0.025370518, -0.026085751, 0.0052697808, 0.00086958124, -0.001926405, -0.026450114, -0.014709502, -0.0019753242, 0.008387116, -0.014088735, -0.013245299, -0.0044027297, 0.023494719, -0.029041147, 0.032360904, -0.0026281427, 0.008144206, -0.00079873274, -0.042320184, 0.025869831, 0.014830957, 0.020323405, 0.011221057, -0.00025872362, 0.029499974, 0.046017803, 0.013447724, -0.0044533354, 0.016625786, -0.0027394763, 0.030039772, -0.015060372, -0.0013081674, 0.010667763, 0.002818759, -0.005769094, 0.011153582, 0.017260049, 0.015627159, -0.0016733746, 0.0057488517, -0.016153462, -0.016747242, -0.030012783, -0.02132203, -0.008967399, 0.011160329, 0.0054823263, -0.016005019, 0.019243808, -0.01891993, 0.019864576, -0.025100619, -0.022779487, 0.02169989, 0.026962923, -0.007962025, -0.00025872362, 0.017975282, -0.017894313, -0.005053861, 0.036085512, -0.0042779013, 0.0016387937, -0.009790591, 0.017799847, -0.0016725311, 0.005573417, -0.017799847, -0.010384369, 0.01968914, -0.02483072, -0.002638264, -0.042266205, -0.018366637, -0.0070376196, 0.03368341, -0.026234195, 0.016450351, -0.020134475, 0.017624414, 0.015060372, -0.012422107, 0.03422321, 0.018407121, 0.024196457, 0.02659856, 0.015964534, 0.028501349, 0.00060558616, -0.008211681, -0.008501823, -0.008285903, 0.02804252, 0.0057218615, 0.024304416, -0.006909418, -0.01019544, 0.007948529, -0.00457479, 0.026504094, -0.015370755, -0.035032906, -0.0009497076, -0.014898432, 0.005978266, -0.090740085, 0.0060356194, 0.033035655, 0.0155192, -0.0005263033, 0.0013916674, 0.000662518, -0.011470713, -0.0013182886, 0.0071320846, -0.014507079, 0.0042340425, 0.017786352, 0.016774232, 0.02823145, -0.014669018, 0.0061233365, -0.021983285, -0.016153462, 0.0067306096, 0.018717505, 0.011436976, -0.028987167, -0.014034755, 0.010330389, -0.009925541, -0.020984657, 0.00540473, 0.022212699, -0.016247928, -0.008447843, 0.0032371026, 0.02518159, -0.02431791, -0.014642028, -0.019446231, -0.042859983, 0.0020748496, 0.010856693, -0.035059895, -0.01388631, 0.0032742138, 0.021416496, 0.0082724085, -0.0033568705, -0.011733864, -0.008049741, 0.0143316435, -0.032414887, -0.019851081, -0.022698516, -0.011632653, -0.007294024, -0.015532695, 0.005947902, -0.0063831145, -0.0014760109, 0.0026838095, 0.01865003, -0.0048514367, -0.03735404, 0.017786352, 0.013953785, 0.024048012, 0.021578435, 0.0022452234, -0.015505705, -0.002766466, -0.004095719, -0.009520692, -0.020984657, 0.035869595, -0.010404612, 0.016058998, -0.017772857, -0.0047873356, -0.042482123, -0.014898432, 0.020768737, 0.008211681, -0.025370518, -0.02806951, 0.03732705, -0.021416496, 0.0037279818, -0.0030852845, -0.0060828514, -0.02153795, 0.032198966, -0.025680901, 0.0009159702, 0.021079123, 0.012489582, -0.012914673, 0.00094886415, -0.00033294587, -0.01856906, 0.0074829534, -0.0066125286, -0.0030076883, -0.05905393, 0.006619276, -0.06736682, 0.026760498, 0.015046877, -0.022212699, -0.00537774, -0.036382403, 0.02616672, -0.017543444, 0.00088138937, -0.013656896, 0.006204306, -0.0048851743, 0.008016004, -0.015775604, 0.0031004662, -0.027880581, 0.0219428, 0.01158542, 0.025964295, 0.0048176995, -0.028906196, 0.025829347, -0.010640773, 0.022617547, -0.02665254, 0.013454472, -0.017597424, 0.0036132745, -0.0009404298, -0.017529948, 0.01851508, -0.016328897, 0.0020242436, 0.026477104, -0.0020444859, -0.0074424683, -0.013096855, 0.023238314, 0.021146597, 0.008630024, -0.0071590743, -0.008117217, 0.014358634, 0.00590067, -0.00468275, -0.002302577, 0.020255929, 0.0007059549, 0.018096738, 0.0063291346, 0.017233059, 0.022833467, 0.006170569, -0.016220938, -0.0139133, -0.034007292, 0.0056037805, -0.0011285157, 0.0032421632, -0.012611037, 0.03730006, -0.016126473, 0.021281546, 0.016477343, 0.011221057, 0.0013174452, -0.032549836, -0.00088054594, 0.030282682, -0.016072493, -0.020755243, 0.008825702, 0.001435526, 0.0029419006, -0.0044533354, 0.01321831, -0.0037313555, -0.0028052642, -0.01166639, 0.015816089, 0.009837823, -0.009986267, -0.051712673, -0.022725508, 0.005212427, 0.015357261, -0.01881197, 0.0074019837, 0.015168332, -0.0023599304, -0.010553056, 0.0065585487, 0.0023649912, 0.0031527593, 0.015883563, 0.022671526, -0.018555565, 0.0014144401, 0.024641791, 0.018865949, -0.0011538188, -0.021956295, -0.007462711, -0.019608172, 0.0033872342, 0.020755243, 0.006636145, -0.03387234, -0.00984457, 0.0055565485, 0.010438349, -0.02453383, -0.018407121, 0.003660507, 0.003532305, 0.01402126, -0.00914958, -0.027043892, 0.0012693694, 0.028933186, 0.013609664, 0.02202377, -0.010883682, -0.020350395, 0.02520858, 0.025910316, -0.021092618, -0.024223447, 0.014952412, -0.009763601, 0.02820446, -0.013980775, 0.01878498, -0.015114351, 0.01736801, 0.007833823, -0.0040383656, 0.007334509, -0.008407358, 0.07897249, 0.012233178, -0.002405476, 0.025977792, -0.014696008, 0.009426227, 0.024358397, 0.016558312, -0.028123489, -0.022145223, 0.010526066, -0.009190066, 0.011673138, 0.022469103, -0.019824091, 0.009244045, 0.0025184962, 0.035869595, -0.027408257, 0.011713622, 0.03187509, -0.038460627, 0.023130355, -0.019432737, -0.003478325, -0.0013115411, 0.015127846, 0.014439603, 0.005563296, -0.03789384, -0.01246934, 0.00016162319, -0.032010037, -0.021376012, 0.009945783, -0.030012783, -0.028663287, -0.00025492816, -0.013785098, 0.003075163, 0.017570434, 0.017448978, 0.0018572434, -0.028879207, -4.127559E-05, 0.021173587, -0.03057957, -0.015978029, -0.0033383148]
+ },
+ {
+ "Id": 27,
+ "Type": "Bags",
+ "Brand": "Green Equipment",
+ "Name": "EcoLodge 45L Travel Backpack",
+ "Description": "The Green Equipment EcoLodge 45L Travel Backpack is a sustainable and versatile option for all your travel needs. With its earth-inspired green color, this backpack is not only stylish but also environmentally friendly. Made from recycled materials, this backpack features multiple compartments, a padded laptop sleeve, and durable zippers. Explore the world with the Green Equipment EcoLodge 45L Travel Backpack.",
+ "Price": 129.00,
+ "Embedding": [0.014197864, -0.0006946222, 0.02134302, 0.0005386108, -0.011470553, 0.013504479, -0.021633582, -0.045089774, 0.0064088497, -0.010730944, 0.010480004, 0.00570556, -0.006573941, -0.0072970414, -0.0020157665, -0.006329606, 0.025490118, -0.004298981, -0.0036287098, 0.022465643, -0.015188412, 0.034893725, -0.008115895, -0.010004541, -0.0023393456, -0.017869497, 0.017763838, -0.0041537005, 0.021382643, 0.0067357305, 0.009397005, -0.0164299, -0.02002229, -0.011457345, -0.029557971, -0.018477034, 0.0024615133, -0.0010772216, 0.016060095, -0.0017086964, 0.022029802, 0.0059994226, 0.011067729, 0.02686368, -0.021805277, 0.015095961, -0.014012961, -0.010763962, -0.032542825, 0.02375996, -0.0022485454, 0.011193199, -0.0104734, 0.020748692, -0.00051714893, 0.014026169, 0.017618557, 0.0070659136, 0.03296546, -0.03291263, -0.016522352, -0.00013877999, -0.03262207, -0.009430023, -0.00012134221, -0.01207809, -0.0073960964, -0.014118619, 0.01919023, 0.014950681, 0.0044112434, 0.0043914323, 0.03264848, 0.008267779, 0.008980975, -0.021475093, -0.020524167, 0.006382435, 0.0018061004, 0.012929961, 0.0001317636, -0.042659625, -0.016033681, -0.010030956, 0.0062701725, 0.008624377, 0.012811095, 0.009846053, -0.03359941, -0.015703497, -0.011912998, 0.0074951514, 0.009047011, 0.012949772, -0.033757895, -0.010929053, 0.013775229, 0.010889431, 0.006686203, -0.028818361, -0.01657518, 0.0042527555, 0.0007680879, -0.005804615, -0.061915893, -0.021976972, -0.0047348225, 0.0022204798, 0.027814604, -0.006296587, -0.039384212, 0.015677083, 0.029531555, -0.022518473, -0.015254449, -0.022624131, 0.0053423587, -0.0048602917, 0.006263569, -0.030878702, 0.026507081, -0.009482852, 0.02522597, -0.031908873, -0.006847993, 0.013121467, -0.018926082, -0.0076602427, 0.012454498, -0.0021891124, -0.029927775, 0.031406995, 0.009667754, 0.007614017, -0.020339265, -0.001870486, 0.007343267, 0.021012839, -0.027127825, 0.00047670153, 0.011193199, 0.014409181, -0.015558217, -0.008545132, 0.006441868, 0.009740395, -0.0062107397, 0.03418053, 0.0042461515, 0.0030756535, 0.015769534, -0.0011713237, 0.034946553, 0.024380703, -0.034682408, 0.03378431, -0.0021891124, 0.008274383, -0.033678655, -0.01215073, -0.03320319, -0.027233483, -0.001928268, 0.007977218, 0.026441045, 0.022373192, 0.038089897, 0.0046489746, -0.0060654595, 0.010750755, -0.033731483, 0.03856536, -0.00064922206, 0.00922531, 0.022069423, 0.016812911, 0.0050584017, -0.015426144, -0.013319577, -0.02316563, 0.000983945, 0.03138058, -0.010942261, 0.011688474, -0.009106443, -0.012546949, -0.0014668374, -0.013643157, 0.0033876763, -0.0057418803, 0.009159273, -0.004160304, -0.020048704, 0.0036155025, -0.6449396, -0.0059697065, -0.009945109, -0.013392217, 0.016046887, 0.004239548, 0.02199018, 0.0077659013, -0.011457345, -0.015875192, 0.0032886213, 0.027074996, 0.010090388, -0.02307318, 0.019731728, -0.012097901, 0.010711133, -0.0033232907, 0.020682655, -0.0022501962, -0.056315992, 0.0049428376, -0.031354167, 0.0056461273, 0.00964134, 0.016892156, 0.013326181, -0.010658303, 0.0028643364, 0.008148913, 0.00078129524, 0.052195307, -0.020286435, 0.0067225234, 0.04963309, -0.015716705, -0.014699741, 0.036240872, 0.010275291, 0.032489996, -0.01343184, -0.009205499, -0.015307278, -0.01849024, -0.012315821, 0.02154113, 0.039489873, -0.0059102736, -0.0035032402, -0.02655991, 0.031274922, -0.019546825, -0.004374923, -0.01018284, 0.0015733214, -0.0060786665, 0.03988609, 0.023033557, 0.028078752, 0.012269596, -0.006299889, 0.003873045, 0.0014222628, -0.0017004418, -0.03098436, 0.022069423, -0.026586326, -0.015439351, 0.006425359, -0.02356185, 0.003948987, 0.041603044, 0.014673327, -0.012513931, -0.0065640355, 0.01574312, 0.006900822, -0.014092205, -0.009278139, 0.017354412, 0.02002229, 0.0020504356, -0.0061149867, -0.017526107, 0.036372945, -0.01971852, 0.0049659503, -0.011272443, 0.020220399, 0.02144868, 0.0269033, 0.018107228, 0.004414545, -0.021012839, -0.017195923, 0.00043212684, -0.011529986, 0.0038466305, 0.017750632, -0.01168187, -0.00570556, -0.014752571, 0.030033434, 0.0010846508, -0.007250816, 0.016099717, 0.007818731, 0.013464858, 0.023971276, -0.0063064927, -0.0049098195, -0.02661274, 0.0031119736, -0.011206407, -0.005589996, -0.024961825, 0.016865741, 0.0034801275, 0.026242934, -0.044455823, 0.008241365, 0.0056956545, -0.00543481, -0.012177144, -0.017354412, 0.024314666, -0.006616865, -0.016997814, -0.020101534, -0.0074027, -0.0010920798, 0.015611046, 0.018767595, 0.004665484, 0.006299889, 0.028210824, 0.0077394866, -0.014528046, 0.003873045, -0.049553845, -0.015439351, -0.013114864, -0.008584755, -0.04501053, -0.022056216, -0.022967521, -0.002872591, -0.018860046, -0.022703374, -0.020841142, 0.01731479, -0.013629949, -0.005240002, -0.00027694087, 0.011014901, -0.012883736, -0.020735484, -0.01529407, -0.02291469, 0.005817822, 0.019322302, 0.007838542, -0.036663506, 0.00951587, -0.037403114, -0.0049692523, -0.014541253, 0.011312066, -2.8349295E-05, -0.03787858, -0.002524248, -0.01868835, -0.01025548, 0.020193985, -0.0074291145, -0.02276941, 0.00011494491, -0.0258203, 0.032331508, 0.0058673494, -0.0020537374, 0.0023393456, 0.012111108, 0.007072517, 0.027180655, -0.0024317969, 0.029478727, 0.025582569, -0.0037673865, 0.010011145, 0.020352472, 0.03315036, 0.013814852, -0.011113956, -0.014950681, 0.01045359, -0.0035626732, 0.0074951514, 0.01849024, 0.0069800657, 0.02045813, -0.036425773, 0.02228074, -0.01608651, 0.005170664, -0.02784102, -0.0015634159, -0.011358291, 0.034048457, 0.020352472, 0.005840935, -0.02168641, -0.007970614, -0.022056216, 0.006841389, 0.022782618, 0.014541253, 0.034655996, -0.008564943, -0.026229728, 0.0034438074, 0.009205499, -0.007151761, -0.028210824, -0.028712703, 0.01874118, -0.046067115, 0.023403361, 0.0039985147, -0.040599287, 0.011008297, 0.018595899, -0.0032985269, 0.02504107, 0.007363078, 0.021356229, 0.008096084, 0.0039952127, 0.025767472, -0.014409181, 0.015875192, 0.03674275, 0.030218337, -0.009846053, 0.027233483, -0.011371498, 0.005111231, 0.0014222628, 0.018133644, 0.008670602, -0.0013372407, -0.0015171902, -0.006227249, -0.0072970414, 0.01256676, -0.01072434, 0.009964919, 0.015901607, 0.025054276, 0.013788437, -0.011285651, -0.000944323, 0.020326057, -0.0026001902, 0.023192044, -0.00890173, -0.025859922, -0.008294194, -0.0209468, 0.0051343436, 0.031116433, -0.013491272, 0.0058904625, -0.02449957, 0.0022056217, 0.0072376085, 0.011219614, 0.003315036, -0.005074911, 0.024288252, 0.004031533, -0.009278139, 0.016931778, 0.0040777586, 0.0065805446, -0.0032110284, -0.024710886, 0.01666763, -0.010189444, 0.024380703, 0.02381279, 0.013246937, 0.004952743, -0.0044607706, 0.019256266, -0.020656241, 0.008690413, -0.0058310297, 0.028316483, -0.008928145, -0.016694047, -0.0012555204, -0.023033557, -0.0011292255, 0.018833632, 0.005649429, -0.0037805939, -0.015611046, 0.028025921, 0.0012703786, -0.014026169, -0.022571301, 0.009522474, -0.010268687, -0.0027834417, 0.014963888, -0.024341082, -0.007435718, 0.018529862, 0.009918693, -0.015624253, -0.02159396, -0.033757895, -0.0012654258, 0.095145494, -0.013385613, -0.01045359, 0.025212765, 0.014092205, -0.029795703, -0.009872468, -0.014514839, 0.0019266171, -0.0069338405, -0.012797888, 0.012210162, 0.009654547, -0.01785629, -0.015716705, 0.012157333, 0.008010237, -0.023601472, 0.005226795, -0.02405052, 0.022214703, -0.024816545, -0.026480667, 0.008657395, 0.011576211, -0.0026744814, 0.03492014, 0.0068149744, 0.020484546, -0.011734699, 0.017724216, 0.02681085, 0.006881011, 0.0018341659, -0.022373192, 0.015584632, 0.014052583, -0.015584632, 0.018120436, 0.0058904625, 0.040969092, 0.030456068, 0.01814685, -0.0011589419, 0.021726033, 0.0070791207, -0.015095961, 0.007726279, 0.011430931, -0.018027985, 0.046595406, 0.012903547, -0.029029679, -0.0034603165, 0.009628133, -0.009047011, 0.0022501962, -0.0074291145, -0.015954437, -0.027973093, -0.015122375, -0.03058814, 0.018384581, -0.011602626, -0.0164299, -0.0064682825, -0.010962072, 0.00023277893, -0.008994182, -0.026441045, -0.04944819, -0.040810604, -0.0061281943, -0.00931776, 0.027471215, 0.00983945, 0.01520162, -0.0040414385, 0.012778077, 0.013907302, 0.02179207, 0.010572456, -0.013273352, -0.018384581, 0.032067362, 0.0025424082, 0.0060423464, -0.016522352, -0.0039225724, 0.008538529, 0.038935166, -0.01520162, 0.030218337, 0.00095505395, -0.012883736, 0.0039060633, 0.019573241, 0.020326057, 0.011860169, -0.033969212, 0.03182963, 0.0023641093, 0.00408106, -0.023535436, 0.016786497, 0.0061447034, -0.02193735, -0.013385613, -0.009363987, 0.0285278, 0.020180777, -0.044535067, -0.012091297, 0.0038994597, -0.02242602, 0.037165385, 0.004919725, -0.031354167, 0.043901116, -0.028554214, -0.019956253, -0.05996121, 0.02119774, -0.003296876, 0.022610923, 0.009383798, 0.017235545, 0.009093236, 0.013550705, 0.013603535, -0.007455529, 0.012546949, -0.007072517, 0.0027240086, -0.041127577, -0.0072045904, -0.037218213, 0.017829875, -0.0003328656, -0.00767345, -0.03365224, 0.0056164106, 0.0056197126, -0.001473441, -0.036954068, -0.017671388, -0.01888646, -0.023575056, -0.013748815, 0.048021797, -0.016641216, 0.011199803, -0.021976972, -0.00882909, -0.008815883, -0.025093898, -0.032199435, -0.013339388, 0.012038467, 0.017526107, 0.0067060143, -0.030799458, 0.007356474, 0.017077059, -0.011807339, -0.008617773, -0.01771101, -0.017420448, -0.00651781, 0.016680839, 0.012157333, -0.008195139, -0.01849024, -0.023205252, -0.02218829, 0.019388339, -0.01953362, -0.025688227, -0.026282556, -0.014078998, -0.0071253465, -0.011893187, 0.00028787818, 0.0019612862, -0.02405052, -0.00435181, 0.03167114, 0.02720707, 0.005028685, 0.0050253836, 0.015663875, -0.016641216, 0.0073960964, -0.00089149375, 0.00081637717, 0.0066399775, -0.014277107, -0.046568993, -0.020616619, 0.004209832, -0.0009195593, -0.006920633, 0.014197864, -0.012196955, -0.0027190559, -0.014858229, -0.007514962, 0.004998969, -0.0035065422, -0.010493211, -0.01446201, -0.008551736, -0.01168187, -0.033123944, -0.0058871605, -0.0027751871, -0.015254449, 0.023469398, -0.010103595, -0.0051805694, 0.009509266, 0.0026744814, 0.020061912, 0.0026893395, 0.010077181, 0.009185688, -0.02630897, -0.021646788, 0.011701681, 0.0032275375, -0.0046687857, 0.0044211484, 0.019269472, -0.012619589, -0.02858063, 0.005708862, 0.004932932, 0.0044442615, -0.01908457, 0.025437288, 0.037059724, 0.009548889, -0.027893849, -0.010585663, -0.014712948, 0.007924389, -0.0030987663, 0.020260021, -0.004606051, -0.016588388, -0.008862108, 0.021131704, -0.011028108, 0.0029254202, -0.008677206, -0.014884644, 0.008492303, -0.017209131, 0.019850595, 0.018120436, 0.01666763, 0.027576873, 0.013246937, -0.0075479806, 0.0036881426, 0.006111685, -0.00306905, 0.011767718, 0.0027124523, 0.02051096, -0.017922327, -0.010882827, -0.00045441417, 0.009291346, 0.02858063, -0.009297949, -0.018503448, 0.005649429, 0.0033216397, -0.023667509, 0.006438566, -0.010314913, -0.013365802, -0.024407119, -0.0071385535, 0.011087541, -0.024618436, -0.04091626, 0.010321517, -0.0042362465, -0.0023855714, -0.006828182, 0.014884644, 0.022452435, -0.018820424, -0.013260144, -0.023667509, 0.018648729, -0.024459947, 0.017644973, 0.02444674, 0.01648273, -0.009363987, 0.0029997113, -0.001695489, -0.002717405, -0.011899791, 0.010829998, -0.028712703, -0.023099594, -0.011979034, -0.0076866574, -0.005817822, -0.0032523014, 0.021765655, -0.0044277525, 0.022293948, -0.012659212, -0.040361553, 0.007792316, -0.015109168, -0.007290438, 0.046701066, -0.010942261, -0.012408272, -0.0007499278, 0.009436627, 0.003797103, 0.009271535, -0.0016814562, -0.006009328, 0.020127948, 0.024327874, -0.023139216, 0.011160181, -0.0041173804, -0.016443107, -0.0049461396, 0.0060291393, 0.012513931, 0.028422141, 0.020286435, -0.0065607335, 0.020629825, -0.003414091, 0.010829998, 0.0041503985, -0.023482606, -0.022214703, -0.021316607, 0.0045433166, 0.03787858, 0.0005873128, -0.022558093, -0.0025968882, 0.009324364, -0.04633126, -0.028078752, 0.012216766, 0.0028280164, 0.011979034, 0.02504107, 0.0016971399, 0.020550583, -0.0041570025, 0.031406995, 0.005240002, -0.020075118, 0.011080937, 0.0021841596, -0.0002587808, -0.0059664045, -0.050029308, -0.01554501, 0.012949772, 0.019124191, -0.0029914568, -0.0169714, -0.020154363, 0.003896158, -0.008386645, 0.02110529, 0.02489579, 0.019295886, 0.007911182, -0.0043286975, -0.007970614, 0.00078624795, 0.033361677, 0.0048239715, 0.0040942677, 0.0245524, 0.0063494164, -0.0034966366, -0.032410752, -0.040837016, 0.019573241, -0.011074333, 0.015677083, -0.0022683563, 0.0034041854, 0.010948864, 0.0031169264, -0.015307278, 0.00841306, -0.006455075, -0.006616865, -0.0060423464, 0.0072706267, -0.025833508, 0.01874118, -0.011345084, 0.031644728, -0.01086962, -0.0032489994, -0.008373437, -0.014911058, -0.021554338, 0.018503448, 0.02430146, -0.021184534, -0.0148054, 0.006762145, -0.0005984565, 0.0020174175, -0.01666763, -0.001984399, -0.0395427, 0.018529862, -0.02276941, -0.025107106, -0.025001448, 0.012646004, -0.010810187, 0.004804161, 0.025305215, 0.19758143, 0.008479096, -8.109472E-07, 0.026163692, -0.0014016263, 0.025358045, 0.014131827, 0.00536217, -0.009746999, 0.010024352, -0.016839327, 0.01648273, 0.0016872345, -0.0032556031, -0.010460193, -0.023733545, -0.06566677, -0.010810187, -0.013603535, 0.01829213, 0.008637584, -0.0059531974, 0.026824057, -0.023944862, -0.0075677913, -0.004114079, -0.00045235053, 0.0025704736, 0.022003386, 0.018186472, -0.0006314747, -0.043425653, 0.0010945562, -0.02154113, 0.018767595, 0.014369559, 0.022967521, -0.01711668, -0.011774321, 0.0059333863, -0.025199557, 0.0075743953, 0.013002601, 0.013134675, -0.0077857124, -0.0041008713, -0.019401545, 0.022558093, 0.011946016, -0.0031681047, -0.008333815, -0.012943168, -0.008862108, 0.01406579, -0.0043650176, 0.011582815, 0.027312728, -0.009562096, -0.0045069964, 0.005203682, 0.006808371, 0.03315036, -0.0066102613, 0.0028263654, 0.010037559, 0.01392051, -0.0066432795, 0.0017483183, 0.027233483, -0.016984606, -0.010242273, -0.011596022, -0.0034603165, 0.027339142, -0.020669447, -0.014395974, 0.020880764, 0.013986547, 0.0048107645, 0.032489996, 0.008307401, -0.018965704, 0.0015972597, -0.016020473, 0.003955591, -0.026163692, -0.0071451575, -0.011279047, -0.003125181, -0.002932024, 0.01677329, -0.0038664415, 0.010156425, 0.0006413802, -0.0055668834, 0.024129765, -0.011430931, 0.010651699, -0.028976848, 0.015452558, -0.02778819, 0.02459202, -0.012487516, -0.010446986, -0.022452435, 0.028950434, -0.015122375, 0.018622315, 0.016865741, -0.0017235546, -0.0014585828, -0.0373767, 0.009311157, -0.0028643364, -0.008756449, 0.021303399, 0.009311157, -0.024314666, 0.020576997, -0.014343144, 0.011807339, -0.04461431, 0.03761443, -0.0066597885, 0.002657972, 0.0009690867, 0.014646912, 0.0056824475, 0.012097901, -0.02661274, -0.009694169, 0.026031617, 0.016244998, -0.024631642, -0.0024334479, 0.002331091, -0.019071363, -0.023680715, -0.010248876, 0.0076272245, -0.0031268317, 0.019744936, 0.012163937, -0.021290192, 0.041391727, 0.0014759174, 0.0005571836, -0.013048827, -0.024605228, -0.0070923283, 0.002740518, -0.0029815515, -0.010816791, -0.0013248587, -0.011747907, -0.017037436, -0.047255773, -0.014329936, 0.021580752, 0.009958316, -0.014409181, 0.0071385535, 0.019665692, -0.0075876024, -0.013471461, 0.014567669, -0.16694047, 0.01849024, 0.0046522766, -0.019599656, -0.0039291764, 0.027893849, 0.0015411286, 0.004298981, -0.02099963, -0.011160181, 0.02179207, 0.02405052, -0.036716335, -0.027471215, -0.014211071, 0.014488424, -0.0029567876, 0.011549797, 0.001204342, 0.0027735361, 0.012546949, -0.015307278, -0.010110199, -0.00046390694, 0.012916754, 0.018516656, 0.031222092, 0.0076404316, -0.009535681, -0.010334724, -0.011285651, -0.015729912, 0.024816545, -0.0009484503, 0.007891371, -0.0024714188, 0.015478973, 0.0005889637, -0.014224278, 0.02444674, -0.0055173556, 0.0022815636, 0.014778986, 0.023773167, 0.0014008009, 0.01849024, -0.005170664, -0.0063362094, 0.0032622067, -0.0045730327, 0.02321846, -0.019692106, -0.011358291, -0.0015485577, 0.024169385, 0.00018686288, 0.028448556, 0.012896943, 0.023456192, -0.00787156, -0.02749763, -0.039489873, 0.0009005738, -0.010711133, -0.0023442984, -0.0050385906, -0.005378679, 0.013735607, 0.015558217, 0.02154113, -0.027339142, -0.0056131086, -0.008663999, -0.001368608, 0.009727187, 0.006537621, 0.01666763, 7.970821E-05, 0.010209254, -0.016456315, -0.020563789, 0.03114285, -0.018661937, 0.010942261, -0.0025258989, -0.002506088, -0.02119774, -0.012890339, 0.0056395233, 0.004034835, 0.023112802, -0.039912507, 0.009733791, -0.030456068, 0.008155517, 0.005322548, 0.016046887, -0.01045359, -0.011675267, 0.027603287, -0.009588511, -0.0029799005, -0.032225847, 0.0021511414, 0.03492014, 0.0045202035, 0.014792193, 0.003181312, 0.03433902, -0.016958192, -0.0013785135, 0.018556278, 0.011034711, 0.012203559, 0.0007610715, 0.0030492388, -0.0038928562, -0.03040324, 0.00067357306, -0.029082507, 0.010843205, -0.025899544, 0.0048239715, -0.010314913, 0.0057418803, 0.0020586902, -0.09245121, 0.010565852, 0.017103473, 0.0010772216, 0.0037310664, 0.00985926, -0.004708408, 0.036505017, 0.01785629, 0.0032110284, -0.0012282802, 0.006828182, -0.0016244997, -0.0034438074, 0.03291263, 0.0008824137, 0.007363078, -0.022135459, -0.015412937, 0.006398944, -0.0044112434, -0.017724216, 0.004414545, -0.0067060143, -0.0069470475, -0.010829998, -0.02784102, 0.010915846, 0.02020719, 0.019388339, 0.02784102, -0.015029924, 0.007250816, -0.019797765, -0.0017037436, -0.00078046974, -0.014488424, 0.0059234807, 0.03428619, -0.023482606, -0.017248753, -0.017129887, -0.002836271, -0.026110861, 0.016958192, -0.0057319747, -0.0054876395, 0.007442322, -0.00065871485, -0.009496059, -0.008604566, -0.029531555, 0.0004932107, -0.011021504, 0.012335632, -0.011483761, -0.009971523, 0.022267533, 0.0066267704, 0.004084362, -0.0003427711, 0.030191923, -0.0017103472, -0.0011539891, -0.02090718, -0.019612862, -0.0030591444, 0.017380826, 0.013471461, -0.010585663, -0.00061868015, 0.012474309, -0.0026381612, 0.023746753, -0.014448803, 0.017988363, -0.022003386, 0.0021164722, 0.010737547, -0.00019222834, -0.0057583894, -0.026401423, 0.020788314, -0.025595777, 0.009555493, 0.017037436, 0.0036353134, -0.012480913, -0.020035496, -0.019467583, -0.0024334479, -0.0002895291, 0.018424204, -0.015677083, -0.022386398, 0.011576211, -0.008333815, -0.01005737, 0.016416693, -0.011113956, -0.020801522, -0.013015809, -0.075968474, 0.018820424, 0.0037046517, -0.0029914568, 0.008921541, -0.010704529, 0.018424204, -0.0065772426, 0.004606051, -0.0122762, -0.015161998, 0.0022881674, 0.0057121636, -0.017103473, -0.0024582115, -0.0079442, 0.023350533, 0.012375254, 0.041127577, 0.017763838, -0.028078752, -0.019982668, 0.00145363, -0.0074621327, -0.049501017, 0.0079442, -0.011021504, 0.0005514054, 0.017737424, -0.016799705, -0.009020596, 0.003197821, 0.009159273, 0.03497297, -0.019824179, -0.025780678, 0.022373192, 0.015069546, 0.0071847793, -0.022650545, -0.0066928067, -0.015518595, 0.027920263, -0.012408272, -0.015426144, 0.006847993, 0.007455529, -0.0026249539, 0.014078998, -0.00084856997, 0.008446078, 0.0037343684, 0.009416816, -0.016311035, 0.011028108, 0.00051302166, 0.012454498, 0.02596558, 0.003334847, 0.014448803, 0.028290069, 0.0062536635, 0.023007143, 0.013616742, -0.008406456, -0.004662182, -0.010209254, -0.008756449, 0.0010483306, -0.008016841, -0.009007389, -0.0039390814, 0.05322548, 0.009522474, -0.0027801397, -0.008835694, -0.005378679, 0.004272566, -0.028263655, 0.029003264, -0.01583557, -0.018648729, -0.029188165, 0.009496059, -0.0021527924, 0.0015081103, -0.0131809, 0.03365224, 0.015452558, 0.017988363, -0.024195801, -0.003275414, -0.02321846, -0.010651699, 0.0067555415, -0.0028065543, -0.0008159644, 0.0011894838, 0.004239548, 0.031301335, 0.0014825211, 0.0056428253, 0.00038445668, -0.03359941, 0.0014181355, -0.0023211855, -0.02002229, -0.024512777, -0.00890173, 0.0044607706, 0.008439474, -0.024129765, -0.009363987, 0.009865864, -0.040704943, -0.0026678776, -0.0039588925, -0.020590205, -0.025556155, 0.03576541, 0.00774609, 0.029214581, 0.0004050931, -0.013398821, 0.009291346, -0.008241365, 0.028395727, -0.010876223, 0.0032275375, 0.0045036944, 0.0055437703, -0.005266417, -0.0047909534, -0.013478065, -0.016363863, 0.0010095341, 0.00026600357, 0.013042224, -0.0027702344, 0.07063272, 0.015122375, -0.0024152878, 0.029822117, -0.008617773, 0.028290069, 0.029557971, 0.018992119, 0.006900822, -0.055312235, -0.005401792, 0.0070857243, -0.011358291, 0.03880309, -0.02686368, -0.0065277154, 0.019309094, 0.014316729, -0.009410212, 0.007997029, 0.023984484, -0.019692106, 0.003486731, 0.019705314, -0.01796195, 0.0022072725, 0.03212019, 0.0005027034, -0.006075365, -0.0058112186, 0.024697678, 0.004114079, -0.028686289, 0.006808371, 0.011886584, -0.008690413, -0.028157996, 0.012480913, 0.013458254, 0.019005327, 0.012111108, 0.032489996, -0.006395642, -0.03148624, 0.018358167, 0.00465888, 0.0036947464, 0.0074159075, -0.036478605]
+ },
+ {
+ "Id": 28,
+ "Type": "Jackets",
+ "Brand": "Solstix",
+ "Name": "Alpine Peak Down Jacket",
+ "Description": "The Solstix Alpine Peak Down Jacket is crafted for extreme cold conditions. With its bold red color and sleek design, this jacket combines style with functionality. Made with high-quality goose down insulation, the Alpine Peak Jacket provides exceptional warmth and comfort. The jacket features a removable hood, adjustable cuffs, and multiple zippered pockets for storage. Conquer the harshest weather with the Solstix Alpine Peak Down Jacket.",
+ "Price": 249.99,
+ "Embedding": [0.009143518, 0.014650862, -0.006827779, -0.023197198, -0.0344773, 0.03675986, -0.02007858, -0.025426676, 0.014332364, -0.024457915, 0.013920973, 0.013283979, -0.010961605, -0.002178055, -0.020198017, -0.0066187656, 0.02586461, -0.018233953, -0.012394842, 0.0024285396, 0.018247224, 0.030443003, -0.0023240328, -0.00042798033, -0.005371319, -0.041271903, 0.019016925, -0.022387685, 0.033601433, 0.0056864982, 0.030230673, -0.0014879782, -0.02733766, -0.005772758, 0.013031836, -0.0006291145, 0.005026281, -0.044164915, -0.004147096, -0.02306449, 0.04031641, -0.0037721987, 0.008081861, -0.007033475, -0.0030788044, -0.0054078135, -0.011950272, -0.014650862, 0.0067249313, 0.016920153, -0.002680683, -0.00081448973, 0.00039687712, 0.0065955417, -0.004283121, -0.005865653, 0.015566541, -0.008486617, 0.010742638, -0.015712518, 0.0035266906, 0.00021253868, -0.0011329867, 0.014823381, 0.003093734, -0.04273168, -0.028266609, -0.004176955, 0.0043793335, 0.0090307165, 0.0018811228, 0.02493566, 0.0010608272, 0.013078283, -0.0234228, -0.019653918, -0.0044158283, 0.002247726, 1.4735151E-05, 0.014557967, 0.032460153, -0.032937896, -0.006359987, -0.004492135, 0.027496908, 0.020397078, -0.014465072, 0.010822263, -0.028691271, -0.0083738165, -0.019746814, 0.014120033, 0.02285216, 0.0110545, -0.030336838, 0.010085738, 0.031770077, 0.009163423, -0.0100591965, -0.028346233, 0.010623202, -0.014504883, 0.01950794, -0.006625401, -0.03867084, -0.017145755, 0.00538459, -0.0039911657, 0.0022460674, 0.025028555, -0.046527103, 0.015526729, 0.04028987, -0.03763573, 0.027948111, -0.0072059943, 0.02323701, -0.004671289, -0.011399538, 0.0026209648, 0.012215687, 0.02754999, 0.0047509135, -0.00044125103, 0.0056433687, 0.00073030364, -0.03110654, -0.013483039, 0.018366659, -0.008519795, 0.024033252, 0.021511817, -0.0018512638, 0.013098189, -0.0077169165, -0.014597779, -0.004734325, -0.009588087, 0.005985089, 0.009999478, 0.0015087136, 0.01611064, -0.012189145, 0.0010400917, 0.009906583, 0.01535421, -0.022069188, -0.017676583, 0.0021034072, -0.0072657126, 0.020397078, -0.031982407, 0.03697219, 0.024298666, -0.004644748, 0.0050395513, 0.014571237, 0.012049803, -0.03877701, 0.0027005891, 0.005533885, -0.005802617, -0.01969373, -0.008917916, 0.011552151, 0.017159026, 0.012494371, -0.012421383, -0.008334004, 0.0113729965, 0.010543577, 0.00825438, -0.022759264, 0.021617983, 0.034158804, 0.017092671, -0.015168419, 0.019733543, 0.013456498, -0.0033973013, 0.0054575787, -0.015394022, -0.0048935735, 0.025824798, -0.0265945, 0.008765303, 0.009216507, 0.0008057808, -0.0054144487, -0.00435611, -0.0011412809, 0.013974056, 0.012036532, -0.0015576493, -0.63572, 0.0011578692, -0.017079402, -0.012461195, 0.026037129, 0.027895028, 0.027788863, 0.011359726, -0.0042333556, 0.012129427, 0.027443824, 0.021803774, -0.005135764, -0.01895057, 0.003646127, -0.04928741, -0.0033724187, -0.0017036272, -0.011227019, 0.0027901663, -0.025174534, 0.016004473, -0.022825617, 0.0020884776, 0.0068675913, 0.00025027725, 0.026567958, -0.026780289, -0.0044091926, 0.012288676, -0.032513235, 0.020861553, -0.01612391, 0.021432193, 0.04554507, -0.04727026, -0.009428838, 0.02831969, 0.03110654, 0.03131887, -0.010364423, -0.00063118804, 0.01200999, 0.0042167674, 0.0020188065, -0.0039181765, 0.0154869165, -0.0037622456, 0.004366063, -0.0043395218, 0.020290913, -0.018419743, -0.008566242, 0.009090435, -0.006316857, -0.003851823, 0.034397677, 0.010191903, -0.01928234, 0.0087453965, 0.0062405504, 0.0031916052, -0.020012228, -0.032858275, -0.038325805, 0.019176174, -0.03898934, -0.031584285, 0.01818087, -0.010815627, 0.015579811, 0.026780289, -0.010808991, 0.007862895, -0.007551033, 0.00072200946, 0.007982331, -0.0009737382, -0.0029626857, 0.012215687, 0.017092671, 0.0033657833, -0.027032433, -0.016522031, 0.019083278, -0.0052751065, 0.013244167, 0.007172818, 0.01745098, 0.0011147395, 0.007982331, 0.004734325, -0.008632596, -0.039307836, -0.015685977, 0.014279282, -0.022427497, 0.0109350635, 0.024670247, -0.015062254, -0.017291732, -0.024272125, -0.004223403, -0.0027055657, 0.032672483, 0.0083074635, 0.0009919854, -0.017464252, 0.038378887, -0.011472527, 0.0013751772, -0.012719974, -0.026196377, -0.012235593, 0.0059419596, -0.025745174, 0.021219863, -0.014889735, 0.0136821, -0.040767614, 0.0307615, 0.0011205454, 0.014518155, 0.01001275, -0.018897489, 0.012202416, 0.012228957, -0.004601618, -0.020489974, -0.026461791, 0.0016911859, 0.010603296, 0.037237607, -0.014120033, 0.0055504735, 0.011280102, 0.006306904, 0.0007149594, 0.020304183, -0.033389103, -0.03073496, 0.009223142, -0.0076041156, -0.010921793, -0.020556327, -0.024219042, -0.04052874, -0.008347276, -0.0006116967, -0.015022442, -0.015778871, -0.007982331, -0.008825021, 0.020689033, 0.019030195, -0.0042068143, 0.038352348, -0.01555327, -0.01799508, -0.030867666, 0.027735779, 0.014106763, -0.023409529, -0.003430478, -0.01086871, -0.0042565796, 0.0040641543, 0.003977895, -0.0154869165, -0.048252296, 0.0010210151, -0.005016328, -0.016163722, -0.005732946, -0.021060614, -0.01339678, -0.0085927835, -0.009017446, 0.0045684413, 0.0033657833, 0.01629643, 0.009448744, -0.002823343, 0.0006838562, 0.022692911, 0.0016903564, 0.028505482, 0.021949751, 0.0046248417, 0.0008966022, -0.018751511, 0.024444643, 0.019149631, -0.0011786048, -0.015539999, -0.023117574, 0.019733543, 0.009196601, 0.037370313, 0.018366659, 0.004017707, -0.026196377, 0.018446283, -0.013589205, 0.044748828, -0.031026915, 0.018486096, -0.023489153, -0.0052120704, 0.008194663, -0.017557146, -0.02059614, -0.010105644, -0.018884217, 0.007982331, 0.028611647, 0.014385448, 0.03320331, 0.0039414004, -0.012069709, -0.0049134796, -0.000646947, 0.02509491, -0.021830315, -0.015088795, -0.007046746, 0.005338142, 0.0072590774, 0.0054111313, -0.010072468, 0.0037788341, -0.0047840904, 0.01198345, -0.005805935, 0.026554687, 0.0067614256, 0.012832775, -0.029859094, 0.030973833, -0.012945576, 0.010908522, -0.00021378281, -0.007046746, -0.014849923, 0.024219042, 0.01668128, 0.019985687, 0.025347052, -0.0117114, 0.023661673, -0.008970998, 0.028346233, 0.007915977, -0.0026972713, 0.011140759, -0.011631776, 0.017583689, 0.02153836, 0.012673526, 0.022546932, -0.018141057, -0.009614628, -0.006111161, 0.018671887, 0.0318497, -0.020131664, -0.018698428, -0.03450384, -0.010364423, 0.008831657, 0.007570939, -0.0066386717, 0.0062538213, -0.015088795, 0.008367182, 0.005115858, 0.00796906, 0.026010588, 0.017305003, 0.029726386, -0.011976814, -0.03593708, 0.009906583, 0.017105943, 0.005371319, -0.0019955828, -0.010483859, 0.014279282, 0.0007203506, 0.046553645, 0.021949751, 0.0007788247, -0.005835794, -0.004807314, 0.00013820198, -0.01312473, 0.011572057, -0.02733766, 0.012965482, -0.013615746, -0.0022576791, -0.010543577, -0.010543577, -0.026873184, 0.0742098, 0.016190264, 0.0025479759, -0.021684337, 0.009296131, -0.011227019, -0.0077567287, -0.020582868, 0.004140461, -0.012786327, 0.005344778, -0.007358608, -0.016999777, -0.008884739, 0.038086932, -0.0022128907, -0.009063894, -0.008990904, -0.011691494, -0.017397897, 0.08057974, 0.019760083, 0.01132655, 0.02379438, 0.011127489, -0.012627079, -0.012965482, -0.02453754, 0.013642288, -0.008944457, 0.005825841, 0.017265191, -0.029354807, -0.0053049657, -0.0063433982, 0.01001275, 0.012527549, -0.016734364, -0.02250712, 0.0021647844, -0.013788266, -0.0057528517, -0.011293372, 0.018817864, 0.0042433087, 0.0058192057, 0.02270618, 0.021870127, 0.007066652, -0.0122488635, 0.017026318, -0.023887275, 0.00515567, -0.0010060855, -0.01761023, 0.0002894673, -0.009196601, -0.01592485, 0.019136362, -0.015022442, 0.022215165, -0.0052552004, 0.0060547604, 0.0073187957, 0.033097144, -0.007046746, 0.005978454, 0.044456873, 0.0047011483, -0.018897489, 0.018817864, -0.008937822, -0.012759786, -0.01573906, -0.015248043, 0.022666369, -0.0028847202, -0.013051742, -0.0059021474, -0.020742116, -0.00889801, 0.0023887274, 0.021617983, -0.006860956, -0.015672706, -0.013841349, 0.0069007683, 0.023661673, -0.016575115, 0.004306345, 0.00013830567, -0.004203497, -0.028372774, 0.017384628, 0.019016925, 0.0031882876, -0.0064528817, -0.028213525, 0.010663014, 0.020158205, 0.021219863, -0.0044158283, -9.4916664E-05, -0.0187117, 0.0060580783, 0.002269291, -0.004850444, -0.0034868785, -0.006685119, 0.009481921, 0.022719452, 0.011412809, 0.018977113, 0.0021448783, 0.012447924, 0.032725565, 0.025439948, 0.02456408, 0.013350332, -0.003173358, 0.021976292, -0.0043494743, -0.021657795, -0.0049532917, 0.0053580482, -0.0054808026, -0.0151153365, 0.018671887, -0.009607993, 0.0045916648, 0.034556925, -0.021803774, -0.016999777, -0.015287856, -0.026660852, 0.010629837, -0.006552412, 0.013602476, -0.00039521826, -0.013960785, -0.00044042163, -0.02586461, 0.040369492, 0.021976292, -0.016031016, 0.013974056, -0.0073984195, -0.015261314, -0.011260196, -0.010828897, -0.00076638337, 0.023316635, 0.00096461456, -0.011658317, -0.0234228, 0.0015203255, -0.026581228, -0.0025131404, 0.0045850296, -0.015022442, 0.021843586, 0.00815485, 0.013469769, 0.015977932, -0.0030174272, -0.019030195, -0.014292552, 0.015194961, -0.04119228, 0.013098189, -0.021100426, -0.026501603, 0.0025960822, -0.021803774, -0.006011631, -0.028664729, -0.029328264, -0.0007630657, 0.034238428, 0.014730486, 0.014531425, 0.008519795, 0.015274585, 0.0094885565, -0.022586744, -0.012905763, -0.010251622, 0.011731306, -0.020383807, 0.017981809, 0.018870946, -0.0014199658, 0.021710878, -0.027841946, -0.0019076642, 0.023820922, -0.0033840307, -0.04026333, -0.0032845002, -0.036892567, -0.0075974804, -0.014133304, 0.0020768659, -0.001993924, -0.022175353, -0.016959965, 0.038166557, 0.004342839, -0.0013668829, -0.004283121, 0.010576754, -0.038086932, 0.01369537, 0.0020984306, -0.00936912, -0.011207113, -0.02362186, -0.018326847, 0.01876478, 0.017742937, -0.019773355, 0.030257214, -0.0019756767, -0.016442407, -0.015659435, 0.03877701, 0.0036195857, -0.008061955, 0.02344934, -0.037794977, 0.008672408, -0.02270618, -0.02624946, -0.03784806, 0.0066917543, 0.0074315965, -0.0012043167, 0.018804593, -0.013894431, 0.009521733, -0.0034868785, -0.022759264, 0.026674123, -0.02344934, 0.0040110713, 0.024232313, -0.022029376, -0.051623054, -0.01629643, -0.0040442483, 0.014916276, -0.016588384, 0.029009767, -0.023767838, -0.013615746, -0.0023024678, 0.010636472, 0.008632596, -6.609435E-05, 0.024033252, 0.021803774, 0.052897044, -0.01855245, -0.03527354, 0.026859913, 0.010185269, -0.025532842, 0.018671887, -0.011094312, -0.013828077, -0.0016712798, 0.011777753, -0.0064462465, 0.003596362, -0.0009480262, 0.002095113, 0.018870946, -0.03259286, 0.01835339, 0.008453441, -0.011645046, 0.045491986, -0.016176993, -0.008227839, 0.005105905, 0.0069405804, 0.027682697, 0.018844405, -0.008752032, 0.02493566, -0.034318052, -0.0228787, -0.007703646, -0.018233953, 0.021034073, -0.007405055, -0.01593812, -0.00992649, 0.019932603, -0.012195781, 0.008818385, -0.021034073, -0.016774176, -0.008752032, -0.018844405, -0.008619325, -0.024962202, 0.001493784, -0.014889735, -0.03959979, 0.005494073, -0.026753748, 0.009150153, -0.017358087, 0.0072789835, -0.028532023, -0.019242527, -0.0014149892, -0.021896668, 0.01536748, 0.017411169, 0.02847894, -0.0124014765, 0.03593708, 0.020211289, 0.010822263, 0.016973235, 0.003440431, -0.020224558, -0.02700589, 0.004930068, -0.018831134, -0.0073187957, 0.0009563204, 9.292087E-06, -0.01349631, -0.007915977, 0.0062007383, -0.014770298, 0.027019162, -0.006160926, -0.0028747672, 0.036282115, -0.016588384, -0.014942817, -0.00806859, 0.016176993, 0.016920153, -0.016694551, -0.0046148887, -0.007292254, -0.02306449, 0.011817565, -0.014146575, -0.0045551704, -0.018220682, -0.0030024976, 0.030283757, 0.00010362557, 0.030416463, 0.007046746, 0.022626556, -0.0003158014, 0.025718633, -0.029859094, -0.022600016, 0.0069671217, -0.013575934, -0.023117574, -0.036680236, 0.0021432193, 0.03593708, 0.007849623, -0.029169016, -0.0085927835, 0.014080221, -0.03726415, 0.006827779, -0.003420525, -0.0009463674, 0.019454857, 0.030336838, -0.013602476, 0.026700664, 0.048093047, 0.005497391, 0.015314397, -0.01301193, -0.0042897565, -0.010603296, -0.0008999199, -0.029487513, -0.020304183, -0.012295311, 0.0215649, 0.0013726889, 0.008904645, 0.024272125, -0.026912997, -0.008519795, -0.010437412, 0.0075576683, 0.016920153, 0.03867084, -0.007491315, -0.04010408, -0.0067614256, -0.0049433387, 0.030894209, -0.019534482, 0.026196377, 0.002516458, 0.033627976, -0.0040840604, -0.026767017, -0.047164097, -0.0054409904, -0.0053580482, 0.0044158283, 0.009607993, -0.020304183, 0.012912399, -0.0032148291, -0.023263551, -0.0022792441, 0.015287856, -0.04424454, -0.0163097, 0.009661076, 0.0014373836, 0.0033226535, 0.0063035865, 0.023648402, 0.01780929, -0.002096772, -0.015340938, 0.007332066, -0.03604324, 0.0121161565, 0.014531425, -0.021697607, -0.0051921643, 0.0019093232, -0.0002780628, 0.03763573, 0.018910758, -0.014783569, -0.02977947, 0.008161485, -0.011910461, -0.024696788, -0.031690452, -0.0036859391, 0.017331544, -0.010629837, 0.022600016, 0.2019271, 0.01461105, -0.010105644, 0.03222128, 0.0013743477, 0.017676583, 0.002393704, -0.014159845, 0.017729666, 0.0058557, 0.021073885, 0.0038949528, -0.010742638, -0.0025861291, 0.034264967, -0.016455678, -0.020184746, -0.0012034873, -0.0134299565, 0.002597741, -0.002003877, 0.024285397, 0.031133082, 0.0035266906, 0.014385448, -0.016256617, 0.004518676, -0.008274286, 0.014385448, 0.0024501046, 0.003523373, -0.010032656, 0.039414003, -0.014518155, 0.0021614665, -0.0042333556, 0.013337062, 0.0061576087, 0.0015991203, 0.004176955, 0.002096772, -0.007823083, 0.009342578, -0.01181093, 0.011552151, -0.0062438683, -0.018525908, -0.00036535918, -0.014027138, 0.01096824, -0.024590623, -0.018897489, 0.01303847, 0.0299918, 0.014226199, -0.015659435, 0.03649445, 0.0029676622, 0.0023024678, 0.00501301, -0.0034437487, 0.02642198, -0.017318275, 0.028717812, -0.0024583987, 0.02246731, -0.001329559, -0.0181676, -0.0008045367, 0.008586148, 0.01200999, -0.0034868785, -0.012912399, 0.032911357, -0.012348394, -0.030310297, 0.023701485, 0.035353165, 0.00604149, 0.029328264, 0.005792664, -0.0030622159, -0.008977634, 0.0006556559, -0.0010400917, -0.039626334, 0.025599197, -0.014956088, -0.027151868, -0.003266253, -0.0064528817, -0.0022444085, -0.0006743178, 0.0018711698, 0.007610751, 0.015659435, -0.011160665, 0.02060941, 0.0038053754, -0.0031152987, -0.0062936335, -0.0040011182, -0.014650862, 0.031345412, -0.021219863, -0.0034835609, -0.0026126707, 0.007504585, 0.0053945426, 0.0040508835, 0.0023256915, -0.042253934, 0.008300828, -0.016004473, -0.004551853, 0.008685678, 0.02041035, -0.02512145, 0.0045419, -0.0058291587, 0.009800418, -0.0007137153, 0.021684337, -0.011061135, 0.0074714087, -0.037954226, -0.02325028, -0.0030323567, 0.003090416, -0.014557967, 0.0056864982, 0.0028830613, 0.031425036, -0.023210468, 0.006061396, 0.0228787, 0.015858496, -0.019720271, 0.008639231, -0.00066975603, 0.00015779701, 0.008075226, 0.02286543, 0.01632297, 0.017875643, -0.01591158, 0.012580631, -0.026010588, -0.028505482, 0.011399538, -0.010304705, -0.01321099, -0.008042049, -0.003997801, -0.007942519, -0.0117445765, -0.038936257, -0.0010160386, -0.0012491054, 0.032831732, -0.0055803326, 0.015155149, 0.008380452, -0.02623619, -0.014942817, 0.019202715, -0.16784792, 0.027311116, -0.012076344, -0.010689556, 0.0045452174, 0.0021946433, 0.027788863, -0.006333445, -0.034530383, 0.015261314, 0.023555506, 0.008652502, 0.0066320365, -0.008227839, 0.0176235, -0.009156789, 0.006993663, 0.0019707002, 0.018273765, 0.0130583765, 0.022745993, -0.0134299565, 0.00097124994, 0.0069671217, 0.00041470962, 0.006854321, -0.0015360845, -0.0038650937, 0.0034603372, -0.019162903, 0.0034503841, -0.02679356, 0.020582868, 0.0001761479, 0.019561024, -0.039414003, 0.00117114, 0.016588384, 0.00043710394, 0.040926863, -0.0045419, 0.005178894, 0.022719452, -0.0015543316, 0.005348095, 0.017278463, 0.0027768956, 0.01572579, 0.023820922, -0.0084269, 0.028160442, -0.0265945, -0.011120853, 0.010205175, 0.05045523, 0.019998956, 0.017822562, 0.025466489, 0.03357489, 0.002002218, 0.011399538, -0.013655558, 0.005802617, -0.0037323867, 0.014637591, -0.0062007383, 0.00825438, 0.03280519, -0.040926863, 0.0016986507, 0.009322672, 0.007179453, -0.011817565, -0.009435473, 0.009004176, 0.017198838, -0.023542237, -0.004817267, 0.011187207, -0.03580437, -0.020861553, 0.027470365, -0.009694252, 0.0026110117, 0.00056317565, 0.007537762, -0.023595318, 0.006306904, 0.004664654, 0.0074315965, -0.0015800437, -0.036574073, -0.015579811, 0.0036328563, 0.0076571987, 0.0026558004, 0.015420563, -0.010185269, -0.002352233, -0.0001900407, -0.0008435194, -0.01779602, -0.009296131, 0.022812348, 0.020158205, -0.0011918754, -0.00049433386, 0.013841349, 0.0033110417, 0.0064528817, 0.0062073735, 0.0044357344, -0.02007858, -0.00027930693, -0.002917897, 0.020635951, 0.015221502, -0.02680683, 0.023130843, 0.0043594274, 0.033654515, -0.0053248717, -0.030575711, 0.0037655635, -0.01275315, -0.014823381, -0.08344621, -0.02306449, 0.015234773, 0.0049532917, 0.012567361, 0.025838068, -0.0009928149, 0.03280519, -0.029407889, 0.027895028, 0.0156196235, -0.016628196, 0.00926959, 0.023874003, 0.023927087, 0.005805935, 0.020768657, -0.019016925, -0.012627079, 0.02192321, -0.00835391, -0.0073917843, -0.018525908, -0.009448744, -0.0053879074, -0.016362783, -0.032911357, 0.0038485054, 0.02023783, 0.0043494743, 0.023648402, 0.0040641543, 0.006419705, -0.023356447, -0.006987028, -0.036069784, -0.021140238, 0.005149035, 0.035034668, -0.004137143, -0.006973757, 0.0122488635, -0.02062268, -0.03752956, 0.0031302283, -0.004366063, -0.0037257513, 0.004963245, 0.014279282, -0.0025297287, 0.0015817025, -0.021472005, -0.0011545516, 0.013615746, 0.020211289, 0.0032513235, 0.01133982, -0.0038982704, -0.019813167, 0.006874227, 0.0100591965, 0.023900544, 0.002415269, -0.008267651, 0.0037788341, -0.007630657, -0.02119332, -0.008121673, 0.011518975, -0.008294192, -0.030681876, 0.021963023, -0.015088795, 0.023741297, -0.01555327, -0.0073917843, -0.034211885, -0.021087155, 0.011751212, 0.0015335962, -0.02248058, -0.018446283, 0.009229777, -0.032539777, -0.0012341759, 0.017941996, 0.01518169, -0.04586357, 0.0055438383, -0.024590623, 0.00124247, 0.027948111, 0.037237607, -0.008552971, -0.007703646, -0.0020818424, -0.028372774, -0.025997316, -0.009714158, 0.0035665028, -0.03187624, -0.019640649, -0.073201224, 0.0281339, 0.01405368, -0.024869306, -0.008227839, -0.004024342, -0.010835533, -0.008227839, 0.008048684, -0.025585925, -0.022958325, -0.03094729, -0.014664132, -0.0021266309, -0.005679863, -0.0008833315, 0.007006934, -0.008652502, 0.0057362635, -0.0057296283, -0.0005951083, -0.015447104, -0.01985298, -0.007823083, -0.040396035, 0.002906285, 0.011976814, 0.013881161, 0.0061244317, -0.010895251, 0.003964624, -0.019388504, 0.01135309, 0.06316857, -0.0252807, -0.04493462, 0.025466489, 0.01076918, 0.0045551704, -0.021684337, -0.025002014, -0.017278463, 0.004840491, -0.003666033, -0.022931784, -0.016601656, 0.010848803, 0.019600837, -0.0017351451, -0.006973757, 0.03171699, 0.028266609, -0.0019557707, -0.0059452774, 0.0013428298, -0.01255409, -0.012341758, 0.0031368637, -0.005497391, -0.013118095, 0.04443033, -0.00085596065, 0.0239669, -0.013735183, 0.026554687, 0.0010060855, -0.032911357, -0.00834064, -0.0073917843, -5.795567E-05, -0.009043988, -0.015208231, 0.028001195, -0.003533326, 0.003337583, -0.016230077, -0.0073785135, -0.025400136, -0.023343176, 0.01779602, -0.009634534, -0.010463953, -0.041059572, 0.01611064, 0.002917897, -0.0070401104, -0.029859094, 0.017676583, -0.012122792, 0.02512145, -0.009475285, -0.005683181, -0.026753748, 0.0058888765, 0.011937002, 0.011737941, -0.0058192057, -0.018977113, -0.016031016, -0.008944457, 0.008825021, 0.006635354, -0.017371356, -0.016044285, -0.0009820324, -0.0074647735, -0.004465593, -0.05754179, -0.020463431, -0.0042068143, 0.032460153, -0.013350332, -0.0027818722, 0.014451801, -0.016986506, -0.004376016, -0.008174757, -0.008937822, -0.009893313, 0.016097369, 0.002761966, 0.018578991, 0.019919332, 0.0044290987, 0.004847126, -0.023024678, -0.024006711, -0.013615746, 0.0061244317, 0.0047077835, 0.020582868, 0.005351413, 0.011034594, -0.0052850596, -0.0077567287, 0.009203236, -0.0005382931, 0.039652877, -0.014013868, 0.06656587, 0.012520913, -0.04174965, 0.012348394, -0.011645046, 0.028213525, -0.0027686015, -0.005683181, -0.005699769, -0.04310326, 0.012155969, 0.011333184, -0.007988966, 0.0097407, -0.028505482, 0.0037257513, 0.03017759, 0.0074116904, -0.036069784, -0.004890256, 0.029912176, 0.0033973013, 0.0038551406, -0.0077899056, -0.0065557295, -0.013615746, 0.023183927, 0.0063035865, 0.006376575, 0.005862335, 0.009601357, -0.0019773354, -0.029912176, -0.03620249, -0.012627079, -0.022732724, -0.0069007683, 0.014266011, -0.004837173, 0.008917916, -0.007902707, 0.017596958, 0.0059220535, -0.016389325, 0.019454857, -0.0055902856, -0.0001238945, -0.0069273096, -0.0070931935]
+ },
+ {
+ "Id": 29,
+ "Type": "Navigation",
+ "Brand": "B&R",
+ "Name": "Pulse Recon Tactical GPS Watch",
+ "Description": "The B&R Pulse Recon Tactical GPS Watch is a must-have for outdoor enthusiasts. This reliable navigation tool features a built-in GPS, altimeter, compass, and multiple sports modes. With its military green color and durable construction, the Pulse Recon watch is built to withstand your toughest adventures. Stay on track and keep track of your performance with the B&R Pulse Recon Tactical GPS Watch.",
+ "Price": 169.00,
+ "Embedding": [-0.02129825, 0.017977122, 0.0066792336, -0.006319557, 0.0026538777, 0.009694469, -0.010481052, -0.023973977, -0.013076104, -0.011623951, 0.009210418, 0.010279364, -0.025103431, -0.01515349, -0.0128004635, -0.0024706777, 0.010124736, -0.0002716485, -0.0038892166, -0.024767283, -0.015207274, 0.00369089, 0.015946796, -0.014333293, -0.013002152, -0.03388358, 0.016188823, -0.008901163, 0.0172376, -0.0062321587, 0.014467752, -0.021244468, -0.01928137, -0.009230587, -0.0052203573, 0.008719644, -0.005022031, -0.015624096, 0.003129525, -0.0012202123, 0.018689753, -0.0067565474, 0.0052943095, -0.0016656066, -0.034555875, 0.0019345239, 0.021741964, -0.007590191, 0.0010050784, 0.004517811, 0.007933061, 0.0031580976, -0.017318275, -0.01068274, 0.037702207, -0.003062296, 0.018071244, 0.020814199, 0.0039161085, -0.032028053, -0.0034992865, -0.011381925, -0.022777297, 0.024202557, 0.013889579, -0.022481486, -0.011018887, -0.0054892744, -0.008370051, -0.0022790742, 0.009089405, 0.015180382, 0.034098715, 0.010581896, 0.026353896, -0.010608788, -0.018716644, -0.0196713, 0.02273696, 0.013096273, 0.011489492, -0.0077717104, -0.021715073, 0.03248521, 0.012444149, 0.0029194336, -0.017815772, 0.010218858, -0.003892578, -0.017183816, -0.0058657588, -0.0012168508, 0.006380063, 0.0079868445, -0.032700345, 0.0047900896, -0.020209135, 0.00933143, -0.013116442, -0.023395807, 0.013808904, 0.0075498535, -0.0071263085, -0.01414505, -0.03138265, -0.0023160502, 0.008336437, -0.022723513, 0.016498078, -0.0026656429, -0.05034132, 0.038777877, 0.022898309, -0.008027182, 0.021580614, -0.024498368, 0.02003434, -0.012242461, 0.018931778, -0.03756775, 0.03514749, -0.021419264, 0.044801623, -0.015691325, 0.0040270365, 0.018098135, -0.0024337017, 0.0038387945, 0.031786025, -0.01661909, -0.01847462, 0.027106864, -0.0058489516, 0.019536842, -0.011610505, 0.011758409, 0.0060573625, 0.020370485, -0.02767159, 0.010171797, 0.00800029, 0.014306401, -0.015637541, -0.02322101, -0.0024488282, 0.020841092, 0.0029211142, 0.018541848, 0.007818771, 0.00625905, 0.02276385, -0.014642548, 0.012645836, 0.01622916, -0.021580614, -0.0040337597, -0.01912002, -0.001004238, -0.009983555, 0.0019664578, 0.013271069, 0.0071195858, 0.02705308, 0.009129742, 0.03963841, 0.017869554, -0.003495925, 2.2404304E-06, -0.018461173, 0.015650988, 0.012504655, 0.01847462, -0.011617227, 0.00067271345, 0.013808904, 0.024753839, 0.004574956, 0.0025093346, -0.01437363, 0.014561872, -0.005465744, -0.027617808, 0.0022387365, -0.00016135038, -0.022131894, 0.0075700223, 0.023019321, -0.024135329, 0.0038421561, -0.006336364, 0.014561872, -0.0013529902, 0.024363909, -0.004786728, -0.6548674, -0.0030959104, -0.0054724673, -0.016081255, 0.038428284, 0.011375202, 0.025022756, 0.011018887, -0.0040539284, 0.012336582, 0.0038858552, 0.02065285, -0.023328576, -0.01873009, -0.010669294, -0.025829507, 0.0018101496, 0.00058825663, 0.031086842, 0.008612077, -0.028935503, -0.0067733545, -0.017304828, -0.010272641, 0.012652559, 0.014454305, -0.0054892744, -0.016309835, -0.030549007, 0.01804435, -0.008659137, 0.024310125, -0.014938356, 0.0074221175, 0.043564603, -0.041574616, -0.026703488, 0.03756775, 0.011650843, 0.03931571, -0.01001717, 0.009761699, 0.020437716, -0.034233175, -0.007455732, 0.011099562, 0.022642838, -0.009754975, -0.012175231, -0.03697613, 0.015825784, -0.00066052814, 0.0038219872, 0.012336582, 0.005213634, -0.025816062, 0.012840802, 0.02072008, -0.012060941, -0.00046052088, -0.012995429, 0.02090832, -0.014413968, -0.024350462, -0.028801044, 0.034663443, -0.036680322, -0.0026690043, -0.0009437317, -0.01964441, 0.023180673, 0.016188823, 0.00092440326, 0.00018897744, 0.006333003, 0.009640685, 0.0027311915, -0.0102390265, -0.010555005, 0.01538207, 0.018770428, 0.004685884, -0.0062691346, -0.0115634445, 0.034663443, -0.006336364, -0.0046119317, -0.016861115, 0.025385793, 0.011549998, -0.014682885, 0.0066220886, -0.03170535, 0.008080965, -0.022333583, -0.0038387945, -0.0133651905, 0.022790741, 0.029849822, -0.0077582644, -0.032081835, 0.0029933858, 0.03431385, 0.0054018763, -0.008161641, 0.02090832, 0.01136848, 0.0021025972, 0.016430847, -0.029016178, -0.025600927, -0.013513095, -0.0024303403, 0.0034085268, 0.006228797, -0.027994292, 0.01909313, -0.0039497227, 0.024968972, -0.0075229616, 0.027698483, -0.032861695, 0.0148576815, -0.02067974, -0.006524606, 0.015570312, 0.008840657, -0.0051195133, 0.00923731, -0.019846097, -0.012060941, -0.016807333, 0.0063901474, 0.0164174, 0.001978223, -0.024431137, 0.0012571884, -0.016565306, -0.0048035355, -0.033829797, -0.006847307, 0.00037417322, -0.0059497952, -0.02812875, -0.018824212, -0.026259774, -0.03407182, -0.00827593, -0.016713211, 0.004857319, 0.0076574204, -0.028854826, 0.0096474085, 0.014360184, 0.0072137066, -0.02074697, -0.024821067, 0.004178303, -0.0052808635, -0.004413605, 0.014171942, 0.0028068244, -0.0070187417, -0.0126323905, 0.004094266, -0.017439287, -0.0071666464, 0.04832444, -0.009297816, -0.030549007, 0.018004013, 0.015234166, -0.004353099, 0.011482769, -0.016740102, 0.021970544, -0.03514749, -0.024068099, -0.0013681168, 0.02028981, 0.009802036, 0.006897729, -0.016135039, 0.0033732315, 0.0021446156, -0.00020683523, -0.0148576815, 0.029849822, -0.01476356, 0.013170226, 0.015395516, 0.01856874, -0.026138762, 0.014682885, -0.008766704, 0.008255761, -0.015691325, 0.00083406386, 0.016605644, 0.030280089, 0.012134894, -0.023032768, 0.029231312, -0.020558728, 0.007751541, -0.021002442, 0.014252617, -0.009855819, 0.024726946, 0.01001717, -0.0012269352, -0.01785611, 0.008175086, -0.0034034846, 0.005348093, 0.0081549175, 0.010460883, 0.026770718, 0.0039396384, 0.0014050929, 0.024538705, 0.029392662, 0.015086261, -0.024888298, -0.01863597, 0.01950995, 0.012659282, 0.0139837, 0.016807333, -0.028989285, 0.021244468, 0.029231312, 0.0265018, 0.029903606, 0.00054917956, 0.013284515, 0.002872373, 0.0018857826, 0.01382235, 0.017385503, 0.008040627, 0.016498078, 0.023032768, -0.016928345, 0.022293245, 0.015529974, 0.019308263, -0.00092692435, -0.0070523564, 0.0049716085, -0.012961814, -0.0042320862, -0.023678169, 0.009613793, 0.00065464556, -0.027886724, 0.022521826, -0.000355265, 0.013183671, 0.017210707, 0.019039346, 0.0282901, -0.00012573985, 0.008544847, 0.0010790307, -0.01622916, 0.0037144204, -0.013445865, -0.023947086, -0.00050421996, 0.032512102, -0.020330148, 0.010050785, 0.0035362625, 0.036734104, -0.010420546, 0.026582476, -0.0016832543, -0.00699185, 0.0015731662, -0.00026324484, -0.008706198, 0.02461938, 0.01925448, -0.0012798783, -0.0020051147, -0.036169376, 0.0038623249, -0.010810476, 0.01827293, -0.023032768, 0.013183671, 0.005132959, 0.002998428, 0.003929554, -0.012181954, 0.025210997, -0.003926193, 0.016659427, -0.010232303, -0.009492781, 0.010790307, -0.0057111313, -0.02331513, 0.033749122, 0.005374985, -0.02780605, -0.013398805, 0.009425552, 0.00012658021, -0.0037648424, -0.014091267, 0.001347948, -0.029123744, 0.015435853, 0.014091267, -0.012047496, -0.01453498, 0.0076574204, -0.007980121, 0.0037950955, 0.0075498535, -0.020558728, -0.0029748976, 0.09428241, 0.002909349, -0.0062321587, 0.0071330317, -0.02152683, -0.029661579, -0.03571222, -0.0045884014, 0.025224444, -0.019536842, -0.002716065, 0.029123744, -0.002205122, -0.0190259, 0.012269353, 0.0071666464, 0.01873009, -0.009304539, -0.0164174, 0.01905279, 0.010837368, -0.003906024, 0.013123165, 0.01886455, 0.018098135, -0.009714638, 0.031301975, 0.0040068678, 0.019066237, -0.020451162, 0.006218713, -0.008101134, -0.00222361, 0.0005886768, -0.0031480133, -0.004134604, -0.009391937, -0.008141471, 0.010232303, 0.0053581772, 0.017963676, 0.02767159, 0.007294382, -0.017708205, 0.025681604, -0.0034623104, -0.0033782737, -0.013170226, -0.0018807404, -0.023920195, 0.03557776, -0.013371913, -0.021876423, -0.023113443, -0.0022286521, 0.011200406, 0.012054218, 0.020195689, -0.0036001306, -0.032377645, 0.006168291, -0.0052035498, 0.028370775, 0.007704481, -0.0019614156, 0.003294237, -0.0034824791, -0.023826074, -0.0148307895, -0.007233876, -0.017775435, -0.015960243, -0.0032841526, 0.0009159996, 0.025721941, 0.0026421126, 0.020397378, 0.0035429855, 0.00236143, 0.013116442, 0.028612802, 0.008544847, -0.0027194263, -0.015893012, 0.016202267, 0.00074288406, -0.014104713, -0.0055699497, 0.0057313, 0.023826074, 0.012074387, 0.006884283, 0.04380663, 0.025695048, -0.0035093708, 0.0058691204, 0.015126599, 0.02172852, 0.024955526, 0.020921767, 0.018030906, -0.012000435, -0.025574036, -0.00217823, 0.026542138, 0.002966494, -0.029096853, 0.0066052815, 0.0019261203, 0.013546709, -0.003425334, -0.014279509, 0.0028538848, 0.005600203, -0.0036572753, 0.0060304706, -0.0074490095, -0.005334647, 0.0014782049, -0.02191676, -0.020867983, -0.024901742, 0.020115014, -0.014010591, 0.010460883, 0.034905467, -0.004521172, -0.009116297, -0.0011050821, 0.018084688, -0.0034656718, 0.026555585, -0.011502937, -0.030898599, -0.005153128, -0.01703591, -0.009694469, 0.014965248, -0.006255689, 0.012316412, -0.036223162, 0.013129887, 0.026327005, 0.027147202, 0.0067565474, -0.01850151, -0.016686318, -0.010642403, -0.027443012, 0.003926193, -0.020504944, 0.009344877, -0.0009874307, -0.014266063, -0.018972116, -0.04609243, -0.038589634, -0.0006844786, 0.04507054, 0.02331513, -0.006201905, -0.00699185, 0.0078725545, 0.015866121, -0.010413823, -0.0051295976, -0.025049647, -0.015301395, -0.019160358, 0.0027244685, 0.0071195858, -0.012840802, -0.022064665, -0.00878015, -0.033991147, 0.021957098, -0.01909313, -0.0027042998, -0.0025126962, -0.03931571, -3.159253E-05, -0.03170535, -0.00063069514, 0.0036774443, -0.04208556, -0.0148576815, 0.027200986, 0.025829507, 0.007307828, -0.012867693, 0.015072815, -0.021056226, 0.028720368, -0.007388503, 0.02361094, -0.008329714, -0.018555295, -0.04009557, 0.011328141, 0.0064540156, 0.016874561, -0.022629391, -0.0211369, -0.019267926, -0.01655186, 0.012276075, -0.015126599, 0.0164174, -0.0060506393, 0.007879277, -0.0058220597, 0.0018235955, -0.032081835, -0.009149912, 0.0148307895, -0.008470895, -0.008820488, 0.0019630964, -0.008215424, -0.011751686, 0.02175541, -0.011106285, 0.016363619, -0.0069313436, 0.015919905, 0.020115014, -0.010124736, -0.0243908, -0.020545281, 0.010319701, -0.0010807115, -0.0020824284, 0.010884428, -0.013728228, -0.021567168, 0.0070456336, 0.039557736, -0.012612222, -0.0052775024, 0.007368334, 0.021378927, 0.0021244467, -0.027456457, 0.0008294418, -0.022279799, 0.005774999, -0.031409543, 0.010602064, 0.014750115, -0.02393364, -0.028854826, 0.013903025, -0.034986142, 0.006897729, -0.005801891, -0.02250838, 0.0019681386, 0.005600203, -0.003452226, -0.011119731, 0.029096853, 0.009163357, 0.01873009, -0.0046085706, 0.002457232, -0.007368334, 0.009620517, -9.6274496E-05, 0.0193486, 0.027241323, 0.020316703, -0.01382235, 0.004013591, -0.00900873, 0.02175541, 0.01739895, -0.018380499, -0.015086261, 0.011065947, 0.008054073, 0.0029194336, 0.010272641, -0.032431427, -0.031517107, -0.0016286304, -0.029419554, -0.03011874, -0.00028740536, 0.005075814, -0.024027761, -0.017761989, -0.0034723948, 0.004964886, 0.015234166, 0.01987299, 0.0057783606, 0.010010446, 0.014521535, -0.04084854, -0.007926337, 0.0075632995, 0.02042427, -0.009472612, 0.019106574, 0.01778888, -0.03633073, 0.0073347194, 0.0037110588, -0.014602209, -0.032243185, -0.005240526, -0.007388503, 0.008880994, 0.011476046, -0.011355033, 0.0038589633, 0.008686029, 0.006423762, -0.024148773, -0.010373485, 0.023005875, 0.005875843, 0.041413266, -0.03899301, 0.0029446445, -0.018689753, 0.016793886, 0.013459311, 0.01909313, -0.00060674467, -0.018259484, 0.0070321877, -0.008094411, -0.02214534, -0.013143334, 0.016578753, -0.009143189, 0.027133757, -0.0040808204, 0.010877705, 0.012726512, -0.012901308, -0.0045816787, -0.0015008948, -0.015529974, 0.008585185, 0.0045110877, -0.02090832, -0.008571739, -0.029930497, 0.0037682038, 0.036680322, 0.026837947, -0.036438294, -0.015960243, -0.0046724384, -0.031113733, -0.025466468, 0.008497787, 0.0032841526, 0.024955526, 0.024148773, -0.0009311262, 0.042408258, 0.002500931, 0.029392662, 0.009600348, -0.018326715, 0.012565161, -0.0099566635, -0.00038677873, -0.009358322, -0.032270078, -0.00018330496, 0.017923338, -0.0032152426, -8.7030465E-05, 0.009976832, -0.035658434, -0.011402094, 0.0048102583, -0.010252472, 0.029957388, 0.026340451, -0.016094701, -0.029634688, -0.0229252, -0.012793741, 0.026084978, -0.025547145, 0.0043161227, 0.029446445, 0.0018605717, -0.00041661173, -0.022185678, -0.026528692, -0.004410244, -0.012558438, 0.003798457, -0.006544775, -0.016108146, 0.010911319, 0.012343304, -0.02478073, -0.006776716, -0.014521535, -0.0048640417, -0.0034656718, -0.0014672801, -0.02542613, 0.012934922, -0.01421228, 0.031759135, 0.009358322, -0.013782012, -0.0067397403, 0.001281559, -0.03587357, 0.027994292, 0.038266934, 0.008847379, -0.023812627, 0.009586902, -0.0032488573, 0.01742584, -0.00722043, -0.005257333, -0.026259774, 0.0045850403, -0.01703591, 0.015113153, -0.009566734, 0.012316412, -0.006595197, -0.006733017, 0.028343884, 0.20932524, 0.010023893, -0.0043732678, 0.020316703, -0.0032387727, 0.03592735, -0.008222147, 7.484515E-05, 0.0075498535, -0.008786873, -0.007368334, 0.011657565, -0.031409543, -0.008800318, 0.0013437462, -0.02065285, -0.021190684, -0.022589054, -3.4166154E-05, -0.00092188217, 0.005771638, 0.017385503, 0.023247901, -0.0351206, 0.017842663, -0.01889144, 0.013687891, -0.0058792047, 0.021190684, 0.020478053, -0.019388938, -0.027429566, 0.008793596, -0.01169118, -0.009586902, 0.037863556, 0.0068573914, 0.0025463107, -0.006292665, 0.015879568, -0.012726512, 0.023167226, 0.015718216, -0.016766993, 0.03603492, -0.00699185, -0.018461173, -0.0008193574, -0.003401804, -0.005771638, -0.015261057, -0.0100978445, 0.00687756, 0.013371913, -0.020437716, 0.008786873, 0.019523397, -0.021620952, -0.012968537, 6.4498134E-05, -0.007180092, 0.0075700223, -0.015489637, 0.02640768, -0.019590626, 0.031732243, 0.010877705, -0.011933206, 0.012007158, -0.011099562, 0.010481052, -0.009136465, 0.014104713, 0.022844525, -0.017130032, -0.014091267, 0.016753549, 0.02322101, 0.00027564025, 0.022414258, 0.010467607, -0.018340161, -0.0064573768, -0.031490218, 0.017546855, -0.020088123, 0.0019799038, -0.0015479552, -0.0012941646, -0.00062691345, 0.015556866, -0.0089415, -0.021473046, 0.010212135, -0.007697758, -0.00017941826, -0.023409251, 0.028370775, -0.010171797, 0.00355307, 0.0064641, 0.031759135, 0.015032478, 0.00279674, -0.005223719, 0.008228869, -0.003704336, 0.028801044, 0.016524969, -0.00889444, -0.016605644, -0.019066237, 0.0071330317, -0.018999008, 0.0031631398, 0.018313268, 0.010091122, -0.0019983917, 0.00028572464, -0.00983565, 0.029338878, -0.024094991, 0.011798747, 0.01694179, -0.007764987, -0.0148576815, -0.00079372624, -0.0012790379, 0.005657348, -0.015543421, 0.003956446, 0.00518002, 0.029634688, -0.0351206, 0.001373159, -0.0015487956, 0.0044942806, -0.013566879, -0.012726512, 0.007233876, 0.0042925924, -0.00016534212, 0.0014151774, 0.012497932, 0.044532705, -0.021325143, -0.00265892, 0.013835795, -0.018514957, 0.01918725, 0.01765442, -0.0027765713, -0.007798602, -0.003986699, -0.012840802, -0.019160358, -0.048808493, -0.009210418, 0.018192256, -0.0036068533, -0.01444086, 0.014508089, 0.041547723, -0.0017883001, -0.019321708, 0.01950995, -0.17199951, 0.03775599, 0.017479625, -0.01313661, -0.011865976, 0.0062388815, 0.01001717, 0.015543421, -0.017761989, 0.012390365, 0.02888172, 0.019913327, -0.02315378, -0.0026992576, -0.0021681457, -0.0033412976, -0.015193828, 0.029769147, 0.0007252364, -0.0014445902, 0.0056640706, 0.0073750573, 0.015745109, -0.00077019597, -0.0065414137, -0.037298832, -0.0070052957, 0.0130559355, 0.0075498535, -0.007798602, -0.0003642989, -0.038912334, 0.03485168, -0.0032337306, -0.010138183, -0.021231022, 0.0059430725, -0.0009428913, -0.00081095373, 0.021405818, 0.003727866, -0.0036068533, 0.0139568085, 0.010010446, 0.012168508, 0.014629101, -0.01444086, -0.010353317, 0.011442431, -0.021795748, 0.01928137, -0.018931778, -0.011913037, -0.019550288, 0.024794176, 0.0061884597, 0.0074153948, -0.0145484265, 0.0013143333, -0.01208111, -0.019012453, -0.0061044227, -0.0044573043, -0.008444004, 0.0027748905, -0.016269498, -0.0016361937, 0.005953157, 0.0031009526, -0.0014219002, -0.021257913, 0.0039598076, 0.00069078134, -0.021620952, 0.009620517, -0.0006512841, -0.013849242, 0.0047396678, 0.024525259, 0.01700902, 0.02578917, 0.012955091, -0.03248521, 0.006514522, 0.021970544, -0.016874561, -0.0018185533, 0.010783584, 0.015503082, -0.004322846, 0.027443012, -0.02904307, -0.015906459, 0.007933061, 0.0046287393, -0.0024841237, 0.0064271237, -0.03727194, 0.0041850256, -0.041897316, -0.011294527, -0.004100989, -0.0038320716, 0.014346738, 0.03216251, -0.003647191, 0.037863556, -0.004131242, 0.016538415, -0.012376919, -0.022804188, 0.019617518, -0.0008647372, 0.010265918, -0.006696041, 0.014064375, 0.0085784625, -0.012020604, 0.0008933097, -0.019321708, 0.03867031, -0.010595342, -0.025614373, 0.009808759, -0.014279509, -0.009882711, -0.08858136, -0.016336726, 0.031786025, 0.0036001306, -0.0024219365, -0.0004525374, 0.0014437498, 0.012955091, 0.013291238, 0.029338878, 0.0058388673, -0.021513384, -0.007886, 0.02067974, 0.012168508, 0.0022857971, 0.03638451, -0.033184394, 0.011018887, 0.018528402, -0.0093381535, -0.0064708227, 0.00882721, 0.0019580543, 0.010467607, -0.026259774, -0.020222582, -0.01240381, 0.03587357, 0.010743246, 0.0074153948, -0.0027076611, 0.022064665, -0.016027471, -0.020599065, 0.002480762, -0.025063094, -0.010467607, 0.014387076, -0.0086322455, -0.005909458, 0.009533118, 0.0019160358, -0.026770718, -0.018125027, -0.0033547434, -0.00083322346, 0.010037338, 0.011549998, -0.023557156, -0.011482769, -0.04057962, -0.009136465, -0.017708205, -0.020195689, 0.00068573916, 0.0006353171, 0.018219147, 0.0037782881, -0.0190259, -0.007307828, 0.009230587, -0.02198399, 0.02028981, -0.0022387365, -0.0032908756, -0.034663443, 0.007677589, 0.03530884, -0.0092238635, -0.030091846, 0.02335547, -0.013311407, 0.029446445, -0.017587192, -0.011684457, -0.0081549175, -0.001978223, 0.03372223, -0.008833934, -0.0123231355, -0.012834079, 0.026595922, -0.03014563, -0.024242895, 0.006689318, -0.002652197, -0.006168291, -0.0043094, -0.035819784, -0.005939711, 0.021446155, 0.0071330317, 0.004252255, -0.023799181, -0.007825494, -0.016296389, -0.0012790379, -0.0109718265, -0.019375492, -0.0067834393, 0.0054993588, -0.08223491, 0.014171942, -0.0011084435, 0.0043497374, 0.0067666317, -0.00070338685, 0.010420546, -0.037406396, 0.050395105, -0.022293245, -0.021231022, -0.0024337017, 0.0028438005, -0.020141907, -0.004222002, -0.0013244178, 0.0076708663, 0.00021156229, 0.017990569, 0.0075364076, -0.018299824, 0.015718216, -0.008699475, 0.0069649583, -0.020612512, -0.0021866339, -0.011234021, -0.007906169, -0.0148576815, -0.019711638, -0.01700902, -0.004961524, -0.008538124, 0.0154492995, -0.009371768, -0.021459602, -0.00939866, -0.0021513384, 0.016955236, -0.015503082, 0.00089078856, -0.008975116, 0.018030906, -0.0037581194, 0.008497787, -0.013943362, -0.016121592, -0.005771638, 0.01622916, -0.007953229, 0.0082087, 0.032216292, 0.009082682, -0.017573746, -0.022790741, -0.0067498246, -0.008807042, 0.017506517, 0.008692752, -0.012215569, 0.050045513, 0.027160648, 0.025103431, 0.002097555, 0.017251045, 0.003986699, -0.036626536, 0.0018925056, -0.0011361756, -0.00036345856, -0.0086053535, -0.025668157, 0.032108728, -0.006719571, -8.093781E-05, -0.010803753, -0.006262412, 0.0021126815, -0.009970109, 0.024565596, -0.00028866593, 0.0063464483, -0.054617107, 0.007617083, 0.007502793, 0.004074097, -0.018313268, -0.004390075, 0.0019832652, 0.0061514834, -0.016188823, -0.004410244, -0.0057649147, -0.0051497663, -0.02188987, 0.010084399, 0.011892868, -0.006924621, 0.021015888, 0.030656572, -0.008282653, 0.008188532, -0.0035228168, -0.020276366, 0.0027765713, 0.031490218, -0.02276385, -0.034905467, -0.005153128, -0.011751686, 0.0021009166, -0.0015160213, -0.019146912, 0.023180673, -0.006571667, -0.0038892166, -0.013190394, -0.02067974, -0.011402094, 0.0012344986, 0.017452734, 0.018514957, 0.0022958815, 0.010030615, 0.0010025573, -0.025466468, 0.010615511, -0.0065414137, -0.011556721, -0.023530265, 0.040391378, 0.0050724526, -0.017103141, -0.019711638, -0.014844235, 0.011859253, -0.0013034085, 0.017358612, -0.05362211, 0.08374085, 0.00081137393, 0.0060775313, -0.011859253, -0.021862976, 0.007099417, 0.0039766147, 0.002317731, -0.03138265, -0.031732243, 0.0041917483, 0.0050253924, 0.0062321587, 0.017049357, -0.015906459, 0.007092694, 0.006262412, 0.030468332, -0.016982129, -0.0029261564, 0.045420133, -0.021795748, 0.015462745, 0.0018067881, 0.0046825227, 0.0024471476, 0.023073105, 0.010427268, -0.007664143, 0.004655631, 0.036760997, -0.028397668, -0.039235037, 0.0063464483, 2.6117017E-05, -0.024068099, 0.0063262796, 0.010575173, 0.0038085415, 0.051282533, 0.01918725, -0.008027182, -0.009849097, -0.0068741986, 0.022562163, -0.0076238057, -0.01684767, -0.012538269, 0.005442214]
+ },
+ {
+ "Id": 30,
+ "Type": "Ski/boarding",
+ "Brand": "Gravitator",
+ "Name": "Zero Gravity Ski Goggles",
+ "Description": "The Gravitator Zero Gravity Ski Goggles combine style, performance, and comfort for the ultimate ski experience. With their sleek white frame and red mirrored lenses, these goggles offer a futuristic look on the slopes. The goggles feature an anti-fog coating, 100% UV protection, and an adjustable strap for a secure fit. Enhance your vision and carve your way down the slopes with the Gravitator Zero Gravity Ski Goggles.",
+ "Price": 79.99,
+ "Embedding": [0.0067111463, 0.007804441, -0.0052713617, -0.038806908, 0.016927563, 0.01435748, -0.026373627, -0.042413097, -0.009398969, -0.037192196, 0.008820363, 0.0066438667, -0.00030969668, -0.015729984, 0.006374748, -0.011471182, 0.0269926, -0.0060652616, -0.012480377, -0.014761157, 0.018542275, 0.024583988, -0.013509756, -0.026763849, -0.01478807, -0.012877327, 0.009816103, -0.01673918, 0.007817897, -0.0050257905, 0.024530165, -0.016335502, -0.023238394, -0.022242656, -0.011323167, 0.003764297, 0.004184795, -0.012049788, -0.019591838, 0.00966136, 0.0073200273, 0.0024506617, -0.0006000505, 0.012096883, -0.0034312627, 0.02358825, -0.0109934965, -0.035442926, -0.00239852, -0.0062536444, 0.0060551697, 0.024059206, -0.016806459, -0.032240413, 0.020991255, -0.020170443, 0.01885176, 0.008739628, 0.01941691, -0.021610226, -0.0095268, -0.025216417, -0.022309937, 0.012762952, 0.011760484, 0.00078380806, -0.017654182, -0.015245572, -0.009937206, -0.012372729, 0.024422517, 0.019228527, 0.013677956, -0.0055472082, 0.015635794, -0.0121641625, 0.0039459523, 0.004800404, 0.0048239515, 0.0014894035, 0.02576811, 0.0028156538, -0.011033865, 0.019457279, 0.00058827654, 0.019834043, 0.014115273, 0.017856022, -0.00046843465, -0.017842567, -0.0025263513, 0.0006362133, 0.015703073, 0.01730433, -0.038161024, 0.01789639, 0.0018535546, 0.006761606, -0.009008747, -0.011921956, 0.008995291, 0.00028530782, -0.0058667865, -0.020116618, -0.02636017, -0.026938776, 0.008430142, 0.0050156987, -0.0013868021, 0.0032445616, -0.006199821, 0.012884055, 0.014936085, -0.007346939, 0.030275848, 0.02173133, 0.048252974, 0.00949316, -0.012984974, -0.031944383, 0.012433281, -0.0036734694, 0.02576811, -0.021556403, 0.0028206997, 0.021879345, -0.040663827, -0.0021294013, 0.019605294, -0.0020738957, 0.014586231, 0.021206548, 0.004743216, 0.012359274, -0.002368244, 0.035416014, -0.009311506, 0.01141063, -0.023790088, 0.013092622, 0.0009150034, -0.0027197804, -0.0058129625, -0.0111482395, 0.005156986, 0.008961651, -0.006936533, 0.0062166406, 0.035738956, -0.018730657, -0.0029468492, -0.015999103, 0.031702176, 0.016348958, 0.0054530166, -0.0074949544, 0.009008747, 0.037003815, -0.034447186, 0.005163714, -0.011673021, -0.007595874, 0.013045526, 0.0028711595, 0.025283696, 0.016335502, -0.0011673021, -0.023911191, 0.0058970624, 0.007885177, 0.015353219, 0.049114153, -0.02374972, 0.023144204, 0.0126687605, 0.020870151, -0.00084141624, 0.015137924, -0.0063343802, 0.015191748, -0.0077304333, -0.0056279437, -0.0013262504, -0.0015154744, -0.0060047098, -0.012177619, 0.015218659, 0.0023278764, -0.0014759476, -0.042547658, 0.00098817, 0.014666966, 0.020170443, 0.012789864, -0.6562189, -0.017048666, 0.006569859, -0.026346715, 0.02755775, 0.021273829, 0.009271137, 0.01753308, 0.0011370262, 0.020695224, -0.014007625, 0.024139943, -0.007939, -0.020614488, -0.021408388, -0.015851088, -0.004982059, 0.0051166182, 0.01716977, -0.0012825185, -0.032940123, -0.0064554834, -0.0155146895, 0.017385064, 0.012655305, 0.022807805, 0.008356134, -0.007279659, -0.030571878, 0.035389103, -0.009109667, 0.032671005, -0.014936085, 0.024032295, 0.045185022, -0.03390895, 0.0068457057, 0.041794125, 0.012756224, 0.039425883, -0.016120207, -0.0021176273, 0.02785378, -0.01961875, -0.0025095313, 0.020291546, 0.004174703, -0.010132317, -0.008874187, -0.0045010094, 0.009378785, -0.007138372, 0.018649923, 0.02286163, 0.01869029, -0.018474994, 0.025848845, 0.019295806, -0.008961651, 0.009250954, -0.010448531, 0.010017942, -0.00949316, -0.012177619, -0.0070374524, 0.031540707, -0.034393363, 0.00069340103, 0.0055438443, -0.01392689, 0.028930254, 0.022471407, -0.019093968, 0.024732003, 0.008638709, 0.035442926, 0.018878672, -0.0010075129, 0.007838081, 0.016120207, 0.000113008806, 0.004595201, -0.021314196, -0.0058129625, 0.005167078, -0.020143531, -0.032321148, 0.01673918, 0.029791433, -0.0036835615, 0.0010075129, 0.028580401, -0.027799957, -0.017048666, -0.015285939, 0.0062502804, -0.01385961, 0.024624357, 0.042197805, -0.002168087, -0.013186813, -0.02156986, 0.000989011, 0.009089482, 0.0085041495, 0.015339763, 0.0105898185, -0.01035434, 0.014640055, -0.051643867, -0.007346939, -0.013980714, -0.0033320251, -0.012130523, 0.010535995, -0.020103162, 0.004955147, 0.0012421508, 0.005947522, -0.020493384, 0.04098677, -0.0025700831, 0.00669769, 0.014276744, -0.011403902, 0.007595874, -0.009991029, 0.0066842344, -0.04776856, -0.006347836, 0.013173358, 0.028069075, 0.0022353667, 0.002983853, -0.0024523437, 0.027207894, 0.002605405, -0.0068356134, 0.014505495, -0.004181431, -0.03261718, -0.0012858826, -0.008753084, -0.0056077596, -0.018515363, -0.0029468492, -0.021973537, -0.014384392, 0.0070509086, -0.0028829335, -0.015864544, -0.010165957, 0.006159453, 0.015232115, 0.009452793, -0.01263512, 0.0030830905, -0.031729087, 0.0027382823, -0.0042924425, 0.041605745, -0.0029451672, -0.0104350755, -0.016725725, -0.007562234, -0.017129403, -0.008571429, 0.027773045, -0.021664051, -0.036304105, -0.0045279213, -0.015097556, -0.009984301, 0.020318458, -0.01578381, 0.004951783, -0.0077909846, 0.008087016, 0.007952456, -0.019860957, -0.0050257905, -0.014747702, -0.052505046, 0.0007325073, 0.021368021, 0.0076160575, 0.023857368, -0.004723032, -0.009385513, -0.014909173, -0.01147791, 0.025714288, -0.009244226, -0.007986096, -0.017950214, -0.03619646, -0.0056413994, -0.017856022, -0.0025330794, 0.009150034, 0.023897735, -0.030356584, 0.006956717, -0.012823503, 0.025149137, 0.0002590267, 0.0074680424, -0.006949989, -0.0066472306, 0.004776856, 0.009937206, -0.018932497, -0.0057187714, -0.018286612, 0.0046591167, 0.014303656, -0.0015474323, 0.035712045, -0.006717874, -0.001396053, 0.00803992, 0.0015524782, 0.015878, -0.030356584, -0.020883607, 0.009439336, -0.01151155, 0.010919489, 0.038295582, -0.020170443, 0.009748823, 0.009647903, 0.02057412, 0.0141421845, 0.0093182335, 0.0093182335, -0.015353219, -0.016281677, 0.058667865, -0.0019494282, 0.01653734, 0.011202063, 0.016604621, -0.002985535, 0.001411191, -0.003575914, 0.03886073, -0.013193541, 0.0046389326, 0.0065631308, -0.021717874, 0.011134784, -9.25621E-05, 0.001991478, 0.003764297, -0.009324961, 0.023198027, -0.008961651, 0.0013338192, 0.04074456, -0.0037003814, 0.016496973, 0.0035389103, 0.004571653, 0.028607313, 0.013846154, -0.012056516, -0.022309937, -0.011538462, -0.020883607, -0.00030149697, -0.01832698, -0.0010293789, -0.01025342, 0.008672348, 0.0004423638, 4.609708E-05, 0.002188271, 3.9053743E-05, 0.017075578, -0.021462211, -0.023467146, 0.008679076, 0.006838978, -0.007743889, -0.00876654, -0.016281677, -0.0056784037, 0.0022185468, 0.03390895, -0.0036364656, 0.00024367853, -0.026710026, -0.005947522, -0.004171339, -0.035308365, 0.0020923975, -0.010953129, 0.015972191, -0.016712269, -0.017856022, -0.013691411, 0.00089986547, -0.015999103, 0.018017493, -0.0064487555, -0.012224714, -0.014411303, 0.013577036, 0.005816327, 0.0052780895, 0.0115519175, -5.639928E-05, -0.020587577, -0.021408388, -0.017210137, -0.021758243, -0.020735592, 0.025741199, 0.0018215969, -0.017492712, -0.027275175, 0.0054799286, -0.032132767, 0.057376094, 0.01766764, -0.011356807, 0.048522092, -0.0070643644, -0.009997758, 0.0056245797, -0.013206998, -0.012157435, 0.014909173, -0.0050190627, 0.022404127, -0.0064723035, -0.01316663, 0.026575467, 0.022565598, 0.01581072, -0.029091725, -0.012379458, 0.018501908, -0.010912761, 0.00099658, 0.002188271, 0.00598789, -0.0002573447, 0.0062973765, 0.017492712, 0.039991032, 0.015312851, -0.027355911, -0.00942588, 0.0027281903, -0.0100784935, -0.009311506, -0.021650596, -0.015164835, -0.0011698251, -0.028445842, 0.0044303657, -0.00032967035, -0.00059079955, 0.017573448, 0.00095957617, -0.011316439, 0.0010419937, -0.0020705315, 0.021098902, 0.01263512, 0.011000224, -0.018367348, 0.029091725, 0.0007577372, 0.013422293, -0.009472976, -0.014317112, 0.0076698815, 0.0006185524, -0.012749496, 0.0059037902, -0.053823728, -0.013772147, -0.016133662, 0.016335502, 0.007373851, -0.007838081, -0.040233236, -0.001962884, -0.0022202288, -0.0062738284, -0.016160574, 0.003811393, -0.0178022, -0.01932272, 0.0070038126, 0.0057759588, 0.012231442, 0.017115945, -0.010980041, 0.010825298, -0.0067145103, 0.014438216, -0.023561338, -0.013422293, 9.808113E-05, 0.024422517, -0.003767661, 0.004046872, -0.0011420723, -0.02973761, -0.006546311, 0.009250954, 0.015164835, -0.025862303, -0.0035725501, 0.0110944165, 0.00640166, 0.011302983, -0.005786051, 0.012204531, -0.010125589, 0.01108096, -0.0079995515, 0.014034538, -0.008019736, 0.0069432613, -0.006896165, 0.018932497, 0.026467819, -0.0012110339, 0.0028425658, 0.0067986096, -0.0022521866, 0.025862303, -0.031029379, -0.0132271815, -0.0037272933, 0.026387082, 0.02626598, 0.002565037, -0.037030727, 0.005735591, -0.030840997, 0.019309264, 0.03032967, 0.012352546, -0.0033522092, -0.0022841445, -0.0017055394, -0.01703521, 0.008181207, -0.009069298, 0.015272483, 0.013731779, -0.020654855, -0.025256785, -0.0056043956, -0.033020858, 0.008867459, 0.0035355461, -0.004218435, -0.0132271815, 0.01941691, 0.005008971, 0.0011815991, -0.0037037453, -0.01607984, -0.006838978, 0.00048399306, -0.043677956, 0.015851088, -0.0043260823, -0.012554385, -0.015420498, -0.034178067, 0.0008670666, -0.06297376, -0.015232115, -0.020950887, 0.03797264, 0.022256112, 0.009742095, 0.015137924, 0.031513795, 0.023938103, -0.025081858, -0.001585277, -0.016281677, 0.0073805787, -0.026292892, 0.009782462, -0.006354564, -0.010643642, 0.002200045, -0.0062536444, -0.01501682, -0.008362862, -0.0019208343, 0.0020453017, -0.013994169, -0.03824176, 0.01730433, -0.006902893, -0.008087016, 0.014034538, -0.016819915, -0.00790536, 0.0190536, 0.0040334156, -0.014828437, 0.0008990245, 0.018030949, -0.029899081, 0.011740301, 0.0032462436, 0.040206324, -0.018838305, -0.0012497198, -0.012944607, -0.015568513, 0.0010478807, 0.0006538742, 0.0031032744, 0.005819691, -0.018246245, -0.007104732, 0.018205876, 0.003993048, -0.003000673, 0.003197466, -0.024072662, 0.00033303432, -0.014882261, -0.014115273, -0.02531061, -0.01730433, 0.013442476, -0.005385737, 0.022484863, -0.012514017, -0.029468492, 0.008174479, -0.015339763, 0.035119984, 0.0037306573, 0.012022875, 0.035685133, -0.017075578, -0.0034329446, -0.035146896, 0.0008098789, 0.001189168, 0.0037239292, 0.009634447, -0.03466248, -0.025929581, 0.007817897, -0.011525006, -0.018582642, -0.013994169, 0.0033337073, 0.018569186, 0.030867908, -0.020170443, -0.022188833, 0.010468715, 0.01313299, 0.00044488677, 0.0038854005, -0.01356358, -0.0028392018, -0.022632878, 0.028795695, -0.023211483, -0.007373851, 0.011000224, -0.010852209, 0.017869478, -0.0074142185, 0.023978472, 0.016200943, -0.00092089036, 0.020870151, -0.007986096, -0.0065900427, 0.0109934965, 0.0001787116, -0.0022891904, -0.007959184, 0.0050493386, 0.023346042, -0.016456606, -0.01385961, 0.012332362, -0.014814981, 0.022700157, -0.013469388, -0.030518055, 0.0020486657, 0.036438666, 0.01075129, 0.021368021, 0.004561561, -0.021946626, -0.018152053, 0.0030292668, 0.0052444497, -0.02156986, -0.0028425658, -0.0042621666, -0.042413097, -0.004221799, -0.009647903, 0.005183898, 0.00031179917, 0.00057103613, -0.00989011, 0.0033437992, -0.0013169993, -0.028069075, 0.010118861, 0.047284145, 0.018663378, -0.009230769, 0.010663826, 0.0013666181, -0.021058533, 0.0052343574, -0.005560664, -0.019134335, -0.030383496, -0.012036331, -0.006519399, 0.022336848, -0.0015356583, -0.008578157, 0.0056817676, 0.018515363, -0.003394259, -0.004154519, 0.005167078, 0.020654855, 0.012648576, 0.02311729, -0.031406146, 0.013348285, -0.009849742, -0.004891231, 0.015205204, -0.046665173, -0.006805338, -0.02202736, 0.0036499216, 0.034258805, -0.018044405, 0.008181207, -0.013832699, -0.003774389, 0.023413323, -0.0018468268, 0.014936085, 0.013644315, 0.0015692981, 0.024853107, 0.02374972, -0.02649473, -0.029791433, 0.013072439, -0.026723482, -0.026817674, -0.0024624355, 0.014007625, 0.04130971, 0.012520745, -0.015501234, 0.020910518, -0.011175152, -0.03304777, 0.02692532, -0.017842567, -0.0019359723, 0.02434178, 0.013718323, -0.014196008, 0.0067918818, 0.016914107, -0.003569186, 0.010852209, -0.007925544, 0.015729984, 0.009694999, 0.0013254093, -0.02186589, -0.03735367, -0.01594528, 0.022256112, -0.017815655, 0.023372954, 0.014518951, 0.005409285, -0.00022622786, 0.010004486, 0.0034430367, 0.029764522, 0.028688047, 0.0005394988, -0.019793676, -0.013005159, -0.0052949092, 0.02236376, 0.0022723705, 0.019161247, 0.0010789976, -0.013435748, 0.004578381, -0.016295133, -0.026212156, -7.3849944E-05, -0.0030460868, 0.0076496974, 0.004309262, 0.011935412, 0.027234808, 0.01875757, -0.022471407, 0.0114509985, 0.029952906, -0.00011353443, 0.0046658446, 0.013159902, 0.0068658893, -0.0053050015, -0.0021092175, 0.0123121785, 0.005321821, 0.006135905, -0.022040818, 0.019739853, -0.014747702, 0.0048643197, 0.0042285267, -0.0061022653, -0.004141063, 0.0029468492, 0.00512671, -0.00030738395, 0.007124916, -0.005611124, -0.026898408, -0.0044101817, 0.003365665, -0.0074411305, -0.01941691, -0.0024540257, 0.006361292, 0.009769007, 0.029091725, 0.21131197, 0.00120767, -0.019699484, 0.044539135, -0.006378112, 0.006606863, 0.017210137, -0.007333483, 0.01501682, 0.009769007, 0.0265351, 0.0025095313, -0.012836959, -0.012480377, 0.0069432613, 0.0056716753, -0.012614937, -0.018448083, 0.00043605632, -0.01607984, -0.00512671, 0.020856695, 0.0026726846, -0.02309038, 0.0068658893, 0.009896838, 0.011814308, -0.00157939, 0.0010781565, 0.022013905, 0.02113927, -0.033505272, 0.011821036, -0.025956493, -0.00036352043, 0.0012959745, 0.010112133, -0.022350304, -0.00512671, 0.027503926, -0.027221352, 0.027221352, 0.0026541827, 0.0010075129, 0.029791433, 0.020533754, -0.013846154, 0.020991255, -0.0005727181, -0.0037138374, -0.027140616, -0.03366674, 0.015366674, 0.017708007, -0.011699934, 0.009688271, 0.026858041, -0.043032072, 0.012547657, -0.012527473, -0.020923974, 0.031271588, -0.02418031, 0.025579728, -0.004803768, 0.012157435, -0.010771474, -0.017196681, 0.013644315, -0.001791321, 0.0083023105, 0.0034682665, -0.020533754, 0.029253196, -0.0030090827, -0.023857368, -0.004625477, -0.005755775, 0.016335502, 0.020156987, -0.014868805, -0.007185468, 0.004827316, -0.009116394, -0.021193093, -0.02163714, 0.024893474, 0.01657771, -0.006976901, 0.011706661, -0.00079852546, -0.007017269, 0.003419489, -0.018878672, 0.015245572, 0.016160574, -0.04157883, 0.018138597, -0.028903343, 0.0132271815, 0.008975107, -0.003552366, 0.012204531, 0.0031217763, 0.00638484, 0.009372056, -0.018300068, 0.019430365, -0.018232789, -0.014882261, 0.0032815654, -0.0301682, 0.035846602, 0.0021462212, -0.020156987, 0.021341108, 0.0080466475, -0.0328863, -4.0972263E-05, -0.007595874, 0.037461314, 0.012675488, 0.03245571, -0.004009868, -0.00096041715, -0.027207894, -0.024745459, -0.00019164191, -0.00016231218, -0.037003815, -0.0009536892, -0.019040145, 0.016416237, -0.03178291, -0.010657098, -0.006381476, 0.024032295, -0.011733573, -0.0040737833, -0.018219333, -0.01776183, 0.00049030053, 0.00833595, 0.0062334607, 0.012191075, -0.017263962, 0.008087016, -0.02454362, 0.009567168, 0.0060047098, -0.012527473, -0.020062795, -0.0031503702, -0.0155146895, 0.005930702, 0.009351873, -0.028553488, -0.011679749, 0.008988563, 0.01766764, -0.02150258, 0.015662706, 0.021838978, -0.04079839, -0.014976453, -0.027988339, -0.17202064, 0.025593184, 0.0059004263, -0.019470735, 0.009513344, -0.014572775, 0.021556403, 0.02107199, -0.02679076, -0.014518951, 0.016174031, 0.002403566, -0.014814981, -0.032321148, 0.013119534, 0.009102938, -0.029629963, 0.011969051, 0.018421171, 0.010569635, 0.038806908, -0.012480377, 0.008806908, 0.011424086, 0.02236376, -0.0008313243, 0.007589146, 0.015528146, 0.01002467, 0.002166405, 0.001208511, -0.0067145103, 0.0154608665, 0.016362414, 0.007979368, -0.00681543, -0.0036734694, 0.017492712, -0.015878, 0.0155146895, 0.00678179, 0.010313972, 0.005405921, -0.017654182, 0.00018186534, 0.02041265, 0.0052545415, -0.006408388, 0.0140883615, -0.011087689, 0.031244675, -0.023534426, -0.027409734, 0.01515138, 0.025969949, 5.813383E-05, 0.026387082, 0.005738955, 0.015030276, -0.009869927, 0.0058095986, -0.024947299, -0.005732227, -0.030087465, -0.0063007404, -0.019524558, 0.012823503, -0.005738955, -0.01630859, -0.011289528, -0.0080466475, 0.020264635, -0.00070475443, 0.011222248, 0.014236377, 0.017977126, -0.035389103, 0.005375645, 0.01753308, -0.02374972, 0.0009301413, 0.020587577, 0.008524333, -0.0006711146, -0.017115945, 0.0062099127, -0.032859385, -0.013368469, -0.015756898, -0.013489572, 0.025593184, -0.011424086, -0.026077596, -0.025014577, -0.0009309823, -0.006929805, 0.028553488, -0.028822606, 0.0054462887, -0.017613815, -0.001796367, -0.0017644091, -0.011599014, -0.0015676161, 0.023494057, 0.00088640954, 0.02481274, 0.042736042, 0.013449204, -0.010361068, -0.0020486657, 0.0004347948, -0.006902893, -0.0038248487, -0.011222248, 0.011747029, 0.007104732, -0.012762952, -0.0021899529, -0.01898632, 0.01078493, -0.028930254, -0.03076026, -0.010515811, -0.032321148, 0.0062940125, -0.0993586, -0.03159453, 0.02603723, 0.010549451, 0.0071114604, 0.0072729313, -0.0034211709, 0.00803992, -0.0020839875, 0.012897511, 0.016618077, -0.015097556, -0.015245572, 0.01809823, 0.016389325, -0.007992824, 0.01941691, -0.00512671, -0.029791433, 0.013819243, -0.0061224494, 0.0037508411, -0.024893474, -0.0042453464, -0.0057793227, -0.0044471854, -0.008685804, 0.0125678405, 0.022942364, 0.012554385, -0.007326755, -0.0009520072, 0.007138372, -0.033424538, -0.023130748, -0.005409285, -0.0071114604, -0.0020890336, 0.012816776, -0.034527924, 0.00880018, 0.008409957, -0.025512448, -0.023803543, -0.020910518, -0.0035389103, -0.011437543, 0.014545863, -0.0015314533, 0.025795022, -0.035577483, -0.0060585337, -0.024395606, -0.002750056, 0.008914555, -0.012971519, 0.014841894, -0.01637587, 0.007333483, -0.00028509757, 0.005348733, 0.024866562, -0.0056649474, 0.015285939, -0.0062839203, -0.008423414, -0.010872393, -0.0010731106, 0.002166405, 0.011175152, -0.013590491, 0.04055618, 0.0024456156, 0.042251628, 0.0027180982, -0.021152725, -0.019457279, -0.017842567, 0.0122112585, -0.016900651, -0.022309937, -0.013112806, 0.028661136, -0.004511101, 0.023574794, 0.023050012, 0.021179637, -0.00880018, 0.01978022, -0.03912985, -0.010919489, 0.024355238, 0.016523885, -0.013704867, -0.0048407717, -0.0010436757, 0.00966136, -0.015729984, 0.01478807, -0.015676161, -0.042466924, -0.016510429, -0.05802198, 0.027638486, 0.0022875085, -0.0009293003, -0.011060776, 0.005594304, 0.006949989, -0.018582642, 0.012419825, -0.0301682, -0.011262615, -0.020062795, -0.015272483, -0.001591164, -0.0068759816, -0.033559095, 0.01760036, 0.012487105, 0.034770127, 0.00084141624, -0.011525006, 0.012783135, -0.00074344024, 0.013489572, -0.031029379, -0.002578493, -0.0143978475, 0.0030612247, -0.0036431937, -0.0095268, 0.009728639, 0.005567392, 0.015178292, 0.025996862, -0.013180085, -0.022538686, 0.044862077, 0.004571653, 0.026683114, -0.03277865, -0.028257458, -0.012984974, 0.009836286, -0.0076631536, -0.019739853, 0.0022320028, 0.008820363, 0.0060450775, 0.035712045, 0.017385064, 0.00056767213, 0.019134335, -0.002768558, -0.0265351, -0.019295806, -0.014936085, 0.0052444497, 0.005553936, -0.0050728866, -0.024503253, 0.03799955, 0.011154968, 0.014115273, -0.013550124, 0.032697916, -0.0052444497, -0.028741872, 0.0026743666, 0.022686701, -0.0134290205, -0.013953802, 0.007158556, 0.014680422, 0.0017240413, 0.027221352, -0.02944158, -0.011195336, 0.0182597, 0.0018602826, 0.016281677, 0.017156314, 0.011498095, -0.037568964, 0.0047263964, 0.026710026, -0.00866562, -0.037246022, -0.0040872395, 0.007858264, 0.01928235, -0.032697916, 0.0035086344, -0.017856022, -0.010509083, 0.0113500785, 0.030114377, -0.005150258, 0.0010285379, 0.022538686, 0.002576811, 0.0034093969, 0.0027281903, -0.0070307245, -0.008894371, -0.011955596, 0.033559095, -0.019161247, -0.024758916, 0.0011740301, -0.0031335503, 0.004968603, -0.004373178, -0.011222248, 0.008988563, 0.00069676497, 0.013832699, 0.010515811, -0.040044855, -0.0130253425, 0.0012741085, 0.004810496, 0.0121103395, 0.0014902445, -0.033882037, 0.023224939, 0.0057187714, 0.011699934, -0.012325634, 0.0015146334, -0.011847949, 0.023238394, -0.011888316, 0.024597444, -0.009392241, -0.0034985424, -0.0015306124, 0.00669769, 0.027611572, -0.009076026, 0.07632205, 0.011397175, 0.017882934, 0.0038618525, -0.02755775, -0.0010554497, 0.027315542, 0.006744786, -0.023803543, -0.024920387, 2.1563657E-05, -0.012904239, -0.003757569, 0.026454363, -0.002169769, -0.011995964, 0.0042016148, 0.025095314, -0.02928011, -0.003377439, 0.039425883, -0.025337521, 0.033801302, -0.012594753, 0.0118546765, -0.032132767, 0.010879122, 0.011800853, -0.007945728, -0.018609554, 0.012130523, 0.011847949, -0.015608882, -0.02679076, 0.007898632, -0.019995516, -0.006337744, -0.00027563635, -0.024220679, 0.033316888, 0.024637813, 0.036034986, -0.0121103395, -0.0150033645, 0.011128056, -0.0034581746, -0.005500112, -0.01703521, -0.0061560892]
+ },
+ {
+ "Id": 31,
+ "Type": "Climbing",
+ "Brand": "Legend",
+ "Name": "Guardian Blue Chalk Bag",
+ "Description": "Stay focused on your route with the Guardian Blue Chalk Bag by Legend. This durable bag features a spacious compartment for your chalk, a drawstring closure, and a waist belt for easy access while climbing. The vibrant blue color adds a stylish touch to your climbing gear.",
+ "Price": 21.99,
+ "Embedding": [0.010798249, -0.0022570651, 0.010652952, -0.029746369, 0.0058218082, 0.014609007, -0.030406812, -0.035743196, 0.026629077, -0.012086114, -0.0018013592, 0.0051019248, -0.00015726808, 0.028583989, -0.0101972455, -0.019364199, 0.02950861, 0.004586779, -0.0026252624, 0.0031321526, -0.007740396, 0.015956312, -0.0025361024, -0.010586907, -0.0019020769, -0.024436405, 0.03333918, -0.011452088, 0.019284947, -0.018637711, 0.007859276, 0.01492602, -0.012099323, -0.009431131, -0.022468284, -0.0142127415, -0.008942403, -0.0056104665, 0.016603546, 0.0018178703, 0.01622049, -0.010302916, 0.0043027885, -0.007753605, -0.022322986, 0.005148156, -0.002451896, -0.014265576, -0.03521484, 0.039468095, -0.0058185062, 0.0021992764, -0.020896427, -0.0005209247, -0.0006980061, 0.0064954604, 0.012839019, 0.0063006296, 0.022534328, -0.035056334, -0.026734747, -0.024079764, -0.013829684, -0.028953837, 0.012627677, -0.019192483, -0.013023943, -0.01218518, 0.018611293, 0.036799904, 0.008196102, 0.010586907, 0.022758879, 0.009299043, -0.008017782, -0.0020605833, -0.045438502, -0.004233442, -0.007707374, 0.017779136, 0.025453487, -0.030063381, -0.0027078178, 0.013116405, 0.023723125, -0.016286533, -0.007416779, 0.00880371, -0.022283358, -0.023511784, 0.0058284127, -0.007839463, 0.016880933, 8.260702E-05, -0.019443452, 0.010818062, 0.0045339437, 0.009094305, -0.0074828235, -0.028082052, -0.009880233, -0.0032675436, -0.011590781, -0.011749287, -0.029482191, -0.029667117, -0.0043952507, -0.0073771523, 0.019892555, -0.0060265455, -0.046363123, 0.0099264635, 0.011240746, -0.029429356, 0.030961584, -0.008592368, 0.02192672, 0.005257129, 0.016775262, -0.03510917, 0.016167654, -0.0150449, 0.047049984, -0.0041211667, 0.0008453675, 0.02459491, -0.024555285, -0.01643183, 0.023960885, -0.0017006417, 0.0034739322, 0.03592812, 0.007311108, -0.015467583, -0.01562609, 0.012839019, -0.0031453616, 0.015269451, 0.009748144, 0.0049533253, 0.009199976, 0.028478317, -0.009305647, -0.015533628, -0.017396078, 0.033550523, -0.010983173, 0.031305015, 0.0064954604, -0.013473045, 0.018333908, -0.016616754, 0.0038008515, 0.019813301, -0.0008527975, 0.012931481, -0.0038305714, 0.022666417, -0.021398365, -0.01388252, -0.011689847, 0.0019499591, 0.047393415, -0.021939928, 0.013671177, 0.024436405, 0.0054288446, -0.014358039, 0.00064434507, 0.009312252, 0.0078989025, 0.032916497, -0.020605832, 0.018677339, 0.004791517, 0.03265232, -0.0015867152, -0.00880371, -0.019258529, -0.0011879725, -0.020460535, 0.0009493873, 0.0046891477, 0.003820665, -0.034950662, 0.004365531, 0.008975426, 0.00046396145, 0.0070403265, -0.014701469, 0.010917129, -0.0004577698, -0.014490128, -0.0043027885, -0.6610774, 0.007145997, 0.012251224, -0.045491338, 0.026721539, 0.0059836167, 0.016246907, -0.0002251699, -0.00012517466, 0.008050805, 0.011617199, 0.03928317, -0.024740208, -0.002816791, 0.021622915, -0.028399065, 0.00051266915, -0.0110624265, 0.02797638, 0.017752718, -0.022877758, -0.0012375057, -0.025902588, 0.0025443581, 0.00086848304, 0.00956322, 0.0067827534, -0.026259229, -0.0058449237, 0.034131713, -0.006578016, 0.027448026, 0.008546137, 0.016009146, 0.05014086, -0.013803266, -0.022138061, 0.038332134, 0.012997526, 0.021015307, -0.025202518, -0.009682099, 0.0059968256, -0.008070618, -0.033629775, -0.00050400087, 0.030248307, -0.007601703, 0.010474632, -0.011201119, 0.03135785, -0.026959298, 0.019218901, 0.014424083, 0.008902777, -0.0071526016, 0.014027817, 0.006194959, 0.001590843, 0.008658413, -0.029376522, 0.03244098, -0.008935799, -0.006426114, -0.02076434, 0.021424783, -0.014173115, -0.011742683, 0.012726744, -0.011954024, 0.015256242, 0.014648634, -0.008816919, -0.00041525377, 0.03310142, 0.018479206, 0.003335239, -0.02855757, -0.010593511, 0.008526323, 0.01946987, 0.004405157, 0.009754748, 0.00688182, 0.022745669, 0.015652508, 0.009127327, -0.0099132545, 0.0036258341, -0.010950151, 0.0051448536, 0.03347127, -0.010791644, -0.027553698, 0.0066341534, 0.024898715, -0.02483267, 0.024674164, 0.022230523, -0.01818861, -0.008414049, 0.007172415, -0.04044555, -0.003744714, 0.009602847, 0.021636125, 0.003042993, 0.009721726, 0.016075192, -0.027012134, 0.0037348073, -0.0029224618, -0.028953837, -0.04242688, -0.003668763, -0.022124853, 0.019364199, 0.002940624, 0.010415192, -0.03767169, 0.023736335, -0.021319112, 0.015414748, -0.0026401223, -0.020143522, 0.02892742, 0.008532928, 0.006637456, -0.027315937, 0.0058845505, -0.010837875, 0.0013605134, 0.017805554, 0.0074960324, 0.021821048, 0.012462567, -0.0008024387, -0.007324317, 0.022772087, -0.023141935, -0.033180676, -0.0013580367, 0.001964819, -0.016537502, -0.033999626, -0.041792855, -0.01550721, -0.009094305, -0.008361213, 0.0066341534, -0.0041673975, -0.0037975493, -0.024700582, -0.0045339437, 0.009246207, -0.02076434, -0.011300186, -0.015705343, -0.0056005595, -0.01060672, 0.012165367, -0.00012218203, -0.025281772, -0.012376709, -0.023155143, -0.0022818318, 0.0066176425, 0.021266276, -0.0006942911, -0.044804476, -0.0030578529, -0.009596242, -0.02051337, 0.019364199, 0.02320798, 0.009530198, -0.0338147, -0.008651808, 0.012852228, -0.00015984793, 0.010091575, 0.013261703, -0.030142635, -0.02635169, 0.019852927, 0.0021860676, 0.009160349, 0.031331435, -0.0122049935, -0.0045339437, 0.0077139786, 0.010976569, -0.011828541, -0.009510385, -0.007707374, -0.02518931, 0.0035531854, 0.0018294281, 0.011696452, 0.026985716, 0.03067099, -0.0012952945, 0.037935868, -0.021873884, -0.004507526, -0.026734747, 0.015269451, 0.008288564, 0.01912644, 0.0075290543, -0.013974981, -0.019668004, 0.0015140664, -0.02028882, 0.006842193, 0.008321586, 0.024000512, 0.018241446, 0.0016725728, -0.010976569, 0.010177433, -0.0150449, 0.024172228, -0.0030991305, -0.017752718, 0.009332065, 0.00475189, 0.026179975, -0.013037152, -0.016577128, 0.016260115, -0.0025658226, 0.009186767, 0.010553885, 0.007813045, 0.010732205, 0.013856102, -0.025876172, 0.03510917, -0.016180862, 0.022005973, 0.0087640835, 0.027712204, 0.005877946, 0.029640699, 0.021279486, 0.017884806, -0.008658413, -0.0076479344, -0.0013852799, -0.008499906, 0.000635264, 0.0041376776, -0.005052392, 0.012238015, -0.014080653, 0.034395892, 0.021279486, -0.0061057988, -0.011346417, 0.012284246, 0.0027490954, -0.006085986, -0.0035994162, 0.018796219, -0.011795519, -0.02763295, -0.0068950285, -0.049612507, -0.0354526, 0.02542707, -0.012403127, -0.00055642356, 0.012700326, 0.012317269, -0.005924177, 0.014291994, -0.0057524615, -0.0045768726, 0.016629964, -0.015784597, -0.028901001, -0.00083215866, 0.012687117, -0.009239603, -0.024806254, -0.013671177, 0.022085225, -0.009252812, 0.025202518, 0.018915098, 0.030723825, -0.003942847, 0.0027623044, -0.008559346, 0.0036753672, 0.008176289, -0.026563032, 0.022111643, -0.011775705, 0.0025014293, 0.007033722, -0.021847466, -0.019522706, -0.0054750754, 0.004656126, -0.014714678, -0.005484982, 0.011168097, -0.0010880805, -0.02227015, -0.017871598, 0.018611293, -0.0017320127, -0.0015784596, -0.009880233, -0.01666959, -0.025585575, 0.028821748, 0.009992508, -0.020024642, -0.03463365, -0.026193183, -0.0042631617, 0.104402885, 0.0040254025, -0.015441166, 0.018016895, -0.0023445738, -0.021081353, -0.0063600694, -0.023194771, 0.004629708, -0.011755892, 0.016854515, -0.00950378, -0.0067001977, -0.005564235, -0.0023792472, 0.0042862776, -0.0052934536, -0.007852672, -0.005009463, -0.006928051, 0.009259416, -0.01701302, -0.0027160733, 0.016841305, -0.011703056, 0.007311108, 0.023842005, 0.007383757, -0.00025509624, -0.00042681152, 0.011973838, 0.012376709, 0.004098051, 0.0030231795, -0.0019202391, -0.0012317268, -0.0005085414, -0.009001843, 0.0067365225, -0.0042994865, 0.014939229, 0.02447603, 0.012112531, -0.0034343055, 0.023974095, 0.016524293, 0.015546837, 0.024225062, -0.0050490894, -0.026034677, 0.020922845, 0.007727187, -0.0056930217, 0.009166954, 0.03196546, 0.014424083, -0.000555598, 0.0142127415, 0.022547536, -0.04829162, 0.017224362, -0.029165179, 0.022283358, -0.011498319, -0.0013266656, -0.024674164, -0.016233698, 0.0055543287, 0.003642345, -0.002892742, -0.011458692, -0.0070733484, 0.009351878, -0.0027358867, 0.013037152, 0.02401372, 0.022217315, 0.0019450057, -0.010415192, 0.01398819, 0.01178231, -0.014965647, -0.013037152, -0.00019142538, 0.0030050173, 0.002967042, 0.040049285, -0.021583289, -0.01294469, 0.0070006996, 0.013340956, 0.009127327, 0.025228936, 0.0017980571, -0.0142127415, -0.005574142, 0.018835844, 0.01300413, 0.012852228, 0.00010448421, 0.017039439, -0.0009320507, 0.006789358, 0.008321586, 0.03228247, 0.015494001, 0.018650921, 0.02367029, -0.005937386, 0.023194771, -0.0031437103, -0.013856102, 0.011405857, -0.015005273, -0.013776849, 0.011868168, 0.027844293, 0.023155143, 0.0006996572, -0.04417045, -0.0032411257, -0.037037663, 0.011564364, 0.005316569, -0.004183909, 0.007588494, 0.00073102827, -0.029244432, -0.023300441, 0.011775705, 0.007931924, 0.0052009914, -0.013829684, -0.01750175, -0.0022768786, -0.009081096, -0.0037546204, 0.008638599, -0.008698039, -0.0055312132, -0.030697407, 0.008889568, 0.018281072, -0.00083050755, -0.01829428, -0.0177263, -0.011049218, -0.011887981, -0.01855846, 0.0093452735, -0.00986042, 0.00688182, -0.018571667, -0.0045273392, -0.0006596178, -0.0065846206, -0.013539089, 0.027078178, -0.0013241889, 0.013816475, 0.0099198595, -0.019945389, 0.021873884, 0.0035267675, -0.008856545, -0.00028976952, -0.024885505, -0.029165179, -0.031384267, 0.023775961, -0.023340069, -0.0005461041, -0.009378295, -0.026642285, -0.014001399, 0.006518576, 0.016365787, -0.010996382, 0.00054816797, -0.056005597, -0.01410707, 0.0050920183, -0.004983045, -0.011181306, -0.027263101, 0.011788914, 0.034686487, 0.008136663, 0.0028465108, -0.002101861, 0.031912625, -0.0057524615, 0.016035564, 0.0032543347, 0.010401983, 0.0069676773, -0.0041211667, -0.023709917, -0.002940624, 0.01112847, 0.020077478, 0.005346289, -0.005699626, -0.02892742, -0.0077470005, -0.0018294281, -0.006000128, -0.0046495213, 0.010586907, -0.02507043, -0.021385156, -0.002298343, -0.014067444, -0.04771043, 0.023326859, 0.010831271, -0.008348004, 0.017224362, -0.006868611, -0.01084448, 0.008414049, -0.001492602, 0.014252367, -0.011861563, 0.020711504, -0.0057326485, 0.0010195595, -0.0035564876, -0.0005477552, -0.004421668, -0.010818062, 0.004718868, -0.0033434946, -0.011835145, 0.00017243763, 0.008242333, 0.03151636, 0.0016428529, -0.028636824, 0.002466756, 0.022415448, 0.011478506, -0.014648634, -0.015903477, -1.8587869E-05, 0.008546137, 0.012251224, 0.0007533182, -0.00676294, -0.008968821, 0.0002705754, 0.02205881, -0.030327559, 0.020381283, 0.012634282, -0.013413604, -0.019232111, 0.014595798, -0.0044712014, -0.008598973, 0.0054057287, 0.0099132545, -0.010415192, 0.0065912246, 0.023009846, 0.027817875, 0.011551155, -0.006980886, 0.013354165, 0.020460535, -0.01398819, 0.007383757, -0.014886393, -0.021755004, 0.018003685, 0.0009229696, -0.001994539, -0.013202263, -0.005560933, -0.010870898, 0.011168097, 0.008176289, -0.019364199, -0.020143522, -0.0016304696, 0.0312786, -0.034448724, -0.031172927, 0.017752718, -0.030063381, -0.03711692, -0.003457421, 0.0055312132, 0.016629964, -0.0077470005, -0.03114651, -0.019760465, 0.022217315, -0.013935355, 0.009028261, 0.012132345, 0.020856801, -0.030274725, 0.0036489496, 0.016128028, -0.028425483, 0.010936942, -0.004342415, -0.013347561, -0.029350104, -0.008605577, 0.011207724, 0.0033451456, -0.0047717034, -0.0014868231, -0.009675495, 0.025400652, -0.007231855, -0.023881633, -0.025215728, -0.025202518, -0.010923733, 0.040049285, -0.010078366, 0.0014967298, -0.014358039, 0.026998924, 0.016748844, -0.0013002479, -0.029746369, -0.013149427, 0.00065053673, 0.0019895856, -0.039917197, 0.019298155, -0.019047186, -0.009959486, -0.0024931736, -0.007007304, 0.0058317147, 0.0230891, 0.012766371, 0.0122049935, 0.023472156, -0.02903309, -0.004312695, -0.0069676773, -0.0076545384, -0.012343686, -0.02006427, 0.025466695, 0.038728397, 0.0031602215, -0.038411386, -0.013961772, -0.007357339, -0.019100022, -0.0070997663, -0.015243033, 0.019205693, 0.0064228117, 0.022362612, -0.011240746, 0.026391316, 0.0006171018, 0.021636125, 0.027685786, 0.008222519, 0.018479206, 0.007707374, -0.009939672, -0.006928051, -0.0040154955, -0.019443452, 0.023630664, 0.030116217, 0.0018228237, 0.021556871, -0.026047885, -0.0010542327, -0.025611993, 0.016894141, 0.03592812, 0.020381283, 0.007945133, -0.021160606, -0.021054935, -0.03592812, 0.024766626, 0.00014952851, 0.022204107, 0.014014608, -0.016378995, 0.0059307814, -0.028266976, -0.012099323, -0.020843593, 0.019694421, 0.018399952, -0.00081771147, -0.0059043635, 0.033497687, 0.0032361725, -0.029085925, -0.00028254592, 0.0075026364, -0.016405413, -0.02623281, 0.008704644, -0.027038552, 0.029587863, -0.0005531213, 0.018228237, -0.010289707, -0.012198389, 0.004312695, -0.02496476, -0.0284519, 0.022428656, -0.0067959623, -0.004325904, -0.002788722, -0.004827841, -0.023419322, 0.02821414, -0.010936942, -0.037962284, -0.04176644, 0.026285646, -0.025995051, -0.010368961, -0.0043457174, -0.008790501, 0.01562609, 0.00034570083, 0.03183337, 0.20225418, 0.004738681, -0.016735636, 0.026563032, -0.010745414, 0.013056966, 0.03368261, 0.03067099, 0.013710804, -0.008823523, 0.020685086, 0.02739519, -0.042532552, -0.0020754433, -0.006802567, -0.02776504, -0.05000877, -0.02660266, -0.03114651, -0.0073177125, -0.010243476, 0.0044513885, 0.019298155, -0.012627677, 0.010692578, 0.016762052, -0.008381026, -0.0021183721, 0.0031123394, 0.006594527, -0.021477617, -0.01993218, -3.317696E-05, -0.014661843, -0.001066616, 0.010573698, 0.039943613, -0.0024684072, 0.004292882, 0.022164479, -0.0005097797, 0.0046330104, 0.001751826, 0.001918588, 0.0045141303, 0.018796219, -0.021292694, -0.0034640254, 0.023868423, -0.0010674415, 0.0014769165, -0.012746557, 0.032493815, 0.01264749, 0.0047584944, -0.0044579925, 0.013671177, -0.016748844, -0.010032135, 0.007872485, -0.02530819, 0.0046858457, 0.009193372, 0.014424083, 0.0022141363, 0.0069742817, -0.0127795795, -0.012693722, -0.00041793683, -0.023406113, 0.0055807466, -0.0001569585, 0.017792344, 0.008222519, -0.001935099, -0.026061095, 0.015560046, 0.0120663, -0.0013720711, 0.0059274794, -0.015956312, 0.0060793813, 0.025862962, -0.0122115975, -0.0006472345, -0.0321768, -0.00787909, -0.016511085, -0.0026236114, -0.006109101, 0.011214328, -0.016933767, -0.005468471, 0.01875659, -0.0019516101, 0.0312786, 0.0040848423, 0.010679369, -0.022005973, -0.0031783837, -0.0156393, -0.005329778, -0.0039494513, 0.010685974, -0.027421609, 0.0050589964, -0.013314539, 0.019800091, -0.00092627184, -0.010956756, -0.0009675495, -0.046336707, 0.011617199, -0.019047186, -0.0026747957, 0.0077734184, -0.007172415, 0.005164667, 0.0066803847, -0.023524992, -0.0031354548, -0.022032391, 0.016365787, -0.012330478, 0.012323873, -0.01818861, 0.014701469, 0.014305203, 0.009688704, -0.02542707, -0.027421609, -0.03325993, 0.026364898, -0.016114818, -0.0003875977, 0.009569825, -0.009299043, -0.03170128, 0.013842893, -0.0017798948, -0.0062180744, 0.009074491, 0.010969964, 0.0042895796, 0.05014086, -0.011234142, -0.016286533, -0.022190897, -0.020011434, -0.026272437, 0.015216615, 0.0067035, -0.015163779, -0.013803266, 0.0013307934, -0.021002099, -0.02225694, -0.031886205, 0.0020027945, -0.0019251924, 0.009530198, 0.020671878, 0.032599483, -0.01060672, -0.00050730305, -0.016577128, -0.16822813, 0.018703757, 0.030248307, -0.02134553, -0.0119342115, -0.0110624265, 0.021398365, 0.017792344, -0.032044712, -0.0042631617, 0.010745414, 0.012284246, -0.031093674, -0.007793232, -0.019681212, 0.010619929, 0.027078178, 0.013539089, 0.0027656066, 0.0044976193, 0.0014471965, -0.030116217, 0.01622049, 0.0022554141, -0.013446627, -0.012746557, -0.009015052, 0.017699882, 0.009939672, -0.022587163, -0.025044013, -0.011960629, -0.010269894, -0.0030941772, 0.013473045, -0.013189054, -0.011280373, -0.022019181, -0.021873884, 0.024092974, -0.0019714234, 0.02879533, -0.00752245, 0.0007141044, 0.013083383, 0.025149683, -0.007997969, 0.0042202333, -0.0004127771, -0.02484588, 0.012522006, -0.012046487, 0.0005044136, -0.0064525316, 0.016061982, 0.012548424, 0.014648634, 0.00017522387, 0.023300441, -0.0124955885, 0.0072252504, -0.01875659, 0.004847654, -0.0040848423, -0.02763295, -0.021160606, -0.007231855, -0.0054189377, -0.0038768025, 0.020658668, -0.0075818896, -0.001057535, -0.0066803847, -0.005055694, 0.014437292, 0.019403826, -0.011854959, -0.003896616, -0.0055576307, -0.005072205, 0.0013539089, 0.03510917, -0.02471379, 0.0005238141, -0.003166826, 0.010870898, -0.003609323, -0.019668004, 0.0056104665, -0.0069346554, 0.007865881, 0.00080532813, 0.0069082375, -0.019945389, 0.014952438, 0.0016032263, 0.015599673, -0.033207092, 0.014648634, -0.027315937, 0.027923545, -0.0136579685, -0.01888868, 0.0009180163, 0.028610406, 0.018162193, 0.04535925, 0.022230523, 0.024634538, -0.0054750754, 0.00020091925, 0.022798505, 0.005342987, 0.013103196, -0.011286977, 0.013123009, 0.00986042, -0.019535914, -0.00022785296, -0.022362612, 0.012105927, -0.013519276, 0.0004581826, 0.012462567, -0.011683243, 0.01575818, -0.093888626, 0.009576429, 0.0038602916, 0.032969333, -0.0051019248, -0.013407, -0.018743383, 0.030803079, 0.030591737, 0.036192298, 0.01783197, -0.008196102, 0.0049896496, 0.008328191, 0.018267864, -0.0023676895, 0.004844352, -0.027448026, -0.002739189, 0.013433418, 0.01248238, 0.010309521, -0.007311108, -0.01066616, -0.0056104665, -0.025532741, -0.03521484, 0.029693533, 0.017514957, 0.01759421, 0.018518832, 0.008314982, -0.0049401163, -0.014688261, -0.006901633, -0.022336194, -0.023023056, 0.0013349211, 0.011709661, -0.02763295, -0.0031172927, -0.0026054492, 0.007172415, -0.024568493, 0.0073639434, -0.018598085, -0.010098179, -0.0026929579, -0.0035829053, -0.016392205, -0.0130767785, -0.014595798, -0.0150449, -0.012687117, 0.021979555, -0.008268751, -0.019047186, 0.0065416917, 0.0049566273, -0.0015446119, -0.027659368, 0.011095448, 0.0045339437, -0.006244492, 0.0015652508, 0.007628121, -0.016378995, 0.0036588563, -0.0031602215, 0.0060232435, 0.0007190577, 0.0220456, -0.0104878405, 0.04628387, 0.004566966, 0.017488541, -0.018122565, 0.023155143, -0.00083215866, -0.017937642, -0.007112975, -0.025136475, 0.026893254, -0.021821048, 0.021596499, -0.015877059, -0.0011987047, -0.008255542, -0.00053784857, -0.020315237, 0.011696452, 0.02705176, 0.0030958282, -0.017924434, -0.023115518, 0.0056401864, 0.01888868, -0.020936055, -0.018056521, -0.0074564056, 0.0010013973, -0.0044712014, -0.074181, 0.023577828, 0.030591737, -0.00024787264, 0.00542224, 0.006363372, -0.011386043, -0.017475331, -0.00064393226, -0.022415448, 0.008229124, 0.0005696324, 0.009787771, 0.001142567, 0.0081894975, -0.0241326, -0.007383757, 0.0020292122, 0.019100022, 0.0031090372, -0.012469171, 0.008631995, 0.0037249005, 0.0036951806, -0.0052175024, 0.01294469, -0.00034487527, 0.04839729, 0.008321586, -0.02344574, 0.01398819, -0.002176161, 0.028319811, 0.035558272, -0.005260431, -0.04467239, 0.0040221, 0.0022141363, 0.010692578, -0.038332134, 0.007370548, -0.007938529, 0.02483267, -0.016511085, -0.0150845265, 0.0014719631, -0.0056005595, 0.006194959, 0.025532741, 0.0069214464, 0.0087706875, 0.015097735, 0.026246019, -0.030248307, 0.013215472, -0.035637524, -0.0047882143, 0.008420653, 0.007753605, -0.030829497, 0.0147939315, -0.0006080207, 0.0045900815, -0.0032675436, 0.011240746, -0.0013811522, -0.015467583, 0.003896616, 0.013116405, -0.008856545, -0.023908049, -0.0049566273, 0.02179463, -0.0046693347, 0.016061982, 0.007053535, 0.015097735, -0.01528266, -0.040234208, 0.029191596, -0.0073969658, -0.0166828, -0.037486766, 0.010679369, -0.0040221, 0.0030512484, -0.020249194, 8.425813E-05, -0.002575729, 0.005286849, -0.037249006, -0.013182449, 0.0021579987, -0.00091058627, -0.018201819, 0.029825622, -0.0014224299, 0.012753162, 0.015414748, 0.019113231, -0.01643183, -0.011610595, -0.014767514, 0.019958599, -0.014291994, 0.022402238, 0.011808727, -0.01655071, -0.013856102, 0.010296312, 0.0040254025, 0.005234014, -0.004216931, 0.01750175, 0.0025245447, 0.005270338, 0.016828097, -0.009067887, -0.0029175086, 0.00996609, 0.011399252, 0.026668703, -0.0058878525, -0.0074828235, 0.017686673, -0.0051118317, -0.009318856, -0.029799204, 0.01585064, 0.004190513, 0.012290851, 0.0033699123, 0.013790057, -0.0027325845, 0.005924177, 0.034554396, 0.014120279, 0.025810126, -0.019773675, 0.06704821, -0.00032939613, -0.0060793813, 0.0113596255, 0.004979743, 0.015877059, 0.035531852, 0.018532041, -0.0024485937, -0.013499462, -0.0066044335, -0.0068157753, 0.0061355187, 0.022679625, -0.01692056, 0.0042994865, 0.010435005, 0.018650921, -0.026325272, -0.0139221465, 0.036482893, -0.02122665, 0.024806254, 0.026721539, 0.002664889, -0.013340956, 0.010851084, 0.0021646032, -0.02016994, -0.006581318, 0.022085225, 0.013710804, -0.018439578, -0.03944168, 0.009081096, 0.0030562016, -0.022653207, 0.005131645, -0.013056966, 0.020130314, -0.004675939, 0.022085225, -0.013776849, -0.025334608, 0.017898016, -0.010804853, -0.021847466, -0.0054882844, -0.01736966]
+ },
+ {
+ "Id": 32,
+ "Type": "Ski/boarding",
+ "Brand": "Gravitator",
+ "Name": "Cosmic Purple Snowboard",
+ "Description": "Conquer the slopes with the Cosmic Purple Snowboard by Gravitator. This freestyle board delivers a perfect balance of control and maneuverability. Its bright purple design is complemented by the Gravitator emblem, sure to turn heads on the mountain.",
+ "Price": 419.99,
+ "Embedding": [0.008657277, 0.003360693, -0.00082291785, -0.025360497, -0.017393436, -0.00049342203, -0.039414603, -0.04101853, 0.013620256, -0.01849778, -0.0068692896, -0.00041248606, -0.009294905, 0.0064222924, 0.0040394054, -0.0071585225, 0.03691668, -0.019917652, -0.019681007, 0.0004556245, -0.0054461304, 0.0033327558, -0.009695887, -0.0056137545, -0.022047462, -0.002833171, 0.023506774, -0.033288117, 0.021692494, 0.008466646, 0.02313866, 0.0009457598, 0.020154297, -0.01741973, -0.042306934, -0.0050977357, 0.01876072, -0.0029383467, -0.000616264, 0.00077854685, 0.0076449607, -0.01100401, -0.0009901308, 0.0021248783, 0.015736917, -0.0149481, 0.0068232752, -0.023625096, 0.010037708, 0.016197061, 0.017091054, 0.03886243, -0.022967748, -0.01394893, 0.026136167, -0.010616175, 0.0140015185, 0.016275944, 0.021429554, -0.012923467, 0.005659769, -0.016972732, 0.0042629037, 0.0234016, -0.0013418122, -0.0068364223, -0.019391773, -0.019404922, 0.00084387086, -0.00046466306, 0.008039369, 0.008052517, 0.0073885946, -0.009163435, -0.011096039, -0.018129665, -0.011128906, 0.010603027, -0.01889219, -0.01037953, 0.018734425, -0.014172429, 0.003365623, 0.005906274, 0.009636725, 0.022599634, -0.005393543, 0.0022579913, -0.026188755, -0.013396758, 0.011102612, 0.016065592, -0.001963828, 0.016039299, -0.025991552, 0.0052949404, 0.01141814, 0.010366382, -0.012062341, -0.02183711, 0.022468165, 0.028371152, -0.016381118, -0.021127174, -0.0320523, -0.019654714, 0.0078092976, 0.01087254, 0.017222526, -0.014461662, -0.019102542, 0.014803483, 0.0004350824, -0.01111576, 0.026030991, 0.0065373285, 0.03257818, 0.009584138, 0.0040952796, -0.035260163, 0.018510927, 0.014790337, 0.023519922, -0.009952253, 0.0035036663, 0.010241486, -0.04861748, -0.005360675, 0.015618595, -0.008249721, 0.023164954, 0.011536462, -0.013567668, -0.005400116, -0.0264254, 0.00998512, -0.009031965, 0.022678515, 0.0029843613, 0.015539713, -0.0033639797, 0.014842924, -0.02244187, -0.0027920867, 0.0058799805, 0.014540544, -0.007526638, -0.0065241815, 0.01141814, -0.01806393, 0.02551826, -0.005393543, 0.035733454, 0.012903746, 0.018734425, -0.01070163, -0.016617764, 0.043910865, 0.004118287, -0.003183209, -0.0058635464, 0.012529058, 0.019049954, 0.0009079623, 0.027345689, 0.024374474, 0.016341679, -0.012680248, 0.0006121556, 0.0036877238, -0.0040492653, 0.0281608, -0.028318563, 0.023743419, 0.0052127717, 0.0181954, 0.012765704, 0.008282588, -0.016565176, 0.014777189, 0.005005707, -0.011648212, 0.012515911, 0.016565176, -0.017222526, -0.022783691, 0.029186264, -0.013278435, -0.0049892734, -0.021758229, -0.024545385, 0.012561926, 0.014277604, 0.010215192, -0.6520895, -0.024926646, 0.021468995, -0.03933572, 0.01200318, 0.017038466, 0.021876551, 0.014553691, -0.010188898, 0.016999027, -0.013791167, 0.022192078, -0.012095208, -0.012798571, 0.0022070468, -0.011470728, 0.010333515, -9.706158E-05, 0.010123163, 0.010510999, -0.006073898, 0.01096457, -0.03171048, 0.00018765239, 0.01602615, 0.022639075, 0.0072374046, 0.008676997, -0.028344858, 0.017958755, -0.022547046, 0.046093263, 0.005107596, 0.009925959, 0.045172974, -0.0059358547, -0.008959657, 0.029081088, 0.0041511543, 0.030448372, -0.029948788, -0.0008693431, 0.016315384, -0.008821614, -0.012246398, 0.0073425802, 0.014159282, -0.01966786, -0.0025209307, -0.01997024, 0.025715465, 0.0009778056, 0.02997508, 0.004588291, 0.008164265, -0.013962077, 0.033340704, 0.03652227, -0.027266806, 0.0054099765, -0.0065899165, 0.017682668, -0.018957924, -0.026504282, -0.02170564, 0.019773036, -0.022678515, -0.018340018, 0.0028857589, -0.0044929753, 0.013008922, 0.018182253, 0.004308918, 0.023677684, -0.013462492, 0.03376141, 0.02361195, -0.02781898, 0.006675372, 0.024058947, -0.0036417095, 0.009170009, -0.031947125, -0.020627588, 0.01185199, -0.0013048364, -0.022941455, 0.010819953, 0.011799402, -0.016696647, 0.0094658155, 0.02053556, -0.023546215, -0.0133178765, 0.010925128, -0.0003149109, -0.02430874, 0.014040959, 0.026885545, -0.018747574, -0.0021643192, -0.02829227, 0.0115167415, 0.0016745947, 0.01498754, -8.8536595E-05, -0.01243703, -0.0071650962, 0.023033483, -0.031684186, 0.024900353, -0.016315384, -0.011510168, -0.0094395215, -0.004930112, -0.023125513, 0.020811647, -0.008118251, -0.011510168, -0.01849778, 0.03192083, 0.0103269415, -0.0042793374, 0.0018471486, -0.018261135, 0.012982628, 0.009689313, 0.021797668, -0.03036949, -0.005258786, 0.01464572, 0.01204262, 0.01672294, -0.009564417, 0.014185576, 0.010169178, 0.008137972, -0.0006027062, 0.0034182111, -0.010971143, -0.034944635, 0.011753387, -0.010892261, 0.023296423, -0.017840432, -0.007467476, -0.0307639, 0.00366143, -0.031053133, -0.016828116, -0.020022828, -0.030527255, 0.011253802, 0.009939106, 0.011089466, -0.009255463, -0.0068298485, -0.030790193, 0.00570907, -0.01780099, 0.01745917, -0.0030270887, -0.0052686464, 0.003990104, -0.00528508, -0.012410736, -0.031552717, 0.009498683, -0.029107383, -0.020246327, -0.024282446, -0.008006502, -0.007671254, 0.007309713, -0.011483874, -0.007704122, -0.017616933, -0.022192078, -0.017393436, -0.013580815, 0.008157692, 0.00571893, -0.04007195, 0.0008257938, 0.016394267, -0.00061667484, 0.035996392, 0.016157622, -0.03938831, -0.013225847, -0.013304729, 0.031473834, 0.006504461, -0.005722217, -0.030947957, -0.019391773, -0.0008529094, -0.027976742, 0.008676997, 0.02092997, 0.0025784485, -0.023585657, 0.0028381012, -0.0023993212, 0.011404993, -0.02114032, -0.002686911, -0.027582334, 0.0070730676, -0.0023598804, 0.009518403, -0.022902014, 0.009577564, -0.015487125, -0.00083524315, 0.006366418, -0.018865896, 0.0077961506, -0.010405824, -0.0015883178, -0.002065717, 0.0043779397, 0.019128835, -0.034129523, 0.0034412183, 0.005909561, -0.0045784307, 0.011109185, 0.026977573, -0.00010373777, 0.0066523645, -0.00026129594, 0.02829227, 0.00016033136, -0.006921877, 0.003391917, -0.010813379, -0.021192908, 0.05532243, 0.007092788, 0.029659554, 0.0320523, 0.0007489662, -0.010754217, 0.009347493, -0.0030303756, 0.014448515, 0.014448515, -0.013068084, 0.005311374, -0.034602813, -0.005643335, -0.004233323, -0.00055504846, -0.001551342, -0.0077567096, 0.016354825, -0.0032883848, 0.0073425802, 0.028870737, -0.005258786, 0.02114032, -0.0060245967, 0.0008808467, 0.022270959, 0.0073951683, -0.011109185, -0.029528085, -0.0038191935, -0.024532238, -0.0037830393, -0.033393294, -0.0050385743, -0.0012021257, -0.0075397845, -0.015119011, -0.006340124, 0.01351508, -0.0012308847, 0.02504497, -0.0031667752, -0.046093263, 0.009630152, 0.028739266, -0.009544697, 0.0028956193, -0.010208619, -0.001600643, 0.01876072, 0.014225016, 0.005304801, 0.0093146255, 0.012805144, -0.0065241815, -0.005248926, -0.026017845, -0.0013960433, 0.0030517394, 0.016131327, -0.0031930692, -0.001410012, -0.018708132, -0.0049333987, -0.01776155, 0.03184195, 0.017906167, -0.007487197, -0.004522556, -0.0047854953, -0.0064222924, 4.426188E-06, -0.01702532, -0.0052390657, -0.04133406, -0.013843754, 0.010083723, -0.017643228, -0.028344858, 0.03791585, 0.006225088, -0.014054107, -0.0068561425, 0.006405859, -0.03297259, 0.06810128, 0.0072045373, -0.010925128, 0.024979234, -0.010432117, 0.008381191, -0.01832687, 0.0154213905, 0.0070139063, -0.0008220962, 0.018037636, 0.041044828, 0.011944018, -0.010918555, 0.0090977, 0.0019309606, 0.0022316973, 0.015684329, -0.018182253, 0.0031979994, 0.0021741795, -0.011759961, 0.014672014, 0.025741758, 0.013699138, 0.009597285, 0.009209449, 0.029922493, 0.0046540257, -0.027056456, -0.023072924, -0.0063861385, 0.009603858, -0.0044075204, -0.013975224, 0.009176582, 0.012548778, -0.019825624, -0.017393436, -0.0029186264, 0.010708204, 0.014198722, 0.014185576, -0.014146135, 0.02140326, 0.003967097, 0.011950592, 0.015960416, 0.013488786, -0.0009482249, 0.01741973, -0.010438691, -0.018905336, -0.009807636, 0.0030977537, 0.020693325, -0.0122266775, 0.006862716, -0.0028611084, -0.044173803, -0.014106694, -0.018432045, 0.0049071047, -0.0030747466, -0.013423052, -0.033945464, -0.019418068, 0.016565176, 0.010484705, 0.02434818, -0.010622748, -0.042438406, -0.019155128, 0.009446095, 0.026333371, 0.017577494, 0.020075416, 0.00041433485, 0.018261135, 0.0051766178, 0.008630983, -0.02066703, -0.015907828, 0.0024765597, -0.0007008976, -0.018340018, 0.044699684, 0.021363819, -0.024729442, 0.007894753, 0.020864233, -0.0059292815, 0.006300683, -0.008387764, -0.01564489, -0.0021462422, 0.011562756, 0.002969571, 0.017511759, 0.0014995758, 0.026044138, -0.0023845308, -0.009755048, 0.021074586, 0.021258643, -0.015579154, 0.0038750682, 0.019128835, -0.007112508, 0.012187237, 0.011681079, -0.02408524, -0.011529889, -0.0066655115, -0.0030090117, 0.004437101, 0.01759064, 0.044121217, -0.01749861, -0.027924154, -0.002318796, -0.046698023, 0.0093146255, 0.023572508, 0.002287572, 0.0064255795, -0.014461662, -0.0009679453, -0.0075923726, 0.005893127, 0.004131434, 0.029948788, 0.015289921, 0.0007124012, -0.018852748, 0.009235743, -0.03050096, -0.0018060644, 0.032920003, -0.008433779, -0.049406298, 0.02045668, 0.0010796946, -0.008486366, -0.020390943, -0.026635753, -0.004792069, 0.013035216, -0.014225016, 0.016999027, -0.022428723, -0.0039473763, -0.018839601, -0.00938036, 0.0013196267, -0.03310406, -0.01919457, -0.0052949404, 0.03549681, 0.023966918, 0.016920144, 0.005912848, 0.012285839, 0.011529889, -0.016367972, -0.012397588, -0.0073623005, -0.018221695, -0.031421248, 0.018694986, -0.010162604, 0.010156031, 0.0077304156, -0.010491278, 0.003737025, -0.013804314, -0.0036745768, -0.042648755, -0.008538954, -0.016867558, 0.0044042333, -0.01525048, -0.0103532355, 0.0074411826, -0.02638596, -0.0054789977, 0.02300719, 0.0015546287, -0.020561853, 0.0009268611, 0.03050096, -0.02625449, 0.016381118, 0.012082062, 0.011424713, 0.0005172509, -0.016052445, -0.0061692134, -0.008611263, 0.0029810744, -0.0021347385, 0.005856973, 0.0048183626, 0.008460072, -0.0298962, 0.015079569, -0.0016146117, -0.0010320368, -0.0010303934, -0.02781898, -0.020680176, -0.01624965, -0.0077106953, -0.027713804, 0.018103372, 0.01594727, -0.027740097, 0.036627445, -0.014172429, -0.015158451, 0.023151806, -0.007460903, 0.03349847, 0.0037008708, 0.017064761, 0.040965945, -0.022639075, 0.003493806, 0.00014389765, -0.016381118, -0.001345099, 0.022783691, 0.047039844, -0.03746885, -0.006675372, -0.0027247085, -0.006188934, -0.025662877, -0.017301407, -0.007145376, -0.005502005, 0.03189454, -0.016275944, -0.019628419, 0.005442844, 0.016275944, -0.016999027, 0.016039299, -0.006724673, -0.010892261, -0.014724601, 0.012732836, 0.010037708, 0.0009917743, 0.020035975, -0.012791998, -0.0032620907, 0.010879114, 0.0022925022, 0.007296566, -0.008368043, 0.025491966, 0.016236503, 0.010004841, 0.009577564, -0.005094449, 0.009735328, 0.01245675, -0.011845416, 0.024742588, 0.0008446925, 0.009071406, 0.006750967, -0.0054231235, -0.0047723483, -0.0047099004, -0.020390943, -0.01602615, 0.022428723, -0.008788747, 0.022073755, -0.010294074, -0.036837798, -0.0128906, -0.0066260705, -0.0136465505, -0.01789302, -0.006264529, 0.000911249, -0.033682525, -0.011050024, -0.0033393293, 0.0036252758, 0.011358978, 0.016315384, -0.010616175, -0.008256295, 0.016630912, -0.031947125, 0.01866869, 0.030185433, 0.020614441, -0.017906167, 0.019326039, 0.021823963, -0.030001376, -0.006014737, 0.0047854953, -0.006136346, -0.037416264, -0.0011372125, 0.00033791809, 0.015434537, -0.0018290716, 0.004890671, -0.010662189, 0.01715679, -0.008571821, -0.013883196, -0.022362988, 0.0026343232, -0.006497888, 0.021876551, -0.014777189, 0.016131327, -0.01219381, -0.0038323405, 0.020982556, -0.042964283, -0.0024321887, -0.014790337, 0.0021117313, 0.00762524, -0.015776359, -0.026675193, -0.01698588, -0.008624409, 0.026714634, -0.02929144, 0.008584969, 0.01185199, 0.017564345, 0.006326977, 0.009557844, -0.029107383, -0.015158451, 0.003444505, -0.014632572, -0.007848739, -0.0005632653, 0.013554522, 0.042859107, 0.0007497879, -0.014317045, -0.0153950965, 0.01145758, -0.03946719, -0.017748404, -0.0035529674, 0.008052517, 0.026924985, -0.0018504354, -0.0199308, 3.800295E-05, 0.019720448, -0.014895512, 0.0214427, -0.0031454116, 0.010156031, 0.00019206895, 0.005442844, -0.024663707, -0.008262868, -0.01880016, 0.026057286, 0.0078092976, -0.0013023713, 0.01728826, 0.015697477, 0.012568499, -0.0049136784, -0.007901326, 0.030474667, 0.03457652, 0.012640808, -0.03376141, -0.007421462, -0.0070467736, 0.010524146, 0.0027937302, 0.019615272, -0.0073688743, -0.0068298485, 0.019628419, -0.0042760507, -0.036758915, -0.029081088, 0.007243978, 0.0037567455, 0.00077033, 0.02083794, 0.0101757515, 0.012351574, -0.037284795, -0.030053964, 0.028844442, 0.014842924, 0.008479793, 0.005278507, -0.01966786, -0.01749861, 0.008269441, 0.024150975, 0.006192221, -0.0015612021, -0.022481311, 0.021337526, -0.032762237, 0.008598115, -0.006369705, -0.0044042333, -0.015460831, -0.010879114, -0.026701488, 0.022652222, -0.008617836, 0.007513491, -0.029791024, -0.0020032688, 0.023690833, 0.01293004, -0.020049123, -0.0023664539, 0.012601366, 0.015224186, 0.028739266, 0.20046493, -0.0038619211, -0.010064002, 0.049169652, 0.0013771446, 0.024269298, 0.006875863, -0.0028134505, -0.0033984906, 0.005324521, 0.009170009, 0.006139633, -0.008262868, -0.0097944895, 0.02053556, -0.017367141, -0.0355231, -0.009005671, -0.01394893, -0.01143786, 0.025662877, -0.005952289, 0.013870048, -0.010846247, -0.008394337, 0.012831438, -0.0022136203, -0.0022201939, 0.011733667, 0.008177413, 0.0041281474, -0.021455849, -0.002318796, -0.02075906, -0.0050221407, -0.0026063859, 0.039099075, -0.009084553, -0.012680248, 0.014448515, -0.035417926, 0.0042530433, 0.013048363, -0.015618595, -0.012423882, 0.024847765, -0.006215228, 0.019260304, 1.0431552E-06, -0.0011404993, -0.030080257, -0.035549395, 0.03131607, 0.032735944, -0.02044353, 0.003546394, 0.035943802, -0.034366168, 0.013975224, -0.010576733, -0.029081088, 0.02538679, -0.03512869, 0.033866584, 0.007934194, 0.005258786, -0.007336007, -0.021166615, 0.006471594, 0.0024995669, -0.0030122984, 0.011996606, -0.007303139, 0.020469826, -0.009038539, -0.025189586, 0.012995776, -0.0062349485, 0.025715465, 0.017051615, 0.0006972, 0.018852748, -0.006317117, -0.005170044, -0.014658866, -0.0298962, -0.0021199482, 0.013225847, -0.004624445, 0.0040065376, 0.0056564817, -0.0006980217, 0.009216023, -0.023230689, 0.0011848703, 0.027924154, -0.026201902, 0.019378627, -0.01685441, -0.00050410395, -0.0017189657, -0.011773108, 0.0065504755, 0.0062086545, -0.027293101, 0.018694986, 0.0072242576, -0.008558675, 0.004193882, -0.01759064, -0.006553762, -0.046224732, 0.016788675, -0.012141223, -0.021390112, 0.017130496, 0.0058799805, -0.02114032, 0.006087045, -0.0033130352, 0.011707373, -0.019733595, 0.010524146, -0.0054987185, 0.009636725, -0.016183915, 0.007651534, 0.015776359, -0.0033508327, -0.025189586, 0.0024732728, 0.009656446, 0.023375304, -0.03097425, -0.00072842406, 0.005925995, 0.017958755, -0.020469826, -0.018077077, -0.03607527, -0.01332445, 0.0075595053, 0.009518403, 0.008926789, 0.010616175, -0.023717126, -0.016486295, -0.011582477, 0.0037173044, -0.00395395, 0.00073417585, 0.005810959, -0.012036047, -0.006494601, 0.041570704, 0.013127245, -0.018537221, -0.03578604, 0.012233252, 0.016381118, -0.022639075, 0.018379457, 0.011523316, -0.021298084, -0.013922636, -0.0036515696, -0.16638799, 0.028975911, 0.0020295628, -0.013436199, 0.0052883667, -0.03089537, 0.033682525, 0.017393436, -0.018510927, -0.008420631, 0.013232421, 0.02075906, -0.031736776, -0.0359701, 0.010635895, 0.010287501, -0.011451007, 0.022297254, -0.0021708927, 0.010484705, 0.022244666, -0.02950179, -0.010773938, 0.010787086, 0.0214427, -0.029396614, -0.0076975483, 0.023835449, -0.00249135, -0.019681007, 0.0028841156, -0.0068035545, 0.027214218, -0.0069810385, 0.043148343, 0.0021774662, -0.003191426, 0.03284112, -0.010616175, -0.006087045, -0.0026507569, 0.010819953, 0.011615344, 0.0041281474, -0.0012916893, 0.023204394, -0.008992525, 0.019326039, 0.027503451, -0.028450033, 0.046724316, -0.007947341, -0.020824794, 0.0110368775, 0.04909077, 0.011431286, 0.030211726, 0.0013475639, 0.027740097, 0.017275114, -0.013712285, -0.03391917, -0.006580056, 0.007460903, -0.0045455634, -0.00027177244, 0.018616103, -0.0023368732, -0.058425114, 0.008052517, -0.009005671, 0.0641046, -0.005646622, -0.004930112, 0.023848595, 0.018247988, -0.013988371, 0.007934194, 0.0093146255, -0.023388451, -0.004893958, 0.02261278, -0.011687652, -0.017932462, -0.0049498323, 0.013870048, -0.019089393, -0.014225016, -0.0020032688, -0.020719618, 0.013298156, -0.005932568, -0.01572377, -0.0072768456, 0.013896342, -0.00095068995, 0.023835449, -0.0004073505, 0.017077908, -0.0073885946, 0.015894681, -0.004828223, -0.017353995, 0.013350744, 0.0153688025, -0.0004913678, 0.014790337, 0.038494315, 0.014908659, 0.00039523066, -0.011503595, 0.029054794, -0.005899701, 0.041439235, 0.003303175, 0.00029621756, 0.006139633, -0.026320225, 0.013048363, 0.013403331, 0.028581504, -0.011326111, -0.039782718, -0.008433779, -0.020285768, 0.0027017014, -0.10286186, -0.009077979, 0.02153473, -0.0020870809, 0.006267816, 0.0034412183, 0.006770687, -0.00019011744, -0.005735364, 0.025136998, 0.0013533158, -0.03313035, -0.0043615056, 0.008473219, 0.012653954, 0.005735364, 0.016302237, -0.02074591, -0.0024305452, 0.0026359665, 0.009945679, 0.005817532, -0.0002869736, 0.0030731033, -0.02742457, -0.007053347, -0.017380288, 0.0008504443, 0.013935784, 0.017012173, -0.0014527397, 0.009735328, 0.012082062, -0.0084009105, -0.018852748, 0.014869218, -0.03302518, 0.0072374046, 0.0031191176, -0.017222526, 0.013304729, -0.007079641, -0.015329362, 0.00058462913, -0.021666199, -0.006875863, -0.008604689, 0.016972732, 0.017222526, -0.0021347385, -0.020575002, -0.0108593935, 0.0019671146, -0.018221695, 0.015119011, -0.021863403, 0.020864233, -0.0008327781, 0.00020172376, 0.01273941, -0.020680176, 0.0006807663, -0.0012530702, 0.02685925, 0.00033791809, -0.008302309, -0.0027740097, -0.0073688743, 0.02183711, -0.011996606, -0.01681497, 0.0033327558, -0.03578604, 0.02950179, -0.0075923726, -0.011030304, -0.042306934, -0.018353164, 0.020732764, -0.0032620907, -0.020114858, -0.0009679453, 0.039782718, -0.029081088, 0.013153539, 0.027109044, 0.009590711, -0.0051864777, 0.012469897, -0.013094378, 0.022178931, 0.018944778, 0.020285768, -0.033866584, -0.0234016, 0.0032735944, -0.005278507, 0.0044929753, -0.012555352, 0.01245675, -0.04488374, -0.011332684, -0.06263214, 0.035707157, 0.018379457, 0.006685232, -0.015342508, -0.012272692, 0.0117008, -0.010892261, 0.0007345867, -0.024926646, -0.0034905192, -0.009505256, 0.0075529316, -0.00073499756, 0.0027066316, -0.021127174, 0.027950449, 0.010931701, 0.02291516, 0.0019309606, -0.028055625, 0.003444505, 0.005350815, 0.009058259, -0.009649873, -0.0026408967, -0.012239825, 0.00020295627, -0.00076046976, -0.019299746, 0.009610432, -0.0021741795, 0.033840287, 0.043779396, -0.011142054, -0.03673262, -5.7293296E-06, 0.014803483, 0.0110368775, -0.017222526, -0.018011343, -0.023940625, 0.009308051, -0.029554378, 0.0009753405, 0.0061725, 0.0020016255, 0.016828116, 0.04987959, 0.022468165, -0.0061199125, 0.025150144, 0.010951422, -0.034129523, -0.007303139, -0.025281616, 0.023467334, 0.004575144, -0.012923467, -0.020864233, 0.010234913, -0.007973635, 0.013442772, -0.015158451, 0.023270128, -0.00851266, -0.019746741, 0.0047296206, 0.009735328, -0.024335032, -0.006547189, -0.0072374046, 0.014764043, -0.005032001, -0.0019654713, -0.003321252, 0.011234082, 0.0027690795, -0.02508441, 0.022113197, 0.00395395, 0.015500273, -0.043753102, 0.004854517, 0.024124682, 0.0032522306, -0.029422909, 0.0020542133, -0.009912812, 0.011089466, 0.0016507659, -0.013607109, -0.024637414, -0.00675754, 0.02213949, 0.02755604, -0.01141814, -0.0120229, 0.019260304, 0.023020336, 0.0051864777, -0.002363167, -0.0070402, 0.0003535301, -0.0001820033, 0.009268611, -0.017104203, -0.02036465, -0.019234011, 0.014119841, 0.004118287, -0.0078092976, -0.0240458, 0.0066786585, 0.013008922, 0.017577494, -0.010951422, -0.028081918, -0.007881606, 0.02582064, 0.010182325, 0.008276015, 0.0037863262, -0.015763212, 0.018773867, 0.010662189, 0.0032177197, -0.01624965, 0.016670352, 0.009202876, 0.033393294, -0.029344028, 0.018681837, 9.6137184E-05, 0.017472317, 0.0023697405, -0.007230831, 0.035260163, 0.0019128835, 0.078040384, -0.0070204795, -0.023625096, 0.014829777, 0.0033853436, 0.014632572, 0.033288117, 0.00010224847, -0.021758229, -0.025268467, 0.01087254, -0.0027148484, 0.020903675, -0.0089333635, -0.02291516, 0.009393507, 0.017051615, 0.018957924, -0.033261824, -0.015934123, 0.030527255, -0.018103372, 0.029317733, -0.0225339, -0.002997508, -0.007309713, -0.008144545, 0.016105033, -0.003750172, -0.028108213, -0.010576733, -0.007802724, -0.018931631, -0.008893922, 0.00011821998, -0.028344858, -0.007421462, -0.010957995, -0.02929144, 0.029528085, 0.007467476, 0.0111552, -0.0173277, -0.016933292, 0.019102542, -0.0079079, -0.0015307998, -0.010668763, -0.02742457]
+ },
+ {
+ "Id": 33,
+ "Type": "Footwear",
+ "Brand": "WildRunner",
+ "Name": "Venture Grey Trail Shoes",
+ "Description": "Hit the trails in style and comfort with the Venture Grey Trail Shoes by WildRunner. Constructed with breathable mesh and a rugged outsole, these shoes provide excellent traction and long-lasting durability. The versatile grey color makes them suitable for any adventure.",
+ "Price": 79.99,
+ "Embedding": [0.014198085, -0.040558305, -0.0030572764, -0.023279503, -0.00940958, 0.0208819, -0.021899877, -0.052586492, 0.018738793, -0.02887837, 0.001223078, -0.0015972846, 0.0077218832, -0.024136744, -0.009362699, 0.0018199668, 0.01930136, -0.00018689402, 0.006452762, -0.0064058816, 0.0023691382, 0.022649964, -0.020372912, -0.020171996, 0.0010229988, -0.007045465, 0.015524133, -0.008271054, 0.032119818, -0.02417693, -0.00055921706, 0.015644683, -0.004205848, -0.020761352, 0.0054950607, 0.019033471, 0.004242683, 0.012088465, 0.015550922, -0.01281846, 0.018685216, 0.0061848736, -0.0066067977, 0.010742325, 0.007487481, 0.011840668, 0.00499277, -0.021966849, 0.0020175346, 0.008492063, -0.02415014, 0.0094162775, -0.018926315, -0.0017697378, 0.0074071144, -0.0013168389, 0.011077185, 0.015550922, 0.019502277, 0.0022318452, -0.020158602, -0.009148389, -0.028824793, 0.006161433, -0.00847197, -0.012396536, -0.02124355, -0.00681776, 0.00940958, 0.010360584, -0.010454345, -0.023949223, 0.012597452, 0.015470555, 0.016957335, -0.02796755, -0.010688747, -0.005076485, -0.012456811, 0.0072061983, -0.010293612, -0.01906026, -0.024927016, 0.0025600086, 0.010869572, -0.007916102, 0.012155436, 0.011961217, -0.022596387, -0.017640451, 0.007333445, -0.0030790423, -0.00268893, 0.0073200506, -0.009630588, -0.0094162775, -0.008063441, 0.0044636903, 0.0028329198, -0.027284434, -0.011847365, 0.007112437, -0.0037671807, -0.00854564, -0.048648536, -0.0008086881, 0.0021347357, 0.017627057, 0.035655946, -0.0088202255, -0.009751138, 0.016421558, 0.013280568, -0.01548395, -0.010233337, -0.0051501547, 0.010628472, 0.019783558, 0.00340888, -0.025141327, 0.03782584, -0.020131813, 0.020962268, 0.005093228, -0.0016265849, 0.028958736, -0.009402883, 0.0035160354, 0.008686282, -0.0017228574, 0.013280568, 0.007018676, 0.03442366, -0.012617544, -0.015751839, 0.0053745112, -0.017345775, 0.03260202, -0.032226976, -0.005270704, -0.010568198, 0.015269639, -0.032843117, -0.0018182925, -0.022623176, 0.030164234, 0.024056379, -0.0010857852, 0.022140976, -0.0039044735, 0.021980243, -0.012885433, 0.032521654, -0.021886483, 0.0014122742, -0.003469155, 0.021189973, 0.0057529034, -0.027083518, 0.0079830745, -0.0029132864, 0.019006683, 0.027994338, -0.00062535197, 0.0314501, 0.019247781, 0.04275499, 0.0043598837, 0.0050731367, -0.027431773, -0.0021799419, 0.031798355, -0.019997869, 0.022167765, 0.0028714288, 0.003951354, 0.01236305, 0.005468272, -0.023882251, 0.019354938, -0.00945646, -0.009831505, 0.01433203, 0.010280218, -0.0058232243, -0.018953105, 0.018256595, -0.0072530787, 0.0063723954, -0.033084217, -0.010534711, -0.0020610665, 0.0029635155, 0.00496933, -0.66693497, -0.014131113, -0.012557269, -0.029065892, 0.032896698, 0.019354938, 0.027833605, 0.0023306292, -0.029923135, 0.010641867, -0.0073267478, 0.03536127, -0.010340492, -0.021203367, 0.0010271847, -0.011914337, 0.019220993, -0.004058509, 0.027083518, 0.023922434, -0.04388012, 0.018752187, -0.008157202, -0.032816328, -0.008880501, 0.022074005, 0.0037571348, -0.0090211425, -0.022743726, 0.012510388, -0.039165284, 0.030700011, 0.013153321, -0.0014859434, 0.06102498, -0.02023897, -0.016461743, 0.04663937, 0.013099743, 0.042353157, -0.03233413, 0.008893895, -0.0034624576, -0.012523783, 0.0029350524, 0.019247781, 0.022743726, -0.008706373, 0.01281846, -0.011653146, 0.016702842, 0.020680984, -0.005997352, -0.003807364, 0.012215711, 0.0070052817, 0.044281952, 0.028128283, 0.016421558, 0.013206898, -0.01987732, 0.01630101, 0.005327631, -0.031101843, -0.017104674, 0.018564666, -0.020614013, -0.013381026, 0.0021179926, -0.013916803, 0.007715186, 0.034557603, 0.005947123, 0.006780925, 0.007072254, 0.030057078, 0.0012281009, 0.009858293, 0.0026989756, 0.016260827, 0.011284799, 0.006060975, 0.0045105712, -0.011994704, 0.030003501, 0.0007785507, 0.009798018, -0.008706373, 0.016622476, 0.002784365, 0.013427907, 0.042112056, -0.036325667, -0.0140105635, -0.0018785674, 0.02285088, -0.00583327, 0.022047216, 0.01826999, -0.02957488, -0.0108963605, -0.011539293, -0.014948173, -0.0057796924, 0.008780043, 0.03836162, 0.0047818082, -0.0063556526, 0.012222408, -0.020480068, -0.004085298, -0.00310918, -0.029923135, -0.024337662, -0.0069316123, -0.028021127, 0.013126532, -0.013160018, 0.032735962, -0.050014764, 0.013769464, 0.010474437, 0.016809998, -0.007896011, -0.009998934, -0.008585824, -0.0030321619, -0.007989772, -0.0049324953, -0.013320751, -0.0070655565, -0.0013017702, 0.022730332, 0.012389839, -0.008324632, 0.0075678476, 0.0007484132, 0.00024340174, 0.022743726, -0.013863225, -0.0106016835, 0.010079301, 0.0003815317, -0.01790834, -0.015671471, -0.022582993, -0.027016547, -0.011726815, -0.030566067, -0.011217827, 0.01826999, -0.02078814, -0.010708839, 0.0046311207, -0.00042150565, -0.01778779, -0.0082308715, -0.02354739, 0.0059739114, -0.01939512, 0.02227492, 0.0054649236, -0.008398302, -0.019904109, -0.00453736, -0.025248483, -0.008927381, 0.03375394, 0.0089206835, -0.033084217, -0.002811154, -0.011746907, -0.021109607, 0.022341892, -0.0034005085, -0.0032916788, -0.019582642, -0.028958736, 0.0131734125, 0.013836436, -0.0069048237, -0.00040664623, -0.027512139, 0.0069650984, 0.006740742, -0.0016985799, 0.012711305, 0.03854914, 0.0039613997, 0.018042285, -0.012805066, 0.007139226, -0.01490799, 0.008364815, 0.00020227667, -0.030673223, 0.012309472, 0.0036600253, 0.017479718, 0.0033117705, 0.021538228, -0.039835006, 0.025449399, -0.028289016, 0.02460555, -0.012235803, -0.0071928035, -0.0061647817, 0.011813879, 0.0148008345, 0.010045815, -0.022931248, -0.025864625, -0.006469505, -0.0029417495, -0.006382441, 0.014439185, 0.017707424, -0.010139576, -0.023788491, 0.013782859, -0.014425791, 0.0052439156, -0.03557558, -0.009262241, 0.020694379, -0.026668292, 0.0054046484, -0.008726465, -0.009503341, 0.031342942, 0.025355637, 0.02487344, 0.0020845067, -0.0018333612, -0.015765233, -0.004001583, -0.03581668, 0.050282653, 0.00883362, 0.04621075, 0.017935129, 0.00080952526, -0.023292897, 0.023225924, 0.019046865, 0.015041934, 0.005478318, 0.004035069, 0.0013360934, -0.0021280386, 0.006767531, -0.0030472307, -0.0015864016, 0.025623526, -0.021859694, 0.020734563, -0.012068372, 0.0148008345, 0.011170946, -0.00077938783, -0.0038274557, 0.002789388, -0.0020443234, 0.023346474, -0.015162484, -0.02978919, -0.009510038, -0.0082308715, -0.01685018, 0.019984474, -0.015979543, 0.015403584, 0.016073305, -0.010146273, 0.0108963605, 0.015684865, -0.0024377846, -0.020707773, 0.02566371, -0.013273871, -0.010065907, 0.022703541, 0.012262592, -0.01015297, -0.020011263, -0.008150505, 0.01149911, -0.008103624, 0.035093382, -0.0016667682, 0.0076013333, -0.003994886, -0.0011937777, 0.016716236, 0.013267173, 0.0029702126, -0.028315805, 0.028717637, -0.008927381, -0.01869861, 0.011492413, -0.018082468, -0.030405333, 0.04109408, -0.0040551606, -0.027512139, 0.00026035405, -0.005605565, 0.0038174097, -0.0024109955, 0.0050329533, 0.018738793, -0.019234387, -0.0051233657, 0.008679585, -0.0003660444, -0.0017010914, 0.02700315, 0.013983775, -0.0018501043, -0.0249672, -0.028208649, -0.015979543, 0.08759951, 0.013622126, -0.0055921706, -0.0007952937, 0.002225148, -0.022944642, -0.03611136, -0.0066335867, -0.005682583, -0.0020593922, 0.0129256155, -0.008036653, 0.00945646, -0.015591105, 0.033084217, 0.0136824, 0.0062284055, -0.014104324, -0.011124066, -0.022368683, 0.040799405, -0.004456993, -0.0067641824, 0.01826999, 0.010675353, 0.01581881, 0.013280568, -0.0032414496, 0.016408164, -0.015108906, 0.00034678992, -0.0021899878, -0.017988706, 0.00833133, -0.006667073, 0.015497345, -0.024913622, 0.005618959, 0.03530769, 0.0064360187, 0.035093382, 0.0148544125, 0.0027659477, -0.02151144, 0.009704257, -0.009657377, -0.011726815, 0.019194204, 0.018082468, -0.025101144, 0.029039104, 0.008317935, -0.0067943195, -0.0015554271, 0.00055712415, 0.02033273, 0.010574895, -0.0015621242, -0.008947473, -0.043317556, -0.009978843, -0.024739495, -0.0039379597, -0.00866619, -0.0008706373, -0.0066603753, -0.006834503, 0.013307356, -0.010186456, -0.0062719374, -0.027244251, -0.0014399001, -0.0077687637, -0.0051535033, 0.015912572, 0.009376094, -0.0014156228, -0.010260126, 0.015885783, 0.015470555, 0.009161783, 0.016649265, 0.012584058, 0.0087733455, 0.0045574517, -0.020841718, -0.026601318, 0.008056744, -3.4715616E-05, -0.007239684, -1.9581492E-05, -0.003951354, 0.0046177264, 0.0021481302, -0.008009863, -0.004493828, 0.0007354374, 0.02702994, 0.015256245, 0.014184691, 0.014412397, -0.0025583343, 0.004798551, -0.017854761, 0.0119344285, -0.005866756, -0.0110972775, 0.0034825492, 0.010983424, 0.00439337, 0.0062418, -0.008746556, 0.020761352, 0.0131198345, -0.021417677, 0.012068372, 0.0057462063, -0.0028329198, 0.013541759, -0.019743375, 0.008605915, -0.026159303, 0.04505883, 0.009496644, -0.0016927199, 0.01814944, 0.01046774, -0.017077886, -0.019837137, 0.020480068, 0.009436369, 0.022783909, 0.0074339034, 0.0123295635, -0.007942892, -0.028610481, -0.03670071, 0.008183991, 0.009396186, 0.00079110794, -0.0131734125, 0.011231221, 0.010474437, 0.023158953, -0.0035997503, -0.024900228, -0.024886834, 0.00040811126, -0.03300385, 0.04902358, -0.021015845, 0.009637285, -0.029012315, 0.0008103624, -0.012510388, -0.02573068, -0.006945007, -0.0076281223, 0.020252364, 0.0043364437, 0.004376627, -0.038709875, 0.021163184, 0.007366931, -0.017024308, 0.008003166, -0.014921384, -0.003243124, -0.03370036, 0.030324968, 0.01678321, 0.023748307, 0.0066938614, 0.006911521, -0.010836086, 0.012932313, -0.010936544, -0.0010112787, -0.01663587, -0.043799754, -0.010293612, -0.029387359, 0.0022904458, 0.015845599, -0.018511089, 0.0014072512, 0.041656647, 0.0152964275, -0.010072604, 0.0014675262, 0.02633343, -0.01289213, 0.026949573, -0.0123295635, -0.006774228, -0.0017831322, 0.0061781765, -0.031021478, -0.015644683, 0.015524133, -0.0148008345, -0.01421148, 0.014559735, -0.0032280553, -0.018028889, -0.0055017583, -0.022033822, -0.01166654, 0.006911521, -0.008384907, -0.01951567, -0.01960943, -0.023882251, -0.034128983, -0.0057696467, -0.0040417663, -0.019555854, 0.020131813, -0.030807167, -0.001649188, -0.015162484, -0.0075075724, 0.018336961, -0.012798369, 0.02451179, 0.017961917, -0.017881552, 0.010635169, -0.0011494086, 0.00284464, -0.0069717956, 0.0053376765, -0.010963333, -0.025596738, -0.0075008753, 0.015564316, -0.012142042, -0.012168831, -0.0012515412, 0.026748657, 0.022449048, 0.018430723, -0.0041321786, -0.024980593, -0.0075008753, 0.02981598, -0.019354938, -0.00041648274, 0.0011812204, -0.020694379, -0.0055754273, 0.0156045, -0.00977123, 0.012905524, 0.0048621744, -0.009228756, -0.0029132864, 0.015162484, 0.014425791, 0.00655322, -0.00993866, 0.044978462, -0.017827973, -0.00022896087, 0.038308043, 0.013997169, 0.018109256, 0.0012959102, -0.016274221, 0.031691197, -0.021444466, 0.009757835, 0.019917503, 5.462412E-05, 0.014198085, 0.012959101, 0.0046177264, -0.02230171, 0.003730346, -0.015644683, 0.011659843, 0.004383324, -0.0213641, -0.009188572, -0.0053879055, 0.0034825492, -0.022382077, -0.02194006, 0.0010489506, -0.022984825, -0.013890014, -0.010119485, 0.0061513875, 0.012041584, -0.004791854, -0.024431422, -0.015805416, 0.017640451, -0.028851582, 0.010427556, -0.0034038571, 0.018511089, -0.016059909, 0.006978493, -0.0018417328, -0.045889284, 0.0077352775, -0.005789738, -0.018712005, -0.03187872, -0.023721518, -0.021136396, -0.0033502793, -0.0048387344, 0.00200414, 0.017506508, 0.013153321, -0.012617544, -0.012309472, 0.005485015, -0.001123457, -0.016930547, 0.016890364, -0.02775324, 0.0057361606, 0.0003229311, 0.010072604, 0.016247433, 0.0006772554, -0.025328849, 0.008023257, 0.012054978, 0.02148465, -0.026159303, 0.0058031324, -0.011894246, -0.009329214, 0.0070990426, 0.007594636, -0.009570314, 0.025583344, 0.017707424, 0.0074071144, 0.013695795, -0.012664424, -0.015175878, 0.00039304252, -0.017814578, -0.008572429, -0.005284099, 0.012061675, 0.060167737, 0.014760651, -0.010648564, -0.0114388345, 0.012905524, -0.036566768, -0.027297828, 0.018591456, 0.008197385, 0.023199135, -0.0096640745, -0.013796253, 0.017948523, -0.014492762, 0.012543875, 0.005036302, -0.0005734486, -0.008083533, -0.008826923, 0.0019555853, -0.004644515, -0.024618944, 0.001699417, 0.028958736, 0.007701792, 0.01963622, -0.00902784, -0.019354938, -0.018953105, -0.028315805, -0.008431788, 0.048594955, 0.015108906, 0.03809373, -0.037718687, -0.021685567, -0.004205848, -0.009195269, 0.012932313, 0.001903682, 0.007299959, 0.01735917, -0.010213246, -0.015644683, -0.017399352, -0.020386308, -0.0015947731, 0.03214661, 0.0037671807, -0.017613662, -0.01010609, 0.015792022, -0.023132164, 0.010173062, -0.0030154188, 0.028556904, 0.0131734125, -0.0032213582, -0.009469856, 0.0037269974, -0.009657377, 0.013240385, 0.00039283323, -0.006747439, -0.001344465, 0.016689448, 0.004500525, 0.006774228, 0.0015612871, -0.019529065, 0.00049517496, -0.0072195926, 0.009496644, 0.0073468396, -0.00086980016, -0.00023921598, -0.017975312, 0.019770164, 0.006275286, -0.012476902, -0.003847547, 0.017345775, -0.02285088, -0.014921384, 0.030566067, 0.20563114, 0.0074004172, 0.00200414, 0.021752538, 0.018551271, -0.0036030991, 0.022891065, 0.0017278802, 0.0151223, 0.010173062, 0.028637271, 0.008411696, -0.03094111, -0.0034289716, 0.0050229076, -0.013434604, -0.050041553, -0.009128298, -0.031101843, -0.01243672, 0.011465624, -0.008585824, 0.028798003, -0.036057778, 0.02297143, -0.008070138, 0.0062652403, -0.01281846, -9.255754E-05, 0.027592506, -0.0011519202, -0.028074704, -0.0020744607, 0.011070488, 0.008003166, -0.001068205, 0.02775324, 0.030860744, -0.0045741946, -0.010233337, 0.013709189, 0.0131734125, -0.003509338, 0.0011653146, 0.0013026074, 0.015510739, -0.018752187, 0.0019991172, -0.0152964275, 0.005391254, -0.033352107, -0.0059672142, -0.005776344, 0.013213595, -0.0143052405, 0.0123295635, 0.03461118, -0.014399001, -0.0019405166, 0.004400067, -0.03643282, 0.01666266, -0.025971781, 0.027619295, -0.018658428, 0.017225225, 0.0054247403, -0.004544057, -0.0022435654, 0.012175528, -0.0038776847, 0.0058098296, 0.011445533, 0.039540328, -0.0052807503, -0.012349656, 0.018752187, -0.0035595673, -0.005156852, 0.015617894, -0.00036395152, -0.018323567, 0.010420859, 0.0015537527, -0.034236137, -0.036352456, -0.0017010914, -0.0057930867, 0.0058131786, 0.00075427326, 0.0156045, 0.0136824, 0.0021933364, -0.010360584, -0.012744791, 0.020078236, -0.017345775, 0.030619645, -0.0041254815, 0.016287616, -0.03262881, -0.02306519, -0.015028539, 0.009235453, -0.010708839, 0.014224874, 0.0011770347, 0.0039111706, -0.024485, -0.002745856, -0.01569826, -0.028717637, 0.01195452, -0.00088068313, 0.00036730012, -0.013662308, -0.001344465, -0.03699539, 0.006087764, -0.014814229, 0.031342942, 0.008003166, 0.0029903043, 0.015671471, -0.0148008345, -0.013930197, 0.017841367, 0.0056792344, 0.018993288, -0.045460664, -0.018256595, -0.022221344, 0.015805416, -0.0075343614, -0.012778277, -0.005672537, 0.01322699, -0.010775811, -0.0057227663, 0.012014795, -0.0076616085, -0.008391605, -0.012972496, 0.029146258, 0.038174096, -0.044442687, 0.027833605, -0.010072604, -0.014479368, 0.0037203003, 0.010815995, -0.024806466, -0.011545991, -0.00784913, 0.016890364, -0.0106016835, -0.037048966, -0.017747607, -0.010521317, 0.007333445, -0.018792372, 0.01207507, 0.028905159, -0.018497694, -0.0077285804, 0.00037357875, -0.1716629, 0.013247082, -0.0032916788, 0.0061245984, 0.023935828, -0.016716236, 0.014198085, 0.0052372185, -0.011720118, -0.0017881551, 0.01769403, 0.0015596128, -0.020359518, 0.0060911127, -0.001106714, 0.017278802, 0.003243124, 0.01236305, 0.017854761, -0.008726465, 0.02157841, -0.00052824244, 0.009329214, -0.009322517, -0.004021675, -0.014948173, -0.00071743864, 0.0010882966, 0.0044904794, -0.009577011, -0.012992588, -0.0054481803, 0.019354938, -0.007487481, 0.018189622, -0.01672963, -0.01109058, 0.014948173, -0.0072798673, 0.017627057, 0.015216062, 0.0044603418, 0.034128983, -0.0034356688, 0.020989057, 0.0053611165, -0.013836436, 0.0059504714, -0.0023155604, -0.0128720375, -0.006824457, -0.0011736861, -0.02021218, 0.0069316123, 0.018618245, 0.018832555, 0.023292897, -0.0035327782, 0.009295728, -0.015925966, -0.016555503, -0.025007382, 0.009248847, 0.011579476, -0.030780377, 0.0208819, 0.002119667, -0.005069788, -0.024578761, 0.014921384, -0.040960137, -0.023346474, 0.0034356688, -0.012838552, 0.023922434, 0.016836787, -0.00053493964, -0.007554453, -0.014452579, -0.028530115, -0.001439063, 0.024069773, -0.033244953, 0.0072195926, 0.00072539155, 0.020680984, -0.0154437665, 0.0077553694, -0.014760651, -0.013461392, -0.024230506, -0.01730559, -0.0082308715, -0.022797303, 0.0136154285, 0.013019376, 0.020975662, -0.019569248, -0.00022268224, -0.020560436, 0.010762417, 0.00084091845, -0.013247082, 0.024431422, 0.025476187, 0.014251663, 0.031289365, 0.020587225, 0.032226976, 0.0065498715, -0.021417677, 0.012014795, -0.008190688, 0.011412046, 0.019100443, -0.01433203, 0.011003517, -0.038441986, 0.012945707, -0.019944292, 0.021230156, -0.006211662, -0.0010439276, 0.006951704, 0.011505807, -0.0050028157, -0.08968904, -0.008317935, 0.003298376, -0.008940776, -0.022449048, -0.004028372, -0.009690863, 0.025744075, 0.014640101, 0.012912221, 0.009201967, 0.00040329763, 0.0057964353, 0.0008614287, 0.0016701168, -0.001638305, 0.037450798, -0.0032632155, -0.0360042, 0.016702842, -0.028690848, -0.017185042, -0.011130763, -0.015671471, -0.01672963, 0.0066503296, -0.03536127, 0.010099393, 0.008733162, 0.012905524, 0.0025365683, 0.0063623497, 0.013903408, -0.013709189, -0.014586524, -0.015751839, -0.018778978, -0.007587939, 0.008572429, -0.016461743, -0.016595686, -0.01243672, 0.005605565, -0.032548442, -0.012061675, 0.0089206835, -0.0019673056, 0.019207599, 0.014559735, -0.011820576, -0.0011929405, -0.008559034, 0.015564316, -0.013956986, 0.04430874, -0.016970731, -0.014988356, -0.003065648, 0.0076013333, -0.008900592, -0.010641867, -0.006767531, -0.014760651, 0.043960486, 6.964052E-05, -0.00837821, -0.014251663, 0.022341892, 0.0160867, -0.0042024995, -0.007018676, 0.009329214, -0.0131734125, 0.03860272, -0.0015688215, 0.003226381, -0.030566067, -0.012168831, 0.0065431744, -0.015952755, -0.0032414496, -0.01769403, 0.023440236, -0.040129684, 0.005518501, 0.021913271, 0.0021179926, -0.007387023, 0.008451879, -0.026628107, 0.007018676, 0.008485366, 0.005672537, -0.0054314374, -0.003629888, -0.006211662, 0.0016014704, -0.008224174, -0.02057383, -0.0041757105, -0.0146534955, 0.00019087049, -0.07013319, 0.029306991, -0.0056658396, -0.015350006, 0.004323049, 0.0062518455, 0.011619659, -0.008083533, 0.00095435244, -0.018537877, -0.024297478, -0.019863926, 0.007453995, -0.0030505792, 0.0060743694, -0.012135345, 0.0018618244, -0.007166015, 0.01826999, 0.009791321, -0.0043900213, 0.014171297, -0.0056792344, -0.0029903043, -0.03027139, -0.0018869389, -0.0036231906, 0.033164583, 0.00953013, -0.021498045, -0.0015905874, -0.0032280553, 0.0271237, 0.021819511, -0.007032071, -0.01001233, 0.012108556, 0.017506508, 0.007808947, -0.034128983, -0.024203718, -0.027833605, 0.004292912, -0.01113746, -0.0040752525, -0.01678321, 0.018095862, 0.00052154524, 0.011304891, 0.026320037, -0.027592506, 0.017801184, 0.009376094, -0.015765233, -0.0057662977, -0.017278802, 0.0015872387, -0.009510038, 0.0047315788, -0.030673223, 0.033780728, 0.007829038, 0.0066871643, 0.0076281223, 0.027619295, -0.012222408, 0.006603449, -0.0047818082, 0.018390538, -0.0014934778, -0.024002802, 0.019154022, 0.03230734, 0.007829038, -0.00866619, 0.010320401, -0.0003886475, -0.026025359, -0.015751839, 0.01927457, 0.0004947564, 0.0019338194, -0.049130734, 0.017881552, -0.008626007, -0.0006387464, -0.008900592, 0.0003746252, -0.014131113, 0.012001401, -0.017761001, -0.007922799, -0.023600968, -0.010534711, -0.0018400585, 0.013153321, 0.0032364267, 0.014278452, 0.008947473, 0.013374329, 0.008351421, 0.014532946, 0.0018383842, -0.021832906, -0.017399352, 0.001344465, 0.005036302, 0.008163899, -0.020868506, 0.009858293, 0.011854062, 0.0003486735, -0.023105375, 0.004808597, -0.013742675, -0.0008773345, -0.00453736, -0.02911947, -0.0109968195, 0.02366794, 0.021323917, 0.039379597, 0.0077888556, 0.0025667057, -0.014425791, 0.0028597086, 0.016220642, -0.0057227663, 0.005890196, 0.013836436, 0.018497694, -0.021390889, 0.0067072557, 0.01997108, -0.002285423, 0.0026939528, 0.0050162105, 0.037745476, -0.025690498, 0.06590055, 0.020654196, 0.014077536, -0.015872387, 0.010380676, -0.004021675, 0.0064360187, 0.01603312, -0.026922785, -0.027096912, 0.0057964353, -0.012778277, -0.01183397, 0.011900943, -0.048648536, 0.011994704, -0.0094631575, -0.0010707164, -0.014680285, 0.0029651897, 0.023279503, -0.015216062, 0.013983775, -0.014238269, -0.009577011, -0.016957335, 0.028021127, 0.00842509, -0.0007747835, -0.012738094, 0.020774746, 0.0076683057, -0.0046846983, -0.005639051, -0.014171297, -0.026387008, 0.0059672142, 0.015269639, -0.010561501, 0.02575747, 0.012838552, -0.0019823741, 0.0043096547, -0.023788491, 0.008579127, 0.014345424, -0.03300385, -0.0028245484, 0.017238619]
+ },
+ {
+ "Id": 34,
+ "Type": "Cycling",
+ "Brand": "AirStrider",
+ "Name": "Velocity Red Bike Helmet",
+ "Description": "Protect yourself while cycling in style with the Velocity Red Bike Helmet by AirStrider. This lightweight helmet features a streamlined design, adjustable straps, and ventilation channels for optimal airflow. Stay safe on the road or trails with this vibrant red helmet.",
+ "Price": 54.99,
+ "Embedding": [0.0041923495, -0.008783037, -0.006621561, -0.019642659, 0.025937712, 9.7084805E-05, -0.010389451, -0.030247604, 0.042445906, -0.021915147, 0.0043098917, -0.0031018162, -0.00040241983, -0.0025418566, -0.0017680351, -0.00075178227, 0.027792273, -0.0047180257, 0.002765514, -0.023678284, 0.0024308444, 0.018153787, -0.0243966, -0.0010627802, -0.021471098, -0.012466036, 0.025532844, -0.022842426, 0.035132147, -0.015750695, 0.033120867, 0.01737017, 0.007561901, -0.02391337, 0.00013580649, 0.01832357, 0.010689838, 0.0008297358, 0.023717465, 0.005913041, 0.03377388, 0.00022243286, -0.0018610896, -0.005122894, -0.026368702, 0.014810355, 0.007078671, -0.013543509, -0.0144969085, 0.0048486283, -0.008260626, 0.0029908037, -0.013236592, 0.0008256545, 0.010415572, -0.0058510047, 0.019485936, 0.0112579595, 0.021836786, -0.027792273, -0.010624536, -0.007450889, -0.022359196, 0.003421793, 0.00399318, -0.0063048494, 0.010141306, 0.007907999, 0.011205719, 0.031187944, 0.031214066, 0.0042478554, 0.012590108, 0.0196949, 0.007940649, -0.019995285, 0.0015100947, -0.012603168, 0.010409042, -0.003031617, 0.017631376, 0.013674111, -0.015829057, 0.009011592, 0.021810664, 0.006239548, -0.019054946, 0.014718934, -0.0045808926, 0.012374613, -0.007699034, -0.0029663157, 0.010069475, 0.009063833, -0.017174266, 0.02442272, 0.0050445325, 0.028001236, 0.0033466963, -0.008012481, 0.0043849885, -0.026603786, -0.00018916996, -0.013014567, -0.040095054, -0.041557804, -0.003751565, 0.0196949, 0.009214026, -0.009612365, -0.027034776, 0.02254204, 0.023129754, -0.005681221, 0.005263292, 0.011506105, 0.020426275, 0.03429629, -0.019290032, -0.02246368, 0.012315842, 0.032755177, 0.01123184, -0.013001507, 0.0053155334, 0.0042021447, -0.02951623, 0.001630086, 0.028419165, 0.0012203198, -0.0062264875, 0.0021549459, 0.018010125, -0.008541422, -0.0056126546, 0.027583309, -0.008848338, 0.0244619, -0.018088486, 0.004616808, -0.008619783, 0.011924034, -0.012511747, 0.0018382341, -0.020230372, -0.0013933685, -0.0010399247, 0.02815796, 0.015842117, 0.0024406395, 0.019433694, -0.029281143, 0.03719567, 0.023430139, 0.0076076123, 0.0009150357, -0.01128408, 0.018832922, -0.009364219, -0.004100927, 0.0067391037, -0.013896137, 0.025088795, 0.006477898, 0.027740031, 0.010866151, 0.0016374324, -0.0039017582, 0.0013084767, -0.018428052, -0.005733462, 0.0440915, -0.029150542, -0.0025206336, 0.006157921, 0.017265689, 0.01082697, 0.0044437596, -0.010729019, -0.010996754, 0.009560124, -0.016782457, 0.01782728, 0.029881917, -0.002158211, 0.0121983, 0.030247604, 0.0068892967, -0.0044535547, -0.032128286, -0.00027589838, 0.014705873, 0.011081646, -0.015829057, -0.65531254, -0.019498995, -0.015215225, -0.02259428, 0.018271329, -0.008861399, -0.0006726043, 0.014183463, -0.0072027436, 0.012838254, 0.018023184, 0.017709738, -0.008815688, -0.011434274, -0.0076141423, -0.026407883, 0.0055702087, -0.008345518, 0.010631067, -0.00328466, -0.033303708, -0.021510279, -0.019564297, 0.018545596, 0.011551816, 0.009821329, 0.029855797, 0.0015166248, -0.024592504, 0.020347914, -0.030639414, 0.026407883, 0.006259138, 0.017422412, 0.052763525, -0.03518439, 0.0082475655, 0.028366925, 0.0031148763, 0.015162983, 0.018793741, 0.0019525116, 0.006184042, -0.014862597, -0.010271909, 0.012968856, 0.02860201, -0.016273107, 0.009318508, -0.014026739, 0.021562519, -0.001965572, 0.008358578, 0.028758733, 0.010859622, -0.022372257, 0.038318858, 0.019133307, 0.0010709428, 0.0058379443, -0.019211669, 0.012106878, -0.018362751, -0.018506415, -0.008286746, 0.016312288, -0.028837094, -0.012831723, -0.0076598534, -0.033486553, 0.012981917, 0.0113297915, -0.013347604, 0.02250286, 0.008149614, 0.033878364, 0.029986398, 0.02013895, 0.0060175234, 0.0021467833, 0.039233077, 0.007535781, 0.0026708269, -0.0092793275, 0.009168316, -0.015894359, 0.0050477977, -0.00037140166, 0.01965572, 0.02341708, 0.019433694, 0.027374344, -0.0077512753, -0.013504328, -0.029699072, 0.02531082, 0.0133214835, 0.014914838, 0.0243966, -0.01407898, 0.00075994496, -0.005691016, -0.0002479412, 0.002976111, 0.011401623, 0.012792543, 0.038083773, -0.02305139, 0.013425966, -0.027060896, 0.00421847, -0.02487983, -0.043203402, -0.0127337715, -0.018872103, -0.029437868, 0.027557187, -0.000998295, 0.0098801, -0.04406538, 0.01730487, -0.015881298, 0.010441693, 0.0018153787, -0.009527473, -0.0013664316, 0.013974498, 0.032180525, -0.039233077, -0.007307226, 0.032964144, 0.034479134, 0.026368702, 0.008136554, 0.022894667, 0.024017852, 0.011316732, -0.013354135, -0.013269243, -0.022306954, -0.0075292503, 0.014170402, -0.014509969, -0.027113138, -0.012381144, -0.013752473, -0.015607033, 0.004897604, -0.005658366, -0.0024928807, -0.0030838582, -0.014444668, -0.0061775115, -0.028706491, 0.011538756, -0.011688949, -0.0013068441, -0.017422412, -0.00093707495, -0.027609428, 0.016560433, -0.0029483577, 0.004822508, -0.020073649, -0.014483849, 0.008293277, -0.007594552, 0.029986398, -0.020909505, -0.032650694, 0.0004966987, -0.0043327473, -0.031553634, 0.027635548, -0.013778593, 0.008071252, -0.021889027, -0.020805024, 0.025637327, -0.008854869, -0.000989316, -0.009174845, -0.01695224, 0.008835278, 0.024579443, 0.0035523956, 0.016743276, 0.028001236, -0.01454915, 0.018532535, 0.022411438, -0.008469591, -0.013726353, -0.008528362, 0.002951623, -0.027896754, 0.007699034, 0.009227087, 0.022685703, -0.0001163181, 0.031788718, -0.015450309, 0.02250286, 0.00041384756, 0.01743547, -0.012936206, -0.015332767, 0.001239094, 0.013687172, 0.023821948, 0.0050053517, -0.029281143, -0.010859622, -0.011238369, 0.008482651, -0.0046690493, 0.0074051777, 0.01922473, 0.006579115, -0.012550928, -0.006285259, -0.006046909, 0.015306646, -0.033094745, -0.009658076, 0.030378208, 0.001651309, 0.0271915, 0.00564204, -0.0318932, 0.025114914, 0.03199768, 0.01641677, 0.0006007728, 0.009527473, 0.03137079, -0.004505796, -0.009651545, 0.0376136, 0.0023394222, 0.041192118, 0.009449111, 0.00937075, -0.023691345, 0.037404638, 0.01362187, 0.043908656, 0.0021631087, 0.00076361815, 0.0206483, -0.014640572, -0.011538756, -0.0054755216, 0.00021161733, 0.013896137, -0.010147836, 0.024971252, 0.010735549, -0.0041564335, 0.018454174, 0.021053169, 0.0034119978, 0.008639374, -0.010879212, 0.013896137, 0.00845, -0.034923185, 0.0019867949, -0.009553594, -0.030848376, -0.0058314144, -0.020831143, 0.006301584, -0.019995285, 0.019956104, -0.010487404, -0.017487712, 0.024945132, -0.0119893355, 0.047278207, 0.0010872681, -0.039180834, -0.007215804, 0.030352086, -0.016051082, -0.010905332, -3.9461425E-05, 0.0033466963, -0.0017566074, 0.037822567, 0.019982226, 0.018467233, -0.024030913, 0.01456221, 0.0063995365, -0.009246677, 0.027766151, -0.02487983, 0.019551236, -0.020360975, -0.021967389, 0.024161516, -0.009246677, -0.025088795, 0.014823416, 0.015097681, 0.004407844, -0.028131839, 0.008561012, -0.0049988213, 0.004780062, -0.007894938, -0.0038331917, -0.010820441, 0.00058363116, 0.0085348915, -0.021836786, -0.026930293, 0.0144969085, -0.0028144899, -0.010467813, -0.0074312985, -0.0051457495, -0.002308404, 0.08389923, -0.0087634465, -0.009037713, 0.0042445906, -0.0026512365, -0.037848685, -0.00705255, -0.0066868626, 0.013647991, -0.0074443584, -0.024318239, -0.0008734061, -0.009429521, -0.0045874226, -0.00023590127, 0.0030626352, 0.017317928, -0.021836786, -0.018728439, -0.0036013718, -0.01126449, -0.0040617464, 0.019054946, 0.006987249, 0.014000618, -0.018506415, 0.03390448, 0.035053786, 0.013804714, 0.0030152916, -0.00052485993, 0.013341074, -0.011643238, 0.0024977783, -0.021262133, 0.0007872899, -0.020047527, -0.009547063, 0.018793741, -0.00068852154, 0.011434274, 0.014601391, -0.008580603, 0.02015201, 0.009311979, -0.009625426, 0.010559235, 0.0016292697, 0.0019704695, -0.015711514, 0.019276971, 0.006242813, -0.021314373, -0.003758095, -0.021027047, 0.023952551, 0.0072876355, -0.02110541, -0.016756337, -0.027818393, -0.021040108, 0.004362133, 0.025023494, 0.0030659004, -0.0009550328, -0.0043686633, 0.011218779, 0.0046755797, -0.008619783, -0.02392643, -0.017984003, -0.011799961, -0.007731685, 0.0013631665, 0.009978052, 0.0225551, 0.008998532, -0.024553323, -0.006908887, 0.011943624, -0.009775618, 0.0048094476, -0.012426855, 0.0047474112, -0.011897913, -0.009703787, -0.0054853167, 0.009729907, -0.0052730874, 0.011995866, 0.02341708, -0.004734351, 0.017187327, -0.02208493, -0.025715688, -0.0012407264, 0.025924653, 0.018963523, 0.007679444, -0.00888099, 0.01360881, 0.00561592, 0.0043588676, -0.0047604716, 0.03233725, -0.0094948225, -0.0024471697, 0.017095905, 0.0105984155, -0.0059946678, -0.007738215, 0.013060278, 0.023312597, -0.01590742, -0.026564606, 0.010833501, 0.02205881, 0.0059424266, 0.0076272027, -0.025898531, 0.002884689, -0.033591036, 0.02585935, -0.0008562645, -0.0045188563, 0.019903865, 0.03471422, -0.0019312886, 0.0041401084, 0.016286166, 0.03382612, 0.01743547, 0.00032528257, -0.004659254, -0.034426894, -0.006664007, -0.0055571483, -0.008051662, -0.009331569, -0.027087018, -0.013504328, 0.016351469, 0.02292079, 0.0009689094, -0.0026202183, -0.015149923, -0.012792543, -0.0035719862, -0.04928949, 0.022267774, -0.012498686, -0.019982226, -0.016482072, -0.0023279947, -0.014444668, -0.02019119, -0.025885472, -0.009893161, 0.00399318, 0.0092662675, 0.024997372, 0.006197102, 0.015985781, 0.017082844, -0.009129135, 0.010951043, -0.023691345, -0.00019549605, -0.024435781, 0.010213138, 0.01546337, -0.007228864, -0.0025451218, -0.011682419, -0.016024962, 0.02056994, 0.014274884, -0.016103324, -0.025950773, -0.043046676, -0.011937094, 0.004737616, -0.0060175234, -0.016991422, -0.033538796, 0.005962017, 0.022907728, 0.0058934507, 0.0020194456, 0.021510279, 0.0039017582, -0.016181685, 0.0003669122, -0.0100825345, 0.02292079, -0.008992001, -0.019551236, -0.0007023981, -0.032676816, 0.046808038, 0.017566074, -0.004646194, -0.010441693, -0.014405487, -0.018493354, 0.019577358, -0.009997643, -0.02535, 0.009534003, -0.0069284774, -0.028497526, -0.022202473, -0.031344667, -0.06242813, -0.014758115, 0.0031638525, -0.014301005, 0.017422412, -0.019851623, -0.002741026, 0.01776198, -0.015306646, 0.0058803903, -0.025101855, 0.013079869, -0.0012007293, -0.020008346, -0.027844513, -0.041792892, -0.006206897, -0.006481163, 0.028732613, 0.02020425, -0.027008656, -0.015881298, 0.010520054, 0.009344629, 0.0038625773, -0.0067325733, -0.0060730292, 0.032729056, 0.032258887, -0.009677666, -0.031005101, 0.0020782168, 0.021732302, 0.016991422, -0.010121715, 0.01407898, -0.006379946, -0.011747721, 0.03651654, -0.027844513, 0.015620093, 0.015149923, -0.0007011737, 0.017161205, -0.006249343, -0.004793122, -0.020844204, 0.018558655, 0.028523648, 0.009194436, 0.022137173, 0.020334853, -0.004051951, 0.005256762, 0.00845, -0.015411128, 0.022881608, -0.003653613, -0.013119049, -0.011597527, -0.018428052, 0.015815997, 0.00059424265, -0.012374613, -0.01126449, 0.00610568, 0.0015933539, 0.0080908425, 0.020125888, -0.0015958027, -0.0015500918, -0.00795371, -0.0009778884, -0.03194544, 0.006611766, 0.019094126, -0.030665534, -0.038240496, 0.0011329792, 0.0004432332, -0.013354135, -0.009991113, 0.003526275, -8.764671E-05, 0.017056724, -0.035314992, 0.016508192, 0.03528887, 0.030117001, 0.001877415, 0.016795518, 0.0029434601, -0.016978363, 0.023312597, -0.0037189142, -0.010363331, -0.020713601, 0.0010072739, 0.007535781, 0.013504328, -0.018989645, 0.011466924, -1.6975811E-05, 0.018793741, 0.0077643353, -0.02341708, 0.004744146, -0.015789876, -0.0027361284, 0.015437249, -0.020543817, 0.011493045, -0.009971523, 0.006895827, -0.0047572064, -0.006765224, -0.0290983, -0.020413214, -0.020008346, -0.00024039074, -0.029908037, 0.005449401, -0.013236592, -0.01919861, -0.021941267, -0.008645904, 0.009775618, 0.00796677, 0.008123493, -0.011453864, 0.0033956724, -0.029699072, -0.025180217, 0.002182699, -0.014627512, 0.0019427164, -0.009560124, 0.017997064, 0.043856416, 0.031187944, -0.022280835, 0.0031018162, -0.005772643, -0.049237248, 0.0079471795, -0.003425058, 0.006040379, 0.025245517, 0.029777434, -0.0031524247, 0.0076925037, 0.023377897, 0.017317928, 0.013197411, -0.00750966, 0.010389451, 0.0053285933, -0.010944514, 0.0011525695, -0.017317928, -0.021510279, 0.026878053, 0.0015435617, 0.032729056, 0.019446755, -0.0063603553, -0.003425058, 0.008874459, -0.012727241, 0.030117001, 0.028445287, -0.011519166, -0.021327434, -0.025519785, -0.018493354, 0.0066933925, -0.0017761978, 0.018989645, -0.003839722, 0.010147836, -0.020935627, -0.0020031203, -0.012518276, -0.022306954, -0.030717775, 0.011153477, -0.0063897413, -0.006148126, 0.021941267, 0.0037254444, -0.01593354, 0.02625116, 0.016808579, -0.02951623, -0.018127667, -0.01875456, -0.0069480683, -0.008998532, 0.008338988, 0.014235703, -0.0021680063, 0.0054591964, -0.004042156, -0.0010766567, -0.016090263, 0.025467543, -0.014784235, -0.009625426, -0.03377388, -0.014993199, -0.011440804, -0.004365398, -0.005586534, -0.0034609737, -0.011760781, 0.004420904, -0.0034642387, -0.015149923, -0.03241561, 0.020556878, -0.0128056025, -0.003666673, 0.0013647991, 0.20008346, 0.02015201, -0.0009925811, 0.027844513, -0.033460435, -0.0057301973, 0.0083912285, 0.005638775, 0.0031312017, 0.0063636205, 0.019446755, 0.012786012, -0.0012962326, -0.006993779, 0.026055256, -0.0064909584, -0.031240186, -0.010611476, -0.02205881, -0.016860818, -0.02724374, -0.006010993, -0.01174119, -0.022633463, -0.0054624616, 0.030143123, -0.007790456, -0.019564297, 0.017135086, -0.014875657, -0.0038919628, -0.03993833, -0.0053351237, -0.020870324, -0.020230372, -0.01546337, 0.0023116693, -0.01453609, -0.018101545, 0.03244173, -0.015920479, 0.018976584, -0.006383211, -0.033669397, -0.0012521542, 0.008123493, -0.0169, 0.010729019, -0.025872411, -0.010644127, -0.038658425, -0.0067717545, 0.0016055979, 0.012492157, -0.0012660307, -0.009044243, 0.030691653, -0.015672334, -0.006435452, 0.0048747486, -0.015711514, -0.0059391614, 0.000711377, 0.011884853, -0.012675, 0.013948377, -0.012759892, -0.012381144, 0.010395981, -0.005971812, 0.0023002415, 0.0005995484, 0.0013035791, 0.013001507, -0.0141051, -0.019851623, 0.0069219475, 0.01831051, -0.006706453, 0.017174266, -0.016939182, -0.014771175, 0.013883076, -0.0046135434, 0.014379366, -0.01684776, -0.0070068394, 0.004120518, 0.011081646, 0.011205719, 0.0028504056, -0.013883076, -0.009194436, -0.009899691, -0.00013539835, 0.008254096, -0.021183772, 0.02390031, -0.003607902, 0.012067697, -0.039206956, -0.008678555, 0.013752473, -0.006536669, 0.00317528, 0.019107187, -0.0076141423, 0.021810664, -0.013700232, -0.031840958, -0.025454482, -0.039050233, 0.013830835, -0.002249633, 0.032755177, -0.017200386, -0.017775038, -0.022581222, 0.009534003, -0.004169494, 0.029751314, 0.01362187, 0.033382073, -0.0024324767, 0.006657477, -0.017709738, -0.029699072, 0.011793431, 0.003797276, -0.019146368, -0.00036834067, 0.0031997683, 0.008796098, -0.0021549459, -0.017709738, 0.009442581, 0.01828439, -0.009207496, 0.00199659, 0.003376082, -0.005955487, -0.015437249, 0.010108655, -0.004081337, 0.03528887, -0.02341708, -0.013217001, -0.014718934, -0.008672025, 0.001101961, -0.019956104, -0.008038601, 0.00052363554, -0.033094745, -0.004881279, 0.0034642387, -0.023116693, -0.024448842, -0.017252628, 0.02211105, -0.011715069, 0.03810989, 0.009318508, -0.0077251545, -0.022790186, -0.031684235, -0.16529088, 0.014405487, 0.016625734, -0.027139258, 0.004734351, -0.005586534, 0.014340186, 0.012302782, -0.0357068, 0.00446335, 0.024292117, -0.018245209, -0.039624885, -0.032049924, 0.011173068, -0.004551507, -0.0047082305, 0.04022566, 0.002439007, 0.011434274, 0.022881608, -0.028288562, 0.015280525, -0.009318508, 0.014823416, -0.007418238, -0.0050543277, 0.041087635, 0.01358269, -0.014758115, -0.0051816655, -0.01219177, 0.043046676, 0.011904444, 0.019329213, -0.008130023, -0.008345518, -0.003281395, 0.0009313611, 0.028941577, 0.017474653, 0.016860818, 0.017957883, 0.02396561, 0.00845653, 0.03424405, -0.023299536, -0.00090768933, 0.027844513, -0.024527203, 0.019969165, -0.028366925, -0.034426894, -0.01265541, 0.031240186, 0.0117020095, -0.008267156, 0.00086034584, 0.026407883, -0.032755177, 0.0011370605, -0.02106623, -0.0007668832, -0.011453864, -0.022320015, -0.025872411, -0.001559887, -0.0065889102, -0.021875966, 0.0074639493, 0.004068277, -0.0024847179, -0.00891364, -0.008613254, 0.007333346, 0.0051947255, -0.023874188, 0.004642929, 0.0029597855, -0.035341114, 0.013491267, 0.034348533, -0.022868548, 0.0039637946, -0.02442272, 0.005958752, -0.011852203, 0.014301005, -0.017696677, -0.0014186727, -0.0046233386, -0.020073649, -0.005024942, -0.013804714, -0.00011682827, 0.0075292503, 0.013700232, -0.01789258, 0.003260172, 0.0032487442, 0.01923779, -0.017291809, -0.018401932, 0.03137079, 0.02066136, 0.0018463968, 0.024540262, 0.009703787, 0.019916924, 0.014705873, -0.009103014, 0.019041887, -0.0058608, 0.014013679, 0.0011762413, 0.0020961748, 0.008508772, -0.01593354, -0.0026724595, -0.03797929, 0.03709119, -0.009951932, -0.015332767, 0.002372073, 0.014118161, -0.00562245, -0.083324574, -0.024474962, 0.021222953, 0.0007489253, 0.00028100004, 0.006174247, -0.010729019, 0.03231113, 0.003666673, 0.011447334, -0.006288524, -0.015724575, -0.012759892, 0.022881608, -0.002600628, -0.010800851, 0.034479134, 0.006765224, -0.026447063, 0.011395093, -0.0033254733, -0.022698764, -0.009762558, 0.01500626, -0.01268806, -0.014588331, -0.027426584, 0.0290983, 0.0096384855, 0.0030691654, 0.0035066847, 0.01784034, 0.0053351237, -0.0011917504, -0.010624536, -0.004881279, -0.018976584, 0.0015484593, 0.007561901, -0.033146985, -0.0027785741, 0.0140528595, 0.026695209, -0.0271915, -0.004117253, -0.014862597, -0.014797295, 0.025219398, 0.01733099, 0.001123184, -0.011715069, -0.0024928807, 0.015176043, -0.0041662287, 0.026447063, -0.01735711, 0.018519474, -0.017291809, -0.003193238, 0.025872411, -0.013086399, 0.026055256, -0.030378208, 0.027870635, 0.010134776, -0.016233927, -0.0197602, 0.008045131, 0.013341074, -0.0026626643, -0.025506724, 0.019329213, -0.014731994, 0.03460974, 0.0021125, -0.0056126546, -0.018153787, 0.007940649, -0.0062787286, 0.011525695, -0.018480293, -0.015554791, 0.024984313, -0.037352394, -0.0069741886, 0.047043122, 0.018166848, -0.0058314144, 0.015424188, -0.023286477, 0.0056648958, 0.031658113, 0.029019939, 0.0009460539, -0.028366925, 0.00039874663, -0.0059783426, -0.0139091965, -0.0034348532, 0.002478188, -0.014823416, -0.0002307996, -0.066607416, 0.0071243816, -0.001010539, -0.00042935665, 0.010382921, 0.022346135, 0.013987558, -0.01362187, 0.006102415, 0.006295054, 0.015424188, -0.013504328, -0.005031472, 0.0063048494, -0.011858732, -0.0059326314, 0.016338408, 0.008632844, 0.018558655, 0.0037874808, 0.0021875966, 0.0027132728, -0.01362187, 0.0011974643, -0.032964144, 0.0068631764, 0.010604946, 0.0033630216, -0.004179289, -0.008672025, 0.014771175, -0.038736787, 0.00847612, 0.029725194, -0.020452395, -0.029150542, 0.00058118236, 0.002817755, 0.015071562, -0.048401393, -0.021000927, -0.026486244, 0.0072353943, -0.019773262, -0.026394822, -0.012603168, 0.010121715, -0.01031762, 0.03612473, 0.02531082, -0.003119774, 0.015110742, -0.0068305256, -0.0346881, -0.013647991, -0.0072615147, -0.0153850075, -0.018519474, -0.0002695723, -0.03131855, 0.029803555, -0.004744146, -0.006712983, 0.0009542166, 0.018571716, 0.010467813, -0.013739413, 0.0036470827, 0.0042935666, -0.0015337664, -0.021797605, 0.010030294, 0.037718084, -0.014705873, 0.0046755797, -0.0012268499, 0.01639065, -0.0061350656, -0.0125052165, -0.00042690785, 0.017984003, -0.021053169, -0.038423337, 0.0053416537, 0.016717156, 0.026486244, -0.028262442, 0.016351469, -0.000903608, 0.013804714, -0.031971563, -0.006340765, -0.008645904, -0.017239567, 0.03427017, -0.0007032144, -0.03006476, -0.01173466, 0.022398377, 0.027113138, 0.009677666, 0.012772952, -0.019838562, -0.000494658, -0.018232148, 0.025963834, 0.00080239086, -0.012923146, -0.022816306, -0.0070982613, 0.0072027436, -0.0033222083, -0.0346881, 0.013661051, -0.018885162, -0.002148416, 0.00235085, 0.006712983, -0.009109545, 0.019929985, 0.010513524, 0.013478207, 0.0087634465, -0.0021043373, 0.012400734, 0.0188068, -0.004411109, -0.014379366, 0.014170402, 0.0069676586, 0.0063081146, 0.0040388913, 0.015763756, 0.0009207496, 0.0024030912, -0.0009419726, 0.013961437, 0.027818393, -0.01972102, 0.061696753, 0.007921059, -0.0021288253, 0.0017108965, -0.0007207641, 0.0018121136, 0.01501932, 0.008025541, -0.041583925, -0.0338, -0.0073790574, -0.0013590852, -0.025180217, 0.017984003, -0.049106646, 0.017069783, -0.0034087326, -0.008632844, -0.009005062, -0.021366615, 0.017213447, -0.02815796, 0.018023184, -0.013073338, -0.000561592, -0.01217871, 0.011460395, 0.020439336, 0.00845, -0.023195054, 0.0094229905, 0.016717156, -0.025141036, -0.015567851, -0.008156144, 0.0055636787, -0.016181685, 0.016821638, 0.013687172, 0.02063524, 0.023586862, 0.037639722, -0.012883965, -0.027060896, 0.0011737925, -0.020909505, -0.022254715, -0.029150542, 0.0009811535]
+ },
+ {
+ "Id": 35,
+ "Type": "Trekking",
+ "Brand": "Raptor Elite",
+ "Name": "Carbon Fiber Trekking Poles",
+ "Description": "Hike with confidence using the Raptor Elite Carbon Fiber Trekking Poles. These lightweight and durable poles provide stability on various terrains and reduce strain on your joints. With an ergonomic grip and adjustable length, these poles are a must-have for your outdoor adventures.",
+ "Price": 99.00,
+ "Embedding": [0.018585559, -0.0004424344, -0.021117542, -0.024259323, 0.006412813, 0.013813232, -0.02127662, -0.038973995, 0.017220143, -0.023159038, -0.0086365845, 0.00012655777, -0.019500254, 0.0042089266, 0.0038973996, -0.007277797, 0.01686222, -0.031152684, -0.0038609442, -0.0067077694, -0.01401208, 0.03149735, -0.01820112, 0.008848688, 0.003943797, -0.03674691, 0.043746322, -0.005614111, 0.02296019, -0.0077947993, 0.037118092, -0.0094386, -0.009160215, -0.03131176, -0.014595363, 0.00065826613, 0.015390751, -0.0075230417, 0.0005571856, 0.0025386123, 0.02652618, -0.0046099345, -0.011427069, -0.0053788093, -0.004112817, 0.015112366, 0.01108903, 0.010180962, -0.013959054, -0.011314389, -0.0052826996, 0.0070789503, -0.01307087, 0.011354159, 0.010121308, -0.011970584, 0.010697964, 0.013402282, 0.02068008, -0.006979527, -0.015178648, 0.030039141, -0.021064516, -0.0080400435, -0.0152581865, -0.015099109, 0.0027407734, 0.0055875983, -0.011427069, 0.019858178, 0.012123033, 0.009895948, 0.028978623, 0.01977864, 0.007098835, -0.030834528, -0.0017100835, 0.014436286, -0.009876063, 0.00925301, 0.012335137, -0.006820449, -0.021369414, 0.025240302, 0.0046331333, -0.017498529, 0.0033257147, -0.0016148026, -0.03086104, -0.012076636, 0.0075495546, 0.0018757893, -0.008550418, 0.008795662, -0.023145782, 0.0078080557, -0.0059289522, 0.00835157, -0.034334235, -0.009306036, 0.005266129, 0.018559046, -0.006157626, -0.016835706, -0.0322132, -0.007443503, 0.01569565, 0.0046033063, 0.001624745, -0.021448953, -0.03030427, 0.014118131, 0.004079676, 0.004248696, -0.0035394751, -0.006505608, 0.024352118, 0.017869709, 0.041943442, -0.024895635, 0.037595324, 0.008861944, 0.008676354, -0.010161078, -0.00700604, 0.010823901, -0.024325605, 0.006290191, 0.006558634, -0.005143507, 0.010214103, -0.0019172156, 0.020282386, 0.014131388, -0.0023231949, 0.0247233, -0.017299682, 0.0055014314, -0.034678902, 0.0126334075, 0.008192493, -0.0026562633, -0.0005331583, 0.018559046, -0.009902576, -0.014648389, -0.010936581, 0.022350393, 0.018943483, -0.013037729, 0.025704278, -0.0017730517, 0.022376906, 0.04446217, -0.012003725, -0.036852963, 0.0078014275, 0.027599951, -0.017392477, -0.02903165, 0.002152518, -0.0037582067, -0.005826215, -0.0016843991, 0.016610345, 0.028421853, -0.005577656, 0.0059289522, -0.0023778777, 0.0035494175, 0.020852413, 0.0069132443, 0.0002990989, 0.020892182, -0.0068867314, 0.0041327015, -0.0036786678, 0.0076688626, -0.021926187, 0.0018194492, 0.0013289602, -0.0015758618, 0.0120965205, 0.006939757, 0.0024043906, -0.035871983, 0.019791896, 0.025306584, 0.0054450915, -0.036799937, 0.013508334, -0.0027954562, 0.0002939206, -0.007131976, -0.65030897, -0.03086104, 0.0115596345, -0.029986115, 0.02985355, 0.0013181893, 0.012461074, 0.010572027, -0.027467387, -0.014171157, -0.010558771, 0.024325605, 0.011533121, -0.023132525, -0.00955128, -0.020984977, 0.009067419, -0.010764247, 0.0030440148, -0.0011342559, -0.03603106, 0.01161266, -0.020574028, -0.0026214651, 0.0029396203, 0.0036190138, 0.021833392, 0.0032014353, -0.037993018, 0.038417224, -0.02708295, 0.033485822, -0.008762521, -0.0004805467, 0.044037964, -0.03947774, -0.006469153, 0.04782931, 0.014621876, 0.038152095, -0.022032239, -0.0072645405, 0.012845511, -0.0050772247, -0.008782405, 0.012673177, 0.011791622, -0.012388163, 0.011957328, -0.0042321254, 0.01760458, -0.011135427, -0.008112954, -0.014887006, 0.006419441, -0.00552463, 0.045708276, -0.00035005342, 0.014741185, 0.012911793, -0.003019159, 0.011904302, -0.007310938, -0.026831077, -0.02767949, 0.01891697, -0.046212025, -0.01955328, 0.023238577, -0.03372444, 0.021409184, 0.029164214, -0.016133113, -0.0047590695, -0.0029545338, 0.013892771, 0.02086567, -0.0103665525, 0.0128123695, 0.012520728, 0.02573079, 0.024908891, -0.019235125, 0.002273483, 0.025757303, 0.0060615167, -0.0088155465, 0.01213629, 0.021806879, 0.026420128, 0.01374695, 0.0050739106, 0.014091618, 0.008325057, -0.023132525, -0.00025850098, -0.012911793, -0.004659646, -0.008769149, -0.007927364, -0.013554731, -0.007967133, 0.010929952, -0.0036620973, 0.011155312, -0.0016272306, 0.020613797, -0.007947248, 0.00071129197, -0.010353296, -0.015894497, -0.026579205, -0.01651755, -0.011877789, 0.0071120914, -0.017551554, 0.009153587, 0.009060791, 0.0013148752, -0.049870808, 0.009670588, -0.00620071, 0.0104858605, 0.007125348, -0.0047193, 0.002560154, 0.008596815, -0.009266267, -0.011334274, -0.008252147, -0.0040498488, 0.023729065, 0.0116789425, 0.001322332, 0.002217143, 0.020308899, 0.0026595774, -0.013011216, 0.033008587, -0.027838567, -0.027918108, -0.020361925, -0.017299682, -0.04297745, -0.0010903439, -0.0549878, -0.041996468, -0.017631093, -0.006349845, -0.03764835, 0.0071386043, 0.0024855863, 0.017856453, 0.0021458897, 0.019208612, -0.0053423536, 0.009226497, -0.027467387, -0.0005807987, -0.008974624, 0.010505745, -0.010326783, -0.0011649115, 0.017312938, -0.010777503, -0.0033273718, 0.008974624, 0.017617837, -0.016225908, -0.029508883, -0.005547829, -0.0113210175, -0.012189316, 0.0075230417, -0.018678354, 0.0061907675, -0.012427933, -0.01224897, -0.001811164, -0.00730431, -0.006416127, -0.0035858727, -0.023649527, -0.011301133, 0.019540023, 0.0036886104, -0.004742499, 0.02154175, -0.00350302, 0.037330195, -0.029720986, 0.028342314, -0.012010354, 0.008868572, -0.0008040872, -0.015443777, -0.011307761, 0.025240302, -0.0012916764, 0.00033410423, 0.009902576, -0.034546338, 0.037171118, -0.030277757, 0.043481193, 0.0016114885, -0.009378946, -0.027135976, 0.03412213, 0.009975487, 0.0028153409, -0.020918695, -0.025531944, 0.0017233399, -0.014449542, 0.021342902, -0.018718123, 0.02708295, 0.0028633955, -0.0101875905, 0.015417264, 0.01524493, 0.016013805, -0.0015170362, -0.010326783, 0.012494215, -0.011824763, 0.04334863, 0.005269443, -0.01146021, 0.002074636, 0.01745876, 0.0029363062, 0.025014943, 0.023384398, 0.027706003, 0.005730105, -0.02199247, 0.048889827, -0.0008765835, 0.028289288, 0.007847825, -0.0022353707, -0.01052563, 0.005262815, 0.015616111, 0.02217806, 0.023967681, 0.011340902, 0.017180374, -0.01487375, 0.019380946, 0.011546378, 0.0003608243, 0.019672588, 0.0011036004, 0.04019359, 0.02876652, 0.021700827, 0.00827866, 0.02722877, 0.00060441176, 0.028925598, -0.016172882, 0.010253873, -0.016901989, -0.0141844135, -0.007377221, -0.0115596345, -0.010379809, -0.0053058984, -0.014224183, 0.016225908, -0.0016015462, 0.008305172, -0.005232988, 0.016809193, 0.0073573356, -0.0076953755, 0.028474879, 0.0056174253, -0.033247203, 0.012262226, 0.016212652, -0.0023381084, -0.021780366, -0.03345931, 0.013574616, -0.009982116, 0.033963054, 0.01356136, 0.017631093, -0.006475781, 0.004861807, 0.018850688, -0.0019023021, 0.032425303, -0.026685257, 0.05588924, -0.0051932186, -0.032743458, -0.0026728339, -0.009021021, -0.029561909, 0.026963642, 0.0070590656, -0.017591324, -0.029906576, 0.022655291, -0.015046083, 0.00031049116, -0.00839134, 0.008205749, -0.014635133, -0.010472604, -0.013269718, 0.0054450915, -0.02581033, 0.037993018, -0.032001097, 0.01213629, -0.007503157, -0.0043812604, -0.009823037, 0.07481947, 0.0035593598, -0.00678068, 0.0094120875, 0.006538749, -0.007880966, -0.009425344, -0.017776914, 0.01891697, -0.012421304, 0.0137071805, -0.020547515, 0.0022917108, -0.010021885, 0.01914233, 0.00823889, 0.001928815, -0.033512335, -0.00661166, -0.008974624, 0.008523905, -0.010929952, 0.04210252, 0.006880103, 0.005120308, 0.027135976, 0.012050123, 0.015072596, 0.007383849, -0.023119269, -0.020149821, -0.013196807, -0.005050712, -0.008331685, -0.012414676, -0.010890183, 0.005753304, -0.009465113, -0.0003531604, 0.022615522, -0.0067409105, 0.013117268, 0.015205161, -0.006508922, -0.0036654114, 0.012852139, 0.0006880932, 0.0028683667, 0.0034698786, -0.0024126759, 0.008543789, 0.0091801, -0.016544063, 0.008013531, 0.0050440836, 0.0025916381, -0.004490626, -0.031152684, -0.016345216, -0.023159038, -0.005269443, -0.0006686227, 0.012447817, 0.004464113, -0.0133492565, -0.028289288, 0.010207475, 0.0014598678, -0.030967092, -0.0127527155, -0.02671177, -0.0042056125, 0.0196991, -0.00425201, 0.033167664, 9.201848E-05, 0.019301407, -0.007443503, 0.0023132525, -0.0014374974, 0.0046961014, 0.002475644, -0.0066282307, -0.02086567, -0.0018045357, 0.010419578, 0.0035162764, 0.018784406, 0.0002837711, -0.002445817, 0.005120308, -0.017140605, 0.019129073, 0.008656469, -0.018757893, -0.012825626, 0.025836842, 0.024961917, 0.0040962463, -2.1101594E-05, -0.007165117, -0.030542886, -0.0037747773, -0.02101149, 0.040008, 0.023251833, 0.0024657017, 0.0019089304, 0.012487587, -0.0063929283, -0.0036289562, -0.019646075, 0.014462799, -0.002241999, -0.023145782, 0.016875476, -0.00558097, -0.019897949, 0.005978664, -0.025903124, -0.014263952, -0.039530765, 0.03839071, -0.004215555, -0.013667411, 0.015761932, 0.00020402521, -0.0074302466, -0.0032693746, 0.009783268, -0.030754989, 0.02685759, -0.0037913478, 0.016464524, -0.010015257, -0.013879514, -0.045231044, -0.012434561, -0.00597535, 0.027467387, -0.016809193, 0.008033415, 0.024020707, 0.027812054, -0.027626464, -0.0227746, -0.030145193, 0.03629619, -0.013601129, 0.031682942, -0.021289876, -0.016119856, -0.016239164, 0.0030622424, -0.007847825, -0.025240302, 0.008026787, -0.015775189, 0.015748676, 0.024219554, -0.0024309035, -0.0141844135, 0.005179962, 0.01633196, 0.00161066, 0.009756755, -0.02217806, -0.007072322, -0.053741693, 0.009213241, 0.0029760755, 0.00591901, -0.016464524, -0.0247233, -0.018148094, 0.008861944, -0.017392477, -0.027175745, -0.014370004, -0.048253518, -0.017365964, -0.0033969681, -0.00316498, -0.004225497, -0.033379767, -0.0041658427, 0.02026913, 0.013720437, 0.0028915657, -0.007072322, 0.019646075, -0.013614385, 0.0104858605, -0.02213829, 0.0025336412, 0.005769875, -0.024895635, -0.023954425, 0.0025419265, 0.01299796, 0.0067375964, -5.380259E-05, 0.0015543201, -0.0008459279, -0.015152135, 0.005358924, -0.015642624, -0.017167117, -0.005554457, -0.029800525, -0.014794211, -0.013488449, -0.00056505663, -0.02794462, -0.004682845, 0.023927912, -0.021568263, 0.01232188, -0.028501391, -0.030569399, 0.019924462, 0.0004424344, 0.015006314, -0.0076357215, -0.0101875905, 0.021475466, -0.02940283, -0.025280071, -0.0108437855, 0.0027043181, 0.00235965, 0.0056240535, 0.029906576, -0.008895085, -0.02539938, 0.005773189, 0.011036004, -0.0064326976, -0.018042043, 0.0072910534, 0.008033415, 0.05209789, 0.0061443695, -0.00661166, -0.031152684, 0.007039181, 0.011075773, 0.01606683, 5.0384908E-05, -0.0183602, -0.005925638, 0.024391888, -0.024511196, 0.014555594, -0.01779017, -0.024060477, -0.016756168, 0.0026546062, 0.00058038445, 0.010731105, -0.004086304, 0.029561909, 0.01079076, -0.014714671, 0.013919284, -0.016159626, 0.0033406282, 0.006296819, 0.012010354, 0.02595615, 0.014847237, -0.021289876, -0.0091801, 0.021157311, 0.00037988045, -0.024683531, -0.01745876, -0.007344079, 0.0045038825, -0.004278523, 0.013998823, -0.009226497, -0.021488724, -0.011871161, 0.0024209612, -0.01651755, -0.033167664, -0.0092331255, 0.008967996, -0.025518687, -0.024444913, 0.015178648, 0.01801553, 0.0135878725, 0.026923873, -0.0026595774, -0.0145423375, 0.009716986, -0.03491752, 0.009458485, 0.027997646, 0.0098296655, -0.020892182, 0.014051849, 0.007894223, -0.017114092, -0.0017846511, -0.0058460995, -0.050507117, -0.01704781, 0.011685571, 0.0041327015, 0.016080087, -0.0046165627, 0.00057707034, 0.029588422, 0.02176711, -0.015046083, -0.01914233, -0.006323332, 0.0040432205, 0.012878652, 0.018665098, -0.035606854, -0.0038675724, -0.0040962463, -0.010857042, 0.002044809, 0.00385763, -0.018837431, -0.007821312, 0.0045370236, -0.016756168, -0.046768796, 0.017631093, -0.01704781, -0.009319292, -0.009597678, -0.0038874573, 0.017538298, 0.015218417, -0.0003138053, 0.009624191, 0.015390751, -0.022668548, -0.024922147, 0.010929952, -0.014051849, -0.015125622, -0.0041592144, 0.017405733, 0.04764372, 0.016848963, -0.034228183, -0.010220732, 0.0008972967, -0.035235673, -0.016636858, 0.0004378775, -0.0021061203, 0.0017332822, -0.002992646, 0.01873138, 0.011818135, 0.0040697334, -0.010015257, -0.005829529, -0.025757303, -0.020931952, -0.004894948, -0.0040465347, -0.017180374, -0.041148055, -0.005259501, 0.044435658, 0.0057201628, 0.0063365884, 0.019818408, -0.008185864, 0.0072115147, 0.01052563, 0.025942894, 0.028713495, 0.03512962, 0.00053150125, -0.047484644, 0.020852413, -0.0062471074, 0.008139467, 0.008848688, 0.0049115187, 0.0005870127, -0.0048750634, 0.021820135, -0.007158489, -0.029959602, -0.00925301, -0.010280386, -0.020627053, 0.0038775147, -0.021939443, 0.012779228, 0.026433384, -0.026725026, -0.0023215378, 0.028421853, 0.015337725, -0.007682119, -0.009259638, -0.022840882, 0.02349045, 0.011705455, 0.013906027, 0.0046961014, -0.023516962, -0.01397231, -0.0056837075, -0.005836157, 0.014701415, 0.0022287425, -0.0076025804, -0.00700604, 0.00816598, -0.0033853687, 0.022125034, -0.009869435, 0.007821312, -0.042791855, 0.016318703, -0.0059090676, -0.032743458, -0.002848482, 0.020322155, -0.011453582, -0.0046927873, 0.02386163, 0.18877201, -0.007615837, -0.0033389712, 0.025704278, 0.009670588, 0.026314076, 0.0022883967, -0.0008028444, -0.02138267, -0.031629916, 0.010611797, -0.0007709461, -0.008252147, -0.007277797, 0.019540023, 0.01240142, -0.046954386, 0.00055801414, -0.025041455, -0.007947248, 0.020560771, -0.014741185, 0.023689296, -0.0068867314, 0.011784994, 0.0071717454, 0.00081485807, -0.027069693, 0.0055909124, 0.026698513, -0.0032445188, -0.030569399, -0.011214966, -0.019712357, 0.00022556697, 0.022469701, 0.010585284, 0.008749264, -0.01760458, 0.021024747, 0.00835157, 0.012355022, 0.014290465, 0.018426482, 0.0035726163, -0.006880103, -0.010280386, 0.0046165627, 0.009359062, 0.014277209, -0.027652977, -0.009637447, 0.0063763577, 0.019752126, -0.0106648225, -0.005776503, 0.020282386, -0.0038377454, -0.0077682864, 0.003506334, -0.0055677136, 0.018943483, 0.0161066, 0.028315801, -0.031629916, -0.013919284, -0.0004573479, 0.018930227, 0.024391888, 0.0021674314, 0.0021210338, 0.0022933679, 0.008033415, 0.03793999, -0.008901713, -0.016239164, 0.011029376, -0.016835706, 0.012951562, 0.014104875, 0.017989017, -0.014807467, -0.013435423, 0.00084924203, 0.0012154517, -0.016623601, 0.01487375, 0.0019685845, 0.00050333125, 0.0027225458, 0.0138264885, -0.0040432205, -0.0074899006, 0.0038708865, 0.00034487512, 0.01820112, -0.036269676, 0.0091801, -0.018452995, 0.009219869, -0.04345468, 0.020216104, -0.01756481, 0.008676354, -0.028130211, 0.016716398, -0.0039272266, 0.022880651, 0.0060515744, 6.990712E-05, 0.020375181, -0.037303682, 0.0083979685, -0.010558771, -0.0030158448, -0.011148684, 0.011433697, -0.015417264, 0.0067641092, -0.016371729, 0.03876189, -0.031523865, 0.011930815, -0.019579792, 0.007655606, -0.0030870985, 0.0027258599, 0.013064242, 0.002154175, -0.030277757, 0.021329645, 0.008086441, 0.021409184, -0.010200847, -0.006008491, -0.019911205, 0.0032644034, -0.03030427, 0.011751853, -0.020481233, 0.0014109846, 0.013375769, 0.03393654, 0.019115817, 0.032743458, 0.021899674, 0.009074047, -0.011354159, -0.0120368665, -0.0005807987, -0.007131976, 0.0015062654, -0.019274894, -0.003420167, -0.0106648225, 0.00843111, -0.024352118, -0.02595615, -0.025823586, -0.006585147, -0.017525041, -0.0028020844, 0.032266226, 0.011069145, 0.00850402, -0.010101424, -0.16756167, 0.04584084, 0.007953877, -0.029827038, -0.006011805, 0.009975487, 0.028103698, -0.015828215, -0.019023022, 0.0067475387, 0.016504293, 0.0068602185, -0.03465239, -0.026579205, 0.01877115, -0.015284699, -0.013210064, 0.022257598, 0.019221868, 0.0031732654, -0.0063962424, -0.040485233, 0.017723888, 3.5859762E-06, -0.0030870985, -0.022376906, -0.0015203503, -0.008775777, 0.0021972584, -0.019208612, -0.012858767, -0.012235713, 0.044568222, -0.010174334, 0.02722877, -0.017127348, -0.03231925, 0.004828666, -0.0060515744, 0.021926187, -0.00044409145, 0.020096796, 0.03640224, -0.025227046, 0.022151547, 0.026764795, -0.024405144, -0.009279523, 0.0026297504, -0.007973761, 0.024060477, 0.003224634, 0.032982074, -0.010280386, 0.0031484095, -0.0023016531, -0.0039603678, 0.01269969, 0.014555594, -0.016119856, -0.0076423497, -0.021846648, -0.020136565, -0.040962465, 0.0027805427, -0.019314663, 0.009339177, 0.021170568, -0.005488175, 0.023782091, -0.0029097933, 0.013322744, -0.011692199, -0.024617247, 0.02232388, 0.0057102204, 0.0075694392, -0.0034963917, 0.0059720357, -0.027281797, 0.002498843, 0.04798839, -0.016689884, 0.014966545, 0.0050473977, 0.012971447, -0.016013805, 0.013945797, -0.0034267951, -0.01588124, 0.007900851, -0.03345931, -0.0038874573, 0.001019919, -0.0087558925, 0.034784954, 0.009750127, -0.014316978, 0.0013107326, -0.022668548, 0.0059886063, 0.0061841393, -0.033088125, 0.022708317, 0.051514607, 0.014144644, -0.0010108051, 0.010757619, 0.019712357, 0.0063664154, -0.015708907, 0.045787815, 0.0007854453, 0.014489312, 0.012613523, 0.023013216, -0.015311212, -0.0110227475, 0.016835706, -0.00891497, 0.014436286, -0.016424755, -0.009272895, -0.020971721, -0.006356473, 0.0005331583, -0.0974615, -0.024100246, 0.02985355, 0.028793033, -0.007277797, 0.014131388, 0.0019172156, 0.0061907675, -0.013316115, 0.015854727, 0.014767698, -0.004623191, 0.023291603, 0.029800525, 0.0017332822, -0.017365964, 0.020096796, -0.018572303, -0.026698513, 0.017631093, -0.0010787445, -0.004218869, 0.00045776216, -0.015417264, 0.0059090676, -0.01947374, -0.020892182, 0.012746087, 0.028501391, 0.020388437, -0.017684119, 0.002898194, 0.033379767, -0.0018592187, -0.026870847, 0.006180825, -0.019540023, -0.00047433274, 0.028899085, -0.015112366, -0.0062239086, -0.0058792406, 0.005948837, -0.0121561745, 0.015112366, -0.018704867, 0.006290191, 0.012010354, 0.032345764, -0.016053574, 0.0010124622, -0.017617837, -0.015894497, -0.010572027, -0.0063730436, -0.014091618, 0.0053622383, 0.027202258, 0.014210926, 0.00425201, -0.014807467, 0.012891908, 0.013329372, 0.02060054, 0.006820449, -0.029429343, -0.011486723, -0.017140605, 0.013614385, 0.013011216, -0.010346668, -0.0072380276, -0.029588422, 0.014847237, -0.01565588, 0.0022038866, -0.028501391, -0.020110052, 0.0065221786, -0.010260501, 0.0006711083, -0.0088752005, 0.03494403, -0.0488368, 0.008702867, 0.03902702, 0.022125034, -0.0058692982, -0.005203161, -0.026075458, 0.008484135, 0.0062205945, 0.02123685, -0.010267129, -0.0032428617, 5.618461E-05, 0.0016636859, 0.019380946, 0.00064790953, -0.0011475125, -0.03330023, -0.0134089105, -0.0707895, 0.035500802, 0.01565588, -0.024179785, -0.02480284, -0.0066580577, 0.013799976, 0.0023961053, 0.009239754, -0.014767698, -0.0021591461, -0.016345216, 0.022416675, -0.005024199, -0.017246656, -0.0023364513, -0.014515825, -0.008450994, 0.030251244, -0.009140329, -0.015708907, 0.02577056, -0.009199984, 0.028846059, -0.028421853, -0.009491626, -0.026539436, 0.016318703, 0.010346668, -0.0022834253, 0.020733105, -0.018665098, -0.011599404, 0.028660469, 0.0035858727, 0.0026529492, 0.013534847, 0.010989606, 0.0066149742, -0.014993058, -0.0014333548, -0.007761658, 0.010923324, 0.0059322664, -0.019460484, 0.005030827, 0.00039085848, 0.003625642, 0.017525041, 0.016384985, -0.005892497, 0.025942894, 0.018983252, -0.011287876, -0.018585559, -0.0180553, 0.004623191, -0.006097972, -0.007470016, -0.036852963, 0.029694473, 0.026990155, -0.013932541, 0.008079813, -0.033883516, 0.015483546, -0.022761343, -0.0034864494, 0.0141844135, -0.010101424, -0.023397654, 0.022217829, 0.029323291, -0.009538024, 0.01678268, 0.002092864, 0.0065122363, -0.005518002, -0.004334863, 0.0032312623, 0.0017713946, -0.0024010765, -0.048598185, 0.017538298, 0.0008459279, 0.007953877, 0.010532258, 0.008749264, -0.008610072, -0.0032412047, -0.02712272, 0.01295819, -0.04419704, 0.0078610815, 0.024060477, -0.016769424, -0.0044806837, -0.009193356, -0.008285288, 0.014515825, 0.0031716083, -0.025227046, 0.014767698, -0.012089892, -0.008232262, -0.00079538766, -0.028819546, -0.015867984, -0.0042387536, -0.003937169, 0.016623601, 0.009624191, -0.004802153, 0.006015119, 0.02172734, 0.0016686571, -0.0046463897, -0.02767949, -0.0021939443, 0.02026913, 0.020878926, 0.03239879, -0.0011408841, -0.015947523, 0.0024027335, 0.005554457, -0.0029164215, 0.0007506471, 0.000689336, 0.019831665, 0.03231925, -0.0048850058, -0.026844334, -0.0008906685, -0.006134427, -0.00238782, -0.011983841, -0.0040664193, -0.03494403, 0.07253935, 0.015576342, -0.02004377, 0.015669137, -0.01779017, 0.030092167, 0.015563086, 0.0041061887, -0.010280386, -0.031152684, 0.012235713, -0.013269718, -0.020998234, 0.009518139, -0.0067177117, 0.011221594, 0.013282974, 0.013534847, -0.018824175, -0.018863944, 0.031046633, 0.006933129, 0.0033240577, 0.010823901, -0.0024905577, 0.0070192963, 0.030357296, 0.03030427, 0.0244184, -0.018612072, -7.6483564E-05, 0.0078610815, -0.025717534, -0.0013430453, -0.0022784541, -0.016795937, 0.009246382, 0.0061443695, 0.005143507, 0.008119582, 0.005375495, 0.01071122, -0.006939757, -0.015112366, 0.013720437, 0.0030655565, 0.015284699, -0.0068071927, -0.0013041043]
+ },
+ {
+ "Id": 36,
+ "Type": "Bags",
+ "Brand": "B&R",
+ "Name": "Excursion 20L Daypack",
+ "Description": "The Excursion 20L Daypack by B&R is the perfect companion for your hiking or camping trips. Made from durable waterproof nylon, this spacious pack features multiple pockets, adjustable straps, and a padded back for enhanced comfort. The sleek design and versatile white color make it a stylish choice.",
+ "Price": 64.99,
+ "Embedding": [0.015979419, 0.02023531, 0.024821626, -0.01969341, -0.0070182555, 0.01753903, -0.0117499605, -0.03893744, 0.015133526, -0.008650562, -0.022046044, -0.0020122963, 0.0025525435, 0.014869185, -0.009932616, 0.0058617634, 0.023275232, -0.0031704407, -0.0008541521, -0.022468992, -0.0005480947, 0.0041435463, -0.003112616, 0.0020915987, -0.015239263, -0.019072209, 0.023936084, -0.0034595637, 0.0250331, -0.012589243, 0.013838255, -0.0008880208, -0.01166405, -0.014789883, 0.014816317, -0.004077461, -0.0132963555, 0.0014249636, 0.01789589, -0.0070975577, 0.014789883, 0.025997944, 0.012318294, 0.020420348, -0.00021457061, -0.006674612, -0.0072825965, -0.014750232, -0.008452306, 0.013454961, -0.00090041175, -0.0018239534, -0.012932887, 0.020843294, 0.00019608738, 0.006512703, 0.0045367535, 0.011538488, 0.027465038, -0.027253564, -0.0076460657, -0.00148031, -0.032910462, 0.0016736094, 0.0018834302, -0.025099184, -0.00857126, -0.0037470346, 0.02700244, 0.02301089, 0.0053793406, 0.003210092, 0.023024106, 0.017684417, 0.03436434, -0.026976006, -0.012681763, 0.00888186, -0.0011259278, -0.008498565, 0.005706463, -0.021834573, -0.04401279, 0.008339961, 0.012609069, 0.006473052, 0.0030944427, 0.011432751, -0.046973407, -0.023764262, 0.0030597479, -0.0050125676, 0.007950057, 0.009529496, -0.011492228, 0.0043451064, 0.008154922, 0.022772983, 0.011353449, -0.022455774, -0.003971725, -0.0021659445, -0.004814312, -0.008729864, -0.038197286, 0.003938682, -0.013534263, -0.012212558, 0.015437518, -0.0072825965, -0.031958837, 0.015715078, 0.02319593, -0.033650618, -0.007381724, -0.0146180615, 0.009489845, -0.022019612, 0.0051711723, -0.047634263, 0.013653216, 0.010606686, 0.029447595, -0.035818215, -0.005785765, 0.0067043505, -0.010956937, -0.00812188, 0.03296333, 0.00616906, -0.02085651, 0.031932402, 0.0028532315, -0.0115450965, 0.008267267, 0.027597208, 0.005432209, 0.0032051355, -0.026354805, 0.0022254214, 0.013342615, 0.038514495, -0.019931316, -0.0071306005, 0.011763178, 0.024768759, 0.0020156007, 0.034073565, 0.023314882, -0.0125628095, 0.034522943, 0.0019396027, 0.012675154, 0.022601161, -0.007837713, 0.0026648885, -0.002195683, 0.018173449, -0.0330162, -0.020261742, -0.0023988953, -0.0014836142, 0.017790154, -0.012701589, 0.028707441, 0.02677775, 0.02098868, -0.002973837, -0.00019691345, 0.011928391, -0.017261472, 0.017116085, -0.0099590495, 0.0127676735, 0.023024106, 0.028178759, 0.022455774, -0.0117499605, -0.022535076, -0.0006207885, -0.021715619, 0.0076857167, 0.01031591, 0.017076433, -0.03140372, -0.010923895, 0.01583403, -0.015226046, 0.012932887, -0.002935838, 0.015067441, 0.014195115, -0.008088836, 0.012893235, -0.6538741, -0.010646337, -0.02287872, -0.01457841, 0.013203836, 0.0059674997, 0.018873952, 0.01350122, -0.006162451, 0.0107124215, 0.0058782846, 0.024530852, -0.0047977907, -0.025508914, 0.0007195033, -0.015569689, -0.004639186, -0.0020387305, 0.03219674, -0.0023509834, -0.02207248, 0.005240562, -0.028628139, -0.0007893059, 0.009132984, 0.013223662, 0.009311414, -0.020605387, 0.0013440092, 0.0047383136, -0.02117372, 0.03843519, -0.019852014, -0.0075469376, 0.048691627, -0.02749147, 0.0064697475, 0.03166806, 0.01422155, 0.04150155, -0.0027144523, -0.0033273932, 0.0041071996, -0.019680193, -0.008842208, 0.017235037, 0.038117982, -0.0031407024, -0.01121467, -0.021728836, 0.019574456, -0.0076592825, 0.012946104, -0.014340503, 0.0015777858, -0.007751802, 0.012430639, -0.00059105013, 0.014062945, -0.017697634, -0.02085651, 0.038091548, -0.018517092, -0.0042228485, -0.034337904, 0.02068469, -0.049061704, -0.016944263, 0.0117697865, -0.016323062, -0.0039221607, 0.040629223, 0.00096401887, -0.002483154, 0.016071938, 0.008452306, 0.0006335925, 0.004526841, -0.022706898, 0.013534263, 0.019878449, -0.007870755, -0.0044475384, -0.0084324805, 0.035897516, -0.0069059106, -0.0014613104, -0.011723527, 0.021504147, 0.014195115, 0.0004091091, 0.020618603, 0.0012622286, -0.004189806, -0.031509455, 0.008108662, -0.004920048, 0.0051546507, 0.01776372, -0.0032662645, 0.003538866, -0.00080128387, 0.0016364364, 0.005544554, 0.012060561, 0.015424302, 0.0078839725, 0.016653487, 0.024028603, -0.027967285, 0.004173285, -0.031192247, -0.025826123, -0.013236879, 2.651155E-05, -0.02915682, 0.0057163755, -0.017816588, 0.032408215, -0.05450713, 0.0021692489, -0.008862034, 0.007890581, -0.026672015, -0.013706084, 0.017433293, -0.00049357436, -0.020222092, -0.025720386, 0.0019610804, 0.0053000385, -0.008373003, 0.012417422, -0.0017843022, 0.0128073245, 0.035897516, 0.012007693, -0.03320124, 0.0056998543, -0.04041775, -0.040523484, -0.0042889337, 0.012344728, -0.046709068, 0.0010259738, -0.025469262, -0.01978593, -0.011075891, -0.01076529, -0.011921782, 0.01467093, -0.019455504, -0.00982027, -0.01134684, 0.01763155, -0.02754434, -0.010229999, -0.008551434, -0.0059278486, -0.0135606965, 0.028099455, 0.010487732, -0.020803642, -0.019984186, -0.017605115, -0.012675154, 0.018213099, 0.04639186, 0.015344999, -0.049088135, 0.0029507072, 0.0011234495, -0.019125076, 0.0021362063, 0.0058650677, -0.0057163755, 0.005352907, -0.013157577, 0.032408215, 0.000106355976, -0.0020370784, -0.010031744, -0.0135606965, -0.011987868, 0.0006856347, 0.004351715, -0.016904611, 0.021094417, -0.002631846, -0.0036082556, 0.023751045, 0.019429069, -0.010685988, 0.0022749854, -0.0004795312, -0.018583177, 0.0057428097, 0.008795949, 0.021464495, 0.01291967, 0.011683876, -0.032170307, 0.026764533, -0.016032286, 0.006245058, -0.030769302, -0.0026186288, 0.0006071584, 0.036267594, 0.025627866, 0.0055412496, -0.009351065, -0.010157306, -0.02134554, -0.006585397, 0.021662751, 0.021675969, 0.02552213, -0.01336905, -0.0064532263, 0.011141976, 0.0036644281, -0.006651482, -0.017790154, -0.03502519, 0.019799147, -0.032778293, 0.02117372, -0.0068728677, -0.011948217, 0.028971782, 0.036082555, -0.0066680037, 0.028205192, 0.012688371, 0.003423217, -0.0011870567, -0.016085153, 0.049326044, 0.021094417, 0.028363798, 0.03320124, 0.017486162, -0.0075205034, 0.013706084, -0.00010583969, 0.0059113274, 0.019627325, 0.015437518, 0.010606686, -0.0005580075, 0.0013687911, -0.01808093, 0.0013150969, 0.0069191274, -0.011822655, 0.015093875, 0.016746007, 0.030716432, 0.015662208, -0.022310385, 0.014988138, 0.026566278, -0.007038081, 0.0140497275, -0.046074647, -0.007427984, -0.035818215, -0.010395213, 0.012073779, 0.015939767, -0.045360927, -0.015424302, -0.011829263, 0.016217325, 0.0011821003, 0.021596666, 0.006387141, -0.013012189, 0.021675969, -0.006651482, -0.015807597, -0.0017925629, 0.02973837, 0.02059217, -0.0056932457, -0.020063488, 0.017472945, 0.00021849442, 0.013851472, 0.00088389043, 0.03275186, -0.01444624, 0.004269108, 0.0060633235, 0.0058617634, 0.031879533, 0.0011680571, 0.03436434, 0.0064069666, -0.0020139485, 0.018041277, -0.02094903, -0.042717516, 0.02839023, -0.005785765, -0.022217868, -0.019045774, 0.014591627, 0.015397867, -0.0061921896, -0.017433293, 0.013758953, -0.008604302, 0.018133797, 0.015450736, -0.006010455, -0.010831376, 0.030214185, -0.0014282678, -0.015939767, -0.020711122, -0.01229186, -0.0053562107, 0.08273876, 0.008115271, -0.011313798, 0.019812364, 0.014102596, -0.016560968, -0.0233281, -0.00444093, 0.01570186, -0.00428563, 0.0037602517, -0.0033174804, 0.009179244, -0.011657441, -0.00888186, 0.004041114, -0.0054024705, -0.028548835, -0.0041765887, -0.00073189434, 0.012252209, -0.0054883813, -0.018503875, 0.033306975, 0.0014290939, -0.0004340976, 0.0015199612, -0.0044178003, 0.037430696, -0.007262771, 0.009304806, 0.0013060101, 0.008227616, -0.005554467, 0.0005670942, 0.0034166083, -0.009364283, -0.017486162, 0.01094372, 0.011498837, 0.015688643, 0.041739456, 0.021451278, -0.015278914, -0.012371162, -0.0042625, -0.028707441, 0.0033901741, 6.1541905E-05, -0.015133526, 0.0165081, 0.030557828, -0.005954283, -0.005257083, 0.005729593, 0.009740968, -0.009212286, 0.0062913173, -0.01798841, -0.035633177, -0.0007930232, -0.024292944, 0.038091548, -0.012906453, 0.011855697, -0.012609069, -0.01946872, 0.020195657, -0.015820812, -0.018411355, -0.034205735, -0.012060561, -0.00085745635, -0.0007550242, 0.025535347, -0.0011804481, 0.030240618, 0.0064928774, 0.0318531, 0.009119767, 0.012747848, 0.0009549321, -0.005511511, -0.023499921, 0.0042327615, -0.005005959, 0.007817887, -0.012120038, -0.008035969, 0.0029887063, 0.0114856195, -0.0014489195, 0.042321004, -0.005729593, 0.0067671314, 0.008406046, 0.0023162887, 0.011703701, 0.015133526, -0.00722312, 0.032989766, -0.00825405, -0.014512325, 0.0020007314, 0.024517635, 0.008221007, 0.010487732, 0.0006319404, 0.014657713, 0.03140372, 0.017486162, -0.026473759, 0.0078641465, 0.012192732, -0.007989709, 0.027385736, -0.009126375, -0.0034959107, 0.03616186, -0.03238178, -0.015226046, -0.039783332, 0.011432751, -0.0039089434, 0.00021415757, 0.014247984, -0.0005485077, -0.03462868, -0.01853031, 0.007150426, 0.0071041663, 0.027068526, -0.0075601544, -0.011994476, -0.026407672, -0.023698177, -0.031694494, 0.031060075, 0.0032513952, -0.003803207, -0.008716647, 0.023539573, 0.013745735, 0.012701589, -0.031007208, -0.021385193, -0.012219166, -0.01731434, -0.004236066, 0.047634263, -0.0025294137, -0.0028829698, -0.0071041663, -0.011459186, 0.0032794813, -0.04710558, -0.02471589, -0.010580251, 0.010018527, 0.026301937, 0.0024368942, -0.016627053, 0.023367751, 0.015080658, -0.004751531, 0.012688371, -0.016719572, -0.025191704, -0.020341046, -0.0024567198, 0.003337306, -0.0014918749, -0.011287364, -0.023579223, 0.0019263856, 0.031958837, 0.0096947085, -0.00699843, -0.0096881, -0.024425115, 0.009793837, -0.015490387, -0.004893614, -0.014538759, -0.03341271, 0.008491957, 0.026976006, 0.02346027, 0.007950057, 0.0015298739, 0.017750503, -0.028152324, -0.0035851258, 0.0035355617, 0.0017611724, 0.0022138564, -0.010256434, -0.036716975, -0.022376472, 0.0009615407, 0.004751531, -0.00549499, 0.020023836, -0.013395484, -0.009859922, -0.023433836, 0.00068935193, 0.010177131, 0.013930774, -0.008214399, -0.03629403, -0.010956937, -0.014935271, -0.01763155, 0.023883216, 0.02018244, -0.010011918, 0.018675696, -0.017116085, 0.009397325, -0.0035355617, -0.004774661, 0.020922596, -0.0014257897, 0.009159418, 0.020711122, -0.0053099515, -0.016085153, -0.023698177, -0.008782732, -0.007877364, 0.02139841, 0.010196957, -0.005458643, -0.014710581, 0.01467093, 0.0023972432, 0.0040179845, -0.023711395, 0.027332867, 0.020486433, 0.028337363, -0.004229457, -0.024411898, -0.012787499, 0.008095445, -0.020341046, 0.008643953, 0.00589811, -0.01036217, -0.008670387, 0.027438603, -0.027782246, 0.01332279, 0.012146472, -0.03172093, 0.0128073245, 0.0025244572, 0.010851201, -0.008630736, 0.0017363904, 0.011631007, -0.0027260173, 0.0036446026, 0.011498837, 0.01843779, -0.0073552905, 0.009172635, 0.012529767, 0.02722713, -0.01978593, -0.01179622, -0.0014695711, -0.0012770979, -0.0011821003, -0.015556472, -0.019759495, 0.005167868, -0.011115542, -0.012258817, 0.018900387, -0.015675426, 0.000702156, 0.008835601, 0.0019495154, 0.0071702516, -0.03573891, -0.024596937, -0.008280484, -0.021067983, -0.0352631, 0.008320135, -0.0011350145, 0.047449224, -0.02574682, -0.02018244, -0.0021246413, 0.008247442, -0.046101082, -0.00614593, 0.0071041663, 0.017552247, -0.015675426, 0.0020420349, -0.006912519, -0.023473486, -0.00040497878, -0.002210552, -0.025112402, -0.036716975, -0.00019660367, 0.010831376, 0.0037668603, -0.0062781004, 0.033967827, -0.012146472, 0.026473759, 0.009522887, -0.04615395, 0.013785386, 0.021200154, -0.000601789, 0.024504418, -0.04234744, -0.003373653, 0.015199612, 0.019402634, 0.010441473, -0.021675969, 0.00285984, -0.0011325363, 0.01744651, 0.023526356, -0.019719845, 0.0049002226, 0.015463953, -0.017235037, 0.00087397767, 0.009813663, 0.0058518504, 0.018199883, 0.001456354, 0.018649263, 0.01843779, -0.008577867, -0.0027144523, 0.018913604, -0.023632092, -0.0042459783, -0.010983371, 0.015503604, 0.050092634, -0.01094372, -0.027147828, 0.0045631877, 0.0038461627, -0.03965116, -0.005118304, 0.036849145, 0.012688371, 0.02749147, 0.027914418, -0.002721061, 0.035897516, 0.0047713565, 0.018464224, 0.016085153, -0.01924403, -0.0051876935, 0.022283953, 0.0013778778, -0.023050541, -0.026989223, -0.0136003485, 0.0017876065, 0.020962248, 0.011412926, 0.01157153, -0.022059262, -0.016759224, -0.0045466665, 0.015767945, 0.031562325, 0.01628341, 0.015847247, -0.008458914, -0.011023022, -0.014908836, 0.025456045, 0.014406588, 0.0065424414, 0.028998215, 0.01969341, -0.0061161914, -0.01560934, -0.017036783, 0.0015901767, -0.019125076, -0.0032480909, -0.00012205123, 0.0074676354, 0.010507558, 0.012714805, -0.029209688, 0.0009797141, 0.017776936, 0.003915552, -0.013104709, 0.003124181, -0.011994476, 0.01502779, -0.016627053, 0.008987596, 0.0006364837, -0.011855697, 0.01892682, -0.020737557, -0.022720115, 0.0078112786, 0.013732519, -0.030504959, -0.0096947085, 0.0036082556, -0.0035950385, 0.006925736, 4.5795026E-05, -0.012490116, -0.04351054, 0.031112945, -0.013970425, -0.032223176, -0.016653487, 0.012734631, 0.008306918, 0.0037668603, 0.022402905, 0.1892682, 0.0062384494, 0.010778507, 0.02928899, 0.00085580425, 0.026790967, -0.026658798, 0.0005869198, 0.004391366, 0.0028036674, -0.023896433, 0.027861549, -0.03037279, -0.004976221, 0.016428798, -0.0075469376, -0.04390705, -0.017578682, -0.032011703, 0.0025459349, -0.003915552, -0.0044178003, 0.0054784687, -0.005194302, 0.010666162, -0.014142247, -0.0067803483, -0.020446781, 0.01089746, 0.0064796605, 0.0077451933, -0.043378368, -0.018754998, -0.020314611, -0.00571968, 0.015781162, 0.014697364, -0.0020717732, -0.005207519, -0.0043087592, 0.010031744, 0.009569147, 0.014195115, 0.0117697865, -0.004315368, -0.0037701644, -0.026354805, 0.0011077543, -0.0012118386, -0.000194332, -0.017380426, -0.0025921946, 0.019984186, 0.012146472, 0.007718759, -0.017261472, 0.036769845, -0.012172907, -0.007381724, 0.017618332, -0.01744651, 0.013877906, 0.0045103193, 0.01364, 0.0006158321, 0.005544554, -0.0022237692, 0.0135606965, 0.018054495, -0.019997401, 0.0050522187, 0.0044739726, -0.006813391, 0.023262015, -0.006912519, -0.0036313855, 0.0065754843, -0.00022943979, -0.006886085, 0.020459998, 0.0005369428, -0.01628341, 0.007725368, -0.0039750286, 0.003025053, -0.034549378, -0.009503062, 0.013468178, 0.02422686, -0.024200425, 0.014710581, -0.01502779, 0.011710309, -0.020803642, 0.0018702131, 0.005352907, -0.004163372, 0.010573643, -0.036769845, 0.009840096, -0.014842751, 0.025310658, -0.01978593, -0.02098868, -0.02677775, -0.005858459, 0.0006658091, 0.021160502, -0.0014406588, -0.019653758, -0.0065589626, -0.01897969, 0.011994476, -0.0035421704, 0.0050191763, 0.004807703, 0.00484405, -0.006737393, -0.00053033425, -0.0165081, -0.013534263, -0.021464495, 0.018609611, -0.010474515, -0.022495424, -0.011227887, 0.007751802, 0.008947945, 0.013468178, -0.04742279, 0.009727752, 0.01179622, 0.015688643, -0.03063713, 0.01251655, 0.0019181248, -0.031694494, -0.032778293, -0.019891666, -0.0019362983, 0.0033472187, 0.016719572, 0.016719572, 0.01319062, 0.040893562, -0.0016521317, 0.0018123884, -0.0081284875, -0.0143933715, 0.0028301016, -0.010633119, -0.015992634, -0.028707441, -0.008062403, 0.007540329, -0.02068469, -0.07216511, -0.031905968, 0.014776666, -0.0051777805, 0.001129232, -0.0019792537, 0.016468449, -0.02085651, -0.003826337, 0.012463681, -0.16769798, 0.011479011, 0.024927363, -0.0193762, -0.002218813, 0.025323875, 0.0045962306, -0.0035520832, -0.017591897, -0.002547587, 0.028654572, 0.0040741567, -0.03713992, -0.012450464, -0.00401468, -0.0041369377, 0.01901934, 0.009060291, 0.0011061021, 0.011921782, 0.024649804, 0.010124263, 0.024107905, 0.007877364, -0.008359786, 0.005042306, 0.014327286, 0.003601647, -0.0074213757, -0.008201182, 0.004758139, -0.0072958134, 0.01892682, -0.008399437, 0.005422296, 0.0032150482, -0.007718759, -0.0062814048, -0.017208604, 0.028813176, -0.02471589, 0.0148031, 0.025720386, -0.0042096316, -0.0068001742, 0.017605115, -0.00047829212, 0.0016471753, -0.021120852, -0.026513409, 0.015820812, -0.0227862, -0.00040745697, -0.008326744, 0.009899573, 0.010844592, 0.007117383, 1.736029E-05, 0.013012189, -0.0057494184, -0.019534806, -0.0056767245, -0.0045466665, -0.010606686, -0.025059534, -0.005600726, 0.009668275, 0.0066646994, 0.013957209, 0.020737557, -0.0077584106, -0.022125348, -0.017724069, -0.013269922, 0.0025178487, 0.0035884301, 0.015715078, -0.014155464, 0.0009094985, -0.019746277, -0.010276259, 0.054665733, -0.031271547, 0.010884244, -0.009800445, -0.007315639, -0.044937983, 0.0025492392, 0.012708197, -0.023896433, -0.0035851258, -0.030452091, 0.018424572, -0.0067935656, 0.006307839, 0.0069521703, 0.0044871895, -0.020393914, -0.020578953, -0.015569689, 0.0038990309, -0.0033587837, -0.024808409, 0.003112616, 0.036320463, 0.0026913225, 0.03835589, 0.0027128002, 0.03893744, -0.014908836, 0.022495424, 0.0042162403, 7.765019E-05, -0.0059410655, 0.0046854457, 0.01892682, -0.0043847575, -0.027861549, 0.017737286, -0.027570773, 0.030769302, -0.023658525, -0.015384651, -0.016521316, -0.0005171172, 0.0072495537, -0.09595581, 0.003862684, 0.01960089, 0.01673279, -0.007375116, 0.01058686, -0.013957209, 0.026658798, 0.023751045, 0.024808409, -0.008967771, 0.011855697, 0.000828544, -0.0005129869, 0.032540385, -0.0027260173, 0.022918371, -0.023988953, -0.032989766, -0.004011376, -0.018239534, 0.004269108, -0.012708197, -0.020367479, -0.022958022, -0.021728836, -0.039677594, 0.010553817, 0.04118434, 0.013877906, 0.0051216083, -0.02328845, 0.018371705, -0.015344999, 0.0063507943, 0.005521424, -0.031112945, 0.015900115, 0.03153589, -0.023711395, -0.011816046, -0.0034793892, -0.008591085, -0.028310928, -0.011941608, -0.027028875, -0.0047118794, 0.0029308817, 0.013534263, -0.016138023, -0.024068255, -0.020935813, -0.0002901556, -0.016653487, -0.0015290478, -0.01669314, -0.01960089, 0.02857527, 0.0023575919, -0.002283246, -0.006892693, 0.0021692489, 0.016574185, 0.010851201, -0.0047878777, -0.009232112, -0.0076857167, 0.02632837, 0.005240562, -0.0017512596, -0.00016345778, 0.011908566, 0.004279021, 0.023116626, -0.032064572, 0.008848817, -0.03140372, 0.002659932, -0.011987868, -0.001919777, -0.008458914, -0.029236123, 0.006337577, -0.005993934, 0.020882946, 0.03682271, 0.0038065114, -0.0045598834, -0.0052273446, -0.008736473, 0.01377217, 0.013692868, 0.032725424, -0.020156007, -0.011809438, -0.005504903, -0.0018520396, -0.02538996, -0.017737286, -0.017671201, -0.0062318407, 0.0042096316, -0.08088837, 0.026169766, -0.002811928, -0.023936084, -0.0051876935, -0.0114856195, -0.0024286336, 0.008227616, 0.003210092, -0.008795949, -0.020618603, -0.0030415745, 0.008994205, -0.011023022, -0.02233682, -0.017248254, 0.002696279, 0.013236879, 0.021993177, 0.006611831, -0.029236123, 0.0019627325, 0.0031456586, -0.008181356, -0.04845372, -0.0011614485, -0.015384651, 0.0028499272, 0.016362712, -0.0074213757, -0.0036346898, -0.015992634, 0.012833759, 0.020076705, -0.013613565, -0.03135085, 0.012655329, 0.024438333, -0.004579709, -0.029103952, -0.0020023836, -0.012146472, 0.038884573, -0.0059245443, -0.032540385, 0.0031407024, 0.0158869, -0.0042096316, -0.0037073835, -0.0060633235, 0.032725424, 0.016177673, 0.025191704, -0.022508642, -0.011822655, 0.0033571315, -0.0076724994, -0.012153081, 0.008287093, 0.010097829, 0.036399767, -0.00017316405, 0.03320124, 0.0013307921, -0.013692868, -0.011148585, -0.015133526, 0.0069786045, 0.021094417, -0.0010755378, 0.0062054065, 0.013084883, 0.048718058, 0.0045301453, -0.005713071, -0.01399686, 0.0023493313, -0.017869456, -0.023473486, 0.020803642, 0.0036446026, -0.009635232, -0.033703487, -0.0017876065, 0.009787228, 0.0012746196, -0.009086724, -0.0055775964, 0.015543255, 0.017525813, -0.033042632, 0.005392558, 0.0031588757, -0.0041071996, 0.00079426233, 0.023724612, 0.016481666, -0.008855426, -0.007513895, 0.02687027, 0.0021395106, 0.017129302, -0.004077461, -0.03790651, 0.0029705327, 0.009251937, -0.004764748, -0.010871027, -0.014287635, -0.004153459, 0.005620552, -0.0330162, -0.024425115, 0.0054685557, -0.019072209, -0.00785093, -0.0029655765, -0.019534806, -0.0115252705, 0.034337904, 0.0024253293, 0.02668523, 0.0193762, -0.0061921896, 0.020023836, -0.012846976, 0.012582635, -0.0029407945, -0.0027871463, 0.0070314724, 0.016389146, -0.0042459783, -0.009397325, 0.0022089002, -0.020737557, 0.008135096, -0.0024897624, 0.018900387, -0.027068526, 0.053925578, 0.014961705, -0.004728401, 0.031245114, 0.0009450193, 0.020975463, 0.030742867, 0.0050356975, -0.0074742436, -0.029949844, 0.0043120636, 0.0017347382, -0.0070975577, 0.0037404262, -0.045942478, 0.0062880134, 0.018688913, -0.002673149, -0.015543255, 0.012476899, 0.022468992, -0.004695358, 0.01233812, 0.0075601544, -0.0010375388, -0.011763178, 0.003690862, 0.0041931104, -0.00079839263, -0.009357674, 0.022257518, -0.009800445, -0.01399686, -0.016944263, 0.012159689, -0.02889248, -0.014115813, 0.016124805, 0.0018999515, 0.021517362, 0.015239263, 0.016402364, -0.0016207412, -0.010600077, 0.0054024705, -0.0028301016, -0.0107520735, 0.0064003584, -0.028363798]
+ },
+ {
+ "Id": 37,
+ "Type": "Jackets",
+ "Brand": "Zephyr",
+ "Name": "Stormbreaker Waterproof Jacket",
+ "Description": "Take on any weather with the Stormbreaker Waterproof Jacket by Zephyr. This jacket offers superior protection with its fully waterproof and windproof design. The bold red color, coupled with the Zephyr logo, adds a stylish touch to your outdoor look. Stay dry and comfortable during your adventures.",
+ "Price": 139.99,
+ "Embedding": [-0.015049391, -0.03278524, -0.008359324, 0.009748197, -0.004753469, 0.018766096, 0.0018779136, -0.041209772, 0.021843787, -0.029890126, -0.0038829776, 0.0047404277, 0.011097948, 0.006285794, -0.005734809, 0.003974265, 0.019235574, 0.0027598157, 0.0019235574, -0.022039402, 0.030776918, 0.016549114, -0.0025576793, -0.00978732, -0.02689068, -0.029994454, 0.02297836, -0.01576665, 0.01588402, 0.003876457, 0.01954856, 0.012845451, -0.010811044, -0.0066574644, -0.000452362, -0.011665234, -0.009846006, -0.026812432, 0.008359324, 0.0040525114, 0.03278524, -0.010322005, 0.004094895, 0.013275806, -0.025860434, -0.015297172, -0.012682437, -0.022208937, 0.013601833, 0.016314374, 0.005451166, -0.015271089, -0.004502428, -0.005552234, -0.009885129, 0.0063412185, -0.0051153586, -0.010380689, 0.0068400395, -0.03865372, -0.022156773, 0.0015274349, -0.02017453, -0.007224751, 0.014501667, -0.027725307, -0.013653996, -0.009513458, -0.018153165, 0.02017453, 0.03828857, 0.015192843, 0.008770118, 0.01770977, -0.010485018, -0.022352388, -0.010843647, 0.009030939, 0.0019985435, -0.011052304, 0.023095729, -0.009278719, -0.025834354, -0.0077072703, 0.023200057, 0.0013367094, -0.0074008056, -0.00018909547, -0.03239401, -0.011541344, -0.009441732, 0.0051283995, -0.010465456, 0.01357575, -0.00019531035, 0.013810489, 0.01687514, 0.01661432, 0.030124864, -0.021465596, 0.021204775, -0.020435352, 0.019352943, -0.0013725723, -0.045435075, -0.02090483, 0.001601606, 0.008483214, 0.015923142, 0.012076028, -0.025690902, 0.0105958665, 0.013021505, -0.034506664, 0.037558272, 0.0010595866, 0.020213654, 0.0015478116, -0.0019398587, -0.0293424, 0.018726971, 0.024517205, 0.015388459, -0.008281077, 0.0050892765, 0.000690769, -0.05333796, -0.02249584, 0.038027752, 0.015936183, 0.029446729, 0.027881801, 0.022443676, -0.030594343, -0.023056606, 0.033176474, -0.018492233, 0.026864598, 0.0007119607, 0.0028934868, -0.0054805083, 0.004583935, -0.013927859, -0.009024418, 0.0012380863, 0.0067748344, 0.0042122644, 0.020487515, 0.009917731, -0.0030581302, 0.010413292, -0.016901223, 0.0300727, 0.004857797, -0.015414541, 0.00672267, -0.0025267068, 0.02090483, -0.02749057, 0.018661767, 0.0016097567, -0.014684241, 0.008972254, -0.0053729196, 0.003889498, 0.025456162, 0.012506383, -0.012773725, 0.00053998164, 0.006256452, 0.003495006, 0.026695063, -0.027620979, 0.009865567, 0.02323918, 0.0337242, 0.0013872435, -0.0055946177, 0.018987793, -0.0034917456, 0.008574502, -0.018192288, 0.0069052447, 0.0148928985, -0.027307993, 0.0017670646, 0.018074919, -0.013588792, 0.00807242, -0.016340457, 0.00782464, 0.0027223227, 0.0064325063, 0.010654552, -0.6547659, 0.0008949432, -0.018309658, -0.014488625, 0.018374862, -0.004182922, 0.007074779, 0.015231966, -0.013125834, 0.025938682, 0.015362376, 0.01442342, -0.02505189, -0.01662736, -0.0050599338, -0.02163513, -0.014032188, 0.0055717956, 0.024230301, 0.0009927512, -0.017918427, 0.018870424, -0.016066594, 0.0032146228, -0.0133410115, 0.015740568, 0.014397338, -0.024478082, 0.0034689237, 0.026786352, -0.04227914, 0.020161489, 0.0066705057, 0.023982521, 0.048747506, -0.033932857, 0.007876804, 0.048356276, 0.020357106, 0.041861825, -0.0010734427, -0.0075377366, 0.015610157, 0.0141365165, 0.0040394706, 0.0013228533, 0.032446176, 0.00095281296, 0.006820478, 0.0012111891, 0.013953941, -0.016536072, -0.002334351, 0.00152825, 0.0027369938, 0.02115261, 0.03179412, 0.0030548698, -0.0149711445, 0.0034493622, -0.0074529694, 0.019339902, -0.0013424148, -0.034637075, -0.006096699, 0.015049391, -0.015049391, -0.018413987, -0.00045765995, -0.03242009, -0.0013236683, 0.010641511, 0.0038927584, 0.0224828, 0.0015763389, 0.009493897, 0.020122366, -0.005242509, -0.009467814, 0.0116717545, 0.029003333, 0.0039188405, -0.018074919, -0.016301334, 0.029029414, -0.018870424, 0.014397338, -0.002860884, 0.01772281, 0.011913015, 0.010067703, 0.013021505, -0.010413292, -0.016418703, -0.039879583, -0.0057608914, -0.00012439955, 0.018753054, 0.020383187, 0.0044796066, -0.0008370735, -0.016549114, 0.003045089, -0.009767759, 0.019861545, 0.0120303845, -0.0014239214, -0.00078531675, 0.014697283, -0.0134192575, -0.0037525669, -0.029133743, -0.02346088, -0.026695063, -0.00076371746, -0.035289127, 0.040244732, 0.020252777, 0.02505189, -0.054563824, -0.0049360436, -0.011300084, 0.0028168703, 0.0053500975, -0.023317426, 0.0140973935, 0.015205883, 0.006220589, -0.013849613, -0.011567426, 0.058476143, -0.013601833, 0.013275806, 0.006660725, -0.0030760616, 0.017683687, 0.0073551615, -0.00843105, 0.023395674, -0.026277749, -0.014332132, 0.0077072703, -0.0024680218, 0.011221838, -0.018635685, -0.03375028, -0.017579358, -0.017657604, -0.024478082, -0.009370007, -0.01528413, 0.0031803902, 0.011678276, 0.0069704503, 0.016914263, -0.015297172, 0.019053, -0.009356965, -0.017866261, -0.020148449, 0.023982521, 0.0129432585, -0.008946172, 0.0030532398, -0.002836432, -0.0006887313, 0.004127498, 0.021569924, -0.0041861823, -0.035054386, -0.0057380693, -0.017057715, -0.029264154, -0.0004694784, -0.0028788154, -0.000268972, -0.007746394, -0.026812432, -0.005196865, -0.0040492513, 0.0058163158, -0.013008464, -0.021765541, 0.011919535, 0.031115985, 0.002653857, 0.023017483, 0.011463097, 0.0009740047, 0.01954856, -0.010980578, 0.002140365, 0.009337404, 0.00086397066, -0.0072899563, -0.050807998, -0.0017083797, 0.0044828667, 0.016979469, 0.02286099, 0.018909547, -0.018935628, 0.03140289, -0.01747503, 0.008613625, -0.024452, 0.020265818, 0.0010163882, 0.022013322, 0.011658713, -0.012571588, -0.026916761, -0.03646282, -0.002715802, 0.0009177651, 0.0079746125, 0.018766096, 0.036854055, -0.004120977, -0.018674808, 0.008483214, 0.00023453543, 0.00043483806, -0.014710323, -0.008867925, -0.01307367, 0.003886238, 0.01930078, -0.0020327764, -0.02348696, 0.018114042, 0.0018371603, 0.019665929, 0.0035928139, 0.017201167, 0.035654277, -0.020344064, -0.035889015, 0.026473366, -0.0018518314, 0.022887072, 0.00782464, 0.006191246, -0.011776083, 0.02738624, 0.01307367, 0.02053968, 0.0037069232, 0.0056043984, 0.0022186115, 0.0033939376, 7.595403E-05, 0.0088874865, -0.021569924, 0.02874251, -0.008496255, 0.02652553, -0.008202831, 0.0092852395, 0.024608493, -0.0075116544, 0.004094895, 0.021504719, 0.0075116544, 0.04572198, -0.00067079987, -0.02189595, -0.013980024, -0.0032292942, -0.013125834, 0.015440623, -0.014149558, 0.00819631, -0.018740013, -0.0048121535, -0.028820757, 0.023030523, 0.03359379, -0.0202919, 0.023982521, -0.0027109117, -0.016210046, -0.0068009165, 0.030959493, 7.889591E-06, -0.024282467, -0.028638182, 0.01075888, -0.014345174, 0.041157607, 0.030516095, 0.008476693, 0.0023881453, -0.022561045, 0.012473781, -0.008424529, 0.0063640405, -0.030411767, 0.003775389, -0.021269979, -0.00489366, 0.005773932, -0.02017453, -0.020474475, 0.013217121, 0.0069769705, -0.02346088, -0.0142147625, 0.020774418, 0.010322005, 0.0072573535, -0.03948835, -0.0052588102, -0.018557439, 0.0013530107, -0.009193952, -0.011300084, -0.026434243, 0.017905384, 0.014227804, -0.012245562, -0.0055652754, -0.04045339, 0.012728081, 0.107041076, 0.013927859, -0.009937293, 0.013680079, 0.016927304, 0.005757631, -0.020604886, -0.014332132, 0.025521368, 0.0034265402, 0.014945063, -0.004720866, -0.006990012, -0.008920089, -0.0020197353, -0.009070062, 0.0061423425, 0.009643869, -0.02286099, -0.022469757, -0.003129856, -0.015271089, 0.015297172, 0.011293564, 0.007270395, 0.008515816, -0.013940901, 0.02798613, 0.01454079, 0.006383602, -0.005839138, -0.015466705, -0.017944507, -0.009213514, -0.001760544, 0.012271644, 0.0007914297, -0.03275916, 0.012930217, -0.0039057995, 0.013562709, 0.019209491, 0.0035341291, -0.001479346, 0.02408685, -0.013138874, 0.004636099, 0.0053990018, -0.0042090043, -0.01455383, 0.009043979, 0.006950889, -0.0200702, -0.015688403, -0.014084352, 0.016444786, 0.0033303625, -0.001602421, -0.010374169, -0.012793287, -0.012356411, -0.0051055774, 0.012271644, 0.015440623, -0.007198669, -0.01588402, 0.015584075, 0.023004442, -0.016666483, 0.0008615255, -0.014684241, -0.007589901, -0.012245562, 0.014332132, 0.035784688, 0.016536072, 0.0010995249, -0.021426473, 0.00953302, 0.0134583805, 0.022913154, -0.005265331, -0.0031265956, -0.010608908, 0.01614484, -1.0704118E-05, -0.0107980035, -0.011782603, 9.3325136E-05, 0.02725583, -0.014632077, 0.029185908, 0.024243344, 0.00830716, -0.014632077, 0.019105162, 0.015245007, 0.013243203, 0.013282326, 0.007531216, 0.034767482, 0.01307367, -0.003141267, 0.028768593, 0.0057054665, -0.0030141165, -0.0037721286, 0.017175084, -0.0134192575, 0.019939791, 0.010458935, -0.014619036, 0.022834908, -0.011410933, -0.023539126, 0.0062434105, 0.03043785, -0.0023669535, 0.018440068, -0.018505273, -0.0108371265, -0.03813208, 0.020565763, -0.0005077865, -0.0037134436, 0.0063249175, 0.0024957343, -0.006663985, -0.026942844, 0.007772476, -0.0134583805, 0.01601443, -0.0033711158, -0.0011329426, -0.013347532, -0.01601443, -0.0050403723, -0.0063118762, 0.00684656, -0.008841843, -0.016066594, 0.00562396, 0.018009713, 0.012441178, -0.012239041, -0.027881801, -0.016197005, 0.0066574644, -0.039801337, 0.00330102, -0.029681468, -0.0012014082, -0.0054381248, -0.007589901, -0.026695063, -0.030359603, -0.008222393, -0.01026984, 0.0066900672, 0.017005552, 0.011026222, 0.030881247, -0.0007258169, 0.025873477, -0.030124864, 0.0063314377, -0.012226, 0.002983144, -0.025769148, 0.018870424, -0.0005856254, 0.010367648, -0.017892344, -0.036228083, 0.0142147625, -0.010308963, 0.016849058, -0.009428691, -0.0028070896, -0.026629858, 0.017566318, -0.0004878174, -0.0100351, -0.0032733078, -0.021974197, -0.004130758, 0.02483019, 0.0021208036, -0.0025837612, 0.00660204, 0.015179802, -0.0093243625, -0.0036449782, 0.0046784827, 0.019744175, -0.0066085607, 0.0066770264, -0.026134297, -0.010289402, 0.010713236, 0.0004694784, 0.002825021, -0.0058554388, -0.0043361546, -0.009220034, 0.008137626, -0.0053142346, -0.012578109, 0.024699781, -0.008281077, -0.006028233, -0.017096838, -0.0049719065, -0.049582135, 0.024908438, -0.0100807445, -0.02224806, 0.010947975, -0.01516676, -0.015323253, -0.00063493697, -0.021061324, 0.03654107, -0.01748807, 0.027673144, 0.03166371, -0.0067422315, -0.01785322, -0.017409824, -0.014501667, -0.0026701584, 0.0029538015, 0.029446729, -0.0015755239, 0.0036678, -0.0030108562, 0.001882804, 0.004055772, 0.0007787962, 0.009846006, 0.02506493, 0.0315333, -0.008633186, -0.018987793, 0.0011810316, 0.011482659, -0.03166371, 0.015245007, -0.01588402, -0.014710323, -0.011626111, 0.015218925, -0.023865152, 0.0031265956, 0.010954496, -0.0019056259, 0.016562155, -0.0073290793, 0.00403621, -0.015153719, 0.0067161494, 0.025534408, 0.0022903373, -0.0004046806, 0.016431743, -0.0040036077, 0.014371255, 0.02493452, 0.0023278303, 0.021022199, -0.023917316, -0.017083798, 0.0065107527, -0.010550223, -0.010113347, 0.02249584, -0.011528303, -0.013151916, 0.031637628, 0.009461294, 0.004583935, -0.0046132775, 0.006748752, -0.013536627, -0.008776638, -0.004805633, -0.0030092262, -0.025769148, -0.025743065, -0.028403444, -0.017827138, -0.00574785, 0.002652227, 0.006409684, -0.018909547, -0.0014442982, -0.0038471147, 0.0077920374, -0.007785517, -0.0016822976, 0.0045513324, 0.0076681473, 0.0017377222, 0.022274142, 0.020148449, -0.0300727, 0.0046230583, -0.02286099, -0.024791067, -0.04486127, -0.013523586, -0.0014622296, -0.005708727, -0.0068530804, 0.0018795438, -0.0010123128, 0.0073812436, -0.0067748344, -0.020735295, 0.018348781, 0.0013481203, -0.011176194, 0.06640511, -0.016770812, 0.002298488, 0.0054576863, 0.002798939, 0.008078941, -0.0061195204, -0.0293424, -0.004473086, 0.0009862307, 0.007237792, -0.022169814, 0.006628122, -0.020878747, 0.0012291205, -0.0042024837, 0.0058978223, 0.01797059, 0.0031086642, 0.017696727, 0.022887072, 0.03740178, -0.01564928, -0.021217816, -0.0045056883, 0.0025805011, -0.014188681, -0.029968372, 0.008502776, 0.038862377, 0.014462543, -0.013732243, -0.033802446, 0.004091635, -0.056076586, -0.0024060768, -0.0017703248, 0.0066900672, 0.019470312, 0.0121868765, 0.0060184523, 0.038523313, 0.022952277, 0.024347672, -0.0015600376, -0.027047172, -0.012232521, -0.0036351974, 0.01319756, -0.02848169, -0.039279692, -0.024778027, 0.027125418, -0.0027369938, 0.018087959, 0.023017483, -0.029890126, -0.0016081266, -0.009969896, 0.01722725, 0.027803555, 0.027907882, 0.01173696, -0.031115985, -0.044939514, -0.023043565, -0.00061456027, -0.0013627915, 0.01735766, 0.0030581302, -0.0003264342, -0.021009158, -0.006553136, -0.04460045, -0.011586987, -0.009370007, 0.006194507, 0.0117108775, -0.0019235574, 0.009428691, -0.017514152, -0.026968926, -0.0027076516, 0.0051642624, -0.008378886, -0.0068726423, 0.005242509, -0.01798363, -0.015414541, -0.0125455065, 0.017214209, 0.016796894, -0.021165652, -0.01954856, -0.019118205, -0.002189269, 0.009383048, 0.021804664, -0.011026222, -0.0315333, -0.01760544, -0.0053240154, 0.014814652, 0.006517273, -0.0133018885, -0.012434657, 0.01357575, -0.018883465, -0.026003888, -0.033176474, 0.0067813545, 0.022339348, 0.019222531, 0.027855719, 0.20354497, 0.004130758, -0.014006105, 0.030150946, 0.0072573535, 0.035236962, 0.001943119, -0.004450264, -0.0100416215, -0.018140124, -0.0023441317, 0.016836017, -0.017788015, 5.741126E-05, 0.023304386, -0.014605994, -0.024764985, -0.009676471, -0.013432299, -0.0046752226, -0.002433789, 0.00041588777, 0.008131105, -0.010928414, 0.010132909, -0.0038829776, -0.01528413, 0.01785322, 0.010491538, 0.0034689237, -0.022052445, -0.0033417733, 0.014801611, 0.014332132, -0.00427747, -0.013354053, 0.03690622, -0.0075116544, 0.0021582965, -0.0053990018, -0.009963375, 0.0025315972, 0.0027109117, -0.00844409, 0.0105176205, 0.0011313126, -0.034532744, -0.0021110226, 0.009956854, -0.015323253, -0.01430605, -0.025782188, 0.017135961, 0.0025788709, 0.00818979, -0.01661432, 0.029785797, -0.009004856, 0.010524141, -0.002556049, -0.011058824, 0.016092677, -0.037871256, 0.028716428, -0.00965039, 0.026029969, 0.0074008056, 0.0036091153, -0.0008590803, 0.0032162531, -0.008463652, -0.010380689, -0.0073747234, 0.031741958, -0.008933131, -0.0134192575, 0.003030418, 0.018544396, 0.009148308, 0.024191178, -0.0010163882, 0.0037395258, 0.00052612554, -0.0020963515, -0.010328525, -0.028351279, 0.0036938821, -0.013008464, 0.002798939, 0.007798558, 0.010615428, -0.0056793843, -0.0043589766, -0.019470312, 0.0085288575, 0.014579913, -0.018909547, 0.027673144, 0.009154829, 0.022548005, -0.011939096, -0.010243758, -0.004319853, 0.0042676893, -0.0033939376, 0.0126237525, 0.006187986, 0.03192453, -0.0016822976, -0.0022072005, -0.00978732, -0.02908158, 0.016783852, -0.028377362, 0.022091568, 0.012278165, 0.019522477, -0.0063379584, -0.009969896, 0.0016293182, 0.0188313, -0.003583033, 0.019731134, -0.007550778, 0.0056891656, -0.044313546, -0.011032742, 0.013601833, -0.0012038535, -0.028690347, 0.0064520678, 0.0016317635, 0.022795785, -0.02751665, 1.9497924E-05, 0.0018257493, 0.024047727, -0.032107107, -0.00012602968, 0.0012111891, 0.016940346, -0.03155938, -0.00574459, 0.012278165, 0.023578249, -0.022665374, 0.011880412, -0.014514707, 0.005963028, 0.013771366, -0.010941455, -0.011750001, -0.011332687, -0.017814098, 0.00065123825, -0.022026362, -0.041027196, -0.037453942, -0.0010408402, -0.0025478983, -0.013771366, 0.019652888, 0.013823531, -0.02053968, -0.013758325, 0.029942289, -0.16494341, 0.025273588, 0.009200472, -0.017501112, 0.0120695075, 0.010987098, 0.0026310352, 0.003925361, -0.04157492, -7.1891427E-06, 0.02666898, 0.008039817, -0.033019982, 0.0029065278, -0.0010848538, -0.0075964215, 0.0046197977, 0.026082134, 0.011104468, 0.024295507, 0.0040883743, -0.0057608914, -0.0026995009, 0.0045252503, 0.012780245, -0.010582826, -0.012239041, 0.008880966, 0.0021680773, -0.028351279, 0.007296477, -0.02140039, 0.038888462, -0.013021505, 0.017618481, -0.0100024985, -0.0054413853, -4.121181E-05, -0.0044665653, 0.03680189, 0.008202831, 0.014619036, 0.0062140683, 0.0020213653, -0.0022316526, 0.010263319, -0.013406216, 0.0068987245, 0.0051773037, -0.021687293, 0.029003333, -0.025443122, -0.029811878, -0.015505828, 0.03239401, 0.021426473, -0.010485018, -0.011221838, 0.032054942, -0.0063346983, 0.0072312714, -0.014319091, -0.0037623479, -0.009356965, -0.0024125974, -0.01075888, 0.01246726, 0.02432159, -0.03521088, -0.005206646, -0.013640956, -0.004179662, 0.007368203, -0.031194232, 0.026603777, 0.008691871, -0.031820204, -0.009239595, 0.01589706, -0.033176474, 0.00818979, 0.042539958, -0.01160655, 0.021061324, -0.02430855, 0.011476139, -0.026486406, -0.0057380693, -0.0011402783, 0.008535379, 0.009428691, -0.01894867, -0.017592398, -0.0024892136, 0.00745949, 0.000111766014, 0.018883465, -0.008789679, -0.004923003, 0.018596562, -0.00089086784, 0.018805219, -0.011952138, 0.008020256, 0.013132354, 0.003680841, 0.031324644, 0.018074919, 0.0073747234, -0.010406772, -0.0064651086, 0.006103219, -0.00818327, 0.0069378475, 0.0126237525, 0.0007804263, 0.014188681, -0.021856828, 0.0173707, -0.01896171, 0.034637075, -0.010732798, 0.010713236, 0.0061716847, -0.015075473, -0.018596562, -0.07746394, -0.008176749, 0.01820533, -0.02373474, 0.009448253, -0.0031722395, -0.011345728, 0.034324087, -0.010289402, 0.005389221, 0.008463652, -0.009474335, -0.0015869348, -0.01405827, 0.036697563, -0.010713236, 0.018935628, -0.019131245, -0.019287737, 0.021296062, 0.0054087825, -0.019639846, -0.041522756, 0.0015217295, -0.013797449, 0.0024908436, -0.018726971, -0.016836017, 0.03129856, 0.021269979, 0.025769148, 0.012819368, -0.0009479225, -0.025338793, -0.021256939, -0.024960602, -0.03155938, 0.009585184, 0.034376252, -0.035732523, 0.0027109117, -0.0019349683, 0.016496949, -0.056441735, -0.014605994, 0.011032742, -0.0038829776, 0.00868535, 0.023291346, 0.0036514986, 0.011058824, -0.008026777, -0.002251214, -0.013217121, 0.044835187, -0.01930078, -0.011665234, 0.009604746, -0.011821727, 0.0059467265, -0.001088114, -0.0025756108, 0.014840734, 0.01173696, -0.021230856, 0.017879302, -0.013028026, 0.015192843, 0.0033173214, -0.019183408, 0.0012372712, 0.008894008, -0.015140679, 0.026916761, -0.02348696, -0.013849613, -0.046504445, 0.009709074, 0.0019952832, 0.008607104, 0.0008810871, -0.014514707, 0.01760544, 0.0009707444, 0.020213654, 0.021022199, 0.02091787, -0.01601443, 0.010315483, -0.017761933, -0.012258602, 0.02751665, 0.017005552, -0.007074779, -0.019522477, -0.0047762906, -0.0039579635, -0.028273033, 0.008496255, 0.007883325, 0.0014891268, -0.006990012, -0.07949834, 0.016836017, 0.015101556, -0.014410378, 0.013680079, -0.0008476693, -0.000843594, 0.009141788, 0.008418009, -6.6682645E-05, -0.0084506115, -0.0027304734, 0.004691524, -0.016275251, -0.007615983, 0.007857243, 0.0021354747, 0.0018420507, 0.025273588, -0.005819576, -0.007322559, 0.0011435385, -0.0010726277, -0.0097221155, -0.034037184, 0.0071465047, 0.01186085, -0.0028054595, 0.005490289, -0.01614484, 0.010087265, -0.008789679, -0.020383187, 0.04389623, -0.011358769, -0.04877359, 0.0093243625, 0.019978914, -0.015584075, -0.04183574, -0.018348781, -0.015192843, 0.01821837, 0.0015706335, -0.026695063, -0.029655386, 0.0070617376, 0.0020441872, 0.014762487, -0.00012083363, 0.010882771, 0.011815206, 0.012154275, -0.023317426, -0.015049391, -0.018087959, 0.0032358146, -0.011502221, 0.0075377366, -0.029055497, 0.022587128, 0.03228968, 0.013367093, 0.0041144565, 0.017748892, 0.015531911, -0.012630274, 0.012571588, 0.01136529, 0.0019235574, -0.014084352, -0.012193398, 0.019026916, 0.012382492, 0.0021680773, -0.022261102, -0.0015486267, -0.0043915794, -0.022391511, 0.036358494, -0.008796199, 0.005402262, -0.048069373, 0.011717399, -0.0014858665, -0.002725583, -0.025117094, -0.018179247, -0.0069052447, 0.024699781, -0.030203111, 0.0025006246, -0.020135406, -0.0062140683, -0.0017197906, 0.009096144, -0.0074660107, -0.012304246, -0.015857937, 0.036358494, -0.013223642, 0.026916761, -0.0008590803, -0.008809241, -0.019965874, 0.0074790516, 0.021908993, -0.027881801, -0.016536072, 0.016509991, 0.018779136, -0.013784408, -0.014827693, -0.010589346, 0.004727387, 0.010217676, 0.012017343, -0.027647061, -0.012454219, 0.012604191, 0.008835323, 0.01015247, 0.00647815, -0.0012935108, 0.010191593, 0.02138735, -0.015349336, 0.010824085, -0.0050697145, 0.018518316, 0.029238071, 0.024504164, 0.0293424, 0.0070095733, -0.019757217, 0.015988348, -0.0065955194, 0.051512215, -0.010165512, 0.037584353, 0.026029969, -0.0344545, 0.011437016, -0.002921199, 0.011750001, 0.013927859, -0.013706161, -0.020970035, -0.042592123, 0.011547864, 0.007968091, -0.02017453, 0.012049946, -0.052138183, -0.006918286, 0.021191733, -0.0031999517, -0.029264154, -0.007837681, 0.042200893, -0.017866261, 0.028768593, 0.0017149003, -0.024386795, -0.032811325, 0.016914263, 0.0018387904, 0.0034395813, -0.011573947, 0.008952692, -0.024452, 0.00031318938, -0.0202919, 0.005516371, 0.021126527, -0.0173707, 0.009585184, 0.00390906, 0.024425918, 0.009793841, 0.00684656, 0.0003184873, -0.02322614, 0.037714764, -0.01661432, -0.0061782054, -0.016666483, 0.0044437433]
+ },
+ {
+ "Id": 38,
+ "Type": "Navigation",
+ "Brand": "Solstix",
+ "Name": "Pathfinder Portable GPS",
+ "Description": "Never lose your way with the Pathfinder Portable GPS by Solstix. This compact and reliable navigation device features a color display, preloaded maps, and advanced tracking capabilities. With its intuitive interface and long battery life, you can explore confidently wherever you go.",
+ "Price": 199.00,
+ "Embedding": [0.023946967, 0.015195048, -0.0076109474, 0.003949773, -0.025624866, 0.027356457, -0.010006987, -0.019933434, 0.019141465, -0.009657984, 0.02378589, 0.01936966, -0.03414859, 0.02547721, -0.0030034382, 0.014819199, 0.015369549, -0.014644697, 0.012490276, -0.0006954889, -0.026577912, 0.0026661807, 0.0072485213, -0.039759483, 0.0101882, -0.012906395, 0.010597606, -0.018966964, 0.024188584, 0.0066176313, 0.027893383, 0.0009362673, -0.021611333, -0.021973759, 0.002112474, 0.0040034656, 0.0073491954, -0.006993481, 0.004224948, -0.02228249, 0.012725182, 0.0050303396, -0.0070941546, -0.0057249893, -0.03200088, 0.0025151698, -0.010154641, -0.0033574747, -0.00095724105, 0.01006739, -0.0062115802, 0.010798954, 0.0072015403, -0.0044967677, 0.017664915, -0.0051779947, 7.330319E-05, -0.013731921, -0.011335882, -0.021705294, -0.01006739, 0.0027215513, -0.021436831, 0.018094458, -0.014054078, -0.04327636, -0.016658176, -0.0019480401, -0.0098190615, 0.01351715, -0.018174997, 0.056484774, 0.016242057, 0.0038558107, -0.014510466, -0.011678173, -0.023799311, 0.0011636226, -0.011825828, 0.020819364, 0.015866207, -0.024738934, -0.013973538, 0.023168422, 0.014604428, -0.013040626, -0.0012164763, 0.01814815, -0.010523779, -0.025034245, -0.00059775135, 0.031974033, -0.009275422, 0.015758822, 0.0017987072, 0.007819007, 0.009127768, 0.031356566, -0.026497371, -0.013470169, -0.0030856552, -0.00075295696, 0.011570788, -0.0051612156, -0.03557145, 0.0029061201, 0.0026326226, -0.01891327, 0.012805721, 0.012993646, -0.038390316, 0.027705459, 0.03830978, 0.01090634, -0.012819144, -0.021369714, 0.015396397, -0.011154669, -0.003986687, -0.004446431, 0.03871247, -0.008349223, 0.024698665, 0.003008472, -0.008429762, 0.025973868, -0.0064531974, 0.0014715169, 0.007678063, -0.0025537615, -0.016067555, 0.030631714, 0.009215019, -0.014121193, -0.009255288, -0.00011766263, -0.0017752165, 1.0886677E-05, -0.01832265, 0.0032114976, 0.0052686012, 0.019517316, -0.02029586, -0.008476743, 0.011892945, 0.0069263647, -0.0093693845, -0.008624398, 0.028135002, -0.018510576, 0.022456992, -0.022819418, 0.018846156, 0.0050169164, -0.016926639, 0.00087837985, 0.005647806, 0.008785476, -0.0028641727, -0.022564378, -0.012496987, 0.00922173, 0.00044002887, 0.0028809516, 0.0045236144, 0.040645413, -0.009074075, -0.0090136705, -0.013852729, 0.0052786684, 0.0037886947, 0.019893164, -0.020121358, 0.021893218, 0.0020403245, 0.009396232, 0.012939953, 0.014684967, -0.0070203273, -0.01023518, -0.0044867005, -0.0030218952, -0.012597661, 0.0080270665, -0.024295969, -0.034792904, 0.019262275, 0.019128043, 0.020644862, -0.0041007837, 0.0038625223, -0.007235098, -0.004043735, 0.0011804015, -0.66192424, -0.014456773, -0.0061377524, -0.039464172, 0.004097428, 0.020671709, 0.0057652593, 0.0045571723, -0.017503837, -0.0071679824, 0.00749685, 0.01891327, -0.006627699, -0.0127855865, -0.0070337504, -0.025490634, -0.017799146, -0.022470417, 0.024779204, 0.0168461, -0.017208526, 0.011906368, -0.012362756, 0.007134424, 0.009778792, 0.0041544763, 0.021839526, -0.028457157, -0.024604702, 0.023678502, -0.018980388, 0.0168461, -0.011892945, -0.006265273, 0.041316573, -0.04413544, -0.024175161, 0.047813393, 0.016362866, 0.034282822, -0.038014468, -0.020913327, -0.012121138, -0.00027853114, -0.017825993, -0.01832265, 0.016832678, -0.02320869, -0.0010604318, -0.016658176, 0.024040928, -0.0073089255, -0.012658066, 0.013711786, -0.013148013, 0.008074047, 0.03503452, 0.013772191, -0.0020906616, -0.011356017, -0.008510301, -0.007355907, -0.0037047998, -0.019128043, -0.033289507, 0.02867193, -0.02707457, -0.0053290054, 0.0038490992, -0.017154833, 0.023302654, 0.022725457, 0.008939843, 0.008235126, 0.010006987, 0.002543694, 0.007255233, -0.013456746, -0.006473332, -0.0068659605, 0.04955841, -0.0014195021, -0.020711979, -0.0055571995, 0.03103441, 0.013268821, -0.005204841, 0.00026846374, 0.020577747, 0.004889396, -0.0018876358, 0.010604318, -0.022483839, -0.030551175, -0.0068156235, -0.0022215375, -0.023799311, 0.0076445052, 0.017825993, -0.024900014, -0.029047778, -0.003171228, 0.024725512, -0.009785504, 0.021879796, 0.029611552, -0.0088324575, -0.010376124, 0.002558795, -0.036591608, -0.011053995, -0.014282271, -0.032027725, -0.0074095996, -0.013497015, -0.022510685, 0.01924885, -0.012973511, 0.004010177, -0.023557695, 0.03592045, -0.028188694, -0.0027064502, -0.007751891, -0.00056083756, 0.0028222252, 0.016711868, 1.718535E-05, -0.004392738, 0.0008364324, -0.029262548, -0.012705047, 0.016443405, 0.0068659605, -0.019879742, 0.008731783, -0.0013255398, -0.016148094, 0.014913161, -0.014859469, -0.027947076, 0.008188144, -0.01949047, -0.01789311, -0.012543969, -0.03390697, -0.0071142893, -0.008731783, -0.0092821345, -0.014376234, -9.228441E-05, -0.0288867, 0.0060907714, 0.015866207, 0.02210799, -0.016792407, -0.0043054875, -0.014094347, 0.0064666206, -0.021222059, 0.03200088, 0.007899546, -0.010302297, -0.010792242, 0.012537257, -0.002100729, 0.0018540778, 0.04193404, -0.010463375, -0.03844401, 0.017678337, 0.028322926, -0.021087827, 0.015369549, -0.018940117, 0.0159199, -0.02004082, -0.015141356, 0.026819529, 0.013221839, -0.0014488653, 0.0022248933, -0.013745344, 0.008362646, 0.01596017, -0.006013588, 0.015342703, 0.014067501, -0.015208472, 0.023181845, 0.014899738, 0.021785833, 0.007906257, -0.0024665107, -0.017691761, 0.021571063, -0.00938952, 0.0008825746, 0.018497152, 0.022175105, 0.0050404067, -0.013892999, 0.024752358, -0.03887355, 0.025718827, -0.031812955, 0.0026594691, -0.019195158, 0.0033490853, 0.023638234, -0.0020587815, -0.014322541, -0.0058760005, -0.024027506, 0.01651052, 0.037209075, 0.00918146, 0.015235318, 0.0037282903, 0.0030621646, 0.0016988722, 0.012470141, 0.013221839, -0.018282382, 0.0031628385, 0.024658395, -0.0024245633, 0.005396121, 0.009275422, -0.019275697, -0.003139348, 0.0021275752, 0.004409517, 0.033208966, 0.01865823, 0.0041746115, 0.025611442, -0.009241865, 0.017933378, 0.0059565394, 0.032242496, 0.010302297, 0.009382809, -0.008429762, -0.008053913, 0.022510685, 0.023262383, 0.006892807, -0.012429872, 0.028349772, -0.029074624, 0.011423132, -0.017383028, 0.0020118002, 0.0047148946, -0.0058357306, 0.0029010864, 0.030309558, 0.014926584, 0.029423628, 0.001817164, -0.0036544628, -0.005214908, 0.011859386, -0.005339073, -0.022000605, -0.0014153073, -0.01507424, 0.0058860676, -0.004382671, 0.024483895, -0.015275587, 0.015208472, 0.00783243, 0.017114565, -0.0017903176, 0.011570788, 0.009503617, 0.012577527, 0.010355989, 0.010584183, -0.023383193, 0.018121304, 0.0014933296, 0.014242002, -0.025369825, -0.04523614, 0.004198102, 0.0046813367, 0.0036913767, 0.0011812405, 0.0020537477, 0.01532928, -0.0067921327, -0.007147847, -0.0015436666, 0.025275862, -0.024202008, 0.034390207, -0.0070136157, -0.02354427, 0.0065639387, -0.01785284, -0.029531013, 0.04147765, 0.009047229, 0.000693811, -1.8732164E-05, -0.0017802502, -0.0059833857, -0.011597634, -0.029853169, 0.009490194, -0.035598293, -0.015584321, 0.0071679824, -0.0070605967, 0.0047148946, 0.030041093, 0.0113493055, -0.026604759, -0.01755753, -0.0010788887, -0.00022903313, 0.07812295, -0.021557638, 0.017732032, 0.0006925526, -0.005782038, -0.02387985, -0.028833007, -0.009382809, 0.020430092, -0.0036410396, 0.02661818, 0.009604291, -0.011819117, -0.031974033, 0.021450253, 0.00981235, 0.020242168, -0.014403081, -0.01877904, -0.013906422, -0.0032618346, -0.012087581, -0.0022014028, 0.0019950212, -0.0025839636, -0.026645027, 0.018671654, 0.017195104, -0.0021158298, -0.0004907853, 0.003667886, -0.012577527, 0.022416724, 0.008993535, -0.0008238481, -0.013241975, -0.008121029, 0.018523999, 0.012832567, 0.016765561, 0.02362481, 0.00766464, 0.020456938, -0.00888615, 0.025128208, -0.00574848, -0.00558069, 0.013973538, 0.00021749758, -0.0017634713, -0.0027467199, -0.0010805666, -0.004637711, -0.009154614, 0.008691514, 0.013188282, 0.0031259248, 0.0069129416, -0.018752193, -0.0148460455, 0.0048357034, -0.017866263, 0.021973759, 0.004285353, -0.016094401, -0.021154944, -0.017879685, -0.014242002, -0.043893825, 0.010543914, 0.010255315, -0.0051511484, -0.0077250446, 0.006208224, 0.034309667, 0.01966497, 0.0061243293, -0.0014195021, -0.011966771, 0.032403573, 0.037504386, 0.0017215238, -0.001635951, -0.016711868, 0.02311473, 0.011376152, 0.0042383713, 0.008214991, -0.010678146, 0.007865988, 0.023154998, -0.0025856416, 0.031786107, -0.0051108785, -0.012839279, 0.010174776, 0.010617741, 0.014080924, -0.011765424, 0.017866263, 0.026457103, -0.030255865, -0.01844346, -0.012698336, 0.025450364, 0.023248961, 0.01617494, 0.016201787, -0.00816801, 0.0030856552, -0.009355961, -0.034175437, -0.010953321, -0.0013079218, -0.007865988, 0.032081418, -0.00188428, 0.00086495664, 0.010074102, -0.012101004, -0.030041093, -0.008282106, 0.017275643, 0.003979975, 0.01086607, 0.013852729, 0.0036712417, -0.00749685, -0.019651547, 0.007188117, 0.019893164, 0.028457157, -0.003996754, -0.018980388, -0.0053290054, -0.0142151555, -0.0075572548, 0.014698391, 0.00082091184, 0.00905394, -0.017570952, -0.002711484, 0.036833227, 0.0067451517, -0.00707402, -0.016725292, -0.020456938, -0.017544106, -0.00032907783, 0.016523944, -0.019020656, 0.0107184155, -0.019517316, -0.022631494, -0.005033695, -0.037477538, -0.032269344, -0.0009136157, 0.03221565, 0.025571173, -0.002790345, 0.013892999, 0.0067518633, 0.010127795, -0.00086663454, -0.014013808, -0.032940503, -0.0105372025, -0.03562514, 0.018765617, -0.008772053, 0.0038558107, -0.009429789, -0.029289395, -0.013094319, 0.01755753, -0.01789311, -0.025450364, 0.008557282, -0.058095556, -0.0036544628, -0.016805831, 0.0032735798, 0.0023457021, -0.02741015, -0.02173214, 0.020483784, 0.00046309998, -0.013161436, -0.007597524, 0.019745508, -0.008161298, 0.0023054325, 0.00985262, 0.014362811, -0.013262109, 0.009496905, -0.033074733, 0.008228414, 0.0011250309, -0.02522217, 0.00083685183, -0.009651272, 0.0053055147, -0.023517424, 0.0140406545, -0.011067418, -0.0139466915, 0.0075773895, -0.0009664695, -0.010966744, -0.0072753676, -0.021745564, -0.022309339, -0.010033833, -0.019785779, -0.011899656, 0.00981235, -0.02092675, 7.727509E-06, -0.014201732, -0.00039451587, 0.015879631, 0.00063005084, 0.037423845, 0.032564655, -0.011020437, -0.048753016, -0.012825856, 0.0061243293, -0.0030185394, -0.0021745565, 0.0052316873, -0.026014138, -0.022416724, 0.021074405, 0.0038088295, 0.011812405, -0.0186985, 0.007121001, 0.03820239, 0.029611552, -0.013631247, -0.011476825, -0.019383082, 0.018054187, -0.02092675, 0.02955786, -0.015181625, 0.010040544, -0.018134726, 0.0060437904, -0.020094512, 0.011584211, 0.003735002, -0.0010335854, 0.012946664, 0.0018859579, 0.0299874, 0.008819034, 0.006822335, 0.03672584, 0.010496933, 0.017691761, 0.010060679, 0.033208966, 0.009174748, 0.0022433503, 0.01633602, 0.024846321, -0.010228469, -0.024913436, 0.019638123, -0.0045370376, 0.021691872, 0.005933049, -0.018215265, -0.029369934, 0.004459854, -0.011678173, 0.024430202, 0.0031242468, -0.024859743, -0.029718937, -0.0015059139, -0.019571008, -0.031007564, 0.00045848574, -0.009839197, -0.036108375, -0.02277915, 0.0054498143, 0.023691926, 2.716098E-05, -0.015852785, -0.018926695, -0.009100921, 0.003238344, -0.021463677, 0.003550433, 0.039652098, 0.017718608, -0.04690062, 0.032537807, 0.021329446, -0.045424066, 0.014953431, 0.002114152, -0.027195377, -0.020859633, 0.005845798, 0.003104112, 0.034497593, 0.0008259455, -0.030309558, -0.0110741295, 0.0055974694, -0.010033833, -0.026497371, -0.014725237, -0.0069263647, 0.011127822, 0.02977263, -0.010201623, 0.019060927, -0.01532928, 0.00032739993, 0.028564543, 0.011141245, -0.021208636, -0.012194966, -0.0001970482, 0.0038088295, -0.03124918, -0.013503727, -0.011597634, -0.002594031, 0.007986797, -0.011020437, 0.01608098, 0.025571173, -0.0016871269, 0.009966717, -3.2614153E-05, -0.03213511, 0.0027383303, -0.015584321, -0.0036074817, 0.0010033833, 0.0078055835, 0.0013683261, 0.037289616, 0.0151145095, -0.03621576, -0.016792407, -0.025785943, -0.041558187, -0.030255865, 0.0151145095, 0.0050672535, 0.03154449, 0.026416833, 0.0034933845, 0.0395984, 0.00094633474, 0.012268794, 0.025785943, -0.022712033, -0.025061091, 0.0047484525, -0.0048659053, -0.025114784, -0.022604648, -0.027571227, 0.013033915, -0.008711649, 0.012275505, 9.674133E-05, -0.010201623, -0.017060872, 0.00041339223, 0.0013498693, 0.04762547, 0.009718387, 0.010939898, -0.025396671, 0.015141356, -0.007912969, 0.0069733458, -0.011443268, -0.013470169, 0.031356566, 0.012342621, 0.00511759, 0.002823903, -0.018067611, -0.010309008, -0.017638069, 0.010201623, -0.018282382, -0.009611002, 0.023383193, 0.0025906751, -0.015396397, 0.0029614908, 0.009208307, -0.01301378, -0.011671461, 0.0026947048, -0.023128152, 0.010805666, -0.0005025306, 0.016644754, -0.0005134369, -0.009859331, -0.02210799, -0.009939871, -0.039517865, 0.031947188, 0.019409928, 0.007355907, -0.018040763, 0.007516985, -0.013456746, 0.03132972, -0.008798899, -0.011100976, -0.024161737, 0.027732305, -0.0010889561, 0.0012601017, -0.034041204, 0.019020656, 0.0018792462, 0.007751891, 0.02151737, 0.19383083, 0.010798954, -0.0056545176, 0.036860075, 0.009308981, 0.05895464, 0.0034430476, 0.007886123, 0.017235372, -0.009161325, -0.007839141, -0.0018960253, -0.009765369, -0.0090136705, 0.00684247, -0.03508821, -0.025034245, -0.016778985, -0.020242168, -0.008778765, 0.02092675, 0.008805611, 0.014161463, -0.018497152, 0.02320869, -0.007879411, -0.0030185394, -0.0025034244, 0.016483674, 0.019141465, -0.006493467, -0.01765149, 0.019222004, 0.013188282, 0.0010637876, 0.0134097645, 0.0024983909, 0.012577527, 0.024631549, 0.026255755, 0.00022106312, -0.015678283, -0.012194966, -0.035866756, 0.026926914, -0.01044324, -0.0050303396, -0.013161436, -0.0073626186, -0.000760088, -0.0010755329, -0.012235235, 0.011141245, 0.0038457431, -0.032752577, -0.00568472, 0.0003980814, -0.0077116215, -0.0067787096, -0.0139466915, -0.012825856, 0.0059397607, -0.00040730985, 0.03132972, -0.0011258698, 0.024094623, 0.007416311, 0.00077057484, 0.015933324, -0.01132917, 0.013074185, -0.00492631, 0.007798872, 0.00855057, -0.009268711, -0.023853004, 0.010496933, -0.008678091, 0.008899573, 0.00598003, 0.026779259, -0.0050941, -0.011980195, -0.018497152, -0.0035571447, -0.028859854, -0.014564158, -0.022926804, -0.019436775, 0.0015621234, 0.000260284, -0.029289395, -0.005201485, -0.029531013, -0.019020656, 0.020175051, 0.0066813915, 0.03192034, -0.006869316, 0.01562459, 0.0037786274, 0.029020932, -0.012309063, 0.0028020905, -0.032108266, 0.008704937, 0.010013698, 0.020456938, -0.0062719844, 0.0067048823, 0.007892834, -0.012986934, 0.00825526, -0.019638123, -0.009100921, 0.028537696, 0.006604208, 0.00015877114, 0.0083358, 0.010832513, 0.026940338, -0.008006931, 0.0053122267, -0.0017055838, -0.0009916379, -0.012993646, -0.008946555, 0.022604648, -0.00429542, 0.0049498, -0.006523669, -0.01200033, 0.031786107, -0.02210799, 0.014309118, 0.004610865, -0.0049296655, 0.013154724, -0.019275697, -0.016980331, 0.019678393, 0.0059733186, 0.008443185, 0.022416724, 0.03763862, -0.006641122, 0.01651052, -0.0003496321, -0.021222059, -0.011852674, -0.006892807, -0.016161518, 0.013799037, 0.020859633, 0.013570842, -0.014295694, -0.02762492, -0.027893383, 0.024430202, -0.010121084, -0.010262026, 0.0041209185, 0.03597414, -0.0022735524, -0.014295694, 0.028967239, -0.17149465, 0.02181268, -0.006292119, -0.022846265, -0.015584321, 0.0022869755, 0.043437436, 0.0017039059, 0.0023373126, 0.0076579284, 0.014295694, -0.003223243, -0.02947732, -0.009490194, 0.014121193, 0.026564488, -0.0068793837, 0.018631384, 0.00284236, 0.0035571447, 0.007302214, 0.011000303, 0.006577362, -0.015476936, 0.0021393206, 0.0030604869, -0.012731893, -0.0028205472, -0.0070941546, -0.009537174, 0.015047394, -0.0333432, 0.024242276, -0.00010224694, 0.011402998, -0.031866647, -0.008631109, 0.0044229403, -0.008899573, 0.045450915, -0.019597854, 0.021463677, 0.029369934, 0.0045001237, 9.170764E-05, 0.008449896, -0.01216812, -0.010221757, 0.0064867553, -0.0355446, 0.013483592, -0.01877904, -0.024712088, -0.0061679548, 0.040108483, 0.0051343692, 0.0076377937, 0.0011132857, 0.029745784, -0.0007382753, -0.030175326, -0.017906532, -0.027705459, -0.013866153, -0.004251795, -0.016752139, 0.0073626186, 0.014537312, -0.008523724, 0.013758767, -0.021584485, -0.0073223487, 0.030309558, -0.026188638, 0.0045571723, -0.0013137945, -0.0038793012, -0.0016862879, -0.015584321, 0.008946555, -0.015248741, 0.0062988307, -0.015007123, -0.00054573646, 7.6763856E-05, 0.0010528812, 0.0059699626, 0.002015156, 0.004842415, 0.007516985, 0.016228633, -0.016161518, 0.00812774, 0.010543914, 0.021342868, 0.024416778, 0.009577445, -0.00766464, 0.010772108, -0.024416778, 0.016738715, -0.02051063, -0.002974914, 4.640438E-05, 0.052243046, 0.0072955023, 0.035651986, -0.009168037, 0.028161848, -0.002859139, -0.014134617, 0.008496878, -0.01844346, 0.0015319213, -0.014953431, 0.0044162287, 0.010389547, -0.01503397, 0.035141904, 0.0018909916, 0.02480605, -0.023101306, -0.005567267, 0.008778765, -0.00019442648, -0.013664805, -0.104002856, -0.0366453, 0.026645027, 0.009261999, -0.024430202, 0.012946664, 0.018859578, 0.0087452065, 0.02013478, 0.029853169, 0.01006739, -0.025611442, 0.005768615, 0.0016342731, 0.014188309, -0.0059062024, 0.020269014, -0.0066109197, -0.0011938247, 0.010302297, -0.015369549, -0.013637959, 0.005241755, 0.013295667, -0.017154833, 0.0026393342, -0.043142125, -0.0074297343, 0.016913217, 0.015987016, 0.009060652, 0.0049498, 0.0100875255, -0.0151145095, -0.009617714, 0.0016602805, -0.011906368, 0.0021745565, 0.021624755, -0.026967185, -0.008261972, -0.012892972, -0.0028792738, -0.01465812, -0.0056410944, 0.010154641, -0.009020382, 0.021222059, 0.016067555, -0.014335965, -0.015731975, -0.016832678, -0.02080594, -0.020027395, 0.011631192, -0.007631082, -0.021154944, 0.007027039, 0.004265218, 0.00011430683, -0.027544381, -0.005141081, 0.004406161, 0.005798817, -0.01734276, 0.006456553, -0.010617741, -0.007906257, 0.019866318, -0.0073827533, -0.012973511, 0.02177241, -0.019208582, 0.025423517, -0.030336404, 0.0063021868, -0.016403135, 0.004953156, 0.017409874, -0.020564323, -0.001833943, -0.0053290054, 0.020349553, -0.014000385, 0.006825691, 0.024510741, 0.007483427, -0.001371682, 0.012879549, -0.0213026, 0.020336129, 0.020336129, 0.0069599226, 0.006325677, -0.02261807, -0.00059187866, -0.0047148946, -0.0034900287, -0.013698363, -0.008188144, -0.010470087, -0.008147875, -0.08279422, 0.0038356758, 0.007986797, -0.013852729, -0.015141356, -0.002397717, -0.003946417, -0.02800077, 0.015208472, -0.019852895, -0.00019547516, -0.021222059, -0.012852702, 0.00058097235, -0.0035806352, -0.02096702, 0.0051008114, 0.004151121, -0.0041913902, 0.0076243705, -0.009698253, 0.0064397743, 0.0024195295, 0.011711732, -0.007006904, 0.021571063, -0.013986962, -0.006641122, 0.011476825, -0.015356126, -0.0007621854, -0.010879493, -0.0020403245, 0.03420228, -0.016899792, -0.015866207, 0.010671434, 0.009765369, -0.00063214824, 0.0016837711, -0.005865933, 0.005251822, 0.026752412, -0.013423188, -0.011047283, -0.0048692613, -0.008194856, 0.008107605, 0.032269344, 0.02510136, 0.009174748, 0.023987236, 0.006342456, -0.014523889, -0.025987292, -0.02977263, -0.0067820656, -0.0038625223, -0.021074405, -0.024524163, 0.049263097, 0.038175546, 0.006855893, 0.0042585065, 0.015382973, -3.77265E-05, -0.031974033, 0.0006992642, -0.007839141, 0.0056410944, -0.022081144, 0.012832567, 0.0261081, 0.0005629349, 0.0074230228, -0.024175161, -0.002313822, -0.032027725, -0.012074158, 0.023222115, -0.0021762343, -0.0055437763, -0.028242387, 0.0142151555, 0.011872809, 0.009584156, -0.015423243, 0.021463677, -0.027061146, 0.0053927656, -0.017678337, -0.018899849, -0.009409655, -0.011194939, -0.012456718, 0.022094566, 0.007235098, 0.011906368, -0.011725155, 0.013825883, -0.012389602, 0.0052618897, 0.00053776643, -0.010664723, -0.007731756, 0.0067183054, -0.021020712, -0.017114565, -0.010913052, -0.0007298858, 0.017087718, -0.00143712, -0.008792188, 0.010658011, -0.016765561, -0.0018540778, -0.005745124, -0.0012147984, -0.01048351, 0.008221703, 0.03600099, 0.02728934, 0.0032450557, -0.021020712, 0.019007234, -0.04730331, 0.0030655204, -0.014295694, 0.008859304, -0.011181516, 0.008939843, 0.02547721, 0.014537312, 0.02173214, 0.0045538163, 0.010798954, 0.009617714, 0.012564104, -0.030470636, 0.080861285, 0.011215073, -0.018161573, -0.002015156, -0.024269123, 0.008174721, 0.017584376, -0.0048323474, -0.024980552, -0.026671873, 0.019933434, 0.0018070966, 0.006855893, 0.014537312, -0.002976592, 0.010114372, -0.004805501, 0.016591059, -0.040672258, -0.005701499, 0.06496823, -0.0197992, -0.008980112, 0.021436831, -0.015047394, -0.008933132, 0.028430311, 0.0036276164, 0.0068860953, -0.023597963, 0.008315665, -0.0075035617, -0.024134891, -0.0004672947, -0.0063088983, -0.0046880483, 0.0024547654, -0.00770491, 0.021342868, 0.022765726, 0.0061880895, 0.010013698, 0.006198157, -0.002892697, 0.0010394581, -0.0033172052, -0.0077720257, -0.013080896, -0.024309393]
+ },
+ {
+ "Id": 39,
+ "Type": "Ski/boarding",
+ "Brand": "Daybird",
+ "Name": "Midnight Blue Goggles",
+ "Description": "Enhance your snowboarding experience with the Midnight Blue Goggles by Daybird. These goggles offer a wide field of vision, anti-fog coating, and UV protection to keep your eyes protected on the slopes. The sleek design and blue tinted lens add a touch of style to your riding gear.",
+ "Price": 89.99,
+ "Embedding": [-0.0060346965, 0.00025558812, -0.008483703, -0.050000824, 0.0019436296, 0.010916139, -0.017815776, -0.038388755, 0.013216019, -0.034305975, -0.004033073, 0.019035308, -0.003211214, -0.01839903, -0.008987423, -0.014912759, 0.01915461, 0.0037547012, 0.00518964, -0.010366024, -0.012367648, 0.01723252, -0.016490197, -0.015999733, -0.003400109, -0.01113486, 0.00630644, -0.016596243, -0.010167188, 0.01654322, 0.020785071, -0.018531589, 0.012347764, -0.008039634, -0.003830922, 0.005753011, 0.010531722, -0.005249291, 0.014554853, 0.0062534166, 0.027465988, -0.012924391, 0.004951036, 0.015814152, 0.006979171, 0.01576113, 0.015071828, -0.033881787, -0.012182067, 0.00592865, -0.001140826, 0.00567679, -0.0060678357, -0.03022319, -0.0013380059, 0.0012518433, -0.00030260472, 0.004278305, 0.012175439, -0.022415534, -0.017749498, -0.0391841, -0.016967406, 0.014859736, 0.0034763298, 0.0040463284, -0.027969707, -0.024615994, -0.012380904, 0.005938592, 0.012646019, 0.004947722, 0.011128232, -0.011320441, -0.004526851, -0.020930886, -0.01720601, -0.020798327, 0.0015277293, 0.0050968495, 0.031840395, -0.016066013, -0.020877862, 0.023661578, 0.00014974896, 0.017882055, 0.0103395125, 0.003893887, -0.008205331, -0.0096966075, 0.0025666514, 0.011207767, 0.013322065, 0.013348576, -0.027810639, 0.021500884, 0.0012758693, 0.019088332, -0.015310433, -0.0051631285, 0.008748818, 0.016317872, 0.00927905, -0.014236714, -0.02066577, -0.008921144, -0.009146492, 0.007164752, 0.02327716, -0.00010894599, -0.012162183, 0.013719738, 0.017325312, -0.015694851, 0.017418101, 0.01814717, 0.024019483, -0.00086494, 0.0033421149, -0.021620186, 0.02563669, 0.007151496, 0.019181121, -0.01676857, 0.0069062645, 0.02648506, -0.008629517, -0.013706482, 0.027227383, 0.0035426088, 0.03510132, 0.03520737, -0.0027041803, 0.009226027, -0.04371758, 0.024297856, -0.007999866, 0.016145546, -0.023820646, 0.0107438145, -0.0076949834, 0.030276215, -0.010717303, -0.0017547347, 0.008483703, 0.0231446, -0.020109028, 0.003771271, 0.027704593, -0.026697151, 0.008185447, -0.041066423, 0.027094826, 0.020519957, -0.011472883, -0.0019237458, 0.0064025447, 0.021196, -0.023595298, 0.0022120592, -0.010047886, -0.03862736, 0.023475997, -0.006985799, 0.036188293, 0.019194378, -0.0096966075, -0.007940216, -0.014740434, 0.0077082394, 0.009888816, 0.042789675, -0.013063577, 0.022057626, 0.016026245, 0.03136319, 0.0036353993, -0.005368593, -0.011333697, -0.010167188, -0.015456246, -0.030832957, 0.0006540902, 0.008125797, -0.015641827, -0.02075856, 0.012877996, 0.013381716, -0.018346008, -0.0237146, -0.0108498605, 0.0076552164, 0.018544843, 0.018916005, -0.65706277, -0.008868121, 0.0055508604, -0.029109705, 0.019976469, 0.014276481, 0.013514274, 0.014037877, -0.010982418, 0.010962535, 0.012049509, 0.0148464795, -0.0042319098, 0.02132856, 0.0039369683, -0.019353447, -0.009232654, 0.0054116743, 0.011221022, -0.0045401067, -0.020135539, 0.0019684841, 0.0023214195, 0.0044771414, 0.007820914, -0.0031548769, 0.016781824, 0.0009212771, -0.034703646, 0.03221156, -0.0114132315, 0.045228742, 0.0017149673, 0.0090802135, 0.046819434, -0.018889494, 0.0017795892, 0.03038226, 0.0036353993, 0.03104505, -0.009683351, -0.004079468, 0.0031598478, -0.0076750997, -0.012984042, 0.030673888, 0.009716491, -0.011771138, -0.0040496425, -0.008834981, 0.011678347, -0.00020691453, -0.0046063857, -0.002038077, 0.007966727, -0.0028234823, 0.033987835, 0.01544299, 0.0028798194, -0.001608921, -0.032370627, 0.020360887, -0.020056004, -0.011989858, -0.0020745303, 0.024615994, -0.025570411, -0.029480867, 0.01723252, -0.009491143, 0.02641878, 0.018982286, -0.024496691, 0.02059949, 0.019896934, 0.024059251, 0.043001767, -0.032185048, 0.0006429056, -0.0047886525, 0.0040430147, -0.006677602, -0.01780252, -0.011936835, 0.023184368, -0.016556475, -0.0018889494, 0.0032045862, 0.0205067, -0.0055906274, 0.0048648734, 0.024615994, -0.015973222, -0.016622756, -0.023038555, 0.012672531, -0.013958342, 0.010220211, 0.04406223, 0.009815909, -0.009988234, 0.011698231, -0.0004743086, -0.0008313863, 0.026683897, 0.015204386, -0.0024108961, -0.0068201018, -0.0027522326, -0.02048019, 0.008231843, -0.01434276, -0.01355404, -0.021779256, -0.0052194656, -0.021209257, 0.0018872925, -0.012732182, 0.004682606, -0.006492021, 0.011897068, -0.014210202, -0.0041192356, 0.0033735975, -0.0036287713, 0.0148729915, -0.01940647, 0.0032377257, -0.02538483, -0.010916139, 0.006379347, 0.0050206287, 0.008331262, -0.00096518686, 0.008954283, 0.017656706, -0.001578267, 0.0036983641, 0.010153932, -0.007602193, -0.038044106, 0.011605441, -0.008430679, 0.0016793424, -0.014170435, -0.008251727, -0.040032472, 0.0040728403, -0.004387665, 0.0017398219, 0.0017829032, -0.0068333573, 0.010432303, 0.0114397425, 0.02091763, -0.006859869, 0.004212026, -0.008675911, -0.018346008, 0.008165564, 0.016079267, 0.008987423, -0.0061970796, -0.019181121, -0.00855661, -0.010982418, -0.013282297, 0.03123063, -0.023184368, -0.033987835, -0.006853241, -0.0028715346, -0.0057033016, -0.0023330182, -0.014554853, 0.00052691746, -0.021699721, -0.01201637, -0.009968351, -0.015708106, 0.029136216, 0.0014042847, -0.041225493, -0.0058789407, 0.024324367, 0.00061059464, 0.014369272, 0.005749697, 0.0004668522, 0.002904674, -0.0070123104, 0.032582723, -0.0023048497, 0.015297176, 0.0005931964, -0.046156645, 0.0010886313, -0.0044870833, 0.023184368, 0.032503188, 0.03645341, -0.047190595, -0.0026213317, -0.008390912, 0.0017464497, -0.014528341, 0.021036932, -0.0052956864, -0.015297176, 0.009524282, 0.009391724, -0.024669018, 3.5469584E-05, -0.022998787, 0.008722307, 0.0042153397, -0.007111729, 0.024642505, -0.0086494, -0.023449484, -0.0024937447, -0.013786017, 0.03054133, -0.025862038, -0.00868254, -0.008284866, -0.0066974857, 0.019446237, -0.0002802356, -0.0050537684, 0.0071448684, 0.019326935, 0.0140909, 0.0185581, -0.009623701, -0.010187071, -0.0014597934, -0.025292039, 0.05869662, 0.0046096994, 0.03141621, 0.023648322, 0.015363456, -0.0066444627, 0.011486138, 0.016437175, 0.018253217, 0.0056635346, -0.0064621954, 0.027757615, -0.031999465, 0.0016080925, -0.003032261, -0.018650891, -0.005027257, -0.003335487, 0.02387367, 0.024894366, -0.0065185325, 0.021991348, -0.005544232, 0.015018805, -0.004390979, -0.007184636, 0.03221156, 0.016781824, -0.014462062, -0.028950635, -0.02185879, -0.04069526, -0.0052227797, 0.008284866, 0.011452999, -0.0041689444, 0.017378336, -0.012818345, 0.0021308674, 0.020453677, 0.008947656, 0.016503453, -0.023595298, -0.024867853, 0.012314625, 0.0136932265, -0.011936835, -0.002975924, -0.0030140344, -0.0015517554, -0.0012899536, 0.022879485, 0.02431111, 0.009524282, -0.015403223, -0.007496147, 0.0024490063, -0.034968764, 0.016066013, -0.015496014, 0.0011847358, 0.010458815, 0.0001406356, 0.0073105656, -0.0031482491, -0.009868932, 0.013328693, 0.000958559, -0.012805089, -0.0045898156, 0.0002698795, -0.013958342, -0.01544299, -0.0065516722, -0.0149260145, -0.029692959, -0.008344517, 0.0016213483, -0.029268775, -0.029454356, 0.032503188, 0.0147669455, -0.022614371, -0.026524827, 0.020334376, -0.024761807, 0.08557935, 0.00902719, -0.009663467, 0.020811584, -0.0074497517, -0.0025119714, -0.011883812, 0.0062567308, 0.010399164, 0.011048697, 0.017696474, 0.017099964, -0.0012385874, 0.01050521, 0.0076353326, 0.014157179, -0.0018259845, -0.024775064, -0.027943196, -0.017007172, -0.021593675, 0.003764643, 0.00015037032, 0.008424052, 0.008881376, -0.014568108, 0.024748553, 0.027916685, 0.014064388, -0.022852974, -0.013003926, -0.0016760284, -0.013428111, 0.008954283, -0.00160395, -0.021182746, -9.1703114E-05, -0.03915759, 0.013050321, -0.0077082394, 0.023396462, 0.018213449, 0.009226027, -0.007542542, 0.004649467, -0.008437308, 0.024390645, 0.015708106, 0.014249969, -0.031601794, 0.025530644, -0.0009941839, -0.0044671996, 0.015641827, -0.00063172105, 0.01956554, 0.011718115, -0.00618051, 0.009729747, -0.038759917, -0.022322742, -0.026021108, 0.012818345, -0.001518616, -0.009796025, -0.01755066, 0.009815909, -0.0072244033, -0.016119035, -0.0017249091, 0.0042484794, -0.004616327, -0.0069526597, -0.009199515, 0.012036254, 0.021368327, 0.007714867, 0.00028831334, 0.005862371, -0.0029543831, 0.025013667, -0.01576113, 0.0130768325, 0.0037248759, 0.008318005, -0.022309488, 0.012341136, -0.026432037, -0.0205067, 0.02018856, 0.019234145, 0.009981606, -0.007887192, -0.024483437, -0.018531589, 0.0041026655, 0.0037016782, 0.0078076576, 0.0059551615, -0.004715746, 0.009504398, 0.003933654, -0.006130801, -0.012321252, 0.0020778445, -0.010425676, 0.00644894, 0.026723664, -0.009921956, 0.006813474, 0.006226905, -0.010246722, 0.014727178, 0.002106013, 0.0059617897, 0.018862983, -0.0028466799, 0.022799952, -0.006568242, -0.035233878, 0.023131346, -0.032025978, 0.027306918, 0.012526717, -0.012785206, -0.002538483, 0.01450183, -0.024894366, -0.01619857, 0.00021664925, 0.026445292, 0.0339083, 0.0057198713, -0.033775743, -0.022693904, -0.02900366, -0.007668472, 0.0019419726, -0.0149260145, -0.013315436, -0.00644894, 0.021540651, 0.021898558, 0.01147951, 0.012241718, -0.018346008, 0.0039502243, -0.0040430147, -0.027121337, 0.042895723, -0.028924124, -0.012891252, -0.0013711454, -0.016874615, -0.017590428, -0.04133154, -0.028075755, -0.017749498, 0.027134594, 0.044804554, 0.012427299, -0.005501151, 0.008205331, 0.011227651, -0.014833224, -0.023939949, -0.03359016, 0.0068930085, -0.021567164, -0.0018110718, -0.00083055784, -0.010916139, 0.016370894, -0.01355404, -0.008158936, -0.0028881042, -1.3119862E-05, -0.018730424, -0.0086494, -0.0185581, 0.0018276414, 0.0085168425, 0.00079161895, 0.016211826, -0.022455301, 0.009464631, 0.03950224, 0.00059361063, 0.006800218, -0.015509269, 0.028712032, -0.014117411, 0.028738543, -0.0015434705, 0.021633442, -0.0066278926, -0.0148729915, -0.028075755, -0.0097496305, 0.016476942, 0.031601794, 0.012168812, -0.0055906274, -0.023780879, -0.010313001, 0.02059949, 0.007887192, 0.01333532, -0.003463074, -0.01972461, -0.0069526597, -0.025292039, -0.04013852, -0.023939949, 0.008417424, 0.027055059, -0.012586368, 0.022349255, -0.02657785, -0.024430413, -0.009226027, -0.029613426, 0.036665503, 0.004871501, 0.024920877, 0.037540384, -0.010763698, 0.009524282, -0.013706482, -0.008231843, 0.002480489, 0.0053288257, 0.012606252, -0.029268775, -0.0085168425, 0.018173682, 0.0016925981, 0.00861626, -0.015867176, 0.0062832423, 0.0041689444, 0.009981606, -0.0124869505, -0.028393893, -0.0003748902, 0.019326935, 0.013852296, 0.005743069, 0.0039369683, -3.500356E-05, 0.026856221, 0.020056004, -0.014780201, 3.417507E-05, 0.013143111, 0.0022833091, 0.01009428, 0.005623767, 0.020771816, -0.022044372, -0.005630395, 0.03223807, -0.00754917, 0.005511093, 0.015999733, -0.004390979, 0.024231575, 0.0025865352, -0.0041026655, 0.029242262, 0.0022120592, -0.018200194, 0.0005240178, -0.007111729, 0.002911302, -0.018756937, -0.029586913, -0.01610578, 0.018160427, 0.007303938, 0.017378336, -0.005365279, -0.021964837, -0.006422428, -0.013719738, -0.00078416255, -0.030647377, -0.017179498, -0.0019303737, -0.0327683, -0.001733194, -0.011406603, 0.0019005482, 0.021275535, -0.0017414788, -0.013428111, 0.006601381, -0.0025616805, -0.027598545, 0.021991348, 0.016887872, 0.010578117, -0.018611124, 0.01245381, 0.0036884223, -0.01812066, 0.00097264326, -0.005259233, -0.022229953, -0.02034763, -0.01544299, -0.0021573792, 0.011108348, -0.020891119, 0.018823216, -0.021646697, 0.018916005, 0.0037911546, -0.034862716, -0.0148729915, -0.018359262, 0.011737999, 0.008914515, -0.009583933, 0.011154744, -0.024523204, -0.0030405459, 0.0057695806, -0.031601794, -0.02091763, -0.03327202, 0.019605307, 0.012705671, -0.016476942, 0.0030670573, -0.0034365624, -0.015509269, 0.010776954, -0.022057626, 0.021023676, 0.028818078, 0.015827408, 0.024973901, 0.022534836, -0.055144068, -0.028473428, 0.005265861, -0.015588804, -0.0048118504, -0.020095771, 0.016728802, 0.03913108, 0.010061141, -0.0097496305, 0.028950635, -0.0036453411, -0.04069526, 0.010114164, 0.006677602, 0.011718115, 0.026113898, 0.000726997, -0.02000298, 0.015018805, 0.015867176, -0.006720683, -0.00861626, 0.004629583, 0.013759505, 0.011883812, 0.008205331, -0.0107968375, -0.033881787, -0.01450183, 0.011002302, -0.036320854, 0.0035658064, 0.014011365, -0.019181121, -0.018452054, 0.0004830077, -0.0044108625, 0.033457603, 0.01383904, -0.023939949, -0.019101586, -0.008457191, -0.001079518, 0.016225081, -0.0072111473, -0.0033122895, 0.007986611, 0.014448807, 0.0010314658, -0.027002035, -0.019326935, -0.01459462, -0.014568108, 0.0018591239, 0.010843232, 0.012526717, 0.01839903, 0.010949279, -0.004682606, -0.0003195887, 0.02767808, -0.0023943263, -0.00827161, -0.008357773, -0.017033685, 0.014965782, 0.013447994, 0.0033868533, -0.011426487, 0.003708306, -0.014289737, 0.024112275, -0.033802252, -0.0058988244, -0.014647643, -0.015906943, -0.0125664845, 0.007814285, 0.005076966, 0.0135871805, -0.0030438597, -0.008245098, -0.02490762, 0.02091763, 0.01450183, 0.022667393, -0.018955773, -0.002651157, 0.013308809, 0.014568108, 0.035021786, 0.20382096, 0.0021325245, -0.008145681, 0.03626783, -0.0013015524, 0.009252538, 0.015708106, 0.0054050465, 0.034279462, 0.006084406, 0.024973901, 0.0030985398, -0.02403274, -0.006482079, 0.019075075, -0.030912492, -0.01972461, -0.007469635, -0.00508028, -0.003519411, -0.023383206, -0.013600436, -0.007880565, -0.008742191, 0.011877184, 0.010352769, -0.0005202896, 0.017590428, 0.018637635, 0.011399976, 0.0049974313, -0.053261746, -0.0070255664, -0.020533212, 0.00457656, -0.0049311523, 0.008841609, -0.027625058, -0.003651969, 0.02135507, -0.02751901, 0.004639525, 0.0012791833, 0.0009701578, 0.027306918, 0.03260923, -0.01635764, 0.011824161, -0.0028698775, 0.016304616, -0.023012044, -0.02916273, 0.029056681, 0.015615315, 0.013222646, -0.016901126, 0.008477075, -0.026710408, 0.002841709, -0.029719472, -0.031866908, 0.016264848, -0.020732049, 0.029401332, 0.00071788364, 0.030620866, 0.0042484794, -0.021872045, -0.004069526, -0.00508028, 0.01578764, 0.010452187, -0.017351823, 0.013096716, -0.004463886, -0.03374923, -0.005335454, 0.007184636, 0.018783448, 0.058484524, -0.023794135, -0.016781824, -0.012387532, 0.007714867, -0.019114843, -0.03732829, 0.025689712, -0.018266473, -0.00012893323, 0.012241718, -9.7191834E-05, 0.00038048247, 5.6803114E-05, 0.005448128, 0.0047753965, 0.011704858, 0.0033752543, 0.013481134, -0.032105513, -0.006932776, -0.006124173, -0.0014001423, 0.004033073, 0.012400787, -0.0011358551, 0.013786017, -0.00493778, -0.0033073185, 0.011777765, -0.0060446383, 0.009809282, -0.034677137, 0.020360887, -0.007542542, -0.017126475, 0.005815976, 0.029427843, -0.024920877, -0.012911135, -0.006107603, 0.02032112, 0.0125399735, 0.029083194, -0.0012104189, 0.009517654, -0.03544597, -0.012182067, 0.014117411, 0.0038508058, -0.02311809, -0.0020927573, -0.025331806, 0.018518332, -0.032821324, -0.018041125, 0.021991348, 0.035552017, -0.017259033, 0.0047256877, -0.013010554, -0.017378336, -0.0076287044, 0.01459462, 0.01695415, 0.023661578, -0.025517387, 0.0016867988, -0.035313413, -0.014448807, 0.015973222, -0.021302048, -0.012374276, 0.0043677813, 0.0052923723, 0.0015310432, 0.02531855, -0.020307863, -0.009298934, 0.009265794, 0.031018538, -0.026219944, 0.027651569, 0.025901806, -0.031628303, -0.010399164, -0.011665091, -0.16893174, 0.018319495, 0.01874368, 0.00082144444, 0.025848782, -0.024536459, 0.012606252, 0.023263903, -0.027359942, -0.0060148127, 0.031310167, 0.020679025, -0.01736508, -0.024761807, 0.010776954, 0.018518332, -0.016596243, 0.03136319, -0.0038508058, 0.00019883679, 0.040112007, -0.021964837, 0.0033752543, -0.0064058583, -0.0062103355, -0.002049676, 0.015323688, 0.010995674, -0.018160427, -0.02091763, -0.0063395794, 0.009391724, 0.016887872, 0.01695415, 0.0256632, -0.003893887, -0.016662523, 0.012526717, -0.01201637, 0.002097728, 0.007184636, 0.009444747, 0.02032112, -0.00044903974, -0.0075889374, 0.008828353, -0.0011143144, 0.0130238095, -0.014952526, -0.019035308, 0.008675911, -0.035392947, -0.022004604, -0.01097579, 0.0389455, 0.013786017, 0.027174361, 0.009988234, 0.022044372, -0.008165564, -5.0045768E-05, -0.0059120804, 0.0019635132, 0.0028069126, -0.00012686201, -0.018916005, 0.0070587057, -0.0052857446, -0.031654816, 0.0014614504, -0.009351957, 0.010737186, -0.0031316793, 0.0046693506, 0.012056137, 0.025026923, -0.029719472, -0.0048416755, 0.005686732, -0.018133914, -0.00060106703, 0.044910602, -0.0121423, 0.023290416, -0.0086494, -0.0017083393, -0.035896666, 0.0079534715, -0.008748818, -0.0069592874, 0.015522525, -0.021209257, -0.0035624923, -0.009743002, 0.016119035, -0.0008417424, 0.021288792, -0.019711353, 0.028765054, -0.015283921, 0.003960166, -0.0032542953, -0.022415534, 0.016211826, 0.015297176, -0.0038276082, 0.03557853, 0.024430413, 0.0008115026, -0.0073768445, -0.011061953, 0.009921956, -0.019539028, -0.016742058, -0.023290416, 0.0102864895, -0.0056668483, -0.011433115, -0.03374923, -0.0140909, 0.026750175, -0.013050321, -0.0269225, -0.006120859, -0.0172988, -0.005762953, -0.091093756, -0.024894366, 0.03446504, 0.013892063, -0.0022965649, -0.009623701, 0.011095093, 0.01956554, 0.005487895, 0.01651671, 0.018478565, 0.004947722, 0.013905319, -0.0031134526, 0.016556475, -0.007416612, 0.004894699, -0.0085433535, -0.035843644, 0.017351823, 0.00075060886, -0.008576494, -0.013315436, -0.0017812462, -0.020095771, -0.020811584, -0.02195158, 0.027306918, 0.023356695, 0.023780879, -0.00017967803, 0.0021441234, -0.0045401067, -0.012579741, -0.044115253, -0.009968351, -0.0039734216, -0.009252538, 0.026219944, -0.022919253, 0.006303126, 0.009173004, -0.017563917, -0.038521312, -0.01755066, 0.007867308, -0.008549982, 0.0042319098, 0.006293184, 0.008490331, -0.022985533, 0.007237659, -0.024841342, -0.0067935903, 0.026723664, -0.02421832, 0.0076949834, -0.012685787, -0.026299478, 0.009703235, 0.009040446, 0.014302992, -0.0048317336, 0.008324633, -0.012009742, 0.008152308, 0.009305562, -0.009126608, 0.0068201018, 0.006468823, -0.01053835, 0.03679806, -0.0013123228, 0.037699454, 0.013202762, -0.010863116, 0.0056071975, -0.004142433, -0.008192075, -0.018637635, -0.01839903, -0.011718115, 0.034385506, -0.021421349, 0.0044241184, 0.027943196, 0.027625058, -0.011744626, 0.005318884, -0.021553908, -0.003085284, 0.02682971, 0.00036080592, -0.015562292, -0.016596243, 0.010372653, 0.006183824, -0.02226972, 0.012877996, 0.00396348, -0.011711487, -0.011791022, -0.06410498, 0.0269225, 0.0027141222, -0.0057198713, 0.009199515, 0.008258355, 0.019804144, -0.031840395, 0.0070785894, -0.011598812, -0.003771271, -0.027757615, -0.00902719, -0.013302181, -0.016225081, -0.021235768, 0.0062633585, 0.0042418516, 0.04217991, 0.0071581244, -0.0037613292, 0.012354393, 0.0009834135, 0.022243207, -0.022760184, 0.0026329304, -0.01236102, 0.017259033, -0.011691603, -0.012500206, 0.011936835, -0.009471259, 0.022892741, 0.025676457, -0.027731104, -0.043478977, 0.019207634, -0.002172292, 0.019167867, -0.04692548, -0.03746085, -0.011035441, 0.0034796437, -0.030806446, -0.012082648, 0.006170568, -0.003956852, -0.003406737, 0.036745038, 0.0027041803, 0.012950903, 0.021885302, -0.003156534, -0.019671585, -0.02550413, -0.029083194, 0.016304616, 0.010087653, 0.0062136496, -0.029852029, 0.034915738, 0.004407549, -0.004221968, -0.0166095, 0.045705948, 0.0010886313, -0.0046096994, -0.0096170725, -0.0010612913, -0.013613692, -0.016092524, -0.0050206287, 0.021553908, 0.02195158, 0.0057728947, -0.020374142, 0.011015558, -0.00040492282, -0.020042747, 0.028314358, 0.0059816735, 0.020811584, -0.03154877, 0.015071828, 0.008702423, 0.008815098, -0.01695415, 0.0057828366, -0.0007203691, 0.01720601, -0.03205249, -0.00890126, -0.022733672, 0.009093469, 0.0030405459, 0.01931368, -0.0008417424, -0.014395783, 0.0068797525, 0.011174628, 0.0058027203, 0.013759505, -0.01273881, -0.01163858, -0.03340458, 0.031946443, -0.00095938746, -0.025968084, -0.009292305, 0.02091763, -0.0039966195, -0.0030753422, -0.028818078, 0.014647643, -0.0037911546, 0.005192954, 0.020877862, -0.026246456, -0.008410796, -0.007933588, 0.00036225576, 0.005574058, 0.0075094025, -0.027731104, 0.0062534166, -0.015880432, 0.009603817, -0.008311378, 0.011671719, 0.008205331, 0.014899503, -0.027015291, 0.01812066, 0.014515085, -0.0050338847, -0.0077546346, 0.013971598, 0.039555263, 0.003080313, 0.06230219, 0.008888004, -0.016503453, -0.008152308, -0.035631552, -0.0016959121, -0.0012120759, 0.009849049, -0.0014158837, 0.0075557977, 0.002480489, -0.012838229, -0.005918708, 0.008894633, -0.03695713, -0.025252271, 0.019207634, 0.017577171, -0.016967406, -0.002969296, 0.040615726, -0.026736919, 0.03406737, -0.003214528, -0.0026644128, -0.025517387, 0.0016412319, 0.005617139, -0.009491143, -0.0071581244, 0.024324367, 0.020334376, -0.009849049, -0.005023943, 0.011167999, 0.00036308425, -0.015204386, 0.0090802135, -0.016331129, 0.02311809, 0.015111595, 0.015297176, -0.017935079, 0.003096883, 0.018955773, -0.011075209, -0.006478765, -0.025265528, 0.0038574336]
+ },
+ {
+ "Id": 40,
+ "Type": "Footwear",
+ "Brand": "Green Equipment",
+ "Name": "EcoTrek Trail Running Shoes",
+ "Description": "Hit the trails with the EcoTrek Trail Running Shoes by Green Equipment. Designed with eco-friendly materials, these shoes feature a comfortable fit, responsive cushioning, and a durable outsole for optimal grip on rugged terrains. The forest green color is inspired by nature and adds a refreshing touch to your outdoor look.",
+ "Price": 99.99,
+ "Embedding": [-0.0047783474, -0.030576112, 0.000506807, -0.006933419, 0.0004206789, 0.016270954, -0.009682878, -0.050579425, 0.009390665, -0.007989371, 0.011163867, 0.0010659136, 0.009789137, -0.026365587, -0.0029536763, -0.0008683377, 0.02180972, 0.002025568, -0.010034862, 0.010061427, -0.023762235, 0.028663445, -0.0034202212, -0.02301842, 0.015341186, -0.022659795, 0.017147593, -0.0136011895, 0.0094969245, -0.013594548, -0.0038020904, -0.0074115857, -0.0117815, -0.01431844, -0.013787144, 0.0024090975, 0.0011207035, 0.012618291, 0.011808064, -0.007670593, 0.016204543, 0.0041042655, -0.0061099096, 0.0013448442, 0.008487461, 0.027574288, 0.017001487, -0.0026730853, -0.024266966, 0.018648507, -0.0123260785, 0.012797604, -0.005721399, 0.0018645186, 0.010307152, 0.011940888, 0.013063252, -0.009330895, 0.02093308, -0.009862191, -0.020800257, 0.008965628, -0.038014263, 0.011004479, -0.0020587738, 0.004147433, -0.008361278, -0.0020338693, 0.0026614633, 0.019458733, -0.0027378371, -0.026657801, 0.0050008283, 0.017121028, 0.0018545567, -0.0223543, -0.011681881, -0.006933419, 0.03867838, 0.018927436, -0.008952346, -0.026604671, -0.026963295, -0.010260663, -0.0034999156, -0.004492776, -0.00080524624, 0.014198898, -0.014889584, -0.0037157547, -0.00031732512, -0.008600362, 0.005117049, 0.0065283054, -0.040564485, -0.0012659798, -0.009151582, 0.014982561, 0.0015349487, -0.025821008, -0.017944539, 0.020109572, 0.0032126834, -0.00996845, -0.035729688, 0.0042370893, 0.005545407, 0.02676406, 0.023908341, -0.020853387, -0.026285892, 0.020308807, 0.014464547, -0.011768217, -0.0060733827, -0.009191429, 0.0047351797, 0.017838279, -0.004290219, -0.023695823, 0.025913985, -0.026803907, 0.017718738, -0.019007131, 0.0007305326, 0.01272455, -0.012744474, -0.009384024, 0.01916652, -0.009463718, -0.0130765345, 0.00192761, 0.03182466, 0.008155401, -0.035623427, 0.012837451, -0.0014751778, 0.028955657, -0.030576112, -0.004399799, 0.0070263958, 0.0019824, -0.002869001, -0.016496755, 0.0027278753, 0.017891409, 0.0053262473, 0.023642693, 0.01172837, -0.0050307135, 0.026671084, 0.00028951507, 0.01801095, -0.013448442, -0.008826163, -0.017253853, 0.017532784, 0.0002577618, -0.03849243, -0.0035928923, 0.002434002, -0.018741483, 0.011429516, -0.007218991, 0.037642356, 0.03275443, 0.040086318, 0.011974094, 0.002336044, -0.0009729367, -0.0055653304, 0.010200893, -0.0104731815, 0.0125518795, 0.0068138773, 0.005535445, 0.0020073045, 0.016058436, -0.007318609, -0.018980566, -0.0018213508, 0.019206367, 0.011389668, 0.002521998, 0.0012925446, -0.010154404, 0.0056981547, -0.005309644, 0.0075975396, -0.0068537244, -0.00826166, -0.004801592, -0.01690851, 0.01261165, -0.6651832, -0.0066943355, -0.013488289, -0.023204373, 0.024240403, 0.02186285, 0.036553197, -0.0013755598, -0.020308807, -0.0012485468, -0.019631404, 0.02478498, 0.0011306653, -0.020083006, 0.012804245, 0.0027793448, 0.013853556, -0.021451095, 0.020255677, 0.026299175, -0.060886577, 0.01134318, -0.009649673, -0.03161214, 0.013222641, 0.032302827, -0.0018528964, -0.0067109386, -0.017466372, 0.011429516, -0.02797276, 0.04972935, 0.0038120523, 0.0065747937, 0.05379377, -0.014159051, -0.026910167, 0.038997162, 0.013189435, 0.06333054, -0.031585574, -0.012206537, -0.00059189746, -0.019644687, -0.0024771697, 0.017838279, 0.033896714, -0.01101776, 0.012518673, -0.019843923, 0.021570638, 0.0015465708, -0.008181966, -0.011914323, 0.011575622, -0.007444792, 0.040059753, 0.028371232, 0.03639381, 0.028716575, -0.002769383, -0.0018578774, 0.0063290694, -0.015460728, -0.027813371, 0.028504055, -0.023098115, -0.017200723, 0.007610822, -0.028663445, 0.01701477, 0.021026058, 0.0035630069, 0.00341358, 0.002048812, 0.02130499, 0.0048447596, -0.022792619, -0.008806239, 0.0053229267, 0.016363932, 0.007404945, 0.016948357, -0.012950351, -0.0024057769, -0.0010908181, 0.010413411, -0.014783325, 0.02473185, 0.014225463, 0.014916149, 0.031744964, -0.027202379, -0.017665608, -0.01503569, -0.0043367073, -0.0130765345, 0.023695823, 0.018900871, -0.02450605, -0.014132487, -0.005555369, -0.0014112563, -0.0011198734, -0.0039880443, 0.02517017, 0.023523152, 0.0091980705, 0.026033528, -0.0059239557, -0.013049969, -0.01724057, -0.008673415, -0.01745309, -0.0063589546, -0.021026058, 0.014172333, -0.004100945, 0.036500067, -0.043300662, 0.009550055, -0.0039780824, 0.0068869307, -0.024984216, -0.02853062, 0.0005595216, -0.0013141286, -0.01129005, -0.0010999497, -0.015487292, -0.016802251, 0.012771039, 0.025515513, 0.007869829, -0.005379377, 0.008899216, -0.004316784, -0.0018578774, 0.017718738, -0.038093958, -0.0047750273, -0.003403618, -0.010041503, -0.02919474, -0.021676896, -0.030708937, -0.025302995, -0.026232764, -0.019126672, -0.028929094, 0.019671252, -0.018714918, -0.01508882, 0.009463718, 0.007976089, -0.02042835, -0.015447445, -0.020361938, -0.010227457, 0.0012161708, 0.021690179, 0.009377383, -0.016204543, 0.0037456402, -0.019511864, 0.0017565989, -0.019591557, 0.008022577, 0.0058342996, -0.037828308, 0.008407767, -0.017532784, -0.014796607, 0.02853062, -0.0014071055, -0.008500744, -0.022859031, -0.02853062, 0.009762573, 0.0056317425, -0.003596213, 0.004818195, -0.004416402, 0.010944707, 0.015527139, 0.0015465708, 0.017917974, 0.03286069, 0.0004395648, 0.035118695, -0.006236092, 0.014159051, -0.017147593, 0.018542247, 0.0010111236, -0.01932591, -0.0076573105, 0.008215172, 0.015620116, 0.015938895, 0.025621772, -0.030602677, 0.013461725, -0.02103934, 0.029327566, -0.012067071, -0.008049142, -0.020056441, 0.01927278, 0.011668599, 0.0035696481, -0.02517017, -0.022859031, -0.011754935, -0.0028606995, 0.009257841, 0.0045890734, 0.031107409, -0.010008297, -0.027839934, 0.016775686, -0.015341186, 0.0045957146, -0.025980398, -0.00826166, 0.027135968, -0.04181303, 0.020361938, -0.0106989825, -0.029115047, 0.009410589, 0.0060235737, 0.019511864, 0.01354806, 0.0040378533, -0.0031462712, 0.017519502, -0.013707449, 0.044549208, 0.003453427, 0.034667093, 0.033737328, 0.010300511, -0.016231107, 0.021637049, 0.011084173, 0.013428519, 0.004097624, 0.01227959, 0.0008550553, 0.0018977246, 0.018210188, -0.025648337, -0.009310971, 0.013455084, -0.026139786, 0.011157226, 0.008706621, 0.030416723, 0.0106989825, 0.016324084, -0.005814376, 0.022168346, 0.008474179, 0.016563168, -0.015845917, -0.008347996, -0.010931425, -0.008241736, -0.010293869, 0.02736177, 0.0019890412, -0.010918142, 0.0071127317, -0.00495766, 0.016802251, 0.027388332, -0.021676896, -0.0053727357, 0.01162211, 1.5695037E-05, 0.0026415396, 0.022420712, 0.0030964622, -0.0085472325, -0.005545407, -0.022487123, 0.0070197545, -0.003662625, 0.039501894, 0.005409262, 0.010034862, 0.011582263, 0.008347996, 0.01426531, -0.0009828985, 0.0058376202, 0.0049709426, 0.029726038, -0.028397797, -0.004851401, 0.0038751436, -0.026564823, -0.004884607, 0.038890902, 0.0027411578, -0.009164864, -0.0067873127, 0.014889584, -0.020627586, -0.00468205, -0.0074647153, 0.008952346, -0.014451264, -0.0011647015, 0.013083176, -0.008447614, -0.016682709, 0.012472184, 0.0008666774, 0.0128772985, -0.023669258, -0.021703461, 0.000754607, 0.08723888, -0.00044288542, 0.014849736, 0.0132757705, -0.005133652, -0.018037515, -0.025741315, -0.009809061, -0.013142946, -0.013441801, -0.008892574, -0.009921961, 0.001145608, -0.027839934, 0.0093973065, 0.016695991, 0.0023659295, -0.031373058, -0.009835626, -0.02324422, 0.01613813, -0.016775686, 0.010871654, 0.01035364, 0.0024406433, 0.015407598, 0.009271123, 0.010214175, 0.027760241, -0.018635225, 0.016324084, -0.0035098772, -0.015075537, 0.009211353, -0.027760241, 0.013614472, -0.008467537, -0.011389668, 0.020229114, -0.0011862854, 0.03280756, 0.020720562, 0.004751783, -0.030868325, -5.691721E-05, 0.009941885, -0.00258841, 0.011582263, 0.02070728, -0.022447277, 0.041387994, 0.0039282735, -0.018754765, 0.022380864, 0.0072654793, 0.0038817849, 0.012405773, -0.004741821, -0.003094802, -0.04869332, 0.0037257166, -0.021291707, 0.0029287718, -0.006036856, -0.0046256, 0.000187199, 0.008215172, 0.007517845, 2.8095414E-05, -0.02203552, -0.025595209, -0.02919474, -0.024001319, -0.0066710915, 0.011542416, -0.008613644, 0.017360112, 0.0057413224, 0.017028052, 0.006136474, 0.007942882, 0.020083006, 0.0030084662, -0.0063855196, 0.013116382, -0.010811883, -0.035809383, -0.012591726, 0.0016262654, 0.018542247, 0.025024064, -0.023084832, 0.015992023, 0.013222641, -0.017081182, -0.001894404, 0.024798263, 0.022261322, -0.0045625083, 0.0067640683, 0.0007570975, -0.0117815, 0.013680885, -0.009158223, 0.026126504, 0.0038120523, -0.005585254, -0.0045857527, 0.022128498, -7.118542E-05, 0.011442798, -0.019538429, 0.0040345327, 0.002307819, -0.013036687, 0.030735502, 0.008188607, -0.018103927, 0.0138269905, -0.015925612, 0.00040801908, -0.037137624, 0.042530283, 0.010107916, 0.005478995, 0.026830472, 0.022752771, -0.008673415, 0.00023078191, 0.03479992, -0.01888759, 0.020361938, 0.006807236, 0.01299684, -0.02434666, -0.011535775, -0.035889078, 0.014371569, 0.0035231598, 0.0035596865, -0.0140527915, 0.015832635, -0.006724221, 0.024811545, -0.010360281, -0.020747127, -0.015713094, -0.0077967755, -0.017891409, 0.023363762, -0.026471848, -0.0035497246, -0.04168021, -0.0026896885, -0.020401785, -0.02247384, -0.0062128482, -0.0063888403, 0.031319927, 0.013747296, 0.004223807, -0.030708937, 0.018807895, 0.009105094, 0.00085671555, -0.0070795254, -0.02527643, -0.01834301, -0.03206374, 0.013866838, 0.014623935, -0.006372237, -0.0019226291, 0.0036427015, -0.023084832, 0.015447445, -0.02946039, -0.0022928764, -0.01547401, -0.041069217, -0.015115385, -0.0049111717, -0.0079296, 0.0036759074, -0.004223807, -0.0015133648, 0.033232596, 0.03514526, -0.012352643, 0.009045322, 0.0374564, -0.010021579, 0.017413242, -0.029699473, -0.014969278, -0.020162702, -0.0049643014, -0.04654157, -0.014730195, 0.0033571296, -0.013089817, -0.011834629, 0.006315787, -0.0047551035, -0.0039083497, -0.009769214, -0.01156234, -0.025302995, 0.018821178, 0.0080425, -0.008839445, -0.018688353, -0.022234758, -0.033577938, -0.016935075, -7.486922E-05, -0.021690179, 0.012379208, -0.009437154, -0.0012111899, 0.008487461, -0.0019940222, 0.006345672, 0.00026751606, 0.0037921285, 0.004552547, -0.015327903, 0.00014589899, 0.020003313, -0.008686697, -0.002395815, 0.009902038, 0.010386846, -0.01860866, -0.023589563, 0.010360281, -0.005445789, -0.02714925, -0.001195417, 0.033391982, 0.01988377, 0.011854553, -0.015487292, -0.0076639517, -0.008633568, 0.01911339, 0.0020471518, 0.0056417044, -0.0059770853, -0.024957651, -0.013574625, 0.03501244, -0.02924787, 0.030204205, -0.007644028, -0.015978742, -0.016324084, -0.0011754935, 0.008407767, 0.0066212825, 0.007358456, 0.029433824, 0.0057911314, -0.009503566, 0.030363593, -0.017320266, 0.013946532, -0.0012410753, 0.005253194, 0.027946195, -0.0059438795, 0.0025801086, 0.021052623, 0.0062194895, 0.0086468505, 0.0011099116, -0.0075643337, -0.012040506, 0.0026946694, -0.017054617, 0.0067806714, 0.0031977408, -0.015208362, -0.033551373, -0.008633568, -0.0036460222, -0.02203552, -0.027082838, 0.022659795, -0.022248039, 0.0010285567, -0.0004395648, 0.008766392, 0.019139955, -0.0075908983, 0.0034501066, -0.018821178, 0.010845089, -0.016895227, 0.014424699, -0.0034301828, 0.004608997, -0.0005848412, -0.0030865006, 0.0037755256, -0.032780994, -0.012731192, -0.0013913326, -0.015792787, -0.03838617, -0.014225463, -0.022699641, -0.0010385186, -0.007776852, 0.020906515, 0.018396141, 0.019684535, -0.019963466, -0.038890902, 0.008215172, 0.00035509697, -0.017479654, 0.024705285, -0.011529134, 0.0057678875, -0.0029652985, -0.0020023235, 0.006382199, 0.008361278, -0.018714918, -0.0007010623, 0.011449439, 0.0074115857, -0.035437476, 0.0026498411, -0.0011671919, -0.002907188, 0.002098621, 0.0019857206, -0.01040677, 0.012292872, 0.022912161, 0.0034600683, 0.01801095, -0.0133023355, -0.0122264605, -0.01217333, -0.0008193588, -0.025688184, -0.015062255, 0.0199369, 0.05177484, 0.017692173, -0.033391982, -0.0059770853, 0.021079188, -0.06449939, -0.03735014, 0.0039780824, -0.005386018, 0.01393325, 0.00985555, -0.0042868983, 0.022128498, -0.018595377, 0.020561174, -0.0158592, -0.010300511, 0.0014062753, 0.008088989, -0.009676237, -0.00368919, -0.04202555, 0.016536603, 0.0427428, 0.010606006, 0.010121197, -0.013614472, -0.010513029, -0.004522661, -0.016669426, 0.001041009, 0.030629242, 0.02439979, 0.018077362, -0.041892726, -0.01999003, 0.005103767, 0.0062792604, -0.007298685, -0.006013612, 0.0073119677, -0.0061265123, -0.0006906854, -0.019246215, -0.042583413, -0.01657645, -0.0086468505, 0.020840105, 0.008766392, -0.011801423, -0.01718744, 0.012339361, -0.030097945, 0.016204543, -0.0015581929, 0.015845917, 0.021185447, 0.00017121859, -0.0029719397, 0.008115553, -0.0069201365, 0.008294866, 0.008500744, -0.016749121, 0.011854553, 0.008387843, 0.0019641367, -0.0091980705, 0.005804414, -0.027388332, -0.014504394, -0.0052664764, -0.0043931575, 0.018489117, -0.008607003, 0.010672418, -0.02681719, 0.022792619, -0.015274773, -0.021504225, -0.016058436, -0.00826166, -0.023204373, -0.023284068, 0.052359268, 0.1989174, 9.349573E-05, -0.0047484622, 0.016324084, 0.025356125, -0.0029835617, 0.003639381, 0.008328072, -0.013614472, -0.0012975256, 0.014929431, 0.01547401, -0.0077170813, -0.0022729528, 0.010200893, -0.015022408, -0.04608997, 0.005362774, -0.023868494, 0.0027278753, -0.0075311274, -0.008746468, 0.031798095, -0.029726038, 0.012585085, 0.00048024222, 0.0020239076, -0.0025585245, 0.006086665, 0.018422706, -0.012438979, -0.03206374, -0.0007126844, -0.003924953, 0.017798431, 0.002213182, 0.037589226, 0.030682372, -0.0028872644, -0.010021579, -0.011515851, -0.0043300665, -0.007703799, -0.0015739658, -0.005226629, 0.0073717386, -0.020043159, -0.0018196905, -0.0058077346, 0.0029038673, -0.03827991, -0.0040179295, 0.0016287557, 0.00468205, -0.008553873, 0.018542247, 0.038864337, -0.02142453, 0.0076573105, 0.008015935, -0.010479823, 0.03652663, -0.012432338, 0.019458733, -0.027056273, 0.008998834, -0.009676237, -0.006608, 0.026617954, 0.010413411, -0.0008666774, -0.006747465, 0.014770042, 0.030974584, -0.009384024, -0.021172164, 0.023709105, 0.0033670915, 0.012027224, 0.025807727, 0.013049969, -0.01508882, 0.011515851, -0.009324254, -0.02439979, -0.0404051, 0.0048314775, -0.018409424, 0.010400129, 0.017599195, 0.018382858, 0.0077834935, 0.0015631738, -0.0033687516, -0.010386846, 0.038625255, -0.03750953, 0.020189267, -0.015155232, 0.029779168, -0.033020075, 0.006106589, -0.009291047, 0.016722556, 0.0035165185, 0.027282074, -0.014623935, 3.144196E-05, 0.026857037, 0.0011356462, -0.015500574, -0.031187102, 0.0116752405, -0.00017827487, -0.015288056, 0.00086501706, -0.0018694995, -0.022487123, 0.0073119677, -0.024585744, 0.020640869, 0.00045699798, 0.0006977417, 0.0075643337, 0.0072057084, 0.0037290372, 0.01095799, 0.011356462, 0.036500067, -0.030762065, -0.0038585407, 0.010307152, 0.016536603, 0.000633405, -0.021663614, -0.007644028, 0.011256844, -0.026432, -0.014039509, 0.017718738, -0.006734183, 0.0006960814, -0.017081182, 0.012910504, 0.038093958, -0.021929262, 0.01844927, -0.013680885, -0.030044816, -0.0045459056, 0.024957651, -0.011416233, -0.009237917, -0.006040177, -0.0056749103, -0.021198729, -0.035437476, -0.021065906, -0.0034202212, 0.008527309, -0.04587745, 0.003486633, 0.016417062, -0.008301508, -0.024519332, 0.013156229, -0.16905853, 0.005635063, 0.019060262, 0.0008525648, 0.027228944, 0.012106919, 0.004758424, 0.015739659, -0.011090814, -0.006847083, 0.028796269, 0.01965797, -0.03402954, -0.008958987, -0.011210356, 0.017785149, 0.008308149, 0.017771868, 0.005409262, 0.00035385176, -0.009430513, -0.020667434, 0.007404945, -0.011011119, -0.002075377, 0.018940719, 0.011004479, -0.0024223798, 0.018635225, 0.008587079, -0.009018757, -0.018409424, 0.015872482, -0.0017649005, -0.009018757, -0.008666773, 0.008155401, 0.018528964, -0.009131658, 0.02791963, 0.010632571, 0.0059438795, 0.024160707, -0.0023526473, 0.025648337, 0.0019707778, -0.015899047, 0.0055520483, -0.0062792604, 0.0041607157, 0.019472016, -0.006010291, -0.021557355, 0.006571473, 0.024373226, -0.0008641869, 0.0041374713, 0.021955827, 0.024213837, -0.022673078, -0.008354637, -0.045558672, 0.004818195, -0.0067441445, -0.015513857, 0.004340028, 0.002262991, -0.007358456, -0.015752941, 0.022221476, -0.03865182, -0.022287887, -0.006900213, -0.007670593, 0.005352812, 0.0055653304, 0.0047451416, -0.011303333, -0.013720731, -0.02098621, -0.015739659, 0.023536434, -0.023470022, 0.017944539, 0.020295525, -0.000782002, -0.00534285, -0.0043134633, -0.020601021, -0.00018159547, -0.00021666934, -0.021504225, -0.005352812, -0.013189435, 0.0064187255, 0.01718744, 0.01939232, -0.015620116, -0.0008330563, 0.0013813708, 0.005110408, -0.001327411, -0.018489117, 0.014225463, 0.034109235, 0.020521326, 0.020508043, 0.008573797, 0.03750953, 0.0032027215, -0.03309977, 0.01542088, 0.006973266, 0.014916149, 0.012186613, 0.0029204702, 0.008274943, -0.019631404, 0.0107986005, -0.021079188, 0.012870657, -0.012379208, -0.030097945, 0.0036593045, 0.006548229, -0.01459737, -0.09356131, 0.008633568, 0.0142520275, 0.00056989846, -0.0025618451, -3.2920667E-05, 0.001701809, 0.035915643, 0.016310802, -0.0014610653, 0.01635065, -0.00220322, 0.018183623, -0.00038311456, 0.0043300665, 0.003529801, 0.010977914, 0.009184788, -0.035676558, 0.011967453, -0.0065183435, -0.016642863, -0.01013448, -0.016018588, 0.010333717, 0.00826166, -0.03177153, -0.0009530131, 0.015620116, 0.029327566, 0.013707449, -8.1043465E-05, 0.008819521, -0.023895059, -0.0055620098, -0.009643031, -0.0197111, -0.022659795, 0.02576788, -0.026179634, -0.030310463, -0.03193092, 0.0008284904, -0.015221644, 0.008394484, -0.010114557, -0.0056251013, 0.025781162, 0.0044960966, -0.03381702, -0.022208193, -0.011456081, -0.0058376202, -0.011515851, 0.038173653, -0.01662958, -0.001977419, 0.008009294, 0.003211023, 0.01431844, 0.002208201, 0.004642203, 0.0010733849, 0.019817358, -0.0010999497, -0.012053789, -0.008208531, 0.027760241, 0.026551541, -0.004376555, -0.00023887587, 0.018582094, -0.0132757705, 0.034109235, 0.0016171336, 0.009961809, -0.025462383, -0.027255509, 0.023722388, -0.019179802, -0.007810058, -0.018900871, 0.031373058, -0.038944032, -0.0065880762, 0.005678231, -0.0046654474, -0.011210356, -0.010167686, -0.031957485, 0.002060434, -0.00082516985, 0.013388671, -0.004758424, -0.015221644, -0.010114557, 0.0035630069, -0.0035065569, 0.01983064, -0.021610484, -0.02368254, -0.009550055, -0.07315952, 0.024001319, -0.009736008, -0.018648507, 0.0091980705, -0.0010343678, 0.025037346, -0.005412583, 0.009556695, -0.029486954, -0.024479484, -0.022221476, 0.0138269905, 0.010977914, -0.018223468, 0.004615638, -0.0055254833, -6.215754E-05, 0.028557185, 0.00043416885, -0.013315618, -0.011422874, -0.008022577, 0.009038681, -0.03294038, -0.008009294, -0.013893403, 0.020561174, -0.005704796, -0.01580607, -4.3686683E-05, 0.004266975, 0.024811545, 0.026352305, -0.005495598, 0.0035630069, 0.02296529, 0.025728032, 0.020242395, -0.023669258, -0.023576282, -0.01288394, -0.008587079, -0.020547891, -0.010479823, -0.004672088, 0.020561174, -0.013189435, 0.02098621, 0.0066611296, -0.021743309, 0.014172333, 0.012717909, -0.0063091456, 0.006179642, -0.017147593, 0.019073544, -0.0071060904, 0.0037954492, -0.0185024, 0.02583429, 0.016177978, 0.0070064724, 0.01933919, 0.016177978, 0.013680885, -0.01365432, -0.018914154, 0.019750947, -0.006040177, -0.010446617, 0.0071260137, 0.016071718, 0.000947202, 0.0015233266, -0.0026033528, -0.024160707, -0.0075576925, -0.013209359, 0.03187779, -0.013149587, -0.0021351478, -0.058230095, 0.01739996, 0.0026066734, 0.00357961, 0.010479823, 0.0023028383, -0.0073385327, 0.010977914, -0.023084832, 0.005688193, -0.019923618, 0.0022596703, 0.010087992, 0.01426531, 0.010220816, 0.013680885, 0.018967284, 0.031851225, -0.0054159034, 0.010772036, 0.012538597, -0.0170679, -0.010878296, 0.0038851055, -0.012531956, -0.018582094, -0.031240232, -0.0057579256, 0.008188607, -0.0033504884, -0.0119010415, -0.0029486953, -0.030682372, 0.008474179, -0.0105993645, -0.015274773, -0.019299345, 0.02268636, 0.015447445, 0.025342843, -0.008620285, 0.0074979216, -0.002830814, -0.0006375558, 0.02153079, -0.0010642533, 0.011748293, 0.009477001, 0.0068005947, -0.0032442291, -0.003486633, -0.0061597186, -0.0116752405, 0.0037788462, 0.0013240904, 0.0056417044, -0.019472016, 0.06370245, 0.019843923, 0.008514026, 0.0135015715, -0.000837207, 0.014982561, 0.018993849, 0.019564992, -0.0066212825, -0.024625592, -0.003315622, -0.0007786814, -0.01596546, 0.026153069, -0.03442801, 0.0014892904, 0.005219988, 0.015234927, 0.0050904844, 0.0057778494, 0.028185278, -0.015075537, 0.031532444, 0.0034567476, -0.00914494, -0.008653492, 0.02373567, 0.018462552, 0.0027029708, -0.0055520483, 0.02797276, 0.0012070392, -0.018409424, 0.0067109386, -0.0043632723, 0.00080317084, -0.015553704, 0.023895059, 0.0069599836, 0.017665608, 0.0133023355, 0.008739827, -0.008321431, -0.012339361, 0.0069799074, 0.005628422, -0.012352643, 0.0020006632, -0.006040177]
+ },
+ {
+ "Id": 41,
+ "Type": "Footwear",
+ "Brand": "WildRunner",
+ "Name": "Trekker Clear Hiking Shoes",
+ "Description": "The Trekker Clear Hiking Shoes from WildRunner are designed for the adventurous hiker who seeks both comfort and durability. The transparent shoes feature a waterproof and breathable upper fabric, a rugged carbon-infused sole for excellent traction, and a shock-absorbing midsole for enhanced comfort on long hikes.",
+ "Price": 84.99,
+ "Embedding": [0.008879329, -0.031871766, -0.0077534975, -0.012484672, 0.0047345255, 0.006935929, -0.022288792, -0.061277423, 0.019098934, -0.022516638, 0.009515961, 0.012645505, -0.0004119255, -0.021565042, -0.00091976445, 0.0035215754, 0.020184558, 0.0012447814, 0.0023923928, -0.0041179983, -0.004945619, 0.020224767, -0.007364817, -0.011030472, -0.006242336, -0.019045323, 0.04184342, -0.025277607, 0.012786234, -0.020278377, -0.0007283563, -0.0040509845, -0.0075256503, -0.019460808, 0.0026906042, 0.00090552407, 0.004845098, 0.0063897665, 0.015399773, -0.010976861, 0.018361783, -0.0023756393, -0.010702104, 0.006815304, -0.0008728548, 0.025706496, 0.001660267, -0.017705048, 0.0036489016, 0.013295539, -0.013871858, 0.00080961053, -0.011982068, 0.0079277335, 0.0075792614, -0.008148879, 0.008946343, 0.028655102, 0.023669276, -0.010172696, -0.013436268, 0.002422549, -0.036803983, 0.021819696, 0.0004883631, -0.015426578, -0.02951288, -0.006178673, 0.0025716547, 0.013603803, -0.00025884082, -0.007224088, 0.023052748, 0.027984966, 0.014716231, -0.018589629, -0.0045703417, 0.0069292276, 0.0043223905, 0.016659632, 0.0039069047, -0.018629838, -0.032059405, -0.0036153947, 0.003159701, 0.009040162, 0.005991034, 0.0026319672, -0.020801086, -0.021725876, 0.008296309, -0.0056090555, 0.010152591, 0.013295539, -0.0036589538, -0.013422865, 0.0016845595, 0.014662621, -0.0035249263, -0.016458591, -0.0015304277, -0.0029653609, -0.0055118855, -0.0104206465, -0.04669522, 0.008517454, 0.0029603348, 0.023240387, 0.027824132, -0.018294768, -0.0077266917, 0.026926147, 0.022985736, -0.018174144, -0.014461579, -0.007344713, 0.008309712, 0.02747566, 0.0075055463, -0.041736197, 0.045220915, -0.023267193, 0.014729634, -0.012209916, -0.00024187795, 0.018991712, -0.039940227, -0.0069158245, 0.022597056, -0.020305183, 0.018964907, 0.0020707266, 0.045033276, -0.018321574, -0.0059039164, 0.01912574, -0.015641022, 0.016820464, -0.018093728, -0.010346931, -0.005722979, 0.010628389, -0.008235997, 0.010501063, 0.019983517, 0.0041950643, 0.012652206, 0.010078876, 0.014649218, -0.0027123839, 0.009609779, 0.002384016, 0.014970884, -0.006567353, 0.0040744394, -0.0049590217, 0.023280596, 0.022194972, -0.028092187, -0.0028581389, 0.0038097347, -0.014944078, 0.014381163, -0.0089798495, 0.030397462, 0.034096625, 0.027690105, -0.007847317, 0.011023771, -0.010923251, 0.0026922796, 0.023079554, -0.0057363817, 0.014287343, 0.013355851, 0.0030172965, 0.013416164, 0.014153316, -0.011037174, 0.0009649988, -0.008698392, 0.0035249263, 0.009133982, 0.00068060897, -0.015547203, -0.028413853, 0.0067750956, 0.0021812993, 0.010568077, -0.011244916, -0.003441159, 0.011010368, 0.0026369933, 0.014032691, -0.6592014, -0.020050531, -0.006178673, -0.040020645, 0.038117453, 0.017638033, 0.025639482, 0.0028045278, -0.029486075, 0.019192753, -0.00029653608, 0.020801086, -0.008128774, -0.013060991, -0.016270952, -0.0102263065, 0.017825672, -0.009938147, 0.037259676, 0.018013312, -0.025264205, 0.007639574, -0.0089798495, -0.013081095, 0.0007794543, 0.008101969, 0.0014407968, -0.017892687, -0.011204708, 0.0112784235, -0.053048126, 0.042084668, 0.008108671, 0.0044832234, 0.05543382, -0.029727325, 0.0014944079, 0.036938008, 0.022114556, 0.046829246, -0.02630962, -0.008604572, 0.007827212, -0.0052907397, 0.012236721, 0.021725876, 0.020358793, -0.014729634, 0.029941767, -0.004908761, 0.0008829069, 0.0012640479, 0.007083359, -0.010762417, 0.002310301, -0.021216571, 0.041226894, -0.014541996, 0.023454832, -0.0020908308, -0.021444418, 0.018455602, -0.00045318087, -0.015131718, -0.032943986, 0.0058536557, -0.042245504, -0.016257549, -0.007874122, -0.020090738, 0.006805252, 0.021886708, 0.011151097, 0.016136924, 0.00051558745, 0.027288022, 0.002616889, -0.00698954, 0.0077400943, 0.017383382, 0.01460901, -0.004503328, 0.0089396415, -0.030719128, 0.019648448, 0.0040945434, 0.008376726, -0.0076328726, 0.033560514, 0.0104206465, 0.009918043, 0.043424945, -0.03417704, -0.0029251527, -0.03053149, 0.017946297, -0.018938102, 0.013912066, 0.010407244, 0.0041582067, -0.010929951, -0.011003667, -0.001806022, -0.0016845595, 0.008410232, 0.037929814, 0.01412651, -0.0087453015, 0.017892687, -0.017008103, -0.0069694356, -0.018964907, -0.021846501, -0.016833868, 0.004114648, -0.021136153, 0.021886708, 0.0054817293, 0.029083991, -0.054013126, 0.008008149, 0.0066779256, 0.005699524, -0.020827891, -0.0027995016, 0.0017155535, 0.015721438, -0.007324609, 0.005300792, -0.021833098, -0.006597509, -0.003364093, 0.022878513, 0.0044698208, -0.0059943846, 0.005810097, -0.023923928, -0.00698954, 0.023226986, -0.022637263, -0.013778038, -0.0049020597, -0.010728911, -0.037045233, -0.023173373, -0.041602172, -0.039913423, -0.008564364, -0.038117453, -0.018321574, 0.037903007, -0.009998459, -0.023521846, 0.0113186315, 0.0032987546, -0.020586642, 0.0070230467, -0.010916549, -0.009040162, -0.00834992, 0.029298436, 0.011566583, 0.0034445096, -0.012947068, -0.0032099613, -0.014059496, 0.0011861443, 0.021270182, -0.006416572, -0.04441675, -0.008584469, -0.022114556, -0.023039347, 0.026095176, 0.012873352, -0.0053376495, -0.009281412, -0.030317046, 0.00577659, -0.0005872085, -0.0059474753, -0.0038868007, -0.034471903, -0.0012967171, 0.003504822, 0.005991034, 0.0014768167, 0.032113016, 0.002849762, 0.026390037, -0.0125248805, 0.018576227, -0.008075164, 0.019340184, 0.008269504, -0.022838306, 0.007130269, 0.005545392, 0.0062925965, 0.021377403, 0.022074347, -0.032032598, 0.011760923, -0.037956618, 0.035490513, -0.008175684, -0.017450394, 0.0008347407, 0.035302874, 0.011740819, 0.009301516, -0.036857594, -0.015909078, -0.006058048, -0.029137602, 0.018174144, 0.0073112063, 0.031255238, -0.014113108, -0.024728093, 0.018093728, -0.0064065196, 0.015855467, -0.038760785, -0.0053879097, 0.023575457, -0.019045323, 0.013912066, 0.0029653609, -0.009107176, 0.029191213, 0.0032417928, 0.01732977, 0.022865111, 0.015279148, 0.0018914647, 0.016632827, -0.030209823, 0.054549236, 0.020291781, 0.039993837, 0.041521754, -0.007994747, -0.0017063391, 0.001849581, 0.019782476, 0.006765044, 0.0043223905, -0.003806384, 0.0056191077, -0.0018026714, 0.010521167, -0.01412651, -0.0035115234, 0.0067315367, -0.0007790355, 0.028333437, 0.0025264204, 0.019742267, 0.012323839, 0.015828662, -0.0022834954, 0.009683494, -0.012169707, 0.009408738, -0.022127958, -0.014716231, -0.02092171, -0.010889743, 0.0069292276, 0.013845053, -0.016780257, -0.009006656, 0.0055319895, -0.016297758, 0.021270182, -0.0029670363, -0.0021427665, 0.001708852, 0.006396468, -0.013509983, -0.0062121795, 0.021766083, 0.01373783, -0.017772062, -0.023682678, -0.021377403, 0.02310636, -0.017624632, 0.028279826, -0.004499977, 0.010273216, 0.0063328044, 0.0024493546, 0.011023771, 0.012290332, 0.019353587, -0.010467556, 0.026001357, -0.024393026, -0.02640344, -0.0018311522, -0.010956757, -0.026470453, 0.046078693, -0.006547249, -0.012297033, 0.0125248805, 0.0147430375, 0.0010755715, 0.008859225, 0.00030219037, -0.0043190396, -0.0073380116, -0.012028978, -0.0025029655, 0.0065606516, -0.004238623, 0.015399773, -0.008684989, -0.010427348, -0.011754221, -0.0068320576, -0.0010378764, 0.077950455, 0.00059265335, 0.0021126103, 0.0133424485, 0.0042218696, -0.018897893, -0.03262232, -0.009140683, -0.0069962414, -0.0030323747, 0.00013549354, -0.032005794, -0.0038599952, -0.0069158245, 0.0022684173, 0.025411636, 0.007840615, -0.034337875, -0.0035818878, -0.032032598, 0.010682001, -0.024285803, 0.004664161, 0.022637263, 0.004479873, 0.0063428567, -0.0067114327, -0.016002897, 0.025049761, -0.007451935, -0.0070364494, 0.011392347, -0.0071637756, -0.004510029, -0.009200996, 0.0057263295, -0.022355806, -0.023897123, 0.007029748, -0.0007614444, 0.022087751, 0.014984286, 0.016458591, -0.022757888, -0.0104206465, 0.0006152705, 0.0005650101, 0.027984966, 0.0016007923, -0.028440658, 0.018804073, 0.010407244, -0.023521846, 0.0043525468, -0.005642562, 0.014166718, 0.016297758, -0.013067692, 0.015842063, -0.030960377, 0.0054348195, -0.01951442, 0.008483948, -0.0059441244, -0.013054289, -0.010903146, -0.0013913742, 0.026028162, -0.020573238, -0.011077382, -0.012417658, 0.00045192434, -0.02577351, -0.012283631, 0.0056626666, -0.006352909, 0.0068756165, -0.012531581, 0.023240387, 0.008490649, 0.009911342, 0.0025264204, 0.0067047314, -0.004141453, 0.0017557617, -0.0042788316, -0.020077337, -0.0016996376, -0.0019350236, 0.010038668, -0.0083968295, -0.016646229, 0.020425808, 0.014810051, -0.015359564, -0.0043961057, 0.025666287, 0.025599273, 0.0118614435, 0.003960516, 0.0040945434, -0.024178581, -0.0010839483, -0.010769119, 0.013992483, -0.0037494225, 0.0029536334, 2.4973113E-05, 0.018643241, -0.00737822, 0.013034185, -0.018603032, 0.036669955, 0.012350644, -0.010038668, 0.021364002, 0.0035215754, -0.020238169, 0.011888249, -0.023803303, 0.009288114, -0.03208621, 0.043585777, -0.0021075842, -0.017557617, 0.015788453, 0.027529271, -0.02975413, -0.0098778345, 0.01732977, 0.0035416796, 0.034257457, 0.016043104, 0.0045937966, -0.008189087, -0.026658092, -0.031094406, 0.0134965805, 0.0017423589, -0.001429907, 0.0016150327, 0.023615666, -0.0059776315, 0.03130885, -0.031710934, -0.026778717, -0.021926917, -0.003538329, -0.038063843, 0.043746613, -0.022530042, 0.016284354, -0.024580663, -0.009737106, -0.0010529545, -0.007880824, -0.0055219377, -0.0070900605, 0.021953722, 0.010326827, -0.024393026, -0.014421371, 0.021069141, 0.024178581, -0.0068957205, -0.0054783784, -0.016807063, -0.0065740542, -0.046400357, 0.018442199, 0.009448946, 0.0074251294, -0.0025800315, -0.009804119, 0.0076998863, 0.0077400943, -0.003364093, -0.013034185, -0.014568801, -0.030317046, -0.015949287, -0.01810713, 0.009133982, -0.0013662439, 0.009140683, 0.0012481321, 0.027502466, 0.011063979, -0.00043558973, 0.009214398, 0.035329677, 0.0044095083, 0.015667828, 0.005310844, 0.003967217, 0.0013310617, 0.013067692, -0.035356484, -0.009448946, 0.009234502, -0.004892008, -0.016471993, 0.009348426, -0.0024895628, -0.026296217, 0.0054783784, -0.0044899248, -0.022824902, -0.0022968983, -0.018763866, -0.009234502, -0.025894135, -0.035517316, -0.027850937, -0.004382703, -0.008812316, -0.023749692, 0.021069141, -0.008752003, -0.011352139, -0.010179397, -0.0040543354, 0.015641022, -0.009717002, 0.029914962, 0.026497258, -0.021122752, 0.0068488107, -0.010943354, 0.004697668, -0.010534571, 0.0099917585, -0.0059977355, -0.016431784, -0.016203938, 0.017973103, -0.014421371, -0.019648448, -0.018469004, 0.019970113, 0.019554628, 0.015976092, -0.0014081276, -0.006383065, -0.0052170246, 0.008684989, -0.029888157, 0.016083313, -0.012116096, -0.018200949, -0.012504776, 0.021725876, -0.027984966, 0.00088877056, -0.0061418153, -0.029968573, -0.009415439, -0.0011827936, 0.012732623, 0.0131481085, -0.009495856, 0.017182339, -0.01257179, 0.00834992, 0.019862892, 0.016994702, 0.011687208, 0.009717002, -0.0058670584, 0.028306631, -0.016110118, -0.016673034, 0.021095946, 0.013275435, -0.009824224, -0.006305999, -0.010655195, -0.014166718, 0.012297033, -0.0027592934, 0.017812269, -0.006295947, -0.0066075614, -0.019876294, -0.0022952228, 0.013657413, -0.024821913, -0.026778717, 0.0023990942, -0.022918722, -0.015962688, -0.0027995016, -0.0020975322, 0.02980774, -0.013476476, -0.016110118, -0.014381163, 0.032702737, -0.026430245, 0.005247181, 0.0052404795, 0.017852478, -0.023025943, -0.00025025467, 0.0101860985, -0.06283215, 0.010373737, -0.018522616, -0.028681908, -0.029566491, -0.019889697, -0.016740048, 0.004064387, -0.008611274, -0.010400543, 0.013603803, 0.02897677, -0.013268733, -0.024594067, 0.020492822, -0.006178673, -0.002164546, 0.027073577, -0.0017607877, 0.012176408, -0.010862938, 0.00095997273, 0.013818246, -0.003198234, -0.012069186, 0.026617883, 0.012410956, 0.0011191305, -0.020573238, 0.015708037, -0.0018076974, -0.00597093, -0.0040040747, -0.0027542673, -0.018401992, 0.017396783, 0.012632103, 0.013858455, 0.029164407, -0.026778717, -0.005649264, 0.012002173, 0.012008874, -0.007800407, -0.012223318, 0.009938147, 0.04878605, 0.012169707, -0.015185328, -0.011848041, 0.022878513, -0.041682586, -0.01412651, 0.015868869, 0.002558252, 0.013670816, -0.0013050939, -0.0079277335, 0.038841203, -0.0019232963, 0.033560514, -0.0035081727, -0.0087453015, -0.009241204, 0.00078489917, 0.004503328, -0.0058804615, -0.029566491, 0.0042888834, 0.039404117, -0.00137127, 0.009073669, 0.0068220054, -0.033292457, -0.034069818, -0.018629838, 0.017061714, 0.034954403, 0.009381933, 0.028387047, -0.043371335, -0.008028254, -0.0007949513, -0.007009644, 0.0070163454, -0.009013357, -0.016203938, 0.014260538, 0.0016100067, -0.0045167306, -0.028708715, -0.0024761602, -0.008497351, -0.0012707493, -0.001434933, -0.027850937, -0.0037728772, 0.017584423, -0.022409417, 0.019460808, 0.00012418495, 0.025250802, 0.0038331896, 0.0006047996, -0.0071637756, 0.009542766, -0.013778038, -0.011506271, 0.007679782, -0.011868145, -0.0037896307, 0.011010368, -0.0014416345, 0.013215123, -0.01174752, -0.035946205, -0.0019501017, 0.009817522, 0.0038767487, -0.00024418154, 0.010387139, -0.0033506902, -0.006393117, 0.034793567, 0.0007128593, -0.032943986, 0.0048015392, 0.016150327, -0.01097016, -0.022355806, 0.036884397, 0.19643086, -0.002873217, 0.0003356973, 0.01529255, 0.016083313, -0.0029670363, 0.014769843, 0.0043961057, 0.013469775, -0.015104911, 0.025518857, 0.0019165948, -0.036938008, -0.0028916458, -0.006061399, -0.0051031015, -0.04363939, -0.005324247, -0.038331896, -0.014877065, 0.004453067, -0.008249399, 0.014448176, -0.017410187, 0.025599273, -0.008175684, 0.0050796466, -0.020626849, -0.0038331896, 0.019876294, -0.0024309258, -0.029325241, -0.010950056, 0.0026805522, 0.009167489, -0.008805614, 0.030745935, 0.021042334, -0.013308941, -0.005692823, -0.010963459, 0.0018479057, 1.8821456E-05, 0.010554674, 0.008229296, 0.020680461, -0.027931353, 0.0049958793, 0.0035617838, 0.006305999, -0.023937332, -0.0033774958, -0.0060312427, 0.011559881, -0.011177903, -0.0025800315, 0.046051886, -0.0143543575, 0.005126556, 0.0057832915, -0.026296217, 0.020787682, -0.004818293, 0.0046340046, -0.016203938, 0.009455648, -0.014448176, 0.022114556, -0.007364817, 0.020238169, 0.014059496, -0.0073112063, -0.004067738, 0.045033276, 0.0029452567, -0.017021507, 0.010253112, 0.0029134252, 0.012531581, 0.012967171, 0.0027659948, -0.014260538, 0.0067248354, -0.005062893, -0.026885938, -0.027046772, 0.007847317, -0.001575662, 0.024634276, 0.019098934, 0.0068957205, -0.002053973, 0.011144396, -0.0047847857, -0.010862938, 0.027984966, -0.024419831, 0.029432463, -0.015171926, 0.016579214, -0.007907629, 0.0085509615, -0.026993161, 0.013664115, -0.02795816, 0.018938102, 0.0036623045, -0.0014910572, -0.003927009, -0.004154856, -0.010896444, -0.038439117, 0.008859225, -0.007827212, -0.0087050935, -0.0012154629, 0.0010738962, -0.02921802, 0.0012204889, -0.016190534, 0.016391577, 0.0012640479, 0.022034138, -0.0030172965, 0.007679782, -0.004607199, 0.008222594, 0.00597093, 0.018589629, -0.051681045, 0.009489154, -0.0074385325, 0.018442199, -0.001028662, -0.014300746, -0.015801854, -3.0156212E-05, -0.010353633, -0.0018763866, 0.010862938, -0.001844555, -0.012116096, -0.0039236583, 0.032917183, 0.031523295, -0.035892595, 0.016713243, -0.008684989, -0.021967126, 0.027529271, 0.014528593, -0.021122752, -0.020010322, -0.016954493, 0.0047780843, 0.0013595426, -0.038305093, -0.009569571, 0.0051031015, 0.008832419, -0.018696852, -0.0004226058, 0.031710934, -0.013938871, -0.009455648, 0.005883812, -0.17091201, 0.01490387, -0.005786642, -0.0022298843, 0.027006563, -0.005062893, -0.0058033955, 0.010829431, -0.007465338, -0.0066276654, 0.018388588, -0.0029486073, -0.033935793, 0.00027161534, -0.015466786, 0.0018378536, 0.018093728, 0.022074347, 0.011378944, 0.0035718358, -0.001276613, 0.015868869, 0.008718496, 0.00012994396, -0.014595606, -0.010782521, 0.009422141, 0.012176408, 0.005126556, 0.005528639, -0.015279148, -0.02436622, 0.024393026, 0.006956033, 0.007009644, -0.016860673, -0.015962688, 0.016753452, 0.0014642517, 0.02451365, 0.0019970115, 0.011653701, 0.035570927, -0.0079277335, 0.024781706, 0.0027844235, -0.010641792, 0.008691691, -0.02514358, -0.0104206465, 0.03232746, -0.0031245186, -0.015828662, 0.004741227, 0.018857684, -0.006470183, 0.018174144, -0.0026637989, 0.020238169, -0.017034909, -0.007203984, -0.010588181, -0.016418383, -0.0014810051, -0.009703599, 0.021645458, 0.018361783, 0.0071637756, -0.0070163454, 0.027663298, -0.045730222, -0.025250802, 0.0027157345, -0.005689472, 0.0054147155, 0.020238169, 0.014984286, -0.00567942, -0.01568123, -0.020278377, -0.01276613, 0.035517316, -0.024929136, 0.0069962414, -0.016150327, 0.017597824, -0.024258997, 0.010802626, -0.021216571, -0.014649218, -0.014541996, -0.012926963, -0.008256101, -0.027663298, -0.0012707493, 0.027355036, 0.027448855, -0.014461579, 0.003266923, -0.021364002, 0.0012062485, 0.008564364, -0.017959699, 0.011948561, 0.013831649, 0.020693863, 0.0242724, 0.0030357253, 0.035249263, -0.015627619, -0.01568123, -0.007880824, 0.014448176, 0.00427213, 0.014273941, -0.0022918722, -0.0101458905, -0.019085532, 0.018401992, -0.036107037, 0.023200179, -0.021993931, -0.025947746, -0.007934434, -0.011573284, -0.014796648, -0.09628543, -0.010628389, 0.010976861, 0.0037460716, -0.012980574, -0.004942268, -0.006976137, 0.021645458, 0.004744577, 0.0060982564, 0.025719898, -0.00796124, 0.0025967848, 0.0010563051, 0.010326827, -0.00027559427, 0.012511478, 0.0007250056, -0.036991622, 0.008028254, -0.026390037, -0.007947837, -0.0129135605, -0.031576905, 0.004717772, -0.010588181, -0.040744394, 0.0011149421, 0.03310482, 0.047311746, -0.007880824, 0.004141453, -0.002757618, -0.014957481, -0.012089291, 0.002675526, -0.020961918, 0.0032267147, 0.007967941, -0.023977539, -0.008772107, -0.009824224, 0.0018713605, -0.040958837, -0.0071570743, 0.0014056145, -0.002179624, 0.011499569, 0.009790717, -0.015708037, -0.02373629, -0.012665609, -0.008946343, -0.037768982, 0.041441336, -0.02092171, -0.03136246, 0.016900882, -0.0035785371, -0.0074251294, -0.009509259, 0.013262032, -0.016177133, 0.0063663116, 0.0017155535, -0.017959699, -0.014970884, 0.032005794, 0.004037582, -0.0096030785, 0.007492143, 0.0016234095, -0.0039638667, 0.062510476, 0.0005323409, 0.002888295, -0.030263435, -0.03232746, -0.0027224359, -0.010541271, -0.009790717, -0.012732623, 0.044041473, -0.035597734, 0.008041657, 0.025277607, 0.009341724, -0.020037128, 0.026215801, -0.030799545, -0.007585963, 0.031737737, 0.0034143534, -0.005019334, 0.0062155304, -0.0064869365, -0.005548743, 0.003806384, 0.009335023, -0.012169707, -0.019407198, 0.002811229, -0.07596685, 0.028547881, -0.0042888834, -0.019232962, -0.0057497844, 0.0155338, 0.005552094, 0.0022047542, 0.0010018564, -0.010655195, -0.011137694, -0.009113877, 0.011600089, -0.00065464113, -0.010889743, -0.018509213, -0.0059977355, -0.016914284, 0.00834992, 0.0048216432, -0.009301516, 0.021471223, -0.004499977, 0.024607468, -0.019313378, -0.018482408, 0.0065606516, 0.013509983, 0.016445188, -0.002151143, 0.017731853, 0.0039102556, 0.020399002, 0.022074347, 0.0010722209, 0.016404979, 0.009576273, 0.013818246, 0.013255331, -0.027877742, 0.0039739185, -0.020157753, 0.00053485396, -0.0018278016, -0.026912743, -0.018308172, 0.011023771, 0.0007220738, 0.021229973, 0.017825672, -0.006835408, 0.018294768, 0.030558296, -0.016525604, -0.019152546, 0.008329816, 0.003916957, -0.028279826, -0.0054147155, -0.028574686, 0.046748832, 0.030102601, -0.01655241, 0.013081095, 0.014957481, 0.010594883, -0.013489879, -0.004546887, 0.039270088, -0.0015036223, -0.027984966, 0.017316367, 0.026899341, 0.018214352, -0.006305999, -0.008651482, -0.004744577, -0.015426578, -0.018777268, 0.018509213, 0.001230541, -0.009891238, -0.053289376, 0.013912066, -0.0040509845, -0.008068462, 0.004697668, -0.0015455058, -0.021498028, 0.0015262394, -0.018093728, 0.0045401854, -0.015855467, -0.009033461, 0.010842834, 0.025411636, 0.0036623045, -0.0021293636, 0.020291781, 0.006543898, -0.015667828, 0.0029603348, 0.0025800315, -0.021377403, -0.025612677, 0.007974643, -0.009127281, 0.0035718358, -0.0047780843, 0.0007995585, 0.006252388, -0.012350644, -0.0096432865, -0.0065271445, -0.0058268504, 0.008832419, 0.008430337, -0.030317046, -0.019072128, 0.018589629, 0.002412497, 0.022476431, -0.004107946, -1.4358231E-05, 0.007418428, 0.016954493, 0.024433233, 0.0035885894, 0.0026453699, 0.011640298, 0.006956033, -0.006423273, 0.0003013527, 0.0017591123, -0.017651437, 0.011533076, 0.014046093, 0.013463073, -0.043049667, 0.06481575, 0.033131626, 0.005525288, 0.017115327, -0.0005725492, 0.004553588, 0.017812269, 0.008457142, -0.0089396415, -0.0058033955, 0.0066042105, -0.00051977584, -0.017423589, 0.0135904, -0.032568708, 0.014568801, 0.008135476, -0.0013587049, 0.002772696, 0.0004686778, 0.034632735, 0.004087842, 0.010909848, -0.0013184967, 0.0024594066, -0.021779487, 0.024607468, 0.013885261, 0.008517454, 0.0007744283, 0.028681908, 0.0041381023, -0.011030472, -0.020345392, -0.00079578895, -0.013912066, -0.007612768, 0.028306631, -0.004205116, 0.01810713, 0.013362553, 0.020157753, -0.0024208736, -0.011439256, 0.0019752318, -0.0004975775, -0.017115327, -0.005139959, 0.0022751186]
+ },
+ {
+ "Id": 42,
+ "Type": "Ski/boarding",
+ "Brand": "Gravitator",
+ "Name": "Gravity 5000 All-Mountain Skis",
+ "Description": "Take on any slope confidently with the Gravity 5000 All-Mountain Skis by Gravitator. These skis feature a versatile design that excels in all conditions, from powder to hardpack. They are equipped with a lightweight wood core, carbon inserts for responsiveness, and ABS sidewalls for added durability. These skis come in a striking blue color.",
+ "Price": 699.00,
+ "Embedding": [0.004116392, 0.012141684, -0.013205922, -0.021860385, -0.008092225, 0.01610413, -0.043934956, -0.038580302, -0.0031157408, -0.04305144, 0.0107695535, 0.012630296, -0.018527111, -0.0104683535, -0.015327704, -0.0011930844, 0.018674364, -0.0068338807, -0.01892871, -0.01046166, 0.015153678, 0.015501731, -0.005762949, -0.025407845, -0.003982526, 0.0036712864, 0.015193838, -0.012389337, -3.579358E-05, -0.0048861243, 0.03269018, -0.016304929, -0.015635597, -0.018540498, -0.0038051528, -0.0018674365, -0.0037884195, -0.017576661, -0.017630206, 0.024323527, 0.01634509, -0.0053546564, -0.003734873, -0.023453396, -0.001201451, 0.0042100986, -0.007282333, -0.037643235, -0.02021383, -0.013607521, 0.0070882267, 0.03451076, -0.033493377, -0.013400028, 0.009015903, 0.0046752845, 0.012837789, 0.011813711, 0.0012273877, -0.00697444, -0.006345268, -0.014337093, -0.010301021, 0.023105344, -0.011003819, -0.017831007, -0.01606397, -0.008366651, -0.0056993626, -0.00898913, -0.0014641639, 0.009337182, 0.019102737, -0.0012114911, -0.005548763, -0.010234088, 0.005016644, 0.009604915, -0.023025023, 0.010153768, 0.02275729, -0.006241522, 0.003147534, 0.030655408, 0.003989219, 0.0050300304, 0.005284377, 0.0063519613, -0.015461571, -0.012938189, 0.013935493, 0.00870801, -0.0054316297, 0.020535108, -0.030842822, 0.0025668885, -0.0015997037, 0.011646378, -0.03017349, -0.017643593, 0.014899332, 0.02360065, 0.0012851176, -0.010394727, -0.027576482, 0.0027676881, -0.0077575585, -0.001396394, 0.0109435795, 0.0019126164, -0.037134543, -0.025046406, 0.014912719, -0.021418625, 0.011258165, 0.015675757, 0.04428301, 0.00010704084, 0.021994252, -0.043345947, 0.028352907, -0.006425588, 0.024845606, -0.020106735, -0.012717309, 0.02813872, -0.023734516, -0.010856566, 0.012964962, -0.0002988986, 0.028808052, 0.018620819, 0.00846705, 0.0010960313, -0.017924713, 0.018848391, -0.002143536, 0.025581872, -0.035260413, 0.019879162, 0.00070363533, 0.0071216933, -0.031753115, 0.009410809, -0.016077356, 0.009424196, -0.0050668437, -0.005555456, 0.0214454, -0.03392175, 0.019798843, -0.0025752552, 0.029423838, 0.022087958, 0.0041532055, -0.022529718, 0.017482953, 0.028326133, -0.047495805, -0.009926194, -0.008620997, 0.013761467, 0.010756167, 0.00050994736, 0.0054650963, 0.023386464, 0.005555456, 0.0048426175, 0.0046618977, -0.006907507, 0.01949095, 0.028004853, -0.020200443, 0.02902224, 0.02813872, 0.009357262, 0.011211312, 0.017924713, -0.016706528, 0.02335969, 0.008507211, -0.005173937, -0.0049430174, -0.009357262, -0.006167895, -0.0030237075, -0.0033784537, 0.010200621, 8.779754E-05, -0.031137329, 0.00359766, 0.011653071, -0.0013779874, 0.009939581, -0.6584086, -0.0424892, 0.004765644, -0.03001285, 0.039678004, 0.03531396, 0.030869596, 0.021579266, -0.009712009, -0.011934191, -0.030548315, 0.0155552775, -0.0032378938, -0.01235587, -0.01231571, -0.0021954093, 0.011465658, -0.0126236025, -0.01558205, 0.0106223, -0.01904919, 0.0010048348, -0.020026416, 0.008145771, 0.01418984, 0.010843179, -0.0035073, -0.00916985, -0.02471174, 0.031057008, -0.00870801, 0.045327168, -0.011619605, 0.002310869, 0.041016668, -0.031753115, -0.024524327, 0.033814657, 0.02821904, 0.029263198, -0.030682182, -0.015073358, 0.008446971, -0.0077374787, -0.0016273136, 0.017831007, 0.01709474, -0.008480437, -0.0031994074, -0.020856388, 0.007717399, -0.0053646965, 0.017295541, -0.0003089386, 0.006127735, -0.008226091, 0.032850817, 0.030869596, -0.017482953, 0.020401241, 0.00904937, 0.013359868, -0.018031806, -0.021311533, -0.023801448, 0.006100962, -0.027014242, 0.0025350952, 0.039008673, -0.020735908, 0.037080996, 0.024698354, -0.0029199612, 0.01386856, 0.0076504657, 0.014470959, 0.026733123, -0.00015593346, 0.007931585, 0.016398637, 0.0048827776, 0.009116303, -0.027054403, -0.012201924, 0.022034412, -0.008774944, -0.017188448, 0.014015813, 0.03742905, 0.0027609947, 0.0059972154, 0.015046585, -0.013547281, -0.029530931, 0.013386642, 0.0056993626, -0.025327526, 0.010843179, 0.026090564, -0.021231214, -0.0070480667, -0.0059470152, -0.0073559596, 0.000529609, 0.0064088544, 0.004748911, 0.004825884, -0.005046764, 0.012081444, -0.015448185, 0.018112127, -0.023895156, -0.004752258, -0.01821922, 0.004993217, -0.020615429, -0.00036666848, -0.008975743, 0.00043422918, -0.029156106, 0.03574233, 0.015381251, 0.0044979113, 0.014096133, -0.048673827, 0.020695748, 0.00544167, 0.0013453575, -0.016197836, 0.0056692427, -0.00051496737, 0.022007639, 0.013185842, -0.0039289794, 0.018567272, 0.021739906, 0.0103411805, 0.0012876276, 0.0280584, -0.023828221, -0.035180096, -0.025421232, 0.004936324, 0.011679845, 0.0023778023, 0.0123692565, -0.033038232, -0.008072144, -0.009999821, -0.016304929, -0.013687841, -0.0009111283, 0.0048626973, 0.013935493, 0.009404115, -0.0071283868, -0.0031374942, -0.027402455, 0.013359868, -0.009471049, 0.01606397, 0.0037281797, -0.00181389, 0.011740085, 0.008513904, -0.029959304, -0.022302145, 0.024618033, -0.00876825, -0.034457214, -0.021217827, -0.0024447355, 0.0053914697, 0.016130904, -0.016197836, -0.008882036, -0.020066576, 0.0077307853, -0.013038589, -0.008835183, 0.007469746, 0.013259469, -0.04492557, 1.0340657E-05, 0.017603433, 0.0280584, 0.012248777, 0.00081323844, -0.026974082, -0.008587531, -0.026759896, 0.040133152, -0.003365067, -0.011960964, -0.030414449, -0.014725305, 0.012429496, -0.015247385, -0.015836397, 0.027978081, 0.009410809, -0.014644986, 0.000894395, -0.008835183, 0.027710348, -0.0069543603, 0.00876825, -0.019972868, 0.0061545083, -0.0067134006, 0.0067569073, -0.019879162, -0.027844215, -0.022395851, 0.0010332814, -0.0039992593, -0.002448082, 0.01594349, 0.005063497, -0.0078847315, 0.012556669, 0.0103211, 0.014792238, -0.012068057, -0.027268589, 0.011110912, -0.018888552, 0.011947578, 0.028326133, 0.00022610874, 0.004424285, 0.0004986524, 0.023172276, -0.006710054, 0.0066297343, 0.0065259878, -0.003932326, -0.016251383, 0.053064648, -0.021793453, 0.023185663, 0.006837227, 0.0030990075, -0.00707484, 0.004039419, -0.0051404703, 0.019263377, 0.00019285131, 0.005652509, 0.014055974, -0.02654571, 0.026800057, 0.0149528785, -0.0048626973, 0.027014242, -0.016157676, 0.027710348, 0.01582301, 0.0026271283, 0.017148288, 0.00697444, 0.02467158, -0.0014608173, 0.0053780833, 0.017442795, 0.007396119, -0.013072056, -0.008252865, -0.011552672, -0.0155552775, -0.009370649, -0.037080996, 0.002498282, -0.001056708, -0.002220509, -0.0019176364, 0.00886865, 0.0009680215, -0.015930103, 0.009899422, -0.021418625, -0.03675972, -0.00041122088, 0.0034637935, -0.008620997, 0.0011403746, -0.01225547, -0.008493824, 0.0027375682, 0.021378467, 0.0005011624, 0.01570253, -0.031057008, -0.005652509, -0.011412112, -0.019798843, 0.013152375, -0.011666458, 0.029316746, -0.01933031, -0.010628994, -0.022141505, 0.003187694, -0.041632455, 0.03352015, -0.0037080997, -0.027281975, -0.013881947, 0.010093528, -0.0048459643, 0.004039419, -0.009196622, -0.0015260772, -0.01809874, -0.015515117, -0.0040862723, 0.009042677, -0.0105219, 0.04072216, -0.004287072, -0.011873951, -0.022275371, -0.014778852, -0.022904543, 0.06355977, 0.0045681912, -0.016090743, 0.027362294, -0.0058968156, -0.004768991, -0.022971477, 0.000343451, -0.0017252035, 0.0210438, 0.029557705, 0.014711919, 0.0073157996, -0.02686699, 0.03456431, 0.014979652, 0.017027808, -0.008734783, -0.020816227, 0.013246082, -0.0149528785, 0.016827008, 0.016090743, 0.022114731, -0.00725556, 0.0177373, 0.007596919, 0.010628994, -0.0024363687, -0.01418984, -0.008326491, -0.008694624, -0.003182674, -0.014912719, -0.027710348, -0.006452361, -0.014698532, -0.020829614, -0.011345179, -0.006030682, 0.025407845, -0.002593662, 0.0021669625, -0.022610037, 0.0022472825, -0.00884857, 0.015541891, 0.019290151, 0.012703923, -0.021699745, 0.014752079, 0.016331702, -0.011780244, -0.0017820967, -0.009511209, 0.02945061, -0.020615429, -0.014296933, -0.0012842809, -0.0623282, -0.008085531, -0.015367865, 0.019316923, -0.007931585, -0.0029701611, -0.017175062, -0.032235034, 0.031378288, -0.013908721, 0.008353264, 0.001406434, -0.044336557, -0.0063519613, 0.010595527, 0.023895156, 0.01880823, 0.0070614535, -0.008346571, 0.016746689, 0.01598365, 0.0031542273, -0.027817441, -0.011298326, 0.00013219309, 0.011827097, 0.0126236025, 0.00039260508, 0.017241994, -0.00077056856, -0.006582881, 0.013500428, 0.004541418, -0.017201833, 0.0008358284, -0.011218006, -0.007101613, 0.026572483, 0.020776067, 0.0013378275, -0.021887159, 0.012944883, -0.019223217, 0.0055755363, -0.010856566, 0.016077356, 0.010495127, 0.02547478, 0.0016858801, 0.016519116, -0.011151073, 0.011064059, -0.026559096, 0.009035983, -0.006147815, -0.022382464, 0.023332916, 0.03694713, 0.021780066, -0.010782939, -0.01638525, -0.0027576482, -0.025367685, 0.03579588, 0.042623065, -0.008855264, 0.012188537, 0.0053646965, 0.006044069, -0.018259378, -0.011452272, -0.0033767803, -0.004277032, 0.042301785, 0.008272944, -0.018473566, -0.004601658, -0.043453038, 0.022529718, 0.013205922, -0.0011763511, -0.009645076, 0.023065183, -0.0063486146, 0.0033567003, -0.019758683, -0.014725305, -0.032850817, 0.029798664, -0.020013029, 0.038366113, -0.01721522, -0.010649073, -0.029477384, -0.035528146, -0.0029868945, -0.023801448, -0.0063318815, 0.014203226, 0.045568127, 0.027576482, -0.003932326, 0.007657159, 0.01414968, 0.0069208937, -0.008386731, -0.010869953, -0.0026070485, -0.009243476, -0.021980865, 0.008098918, 0.013179149, -0.01219523, -0.007817798, -0.011947578, -0.010495127, 0.011693232, -0.009912808, -0.023279369, -0.014578053, -0.050547957, 0.022395851, -0.018366473, 0.002792788, 0.002138516, -0.03400207, -0.00526095, 0.02622443, -0.010354567, -0.014377253, 0.0068740402, 0.028165493, -0.02578267, 0.039142538, 0.023493556, 0.028888373, -0.015180452, -0.007382733, -0.023493556, -0.0027727082, -0.0018590698, -0.015689144, 0.012790936, 0.0042234855, 0.0056993626, -0.025809444, 0.0004526358, -0.013774854, -0.0014030874, 0.0074831326, -0.014885945, -0.009805715, -0.014163067, -0.014872558, -0.029959304, 0.0035909666, 0.024377074, -0.012549977, 0.030253809, -0.029557705, -0.020320922, 0.026679577, -0.012911416, 0.025448006, 0.0024915887, 0.02120444, 0.025514938, -0.015233998, -0.00035683767, -0.013078748, 0.00018281132, -0.0082662515, 0.002255649, 0.0013336441, -0.037402276, -0.010983739, 0.002685695, -0.010060061, -0.02021383, -0.01837986, 0.0032395672, -0.0027174882, 0.015461571, -0.020267375, -0.0065192943, 0.009497822, 0.027442615, 0.0034119203, 0.016773462, -0.00088017166, -0.0062783347, -0.027870987, 0.024283368, -0.008132385, 0.005244217, 0.016291542, -0.03432335, 0.0050400705, 0.00013899099, -0.003704753, 0.020789454, 0.004404205, 0.030387675, -0.011907417, 0.009973048, 0.031833433, 0.0095647555, -0.0033567003, 0.0009395749, 0.0024899154, 0.024899153, -0.0098659545, 0.0066832807, 0.007677239, 0.00066180207, 0.02977189, -0.017563274, -0.020066576, 0.0036411665, 0.011800325, -0.012382643, 0.010093528, 0.017911326, 0.014270159, -0.036920357, -0.014564666, -0.019731909, -0.014216613, 0.0055621495, -0.0061043086, -0.024055794, -0.01904919, -0.01223539, 0.014444186, -0.00898913, 0.015140291, -0.0140024265, 0.00095547154, 0.0029818744, -0.039463818, 0.008560757, 0.02686699, 0.011572751, -0.017844394, 0.020816227, 0.014363866, -0.013734695, -0.011539285, 0.018138899, -0.0216462, -0.021994252, 0.011037285, -0.0038988593, 0.009042677, 0.010354567, -0.004819191, 0.017911326, 0.0220478, -0.01267715, -0.018473566, -0.005478483, 0.020253988, 0.0028446612, 0.020508334, -0.007857959, 0.0073291864, -0.0075567593, 0.014926105, 0.00904937, -0.041686002, -0.006422241, -0.0013403374, 0.00176369, 0.021472173, -0.020843001, -0.0027124682, -0.009772249, 0.0047455644, 0.027549708, 0.0105152065, -0.01253659, 0.016733302, -0.003852006, 0.021150893, 0.017991645, -0.008815103, -0.021311533, 0.008694624, -0.02918288, -0.026264591, -0.0025719085, -0.0015369537, 0.06259593, -0.0060072555, -0.02311873, 0.0033031537, 0.02307857, -0.032342125, -0.001956123, -0.0035106468, 0.012061364, 0.034028843, 0.009457662, -0.0014850806, 0.0021552492, 0.012958269, 0.0012248777, 0.010903419, 0.0046886713, -0.0018038499, 0.01582301, 0.013440188, -0.031110555, -0.017001035, -0.022021025, 0.012590136, -0.00013282058, 0.012141684, -0.004106352, -0.01026086, -0.0016959201, 0.0013612541, 0.00916985, 0.03220826, 0.03531396, 0.020039802, -0.024430621, -0.007489826, 0.0006446504, 0.0027459348, 0.010173848, 1.2935627E-05, -0.00061243883, -0.0040026056, 0.02192732, 0.003892166, -0.032154713, -0.024162889, -0.0070882267, 0.010782939, 0.0010901747, 0.010133687, 0.031351514, 0.0027543015, -0.03311855, -0.002965141, 0.035688788, 0.0071685463, -0.0046183914, -0.0020213828, -0.0016457202, -0.007590226, 0.0052944166, 0.0041030054, 0.018045193, -0.01046166, -0.015849784, -0.011097526, -0.015501731, 0.0152072245, 0.012837789, -0.0049831774, -0.0020079962, 0.006171242, -0.0021268027, 0.017322315, -0.011325099, 0.009015903, -0.049102202, -0.0029283278, 0.023573875, -0.00070614537, 0.0055922694, 0.017456181, 0.009256862, -0.0152072245, 0.032502767, 0.19662298, -0.010916806, -0.008500517, 0.039035447, 0.011753472, 0.006776987, -0.0026990816, -0.0045347246, -0.010555367, 0.00530111, 0.032422446, 0.0050501106, -0.013460268, -0.008734783, 0.022556491, -0.00027568114, -0.034028843, -0.014417413, 0.0056893225, -0.018192446, 0.0032161407, 0.014805625, 0.015140291, -0.013286241, -0.014484346, 0.016974261, -0.0076705455, -0.008092225, -0.011264859, 0.017804233, 0.019758683, -0.017549887, 0.002198756, -0.009892728, 0.0016791868, 0.0006768621, 0.009986434, -0.016974261, -0.000544669, 0.019905936, -0.00840681, 0.004581578, 0.024296755, 0.0042502587, 0.0005103657, 0.03376111, -0.0016072337, 0.016291542, 0.01056206, 0.0052274833, -0.023346303, -0.014698532, -0.0065293345, 0.013962267, -0.014096133, 0.0019996297, 0.007918199, -0.04259629, -0.0038118463, -0.014524506, -0.030200263, 0.031699568, -0.0036210865, 0.04714775, -0.021311533, 0.0076504657, -0.004678631, -0.033065006, 0.015769463, -0.009424196, -0.0042837253, 0.01725538, -0.002093336, 0.035929747, 0.0072153998, -0.0152072245, 0.0033433137, 0.002558522, 0.018741298, -0.003120761, -0.012663763, -0.0031441874, -0.0016967568, -0.008145771, -0.01924999, -0.025166886, 0.009330489, 0.020428015, -0.0358762, 0.013118909, 0.0033466604, -0.0042904187, 0.013205922, -0.0023744556, -0.0048593506, 0.013493734, -0.046371326, -0.0013754774, -0.019276764, -0.0042703385, 0.000517059, 0.0075299856, 0.009297023, 0.012288936, -0.006609654, 0.01880823, -0.0073760394, 0.00093204493, -0.013667761, -0.016438795, 0.001056708, -0.035608467, 0.011030593, -0.012944883, -0.02902224, 0.0122755505, -0.012054671, -0.024377074, -0.0105152065, -0.026331523, 0.018446792, -0.009404115, 0.02052172, -0.0011253145, 0.004906204, -0.014444186, -0.011405419, 0.011298326, 0.011860564, -0.020990254, -0.014845786, -0.01406936, 0.011271552, -0.014417413, -0.0028095213, 0.0055420697, 0.010347874, -0.025675578, -0.023292756, -0.023828221, 0.00018720381, 0.0033215603, 0.007744172, 0.009015903, 0.022369077, -0.0035039533, -0.0026053751, -0.015461571, -0.0031994074, -0.013607521, -0.006787027, 0.0032378938, -0.014725305, -0.006040722, 0.004089619, 0.008306411, -0.02279745, -0.012523203, 0.009437582, 0.012215311, -0.019839002, 0.007871346, 0.026398458, -0.024176275, -0.019116124, -0.013547281, -0.17081355, 0.017041195, 0.00548183, -0.014524506, 0.017134901, -0.00519067, 0.021860385, 0.023426622, -0.019624816, -0.017469566, -0.001246631, 0.01837986, -0.004327232, -0.037321955, 0.018245993, 0.0023744556, 0.0014850806, 0.008721397, -0.004681978, -0.00177875, 0.012998429, -0.020454789, -0.013841787, 0.0069945203, 0.018861778, -0.025836218, -0.006552761, -0.001641537, 0.00035432767, 0.0071618534, 0.013895334, -0.006552761, 0.005548763, 0.012837789, 0.023680968, -0.00709492, -0.027710348, 0.010816406, -0.029798664, 0.008306411, 0.016626209, -0.0064322813, -0.003982526, -0.017590048, 0.020655587, 0.0006668221, 0.0034119203, -0.012616909, -0.0017268767, -0.033038232, 0.01797826, 0.0037114464, -0.00010160252, 0.02364081, 0.023091957, 0.0026221084, 0.018594045, 0.010970352, 0.013788241, -0.007924892, -0.012262164, -0.0018590698, -0.00095463486, -0.012844482, -0.0017452834, -0.015930103, 0.016612822, -0.00032107023, -0.032583084, 0.0022606691, -0.006710054, 0.025809444, -0.017201833, 0.0027141415, 0.014216613, -0.0023476821, -0.029209651, 0.0183397, 0.01410952, -0.019263377, -0.007342573, 0.04583586, 0.008239478, -0.008293024, -0.026733123, 0.008734783, -0.01765698, -0.011740085, -0.006177935, -0.033948522, 0.016652983, -0.020026416, -0.029664798, -0.013881947, -0.0036779798, -0.007911505, 0.02323921, -0.018553885, 0.005043417, -0.0027308748, 0.0023744556, 0.0030755808, -0.02116428, 0.009223396, 0.026090564, -0.002655575, 0.012242083, 0.041712776, 0.0140292, -0.006254908, -0.009892728, 0.011786938, -0.0043606986, 0.023413235, 0.0034370201, 0.01265707, 0.009464355, -0.0206422, 0.010414807, -0.0105152065, -0.01578285, -0.0062515615, -0.033734336, 0.01908935, -0.009544675, 0.012978349, -0.09445614, -0.008078838, 0.029209651, 0.025327526, 0.010749473, 0.009966355, -0.00037608095, 0.013219308, -0.0029868945, 0.012616909, 0.001279261, -0.02638507, -0.010689233, 0.003187694, 0.017469566, -0.01594349, 0.0035073, -0.019504337, -0.012081444, 0.012837789, -0.010816406, 0.011037285, -0.027134722, -0.012503123, 0.011264859, 0.013400028, -0.030467996, 0.01749634, 0.01850034, 0.011813711, 0.0030337477, 0.001036628, 0.008694624, -0.011485739, -0.018486952, 0.005314497, -0.04021347, -0.0013277875, 0.014524506, -0.024377074, 0.0016398636, 0.02279745, -0.015341091, -0.017389247, 0.00027756364, -0.00021606876, -0.015394637, 0.0059403223, 0.0037582996, 0.0056592026, -0.03392175, -0.03807161, -0.0065192943, -0.018607432, -0.0065159476, -0.033038232, 0.0061043086, 0.0076103057, 0.014993038, 0.0049831774, -0.012750776, 0.0042636455, 0.013855174, 0.03611716, 0.00894897, -0.025702352, 0.0051973634, -0.013935493, 0.021351693, 0.004611698, -0.006927587, 0.026037017, -0.0039590993, 0.030708956, -0.006927587, 0.021913933, -0.028647413, -0.029504158, 0.017308928, -0.01741602, -0.021539107, -0.01737586, 0.016599435, -0.006325188, 0.036973905, 0.012248777, -0.0035541533, -0.01761682, 0.025688965, -0.04305144, 0.0036311266, 0.008821797, 0.039918967, -0.021311533, 0.014792238, 0.015233998, 0.01737586, 0.002565215, -0.032154713, -0.001421494, -0.050119586, -0.015916716, -0.059168953, 0.024845606, 0.028085174, -0.010140381, -0.013326402, -0.0106223, 0.009845875, -0.033466604, 0.011278246, -0.008092225, -0.011291632, -0.003654553, -0.001434044, 0.0060741887, -0.01386856, -0.0105219, 0.020856388, 0.017911326, 0.029343517, -0.008754863, -0.020039802, 0.0048325774, 0.0025685618, 0.008754863, -0.021338306, -0.0028312746, -0.025688965, 0.03180666, 0.002980201, -0.016465569, 0.019102737, 0.008560757, 0.02902224, 0.030467996, -0.005003257, -0.019504337, 0.020294148, -0.0005601473, 0.018433405, -0.005117044, -0.008339877, -0.008520598, 0.016251383, -0.033707563, 0.0026137417, 0.013473654, 0.015019812, -0.0006417221, 0.03033413, 0.02192732, 0.016773462, 0.0424892, 0.0037382196, -0.04738871, -0.0220478, -0.042917572, -0.0028312746, 0.01626477, -0.00528103, -8.079047E-05, 0.024457393, 0.006706707, 0.034939133, 0.010013208, 0.0072488664, -0.0024966085, -0.012442883, -0.0016072337, 0.021579266, -0.0216462, -0.013533895, 0.016733302, 0.019383857, 0.013058669, 0.0023125424, -0.0011462312, 0.0023041756, 0.019557884, -0.007898118, 0.014524506, 0.013774854, 0.006495868, -0.032101166, -0.006295068, 0.01725538, 9.506607E-05, -0.03132474, 0.014564666, -0.032609858, 0.017442795, -0.018580658, 0.004246912, -0.02837968, -0.010729393, 0.020668974, 0.013179149, 0.004303805, -0.018607432, 0.017844394, 0.0025568486, 0.0052944166, -0.004149859, -0.0074563595, -0.00840681, 0.0049831774, 0.025394458, -0.03512655, -0.010200621, -0.016572662, 0.009986434, 0.009122997, 0.027362294, -0.0047589513, 0.0067134006, 0.014136293, 0.013239388, -0.00060574553, -0.036518756, -0.008393425, 0.007141773, 0.009256862, 0.0053245365, 0.0027676881, -0.026411844, 0.0018256032, 0.0047823777, 0.00719532, 0.015434798, 0.00030747443, -0.014872558, 0.029878983, -0.009350569, 0.01586317, 0.0026053751, 0.009370649, -0.01058214, 0.006653161, 0.025715739, 0.0069610537, 0.06939635, 0.00052919064, -0.019785456, 0.0006228972, -0.0050835772, -0.0003329927, 0.02009335, 0.007436279, -0.002103376, -0.020334309, -0.0008659484, -0.011880645, 0.0013428475, 0.016532503, -0.0037382196, 0.0070413733, 0.009464355, 0.026599256, -0.04117731, -0.021097347, 0.038580302, -0.001961143, 0.039651234, -0.004641818, 0.010796326, -0.022743903, 0.024497554, 0.014778852, 0.009076143, -0.02993253, 0.009450969, 0.012302323, -0.031860206, -0.016840395, -0.017121514, -0.028647413, -0.003212794, 0.0034939134, -0.020294148, 0.027549708, 0.021900546, 0.00033822187, -0.02247617, -0.01933031, -0.0019226564, 0.008118998, -0.026318137, -0.018486952, -0.006927587]
+ },
+ {
+ "Id": 43,
+ "Type": "Ski/boarding",
+ "Brand": "Legend",
+ "Name": "Glacier Frost Snowboard",
+ "Description": "Tame the snow-covered peaks with the Glacier Frost Snowboard from Legend. This high-performance board is constructed with a hybrid camber profile for excellent edge control and superior maneuverability. The board is built with a carbon fiber composite core for lightweight strength and optimal flex, enabling you to take your snowboarding skills to new heights. Available in a cool white color with vibrant frost graphic.",
+ "Price": 419.99,
+ "Embedding": [-0.010797444, 0.0043970314, -0.024873147, -0.038532563, -0.009659159, -0.0011041362, -0.04186286, -0.033693228, 0.013145562, -0.045687497, 0.0019578498, 0.010647841, -0.020489125, -0.015623771, -0.0011805638, -0.008117597, 0.023949511, -0.008729017, -0.012397546, -0.004377518, 0.0031497965, 0.006771168, 0.020840367, 0.0080395425, -0.007642769, -0.017327946, 0.027214762, -0.0020082595, -0.0036977993, 0.018889021, 0.029894609, -0.0009057494, 0.0027026131, -0.0015838419, -0.023208, -0.023611277, -0.0035677096, -0.0020050071, 0.002323727, 0.008618441, 0.011434883, -0.028385568, -0.0011057623, 0.022518525, 0.019318318, 0.0018245078, 0.0022115246, -0.020827359, 0.0019123183, 0.008215164, 0.02043709, 0.021842057, -0.02724078, -0.0117470985, -0.0028294506, -0.00564264, 0.024743058, -0.012956932, 0.032730564, -0.017340954, -0.01362039, -0.022869766, -0.0057824864, 0.0021985157, 0.0084883515, -0.016794577, -0.021646922, 0.008768044, -0.012124359, -0.0011456023, 0.00035368133, 0.0047742915, 0.024365798, 0.01475217, -0.0089761885, -0.02734485, 0.0003502258, 0.011883693, -0.015064385, 0.009392475, 0.0337973, -0.03215817, -0.0015334322, 0.02622608, 0.005080002, 0.02055417, 0.0073955986, -0.015727842, -0.021998165, -0.01588395, 0.024665004, 0.009899825, -0.0075582108, 0.03632104, -0.022661623, 0.005011705, 0.0080395425, -0.0001582419, -0.016183157, -0.010862488, 0.02207622, 0.030857272, 0.0037530873, -0.017614143, -0.02622608, -0.024886156, 0.021646922, 0.024886156, 0.019760624, -0.006302845, -0.03967735, 0.029920626, 0.017939366, -0.02508129, 0.009815266, 0.008429811, 0.049277972, -0.016573425, 0.03429164, -0.026668385, 0.020606205, 0.016183157, -0.0014570045, -0.026278116, -0.010413679, 0.01115519, -0.017236883, -0.004406788, -0.0017301928, -5.315383E-05, 0.02457394, -0.007844408, -0.014765179, -0.027292816, -0.03343305, 0.0043449956, 0.0014342387, 0.00271237, -0.0029855582, 0.016053068, -0.00018741045, 0.009815266, -0.025705721, -0.009236367, 0.00163913, 0.01728892, -0.017249892, 0.0009862424, 0.013139058, -0.017002722, 0.019760624, -0.00945752, 0.02711069, 0.025250407, 0.01412774, -0.017536089, -0.003226224, 0.030935327, -0.028853891, -0.002055417, 0.006127224, -0.0021172096, 0.00902172, -0.0015903463, 0.01141537, 0.03291269, -0.012104845, -0.03416155, 0.018095475, -0.004624688, 0.009145305, 0.02508129, -0.02622608, 0.03390137, 0.0011919467, 0.0070573655, -0.01499934, 0.008462334, -0.0030587337, -0.007376085, -0.001759463, -0.014726152, 0.009672168, 0.008839594, -0.009659159, -0.020020802, 0.008429811, -0.0045889136, 0.0008289152, -0.021737985, -0.025276426, 0.025367487, 0.024769075, 0.01956549, -0.655652, -0.012969941, 0.013021978, -0.028697783, 0.005320668, 0.01292441, 0.019630533, -0.0075126793, -0.0043645087, 0.0127943205, -0.014908277, 0.019240264, -0.0078118853, -0.023689331, -0.007766354, -0.02005983, 0.015428636, 0.0015708329, -0.010081951, 0.0054800278, -0.020983465, 0.0020245207, -0.030310895, -0.015311556, 0.0037238172, -0.0076102465, -0.0036295021, -0.009294908, -0.017536089, 0.031039398, -0.04019771, 0.024222698, 0.003239233, 0.013893578, 0.045063067, -0.022375425, -0.01626121, 0.031039398, 0.0211786, 0.037882116, -0.029660448, -0.000785823, 0.0018342645, 0.0066866097, 0.0012602438, 0.015155448, 0.0072980314, -0.0028261985, -0.0020798089, -0.009561592, 0.01956549, -0.023416143, 0.014856242, 0.0040002577, -0.0011090145, -0.0130935265, 0.02825548, 0.014270838, -0.011506433, 0.015168457, -0.018342646, 0.031481702, -0.0064979796, -0.012586176, -0.032418348, 0.018459726, -0.025185363, -0.013061004, 0.040900197, -0.014270838, -0.0074086073, 0.027396888, -0.013288661, 0.022037191, -0.0070443563, 0.034005444, 0.03533236, -0.010947047, 0.010394165, 0.00655652, 0.0101925265, 0.010699877, 0.0016017292, -0.019084156, 0.014687126, -0.025874838, 9.1215225E-05, 0.008247686, -0.00825419, 0.0036880425, 0.026525287, 0.039183013, -0.021633914, -0.023689331, 0.0019838677, -0.0011399109, -0.015077394, 0.024053583, 0.031091435, -0.03226224, -0.0037238172, -0.00744113, 0.024248717, -0.0033920885, 0.01576687, 0.00365552, -0.025887847, -0.022726668, 0.021022493, -0.003385584, 0.009047737, -0.019084156, -0.02355924, -0.008709504, -0.0057011805, -0.01449199, -0.0005053171, -0.0051645604, -0.0024619473, -0.034473766, 0.003101013, -0.0020261467, 0.004543382, -0.004283203, -0.016092094, 0.0030912561, 0.0018781698, -0.0044035357, -0.012352016, -0.009808762, 0.0011269018, 0.009236367, 0.025068281, -0.026668385, -0.00065532676, 0.02218029, 0.0115974955, 0.0059678643, 0.022973837, -0.02545855, -0.033589154, 0.0028522164, -0.016820597, 0.012638213, -0.016794577, -0.0052881455, -0.012586176, 0.003209963, -0.017757243, -0.012267457, -0.0154156275, -0.0144789815, -0.003035968, 0.017106794, 0.008364767, -0.013087022, 0.0043580043, -0.02281773, -0.0012423565, -0.0001273456, 0.019383363, -0.005011705, -0.0127943205, 0.012839852, 0.012787816, -0.0091062775, -0.014518009, -0.008716009, -0.013386228, -0.027162725, -0.020372044, -0.011818647, 0.00038051233, 0.008182641, -0.0011878815, -0.0076752915, -0.00062849576, -0.018225564, -0.01330167, -0.016950686, -0.00279205, 0.02003381, -0.033719245, -0.0010708007, 0.038272385, -0.006693114, 0.02420969, 0.03678936, -0.022388434, 0.010823461, -0.0077013094, 0.044828903, -0.000510602, -0.0048621017, -0.013178085, -0.022362417, 0.0050832545, -0.011018596, 0.0006866296, 0.023338089, 0.006107711, -0.0221933, 2.8050588E-05, -0.0068947533, 0.028125389, -0.0070768786, 0.017991403, -0.030805238, 0.0368414, 0.0007862295, 0.021907102, -0.04058798, -0.007024843, -0.02281773, 0.00921035, -0.0071028965, -0.017692197, 0.02043709, -0.0060524223, -0.008559901, 1.8967177E-05, 0.00020804186, 0.03127356, -0.012215422, -0.0020651738, 0.0036164932, -0.0026928564, 0.0017675936, 0.012462592, -0.011564973, 0.013802515, 0.006198773, 0.010569787, -0.004663715, 0.009535573, 0.0034506288, -0.0033221652, -0.014596063, 0.043814205, -0.011116164, 0.026330153, 0.020723287, 0.019773632, -0.008748531, 0.010329121, 0.022401443, 0.00065613986, -0.0004662902, -0.006810195, 0.009639646, -0.034707926, 0.0048295795, 0.00825419, 0.0011976381, 0.004042537, -0.00832574, 0.017471045, 0.0014098469, 0.008312731, 0.009444511, 0.0039449697, 0.020645233, -0.013223616, -0.019838676, 0.030180806, -0.016872631, -0.019383363, -0.041888878, -0.015519699, -0.030362932, -0.0034864035, -0.0011260888, 0.00038335804, 0.0053824605, -0.0026099242, -0.014908277, 0.019955758, 0.025029255, 0.009262386, 0.033328976, -0.004205149, -0.03163781, 0.015584744, 0.009294908, -0.0031237786, -0.0053499383, -0.021881085, -0.02231038, 0.006234548, 0.023403134, 0.008260695, 0.0027237528, 0.00081712584, -0.0008358262, 0.007902948, -0.012143872, -0.0020505385, -0.016625462, 0.027084673, 0.02169896, -0.0036782857, -0.0030668643, 0.008124101, -0.023754377, 0.026200062, 0.013802515, -0.012234935, 0.0012236561, 0.015519699, -0.006114215, 0.017679188, -0.02609599, -0.00491739, -0.040431872, -0.011337316, 2.1101461E-05, 0.009932348, -0.026122008, 0.030571075, -0.01462208, -0.009320926, -0.0053271726, -0.0064557004, -0.024521906, 0.07997914, 0.022479497, -0.008924152, 0.017679188, -0.0025839063, -0.0050474796, 0.0044393106, -0.017601134, 0.0036067364, -0.020333018, 0.03678936, 0.031351615, -0.012111349, -0.025263416, -0.013776497, -0.0022261597, -0.0063093496, -0.006202026, -0.020957448, -0.0074541387, -0.007024843, -0.012638213, 0.014439954, 0.014426946, 0.014101721, 0.008371271, 0.0019985028, 0.012989455, -0.020163901, -0.010543769, -0.030102752, -0.008026534, -0.0027318834, 0.0043319864, 0.0028050588, 0.017171837, 0.016027048, -0.040379837, 0.0068882485, -0.01425783, 0.014505, -0.0044132923, 0.0035514482, -0.0016944181, 0.0059743687, -0.0027383878, -0.0014009032, 0.023286054, 0.020567179, -0.018498752, 0.019175218, -0.0089761885, -0.03429164, 0.021347716, -0.01766618, -0.0033888363, -0.00080980826, 0.015975013, 0.020007793, -0.02583581, -0.022960829, -0.018563798, -0.0028928693, -0.02180303, -0.0074866614, -0.013002464, 0.0019123183, 0.028203443, 0.0068557262, 0.0055320635, -0.002779041, -0.007551706, -0.025406515, -0.0055645863, 0.036295023, -0.0023969023, -0.008377776, 0.001210647, 0.008846099, -0.0043872744, 0.0151164215, -0.013438264, -0.005681667, -0.005066993, -0.011987764, -0.022505514, 0.025263416, 0.013217112, -0.01172108, 0.0018147511, 0.012397546, -0.0016578304, 0.0013309801, -0.009626636, -0.026317142, 0.012540645, 0.018524772, 0.009717699, 0.022622596, -0.013646408, 0.0074476344, -0.020489125, -0.019006103, -0.0011586113, 0.012612195, -0.008234677, 0.0045173643, 0.010173013, 0.014036677, 0.004823075, 0.009288403, -0.011480414, -0.01273578, 0.010543769, 0.0070768786, 0.009184332, -0.0066313217, 0.026772456, -0.015103412, -0.0184207, 0.031065416, -0.049642224, 0.03101338, -0.0061337287, -0.004432806, 0.02004682, -0.009490042, -0.004780796, -0.007226482, 0.008117597, 0.0053857127, 0.018082466, 0.009769735, 0.016820597, -0.028957963, -0.004959669, -0.018303618, -0.011688558, -0.0002599761, 0.0076752915, -0.03972939, 0.011636522, 0.007837904, 0.000114235, -0.01084948, -0.022531534, -0.007994011, 0.019240264, -0.004097825, 0.032574456, -0.040509928, -0.0024733301, -0.0269806, -0.011363334, 0.017080775, -0.021334708, -0.0043612565, 0.004780796, 0.020320008, 0.034213588, -0.0018895527, -0.015610762, -0.013314679, -0.008566406, -0.023754377, -0.00071142794, -0.010374652, -0.0031985801, -0.03746583, 0.01002341, 0.026876528, 0.0063386196, -0.009041233, -0.024287743, 0.017106794, -0.013685435, -0.0004605988, -0.025146335, 0.0047905524, -0.016625462, 0.009639646, -0.005802, -0.012072323, 0.002068426, -0.03572263, -0.0002599761, 0.04149861, 0.006881744, 0.001651326, 0.002432677, 0.016209174, -0.028775837, 0.02283074, 0.014596063, 0.016378291, -0.0021074528, -0.03202808, -0.021998165, 0.010277085, 0.014335883, -0.011512937, 0.0041856356, -0.006416674, 0.012891888, -0.023546232, 0.028567694, -0.0046702195, 0.010862488, 0.014036677, -0.024066592, -0.015064385, -0.019461416, 0.0002477802, -0.016170148, 0.019526461, 0.017601134, -0.015324565, 0.034864035, -0.029400269, -0.012891888, 0.013854551, -0.022674631, 0.030154789, 0.014804206, 0.015519699, 0.022921802, -0.01196825, -0.014570044, -0.008755036, 0.008143614, -0.0036490157, 0.016287228, 0.012241439, -0.0138805695, -0.020567179, 0.0014708264, 0.0014838354, -0.013386228, -0.0029270179, 0.011337316, 0.016989712, 0.0024570688, -0.016235193, -0.017627152, -0.0010732398, 0.018108483, -0.004231167, 0.020424081, -0.0147781875, -0.03418757, -0.0041563655, 0.03153374, -0.0070898877, 0.02244047, -0.005161308, -0.0147781875, 0.0027692842, 0.009288403, 0.011786126, 0.008904639, -0.015012349, 0.043189775, -0.011454397, -0.006081693, 0.014518009, -0.0058540357, 0.010543769, 0.021490816, 0.009249376, 0.020502133, 0.008332244, 0.008520874, -0.0015911594, 0.015168457, -0.0033156609, -0.004878363, 0.0028603468, -0.0005467832, 0.020879393, -0.011675549, 0.0182776, -0.009548583, -0.035384394, -0.014765179, -0.02041107, -0.025757758, -0.011838161, -0.012768302, -0.01714582, -0.02950434, -0.011506433, 0.00049393426, 0.035124213, 0.020515144, 0.03528032, -0.011181208, -0.025536604, 0.027448922, -0.05219198, 0.032652512, 0.03291269, 0.025965901, -0.00016515292, 0.0033888363, 0.013158571, -0.017119803, 0.0056003607, -0.00813711, -0.01714582, -0.041784804, 0.011799134, 0.0023399882, 0.0026814735, -0.02142577, -0.009346943, -0.015220493, 0.020007793, -0.0060296566, -0.0050312183, -0.017952377, 0.016352274, -0.0007874491, 0.014231811, -0.025757758, 0.009964869, -0.011994269, -0.0089566745, 0.021972148, -0.026876528, -0.016053068, 0.007922461, 0.012078827, 0.00883309, -0.015441645, 0.001020391, -0.005063741, 0.00051385426, -0.015311556, -0.045323245, 0.011376343, 0.018876012, 0.009769735, 0.0028847386, 0.031039398, -0.036503166, -0.036971487, 0.0070443563, -0.020398062, -0.020124873, -0.024417834, 0.033094816, 0.050032493, -0.01228697, -0.017913349, -0.012319493, 0.005457262, -0.056406885, -0.016170148, -0.0053564426, 0.020515144, 0.028645748, 0.0149473045, -0.010472219, 0.016625462, 0.00082281727, 0.012091836, 0.008215164, -0.013932605, -0.0065272497, -0.016404308, 0.0071939593, -0.012137367, 0.006384151, -0.024769075, 0.035852715, 0.0035969797, -0.0038083754, 0.02154285, -0.014088713, -0.0065467632, -0.003775853, 0.00035124214, 0.0134122465, 0.02396252, 0.0086379545, -0.04992842, 0.01437491, -0.004029528, -0.01273578, -0.00838428, 0.0098738065, -0.01688564, -0.00781839, 0.021972148, 0.00151961, -0.030831255, -0.01930531, -0.0005386526, 0.016547408, -0.009054242, -0.013139058, 0.034083497, 0.01134382, -0.023377117, -0.005867045, 0.029530358, 0.00451086, -0.0057271984, -0.0006882557, -0.033615176, -0.011272271, 0.01425783, 0.022791712, -0.0010008775, -0.0050734975, -0.008026534, 0.014960313, -0.028957963, 0.020528153, 0.0057206936, -0.016196165, -0.022024183, 0.0071159056, -0.0118967015, 0.03239233, 0.0025465055, 0.017041748, -0.018680878, 0.0020115117, 0.013087022, -0.014505, -0.023507206, 0.0080200285, 0.0037660962, 0.008735523, 0.0018261339, 0.19586302, -0.01077793, -0.019006103, 0.03806424, 0.0035547006, 0.012553655, 0.0026017937, 0.000117080715, -0.00545401, -0.002014764, 0.007961488, -0.005964612, -0.017223874, -0.0069793114, 0.013646408, -0.0151164215, -0.029790537, 0.009568096, -0.005366199, 0.0020228946, 0.0182776, -0.010218545, 0.015675807, -0.01260569, 0.012501619, 0.0020863132, -0.0052198484, -0.0046149315, 0.012930915, 0.01956549, -0.0012391042, -0.018680878, 0.003948222, -0.00526538, -0.01790034, -0.00039778985, 0.02825548, 0.004039285, -0.02976452, 0.031663828, -0.020710278, -0.016170148, 0.027214762, -0.00094396324, 0.017627152, 0.03064913, -0.011012091, 0.020658242, -0.018303618, 0.010114472, -0.03267853, -0.029816555, -0.0046962374, 0.037517864, 0.0045531387, -0.014465973, 0.014895269, -0.020515144, 0.013451274, -0.014036677, -0.029660448, 0.029816555, 0.00093420653, 0.044828903, -0.007915957, 0.029452303, 0.00083663926, 0.0062800795, 0.004436058, 0.017419009, 0.012865869, 0.014348892, -0.008703, 0.022752685, -0.0124951145, -0.0365552, 0.027006619, -0.014205793, 0.009990888, 0.0036652768, -0.0018261339, 0.005775982, -0.0021692454, -0.0008813576, -0.014270838, -0.030545058, 0.007714318, -0.0066736005, -0.014856242, -0.004972678, 0.014739161, 0.011584486, -0.0017383234, 0.017327946, 0.021139573, 0.015988022, -0.021894094, 0.009411989, -0.010816957, -0.012423565, -0.022466488, -0.0027091177, 0.00029514096, 0.012137367, -0.023142954, 0.010667354, -0.00033010257, 0.001209021, -0.00014970476, -0.021724977, 0.015962005, -0.05133339, 0.0147781875, -0.023858448, -0.028047336, 0.010667354, 0.0043287342, -0.0163913, 0.008176137, -0.026447233, 0.007805381, 0.005089759, 0.024638986, -0.010478724, -0.00832574, -0.0036782857, 0.0045498866, 0.03254844, -0.016560417, -0.025250407, -0.0068427175, 0.004692985, 0.008280208, -0.0039677355, -0.002203394, 0.0028180678, 0.033563137, -0.0018586563, -0.022037191, 0.006946789, -0.011987764, 0.016079085, 0.016209174, 0.018941058, 0.020320008, -0.019110175, -0.0041498607, -0.039573282, 0.0022603082, -0.00687524, -0.014609071, -1.8433606E-05, -0.0025611406, -0.009997392, 0.031221524, 0.01665148, -0.009912834, -0.030831255, 0.0018114988, 0.011051118, -0.036347058, 0.030805238, 0.015584744, -0.04074409, 0.024886156, -0.0009618506, -0.16412115, 0.026343161, 0.011311298, -0.00092526287, 0.0055971085, -0.018199546, 0.023338089, -0.006302845, -0.018446717, 0.017588126, 0.027162725, 0.027292816, 0.007928967, -0.000105189705, -0.012995959, -0.0024603212, -0.009496547, 0.013581363, 0.002730257, 0.016625462, 0.021503825, -0.028125389, -0.014153757, 0.0068427175, 0.013074013, -0.03239233, -0.0031904494, 0.022661623, 0.0064979796, -0.014465973, -0.028359551, -0.0056231264, 0.01991673, 0.0027481446, 0.033120833, -0.013776497, -0.016820597, -0.00038661028, -0.028567694, 0.015818905, 0.017692197, 0.016495371, 0.010686868, -0.0048816153, 0.01235852, 0.010218545, -0.005828018, -0.0047645345, 0.01665148, -0.01877194, 0.049251955, -0.0076752915, 0.003453881, 0.018147511, 0.039391156, 0.0075712195, 0.016170148, -0.019266281, 0.022960829, 0.0015643284, -0.0067646634, 0.0068297083, 0.00545401, -0.0028944954, 0.0017610891, -0.013659417, 0.01172108, 0.0062378002, -0.036295023, -0.0029091304, 0.013477291, 0.05521006, -0.004647454, 6.8703615E-05, 0.01930531, 0.009366457, -0.012677239, -0.0057564685, 0.021256654, -0.022843748, -0.0073825894, 0.037752025, -0.012436573, -0.010309608, 0.015233502, 0.0055938563, -0.02999868, -0.003613241, -0.014439954, -0.017874323, 0.0126447175, -0.009483538, 0.008852603, 0.0049791825, 0.018433709, 0.0036034842, 0.018589815, -0.012280466, 0.0048718587, 0.0035579528, 0.0071809506, 0.0022424208, -0.01626121, 0.0034994124, 0.019890713, 0.015779879, -0.0046832287, 0.042279147, 0.01475217, 0.017054757, -0.020645233, 0.018433709, -0.0012065818, 0.0330688, 0.01575386, 0.007577724, 0.005053984, -0.03647715, 0.005037723, 0.0023416143, 0.020254964, -0.0132626435, -0.010576291, 0.014088713, -0.02078833, -0.008052551, -0.08835691, -0.018459726, 0.010225049, 0.0030180807, -0.013893578, 0.023741366, -0.0026700906, 0.0059711165, -0.019175218, 0.014986332, -0.02116559, -0.02055417, -0.014088713, -0.0011179582, 0.01424482, 0.0012756919, 0.01486925, -0.008735523, -0.02458695, 0.022622596, 0.0026164288, -0.0003294928, -0.0117470985, -0.016560417, -0.01488226, -0.026135018, -0.018693887, 0.0018976833, 0.02271366, 0.038116276, 0.0064817183, 0.009730708, 0.014934296, -0.00027969282, -0.018433709, -0.0011781247, -0.012664231, 0.013594372, 0.008468838, -0.015428636, 0.006816699, -0.0124756005, 0.0049791825, -0.023520214, -0.022843748, -0.006823204, -0.01702874, 0.0076232553, 0.023624286, -0.006006891, 0.0032018323, -0.031689845, -0.023975529, -0.009307917, 0.027084673, 0.00043214168, 0.016755551, 0.0029042521, -0.012729275, 0.0011643027, -0.032860655, 0.018980084, 0.006488223, 0.02999868, 0.001652952, 0.012683744, -0.018433709, 0.003977492, 0.020489125, 0.01198126, -0.009151809, 0.011935729, -0.024183672, 0.0010382783, -0.010654345, 0.0060654315, -0.043189775, -0.0172629, 0.006881744, -0.005993882, -0.015688816, -0.01801742, 0.016560417, -0.026161036, 0.005733703, 0.0058117565, 0.02396252, -0.015623771, 0.01650838, -0.021074528, 0.020970456, 0.0269806, 0.025159344, -0.0062703225, -0.01216989, 0.022232328, -0.016066076, 0.017692197, -0.011799134, 0.011844666, -0.028151408, -0.014426946, -0.07056064, 0.03946921, -0.000245341, -0.007753345, 0.0077728587, -0.006413421, 0.0033433049, -0.019903721, 0.011311298, -0.025302444, -0.014635089, -0.0003520552, 0.009529069, 0.00058255787, -0.006351629, -0.036138915, 0.029816555, 0.020866385, 0.031481702, 0.012208917, -0.014739161, -0.003505917, -0.018329637, 0.017822286, 0.0041498607, 0.00438077, -0.01840769, 0.024560932, 0.013685435, -0.007278518, 0.015962005, 0.00308963, 0.0279953, 0.046389982, -0.023858448, -0.027631048, 0.011604, 0.0012821965, 0.0024473122, -0.019513452, -0.011480414, 0.00036343804, 0.0269806, -0.012104845, -0.022492506, -0.0111291725, -0.0048588496, 0.015493682, 0.037960168, 0.02142577, 0.019604515, 0.032808617, 0.010693372, -0.035982806, -0.00019401657, -0.024378806, 0.034473766, 0.0115974955, -0.00526538, -0.030545058, 0.017679188, -0.0002197296, -0.011838161, -0.020892402, 0.0192923, -0.0050865067, -0.023390125, 0.008729017, -0.018706897, -0.01626121, -0.016235193, -0.012937419, 0.020007793, 0.012839852, 0.0052231005, 0.023754377, -0.007896444, -0.00844282, -0.027917245, 0.023676323, 0.0069532935, 0.005844279, -0.042044986, 0.013106535, -0.007954984, -0.007460643, -0.024352789, -0.0037986187, -0.015402619, 0.014817215, -0.011506433, 0.009951861, -0.025419524, -0.009945356, 0.01601404, 0.023129946, -0.011564973, -0.0067776726, -0.004107582, -0.00017369006, -0.017210865, 0.0043059685, 0.0075712195, -0.011688558, -0.012651222, 0.0056231264, -0.0077728587, -0.030675147, -0.015194475, 0.00077078136, 0.019396372, -0.0015822158, -0.008859107, 0.0024489383, 0.001959476, 0.0020342774, -0.0077338316, -0.027579013, -0.02355924, 0.028385568, 0.027552994, 0.0059581073, 0.021360725, -0.0015488802, 0.011499928, -0.010231554, 0.0005638575, -0.0007130541, 0.0004366135, 0.018889021, 0.0118967015, 0.004969426, 0.0027367617, -0.007343563, 0.006569529, -0.001357811, -0.01475217, 0.035384394, -0.033849336, 0.07560813, 0.023598269, -0.01878495, 0.0026115503, -0.010927534, 0.030545058, 0.012482105, 0.0031676837, -0.0001766374, -0.035852715, 0.026824493, -0.0038051233, 0.0052848933, -0.0055060457, -0.013568354, 0.0056946757, 0.0016456345, 0.011018596, -0.03733574, -0.029530358, 0.029296197, -0.0089566745, 0.0066866097, -0.03267853, 0.0007744401, -0.009223359, 0.012937419, 0.007024843, -0.01979965, 0.012534141, -0.0060361614, -0.008663973, -0.018498752, -0.0070768786, -0.0019919982, 0.0068882485, -0.009184332, 0.0058540357, -0.010751912, 0.026460242, -0.007649273, 0.013451274, -0.008982693, -0.036164932, 0.009034729, 0.020996476, 0.004784048, -0.01437491, -0.028905928]
+ },
+ {
+ "Id": 44,
+ "Type": "Climbing",
+ "Brand": "Raptor Elite",
+ "Name": "Summit Pro Climbing Harness",
+ "Description": "Conquer the highest peaks with the Summit Pro Climbing Harness by Raptor Elite. This harness features a lightweight and breathable construction, complete with adjustable leg loops for a personalized fit. It has reinforced tie-in points for maximum safety and durability. The vivid green color adds a touch of style to your climbing gear.",
+ "Price": 109.99,
+ "Embedding": [0.0098521095, -0.004429054, -0.0038509103, -0.05831475, 0.008594394, 0.03754215, -0.018973932, -0.02719642, 0.0058389134, -0.03905682, 0.011130111, -0.0033725048, 0.011190969, -0.0030394807, -0.013003162, -0.0009001799, 0.025397751, -0.018419456, -0.023477368, 0.0075260107, 0.0075598205, 0.0090542035, -0.0027859088, -0.012766494, 0.008574108, -0.035189003, 0.037217576, -0.008533536, 0.0375692, -0.015971642, 0.026790706, 0.005561675, -0.0047029117, -0.018608788, -0.026966516, 0.0035364814, -0.008993346, -0.0005781437, -0.0044256733, -0.005233722, 0.027318135, -0.023585558, -0.0014791688, 0.0055954843, -0.0014631093, 0.0008346738, -0.009940014, -0.02066441, -0.022625366, 0.0034249097, -0.018973932, 0.0043783397, -0.033809572, 0.010440396, 0.00632239, -0.017121168, -0.016025737, 0.008770203, 0.037839673, -0.015741738, -0.012847638, 0.009764205, -0.016796596, 0.0023565271, 0.018446503, -0.022341365, -0.017499834, -0.011069254, 0.006738248, 0.021813937, 0.045548256, 0.020177552, 0.013692877, -0.006166866, -0.0078100115, -0.0025002179, -0.0016177881, 0.0072420104, -0.008668775, -0.004256625, 0.026357943, -0.02349089, 0.007221725, -0.0004965781, 0.030509759, -0.018852217, 0.006873486, 0.01391602, -0.0056529604, -0.019852981, 0.014281164, 0.00034549157, 0.010440396, 0.021624602, -0.047198165, 0.0007032391, 0.01582288, -0.004675864, 0.003154433, -0.026073942, 0.009737157, -0.007045915, -0.010061729, -0.012313446, -0.038624056, -0.013415638, -0.0012441922, 0.009770966, 0.021584032, -0.010237538, -0.014335259, 0.014768021, 0.010839349, -0.033863667, 0.011677827, -0.018040787, 0.044790924, 0.021678697, 0.004831388, -0.024396988, 0.022395462, -0.01250278, 0.0265608, -0.011305921, -0.00034760468, 0.01716174, -0.02246308, 0.0010565491, 0.022895843, -0.0056631034, 0.005943723, 0.0064271996, 0.0033116476, 0.0035263384, 0.013043733, 0.044060636, 0.0042092917, -0.0031831714, -0.013381829, 0.0076342016, 0.0116913505, 0.0037461007, -0.0089054415, -0.0025898132, 0.0016203237, 0.009060966, -0.004587959, 0.007931726, 0.0023362415, -0.0005253162, 0.0116169695, -0.017567454, 0.041031297, 0.02652023, 0.0039929105, -0.00043741136, 0.01733755, 0.027466897, -0.025154322, -0.0022162176, 0.0050410074, -0.0107446825, -0.0040875776, -0.0071743913, 0.022395462, 0.018176027, 0.020420982, -0.01073792, -0.011698112, -0.00610939, 0.009885919, 0.02316632, -0.01070411, 0.010325444, 0.027723849, 0.02531661, -0.022476604, 0.009750681, -0.006657105, -0.0071743913, -0.0035161956, -0.0070932484, 0.022043841, 0.034134146, -0.008533536, -0.0009196204, 0.020596791, 0.0063054855, 0.014781545, -0.0021029555, 0.0030242663, 0.022787653, -0.0052404837, -0.006011342, -0.64524895, -0.011853636, -0.013185733, -0.029292613, 0.03418824, 0.006423819, 0.036352053, 0.0017293596, -0.018311264, 0.02349089, 0.0060721994, 0.032944046, 0.0065049618, -0.042491872, -0.011447921, -0.018446503, -0.024680989, -0.020285744, 0.003362362, -0.01409183, -0.032430142, 0.00011865047, -0.016417928, 0.0025762895, 0.00024850035, -0.012631256, 0.003722434, 0.004222816, -0.015701165, 0.014186497, -0.03245719, 0.037488054, -0.00388472, 0.018527646, 0.050416835, -0.04078787, -0.00010285506, 0.03629796, 0.0058051036, 0.048902165, -0.01818955, 0.007931726, 0.010785254, -0.008662012, -0.0009737157, 0.0117657315, 0.029292613, -0.024640417, 0.015106117, -0.03037452, 0.012489256, -0.02136765, 0.0029160758, 0.008026392, -0.020042315, -0.020082885, 0.034702145, 0.0016118714, 8.933123E-05, -0.002970171, -0.020529173, 0.0064610094, -0.022774128, -0.032294903, -0.024221178, 0.020961935, -0.024775654, -0.020353362, -0.00041881608, -0.022341365, 0.017148215, 0.019839458, -0.0059876754, 0.0089054415, 0.014200021, 0.03013109, 0.00054306624, -0.0056461985, 0.008858108, 0.023369176, 0.01582288, 0.0023514559, -0.0093923, -0.0037427198, 0.006582724, 0.0005494056, -0.014754497, -0.0035466242, 0.022679461, 0.0059741517, 0.021908604, 0.010541825, -0.015620023, -0.009365251, -0.019068599, 0.014903259, -0.021624602, -0.011928017, 0.011157159, -0.02652023, -0.006366343, -0.009304394, -0.036568433, -0.030590901, 0.035053764, 0.009250299, 0.0142541155, -0.001550169, 0.03856996, -0.020299267, -0.023220414, -0.010643253, -0.01737812, -0.016945358, -0.0020150505, -0.02426175, 0.013780782, -0.006897153, 0.012036208, -0.03765034, 0.03683891, -2.741745E-05, 0.016945358, 0.020136982, -0.0074786777, 0.018297741, 0.019028028, -0.0137537345, -0.0035905766, -0.014997927, -0.001741193, 0.0006736557, 0.023152795, 0.011008397, 0.0026861706, 0.003245719, 0.012685352, 0.013517067, 0.019082123, -0.012631256, -0.015674118, -0.0027030753, 0.010690587, -0.007356963, -0.03026633, -0.048469402, -0.04205911, -0.020069363, 0.011630493, -0.016647834, -0.009514014, -0.0064204377, 2.9266412E-05, -0.012685352, 0.022476604, -0.020407459, 0.011116588, -0.02161108, -0.0046826256, -0.021448793, 0.013057257, 0.0055785794, -0.011562874, -0.005044388, -0.010095539, -0.0014208473, 0.00057011395, 0.009209728, -0.022787653, -0.042681206, 0.0015062165, -0.012421637, -0.017188787, 0.021070126, 0.01221878, -0.0009086323, -0.018378884, -0.025952227, 0.009277347, 0.011454684, -0.006657105, 0.0032321953, -0.025046133, -0.011928017, 0.0010075253, 0.0061296755, 0.012408113, 0.033890717, -0.013104591, -0.002140146, -0.024748607, 0.039705962, -0.0038238626, 0.027588611, 0.002454575, -0.0112450635, 0.00016376511, 0.022138508, 0.017405167, 0.030644996, 0.024802703, -0.036541387, 0.01864936, -0.015511832, 0.022070888, -0.0037427198, -0.007728868, -0.0039523393, 0.007363725, -0.00797906, -0.0070526768, -0.011948303, -0.0073772487, -0.02511375, 0.016945358, 0.030212235, 0.021732794, 0.036433198, -0.0056394367, -0.016377358, 0.016377358, -0.0030986473, 0.013726686, -0.021394698, -0.015133165, 0.022976985, -0.0010286563, 0.036433198, 5.6736688E-05, -0.004983531, 0.008039917, 0.008141345, 0.021070126, 0.009703347, 0.02140822, 0.0063731046, 0.0019660266, -0.02528956, 0.03754215, -0.013422401, 0.01917679, -0.0096763, 0.012103827, -0.0034722432, 0.028102517, 0.012847638, 0.026885372, 0.003790053, 0.0046826256, 0.019501362, -0.011048968, 0.020677935, -0.00011083201, 0.035134908, 0.017608026, -0.0036210052, 0.027182896, 0.024112988, 0.00886487, 0.0102240145, 0.0023260985, 0.00049615547, 0.014294688, 0.0006292807, 0.022909367, -0.025789943, -0.018771075, -0.007620678, -0.010541825, -0.028670518, 0.010934016, -0.0107446825, 0.004496673, 0.0061533423, 0.018676408, -0.0030344091, 0.004270149, 0.019420218, -0.010866397, 0.03499967, -0.01910917, -0.040706724, 0.017513359, 0.021786889, 0.0039692437, -0.016201546, -0.021516412, 0.007370487, -0.015119641, 0.04998407, -4.448072E-05, 0.012840875, -0.012475733, 0.007897916, 0.010514777, 0.001861217, 0.015106117, -0.015606499, 0.024978513, -0.009189442, -0.003874577, 0.0038340057, -0.016580215, -0.02097546, 0.046359688, 0.00607558, -0.012969352, -0.048171878, 0.0052235792, -0.0043141013, 0.010163157, -0.010677063, 0.008560584, -0.01359821, 0.0010109062, -0.009473442, 0.005237103, -0.024383465, 0.017188787, -0.0069242003, -0.0059741517, 0.013706401, 0.014673355, 0.008675536, 0.08611974, 0.011103064, -0.0073366775, 0.015403641, -0.0002254676, -0.025046133, -0.015876975, -0.019582504, 0.009730395, -0.0007032391, 0.013253353, -0.009770966, 0.00079875113, -0.004763769, -0.0007843821, 0.00950049, -0.0024106225, -0.012374303, 0.004753626, 0.00420253, 0.010190206, 0.00929087, 0.015633546, 0.009446395, 0.0064508663, 0.018108407, 0.02101603, 0.013408877, 0.023883082, -0.012205256, 0.0008274893, -0.004719816, 0.0016854072, 0.008574108, -0.009480204, -0.0022077651, -0.022733556, -0.030942522, 0.028724613, 0.006883629, 0.020583268, 0.018933361, 0.012550114, -0.0004538935, 0.025424799, 0.0078032496, -0.0023091938, 0.015024974, 0.000116431715, -0.00929087, 0.010798777, 0.015065545, -0.016174499, -0.014862688, -0.009060966, 0.023017557, 0.0011393826, -0.0008038226, -0.0076274397, -0.026614895, -0.009568109, -0.021489365, 0.018284217, 0.0020150505, -0.0068937717, -0.014037735, -0.01137354, 0.0069039147, -0.011718398, -0.0037596244, -0.024735084, -0.006508343, 0.007837059, 0.0060451515, 0.02345032, -0.003948958, -0.0060383896, -0.023572033, 0.03618977, 0.016499072, 0.0049733883, 0.0077762017, 0.009946777, 0.0050748168, 0.0061364374, -0.0025610751, 0.0060721994, -0.01744574, 0.0022043842, -0.0060654376, 0.02274708, -0.007620678, 0.026019847, -0.0002854796, -0.00056419725, 0.005683389, 0.0088310605, 0.0042261966, 0.020786125, 0.0024866941, 0.011312683, -0.024112988, -0.0136049725, 6.1808125E-05, 0.04016577, 0.014713926, 0.016769549, 0.011400588, -0.012793543, -0.016472023, 0.026844801, 0.0055008177, -0.0018848837, -0.0019051695, -0.008208964, 0.0060214847, 0.002892409, 0.003083433, 0.036703672, -0.026682515, -0.02108365, -0.046143305, 0.03994939, 0.0039793868, -0.012320208, 0.01218497, 0.0148491645, -0.024680989, -0.010196967, 0.0035263384, -0.016431453, 0.020042315, 0.006599629, 0.00077804277, -0.0030327188, -0.008114298, -0.03305224, 0.016945358, -0.0056597227, 0.005690151, -0.002638837, 0.00840506, 0.00776944, 0.012705637, -0.02246308, -0.0152007835, -0.028454136, 0.0011190969, -0.03316043, 0.0005286972, -0.017324025, 0.004104482, -0.025776418, -0.007438106, 0.0050376263, -0.028724613, -0.020677935, 0.0015924309, 0.027777946, 0.016255643, 0.005311484, -0.021272983, 0.037028246, 0.011529065, -0.008695822, 0.0036920053, -0.021056602, -0.0067585334, -0.019312028, 0.032592427, 6.8305904E-05, 0.010866397, 0.0010759897, -5.800455E-05, -0.0010430253, 0.013571163, 0.0007750845, -0.02737223, -0.010555348, -0.04644083, -0.01889279, -0.011414112, 0.009574871, 0.001126704, -0.0387052, -0.011238302, 0.049497213, 0.019974696, -0.0033403859, 0.003631148, 0.024951465, -0.022476604, 0.020393934, -0.010163157, 0.0053351508, 0.008634965, -0.0015738356, -0.026155086, 0.007586868, 0.019785361, -0.019812409, -0.0017648597, 0.0052675316, -0.0041585774, -0.029833566, 0.016499072, -0.009331442, -0.015024974, 0.039381392, -0.020380411, 0.0036210052, 0.0010565491, -0.013307448, -0.023653178, 0.008303631, 0.0054331985, -0.011799541, 0.018216599, -0.013706401, 0.009162394, 0.015552403, -0.009561347, 0.020880792, -0.0032017666, -0.0035939575, 0.009426109, -0.00071126886, -0.024748607, -0.030455664, -0.01681012, 0.009967062, -0.0008731322, 0.03188919, -0.008154869, -0.0071743913, -0.0055650556, 0.0029532663, -0.020123458, -0.026006324, 0.01553888, 0.0071270578, 0.028345946, -0.0011064183, -0.032403093, 0.014132402, 0.0052066743, -0.0059809135, 0.010305158, 0.015565927, -0.011792779, 0.004689388, 0.030347472, -0.030617949, 0.013638781, 0.0031104807, -0.016309738, -0.02345032, 0.0019068599, -0.008154869, -0.023883082, -0.0029870758, 0.027777946, 0.010257824, -0.010426872, -0.0073366775, -0.0005853282, -0.015092594, 0.003242338, 0.00434453, 0.024680989, 0.005304722, -0.003274457, -0.015038498, 0.000722257, -0.007066201, -0.009473442, -0.004195768, -0.0062885806, 0.02066441, -0.014754497, 0.017959645, -0.00083890004, -0.018689932, -0.018338311, -0.0013971806, 0.017296977, -0.03732577, -0.02217908, 0.00904068, -0.033322714, -0.03846177, 0.0029397423, 0.008046678, 0.019623077, -0.0018206455, -0.0024816226, -0.0050815786, 0.01501145, -0.03894863, 0.009088013, 0.0025796704, 0.034025956, -0.0073096296, 0.030888425, 0.0067585334, -0.011535826, 0.018500598, -0.013300686, -0.024816226, -0.020366887, 0.018676408, -0.009973824, -0.0031916236, -0.014835641, 0.0031459806, 0.0039354344, 0.004053768, -0.0009669538, -0.017526882, -0.003719053, 0.008222488, -0.0006728105, 0.04054444, -0.017864978, 0.005703675, -0.011779255, 0.00434453, -0.0048618168, -0.01882517, -0.028129565, -0.019717744, 0.009737157, -0.013801068, -0.03843472, 0.0021840984, -0.002917766, -0.009940014, 0.022476604, -0.007938487, -0.0019558838, 0.021759842, 0.024897369, 0.0011038826, -0.00851325, -0.03618977, -0.028264804, 0.021705747, 0.007431344, -0.0131384, -0.018067835, 0.012854399, 0.04749569, 0.004746864, -0.0398412, -0.0057712942, 0.0014174663, -0.057827894, -0.0030614568, -0.011955065, 0.017567454, 0.022557747, 0.011461445, 0.018500598, 0.019163266, 0.024748607, 0.0044696257, 0.0034756241, -0.025343657, 0.011008397, -0.011819826, -0.01744574, -0.02719642, -0.008148107, -0.033106335, 0.023206891, 0.022679461, 0.00081142975, 0.02662842, -0.016201546, 0.007613916, -0.01777031, -0.0060721994, 0.035405386, 0.018108407, 0.03316043, -0.028562328, -0.017608026, 0.0025002179, 0.011251826, -0.002992147, 0.016999453, 0.008432107, 0.012340494, 0.010379539, -0.012326971, -0.041166537, -0.028264804, 0.008925728, -0.012590685, 0.0007353582, -0.0073840106, 0.0013988711, 0.017215835, -0.035973385, -0.017824408, 0.021705747, -0.0034029335, -0.01783793, -0.0027825278, -0.04030101, 0.007363725, -0.009236775, 0.03175395, -0.007106772, -0.03142938, -0.0032152904, -0.014456973, -0.023653178, 0.020299267, 0.027886136, -0.012949066, -0.025587086, -0.0035094337, -0.018595265, 0.02263889, -0.007749154, -0.011860399, -0.048550546, 0.021110697, -0.021002507, -0.01871698, -0.011813065, 0.0005134829, 0.0051086266, -0.0018561456, 0.05063322, 0.20567039, 0.022665938, -0.0015053712, 0.039083865, 0.018676408, 0.012022684, -0.0039117676, -0.00028928317, 0.002934671, -0.010751444, 0.0053317696, 0.015214308, -0.0222467, -0.006731486, 0.036676623, -0.0040267203, -0.0473334, 0.004523721, -0.04760388, 0.00044375064, 0.0008549596, 0.004736721, 0.021394698, -0.013719925, -0.0015797523, 0.0065928665, 0.0062953425, -0.018960409, 0.0040706727, 0.006559057, -0.0065049618, -0.017296977, 0.009588395, -0.014740974, -0.0049733883, -0.0117657315, 0.04100425, 0.009162394, -0.012746209, 0.017405167, -0.0018121931, 0.017783836, 0.008851347, -0.025708798, 0.00043086073, -0.004418911, -0.00540277, -0.0023632892, 0.007870869, 0.013415638, -0.02574937, -0.010048205, 0.03164576, 0.012610971, -0.0020860506, -0.010021158, 0.025019083, -0.021462318, 0.00448653, 0.016336786, -0.02606042, 0.012692113, 0.013970115, 0.01571469, -0.004121387, 0.028481184, -0.0038340057, 0.017526882, 0.009142108, -0.0055143414, 0.00303779, 0.0061431993, -0.0037055293, 0.014943832, -0.025343657, -0.009622204, 0.012523066, -0.017919073, 0.014186497, 0.010332205, 0.029671282, -0.01303021, -0.00047967333, -0.013178972, -0.011758969, -0.0054974365, 0.026209181, 0.010934016, -0.0023396225, -0.0012129184, -0.0027402658, -0.009304394, -0.020312792, -0.010129348, -0.023937177, 0.03351205, -0.01635031, 0.027859088, -0.0035094337, 0.003122314, -0.022976985, 0.028237754, -0.0038948627, 0.009480204, -0.028670518, 0.008959536, 0.014078306, 0.012523066, -0.004817864, -0.024424035, -0.0077829636, -0.03142938, 0.00900687, -0.006998582, -0.010474206, -0.009906204, 0.0071270578, -0.005849056, 0.006653724, -0.02588461, 0.020691458, -0.027750898, 0.012955829, -0.014754497, -0.0021519794, -0.0039861486, 0.008716108, 0.024586322, 0.008127822, -0.02454575, 0.004817864, 0.021151269, 0.022016793, -0.019230885, -0.024410512, -0.02564118, -0.00043698872, -0.039327294, 0.0042498633, 0.010271348, -0.011015159, -0.0024833132, 0.00080044166, 0.03997644, 0.019744791, 0.010981349, 0.00042536668, -0.005849056, -0.013875449, 0.01639088, 0.0073231533, -0.0030394807, -0.013997164, -0.006707819, -0.007546297, -0.016904786, -0.03591929, -0.022679461, -0.0164585, 0.002302432, -0.024789179, 0.020867268, 0.0064982, -0.03337681, -0.017107643, -0.010109062, -0.17256406, 0.013253353, 0.034621004, -0.03543243, -0.01172516, 0.018162502, 0.017229358, -0.0033877192, -0.029725377, 0.0025661467, 0.017553931, -0.01709412, -0.0070864866, -0.037866723, 0.005855818, -0.008986585, 0.016174499, -0.0012703947, 0.027291087, -0.0033031953, 0.01536307, -0.021286506, -0.0015628475, 0.009175918, 0.0027250515, -0.029103281, 0.00084988814, -0.0070594386, 0.022138508, -0.021840984, -0.004736721, -0.0040706727, 0.0196366, -0.012529828, 0.0038204817, -0.0020826696, -0.011380302, 0.009973824, -0.02673661, 0.033322714, 0.0011005016, 0.029481947, 0.034621004, -0.009973824, 0.025600608, 0.024410512, -0.009940014, 0.0054467223, 0.027318135, -0.0043073394, 0.023206891, -0.013462972, 0.004503435, -0.0014842403, 0.005991056, 0.0051762457, 0.0053250077, -0.013929544, 0.024045369, -0.008716108, 0.019839458, -0.033566143, 0.016553167, -0.017594501, -0.029752424, -0.003877958, 0.00568677, 0.008283345, -0.011745445, 0.02161108, -0.0007509951, 0.025695276, -0.027493944, -0.024599845, 0.009209728, 0.0225307, -0.0011165611, 0.0020285745, 0.003203457, -0.019880028, 0.012631256, 0.024978513, -0.023991274, 0.003436743, -0.0065421523, 0.00015848238, -0.0041619586, -3.6530186E-05, -0.011116588, -0.030996617, 0.021394698, -0.02472156, -0.010900206, -0.017040025, 0.0021130983, 0.016877739, 0.00025843192, -0.02592518, -0.0009847038, -0.03881339, 0.013875449, 0.0043107206, -0.024680989, 0.013368305, 0.039408438, 0.011961827, 0.02161108, 0.0031341475, 0.0062141996, 0.00015446749, 0.011589922, 0.008398298, -0.0025576942, 0.0119888745, -0.0051762457, 0.0029820043, 0.0031037189, -0.032917, 0.005095103, 0.001366752, 0.026209181, -0.03026633, -0.019095646, -0.0048821024, 0.002217908, 0.009250299, -0.10332205, -0.00035795887, 0.025938705, 0.018500598, -0.016255643, -0.003972625, -0.013787543, 0.014957355, -0.0016794906, 0.018730503, 0.0015831332, -0.0029498853, 0.018000217, 0.023152795, 0.019447267, -0.007431344, 0.012387827, -0.027412802, -0.01720231, 0.029590137, 0.017121168, 0.0073772487, -0.008100773, -0.016309738, -0.0097236335, -0.02875166, -0.019190313, -0.004063911, 0.018270694, -0.017675644, 0.012556875, 0.0028907184, 0.03153757, 0.00056884607, -0.00028928317, -0.0038982437, -0.05125531, -0.002779147, 0.022057366, -0.005524484, -0.010494491, 0.0016076452, 0.013537353, -0.02592518, -0.01027811, -0.013091067, -0.014943832, -0.014294688, 0.0062311045, -0.026574325, -0.0040503866, -0.01720231, 0.0009863942, -0.006011342, -0.009013632, -0.008432107, -0.009710109, 0.019744791, 0.00030301829, 0.010095539, -0.023233939, 0.0010024538, -0.016742501, -0.0001776059, 0.02673661, -0.0035060528, -0.0075260107, 0.00035140823, -0.0054095318, 0.01016992, -0.013801068, 0.015349546, -0.025370704, 0.024248226, -0.014024211, 0.009338204, -0.032430142, -0.012800304, 0.0056225318, -0.0074651535, -0.018487075, -0.026547277, 0.03426938, -0.030212235, -0.010812301, 0.021124221, 0.009784491, -0.026155086, 0.016093357, -0.028562328, 0.026587848, 0.012110589, 0.021489365, 0.016661357, -0.014227068, -0.020150505, 0.0018409312, -0.0049159117, -0.02673661, -0.0048888642, -0.047685023, -0.004276911, -0.07270411, 0.03578405, 0.0015172046, -0.020515649, -0.0023920273, -0.0005789889, -0.004364816, 0.0004276911, 0.013706401, -0.007823535, -0.0108934445, -0.014673355, 0.005162722, -0.00872287, -0.002172265, 0.004601483, 0.012245827, 0.0032085285, 0.042464823, -0.009263823, -0.024058891, -0.013070781, -0.020042315, 0.03210557, -0.02235489, -0.00950049, 0.00082579884, 0.017432217, 0.019230885, 0.00935849, 0.008398298, -0.0075260107, 0.0011892518, 0.042194348, -0.016958881, -0.025100227, -0.0019643363, 0.02090784, 0.012901733, -0.012840875, -0.012665066, 0.012462209, 0.005825389, -0.02165165, -0.0070526768, -0.0032575524, 0.0029414329, 0.012299922, 0.027994327, 0.0010768349, 0.006998582, 0.0108190635, 0.005700294, -0.009750681, -0.014997927, -0.018744027, -0.004287054, -0.0023362415, 0.0037427198, -0.034972623, 0.03451281, -0.013104591, 0.021597555, 0.0127123995, 0.010115825, 0.0066807717, -0.030888425, -0.0013743591, -0.004040244, 0.008073726, -0.03037452, -0.010724396, 0.020488601, -0.016025737, 0.010332205, 0.008188679, 0.013192495, 0.020704983, -0.012441923, 0.014768021, -0.016985929, -0.007661249, -0.04424997, 0.009764205, -0.014984403, -0.004581197, -0.014024211, 0.010068491, -0.012901733, 0.001151216, -0.008364488, 0.0077221063, -0.01472745, -0.016891263, 0.008986585, 0.0030648378, -0.006028247, -0.00929087, 0.013861924, 0.019690696, 0.0024664083, -0.02101603, -0.016553167, -0.003206838, -0.009838586, -0.011738684, 0.012915256, -0.031375285, -0.030563854, 0.0080872495, 0.015782308, -0.0036041006, -0.010541825, 0.010190206, -0.0016685025, -0.021489365, 0.014943832, -0.019203838, -0.010284872, 0.013070781, 0.010974587, 0.019582504, 0.0044696257, 0.0015104427, 0.0061262944, 0.017851455, -0.01652612, -0.013212781, 0.01154935, 0.012665066, 0.021164794, 0.003122314, -0.0075530587, -0.003631148, 0.0022365032, -0.0005050305, -0.014281164, 0.008858108, -0.015768785, 0.07454335, 0.0045507685, -0.015620023, 0.024856798, -0.014970879, 0.028400041, 0.03719053, -0.0020843602, -0.016039262, -0.02426175, 0.006900534, -0.0017783835, -0.0051965313, 0.01716174, -0.017526882, 0.0017361216, 0.019325553, 0.00034887253, -0.025789943, -0.023436796, 0.04711702, -0.028913947, 0.016688405, -0.0076477253, -0.009940014, 0.013388591, 0.022625366, 0.029725377, -4.994836E-05, -0.011042207, 0.003945577, -0.0011241683, -0.015349546, -0.026533753, -0.012042969, 0.008290107, -0.011711636, 0.014930307, 0.009162394, 0.010852873, 0.006089104, 0.0039421963, -0.01713469, -0.008749917, 0.012739447, 0.019325553, -0.017472787, -0.01871698, -0.006572581]
+ },
+ {
+ "Id": 45,
+ "Type": "Trekking",
+ "Brand": "Solstix",
+ "Name": "Elemental 3-Season Tent",
+ "Description": "Experience the great outdoors with the Elemental 3-Season Tent by Solstix. This lightweight and compact tent is perfect for backpacking adventures. It offers ample space for two people and features a durable waterproof fabric, sturdy aluminum poles, and ventilation panels for optimal airflow. The vibrant green color adds a touch of visibility to your camping setup.",
+ "Price": 189.99,
+ "Embedding": [0.03863406, 0.012820092, 0.009658515, -0.012519308, -0.02066722, 0.023073493, -0.03165587, -0.047323387, 0.00911042, -0.013548658, 0.011082228, 0.035639588, -0.011429801, 0.0030913935, 0.002996145, -0.011403064, 0.022431819, -0.007198769, 0.0033069556, 0.0049562557, -0.0060290527, -0.013602131, -0.014504484, 0.018461468, 0.0052470136, -0.028955495, 0.028554449, -0.0034657028, 0.043205984, -0.0024430363, 0.033955198, -0.010607657, -0.011596903, -0.02199067, -0.003756461, 0.0051434105, -0.0007970782, 0.009965984, 0.014009861, -0.015841303, 0.033848252, 0.0051935413, -0.0002087735, 0.010153139, -0.00814791, 0.006306443, 0.004117402, -0.005263724, -0.007031667, 0.0019149929, 0.0038533802, 0.013495186, 0.00426111, 0.012104894, 0.009785513, -0.016910758, 0.0006633963, -0.004381424, 0.037056617, -0.011991264, -0.016028458, 0.00045075858, -0.018113894, -0.0052069095, -0.011423117, -0.029597169, -0.022191193, -0.00922405, -0.006767645, -0.00035133268, -0.001381101, 0.0321906, 0.023434434, 0.01629582, -0.013889547, -0.036414944, -0.02205751, 0.0046487874, -0.0050732275, 0.009972668, 0.0086224815, -0.027003739, -0.03039926, -0.0031632476, 0.011576851, 0.024771253, 0.022378346, 0.00048417907, -0.03326005, -0.015774462, 0.002915936, 0.012733199, -0.00076825306, 0.024236524, -0.029276332, 0.0035258597, -0.008829689, 0.02279276, -0.020693956, -0.0140900705, -0.015400153, 0.007031667, 0.00708514, -0.01021998, -0.043339666, -0.0033169817, 0.01213163, 0.010039509, 0.014945635, 0.016630026, -0.032404486, 0.023207175, 0.020105755, -0.030212104, -0.014370802, -0.0118776355, 0.01814063, 0.007873863, -0.0069180373, 0.004073955, 0.025626816, 0.017031072, 0.017258331, -0.013254559, 0.009478046, 0.004899441, -0.027378049, -0.009685252, 0.0140900705, -0.023795376, 0.0029309753, 0.043713976, 9.0731355E-06, 0.002633533, -0.026308594, 0.027832568, -0.005216935, -0.009544887, -0.020600379, 0.006059131, 0.005691506, 0.009190629, -0.0190363, -0.015761094, 0.041307703, 0.023474539, 0.004073955, -0.00015885168, -0.021348996, -0.019758182, 0.01675034, -0.013889547, 0.016710235, 0.03908858, 0.0055110357, 0.017111281, 0.0051300423, 0.016335925, -0.024022633, -0.02788604, -0.006593859, -0.0052470136, -0.0077936538, -0.0008664257, -0.014598061, 0.025961021, 0.019276928, -0.030158632, -0.014999107, -0.0013978112, -0.02404937, 0.042617783, -0.020038914, 0.013876179, 0.008014229, 0.03251143, 0.005480957, 0.014664902, -0.013020615, -0.018915987, 0.0030278945, 0.01939724, 0.017833162, 0.016937494, -0.034489926, -0.0122653125, 0.0052336454, 0.01719149, 0.04162854, -0.020172596, 0.025225772, 0.003268522, -0.00426111, -0.00066590286, -0.6592121, 0.0024714437, -0.01696423, -0.033153106, 0.011202541, 0.015012476, 0.015734358, 0.0049328613, -0.019370504, -0.02006565, 0.008241488, 0.016736971, 0.013134245, -0.032351017, -0.0064468086, -0.015747726, -0.010126403, 0.0049562557, 0.016977599, -0.0018164025, -0.0366021, 0.0074327127, -0.022151088, -0.018875882, -0.00069974107, -0.0015189603, 0.0044616326, -0.0199186, -0.020252805, 0.005768373, -0.0053639854, 0.03569306, -0.009685252, 0.015440257, 0.04545184, -0.025025249, -0.009544887, 0.032377753, 0.013568711, 0.040906657, -0.036922935, -0.0019634527, 0.0059722383, 0.0049295193, 0.0107680755, 0.011189173, 0.0057182424, 0.00038120223, 0.002760531, -0.0002830296, 0.019798286, -0.025626816, -0.0014638166, 0.0071252445, 0.008682638, -0.0044415803, 0.037511136, 0.0155873075, -0.010306873, -0.0042243474, -0.02006565, -0.009478046, -0.00018255932, -0.002409616, -0.025947653, 0.0051434105, -0.046093512, -0.005029781, 0.026616063, -0.024971776, -0.0002443872, 0.038045865, -1.1351211E-05, 0.0062095234, -0.015654149, 0.024704412, 0.0082949605, -0.0055979285, 0.0005130042, 0.005544456, 0.020252805, -0.0033788094, -0.021643097, -0.044088285, 0.029196123, -0.0077869697, 0.0017796401, 0.01438417, 0.003686278, 0.004739023, 0.004545184, 0.0013242861, 0.01092181, -0.023367593, -0.01080818, 0.007813706, -0.009137156, 0.023474539, 0.042537574, -0.023327488, -0.0055812187, -0.028099932, 0.019664604, -0.031147879, 0.022324875, 0.014798584, -0.0031114458, -0.014344065, 0.038607325, -0.011429801, -0.008174647, -0.016723603, -0.035880215, -0.020025546, 0.0012365574, -0.022271402, 0.02293981, 0.005323881, 0.004047219, -0.02943675, 0.0060056583, -0.0034723869, 0.0061426824, -0.0011747296, 0.011108965, 0.020961318, 0.018247576, 0.002636875, -0.004488369, -0.005327223, -0.012018001, 0.025653552, 0.0112225935, -0.00863585, 0.003756461, 0.015948249, 0.0070450353, -0.02302002, 0.045425102, -0.029196123, -0.0022341583, -0.008435327, -0.023287384, -0.047483806, -0.019089773, -0.01939724, -0.028180141, -0.0031716027, -0.014785216, -0.015159525, -0.021790147, -0.003973694, 0.016362661, -0.0047891536, 0.005995632, -0.020653851, 0.02707058, -0.033901725, -0.03652189, -0.0051901992, 0.040692765, 0.001348516, -0.004909467, -0.0018364548, -0.01622898, 0.00062454503, -0.006964826, 0.0069314055, 0.0047056023, -0.038420174, 0.003489097, -0.008288276, -0.008141226, 0.006537044, -0.0060791834, 0.00840859, -0.0022107642, -0.021014791, 0.0074995537, 0.020386487, 0.008281592, -0.006299759, -0.0155873075, -0.00311813, 0.012927038, -0.0009315956, 0.028046459, 0.02566692, 0.021282155, 0.016068563, 0.0090101585, 0.027177526, 0.029008968, -0.009177261, -0.018354522, -0.0079741245, -0.011055492, 0.015881408, 0.012886933, 0.028073195, -0.00017347313, -0.0133748725, 0.015226366, -0.028741604, 0.024022633, -0.024904935, -0.0022608947, -0.0056580855, 0.0012340508, 0.026442276, 0.0022258032, -0.030024951, -0.02868813, -0.012973826, -0.0003133169, 0.027378049, 0.019169983, 0.024410311, 0.015092684, -0.0005217771, -0.0012273667, -0.0045719203, -0.003198339, -0.01043387, -0.030773569, -0.0021439232, -0.0061393403, 0.011309487, 0.0024346812, -0.03031905, -0.0071185604, 0.009391152, -0.0008797939, 0.031308297, 0.014838689, 0.0048326, 0.026870059, -0.025546607, 0.029944742, 0.0010418831, 0.024330102, 0.045692466, -2.181469E-05, -0.021897092, 0.014344065, 0.017619273, 0.01985176, -0.0154536255, -0.008094438, -0.009424573, -0.007887231, 0.01417028, -0.007860495, -0.0022893022, 0.013201086, -0.01379597, 0.00013900826, 0.023634957, 0.0023026704, 0.03628126, -0.0072789784, -0.004063929, 0.0062028393, 0.010681182, 0.014638166, -0.020386487, -0.036334734, -0.026148176, -0.007960756, -0.007900599, 0.018167367, -0.006978194, 0.0022859601, -0.014691639, -0.012064789, -0.007245558, 0.0043713977, 0.0016693525, -0.001529822, 0.025172299, 0.001095356, -0.021830251, 0.014584693, 0.0059187654, 0.0029242912, -0.017365277, -0.0039436156, 0.025880812, 0.028153405, 0.027057212, 0.02146931, -0.010754707, -0.005825188, 0.004478343, 0.01080818, 0.007813706, 0.026896795, -0.016843917, 0.03438298, 0.0065069655, -0.011262698, 0.015025844, -0.01947745, -0.027484994, 0.04414176, 0.013461766, -0.008722743, -0.023073493, -0.0074126604, 0.011309487, 0.012632938, -0.029543696, 0.0057115583, -0.016148772, 0.0057416367, -0.011088912, 0.00059028907, -0.014972371, 0.006172761, -0.01221184, -0.012940406, -0.014210384, -0.006125972, -0.0014245475, 0.08641197, -0.006059131, 0.0075797625, 0.030292314, 0.0075663943, -0.017071176, -0.022445187, -0.022258034, 0.018381258, -0.013809338, 0.010346978, 0.014504484, 0.010146455, -0.014517852, -0.00981225, 0.026281858, 0.0017879951, -0.012793356, -0.009203997, 0.008181331, -0.007927336, -0.02457073, 4.2193344E-05, 0.025573343, 0.0049529136, -0.012893617, -0.012739883, 0.01799358, 0.017445486, 0.0064401245, 0.0193304, -0.02154952, 0.018167367, 0.01139638, -0.020653851, -0.0044582905, 0.01859515, -0.0046387613, 0.024169683, -0.002192383, 0.0024681017, 0.010113034, 0.012051421, 0.00527375, 0.0014061662, -0.018434731, -0.0029376594, 0.024142947, -0.004204295, 0.0051434105, 0.020894477, 0.010494027, -0.029383278, -0.008208067, -0.0034255981, 0.013689024, 0.00013702393, -0.006951458, -0.014651534, -0.02788604, 0.0005965554, -0.03577327, 0.024089474, -0.0006847019, -0.02633533, -0.027992986, 0.006674068, 0.022378346, -0.025733761, -0.0012198471, -0.026696272, -0.01911651, -0.0202127, 0.003956984, 0.015333312, -0.0030897225, 0.012826776, -0.00037890457, 0.014116807, 0.021442574, 0.015654149, -0.008321697, 0.01294709, -0.011663744, 0.021095, 0.0029577117, 0.02383548, 0.007619867, -0.0076332353, 0.007532974, 0.013729129, -0.007459449, 0.016242348, -0.029918006, 0.0046554715, 0.027805831, 0.03387499, 0.032003444, 0.010707919, -0.015921513, 0.007539658, -0.036307998, 0.0035860164, -0.011830847, 0.008595745, 0.0004591137, -0.0134417135, 0.022097616, -0.013201086, 0.003123143, 0.01777969, -0.01239231, -0.0042243474, -0.018768936, -0.02604123, 0.02906244, -0.0066306214, 0.0002002095, -0.007853811, -0.024036001, -0.032618377, -0.037003145, 0.027752358, 0.0006684094, -0.0023611563, -0.0053138547, 0.0069447737, -0.011530062, 0.005885345, 0.0021188578, 0.006396678, 0.03991741, -0.017365277, -0.026014494, -0.020974686, -0.029035704, -0.02914265, 0.0110955965, 0.006460177, 0.006242944, -0.012719831, 0.013729129, 0.020319646, 0.0062061814, -0.00899679, -0.013548658, -0.05069217, 0.002339433, -0.019196719, 0.037297245, 4.467377E-05, -0.009317627, 0.010621025, 0.007860495, 0.0014086728, -0.027618676, -0.022231298, -0.025880812, 0.011784058, 0.021897092, 0.004070613, -0.00011488287, 0.00852222, 0.017458854, -0.023661694, 0.00682446, -0.017244963, -0.0016417806, -0.013916284, 0.0141569115, 0.0010702906, 0.007539658, -0.0044248705, -0.024958408, 0.028661394, 0.016068563, -0.014745112, -0.04264452, -0.0057817413, -0.015961617, 0.006239602, -0.0023060124, -0.009818934, -0.019584395, 0.0012624583, -0.012632938, 0.024062738, 0.0028156745, 0.015373416, 0.0066941204, 0.01931703, -0.02293981, 0.011015387, -0.012425731, 0.0133748725, 0.008308329, 0.0044582905, -0.03622779, -0.011563483, 0.00013765057, -0.003489097, -0.014598061, 0.0037063302, 0.008054334, -0.021669833, 0.01092181, -0.008655902, -0.01814063, 0.016282452, -0.021201946, 0.0005205238, -0.0059755803, -0.012739883, -0.061547138, -0.0032518117, -0.000852222, -0.0054842993, 0.011703849, -0.016202243, 0.01931703, -0.007847127, -0.011690481, 0.030853778, 0.012900301, 0.0037965653, 0.0024630886, -0.012058105, -0.021856988, -0.0101197185, -0.00922405, -0.0016142087, 0.0118776355, -0.0023177096, -0.022993283, 0.0061460244, 0.015921513, 0.00043989695, -0.004749049, -0.0063866517, -0.00041545823, 0.022512028, 0.030559678, 0.002219119, -0.030425996, -0.0011880978, 0.019357136, 0.0031482084, 0.007466133, -0.014237121, 0.020894477, -0.011643692, 0.02035975, -0.005260382, -0.011376328, 0.0039369315, -0.0053105126, 0.029837796, -0.02411621, 0.010674498, 0.00043989695, 0.0070450353, 0.0401313, -0.00837517, -0.0011438156, 0.012673043, 0.02721763, 0.008515536, 0.015948249, -0.011369644, 0.023862217, -0.017766321, -0.022351611, 0.011523378, 0.00767334, 0.015159525, -0.02124205, -0.023287384, -0.0094045205, 0.026228385, 0.004254426, 0.014584693, -0.007091824, -0.001067784, -0.023795376, -0.016001722, 0.004565236, -0.015266471, -0.023327488, -0.01939724, -0.03622779, 0.0013042338, -0.008355117, -0.009818934, 0.027097316, -0.010326926, -0.022458555, -0.0017178121, -0.004899441, -0.031896498, -0.0042176633, 0.016656762, 0.02199067, -0.012586149, 0.016148772, 0.01593488, -0.020199332, 0.016335925, -0.002127213, -0.019731445, -0.039516363, 0.016790444, -0.01165706, -0.008936633, -0.013715761, -0.00070767844, -0.0006287226, 0.01926356, -0.0026067966, -0.027565204, 0.019143246, -0.015573939, -0.011590219, 0.027618676, -0.01926356, 0.0070049306, 0.006607227, 0.012225208, -0.0060357368, -0.010520764, -0.00091989845, -0.011991264, 0.0003665808, 0.01667013, -0.019985441, 0.016255716, -0.034890972, -0.0027555178, 0.013054036, -0.008876476, 0.021576256, 0.013956388, 0.02442368, 0.0055945865, 0.011663744, -0.019089773, -0.008094438, -0.0025783894, -0.028741604, -0.011102281, -0.018060422, 0.007332451, 0.041441385, -0.017980212, -0.027939513, 0.0003408888, 0.01124933, -0.02943675, 0.019343767, 0.012405679, 0.016563185, 0.024543993, 0.026535854, -7.817257E-05, 0.040906657, 0.013929652, -0.0015122762, -0.022739287, -0.02648238, -0.009043579, 0.009217366, 0.0053171967, 4.5300403E-05, -0.02788604, -0.0055812187, 0.016416134, 0.0074861855, -0.012238576, -0.0012875237, -0.028955495, -0.00012605784, -0.011169122, 0.009718672, -0.0017662719, 0.0043713977, 0.014223753, -0.03879448, 0.009177261, -0.011911056, 0.014464379, -0.0090101585, -0.006904669, 0.015373416, 0.0033487312, 0.012960458, -0.02066722, -0.03697641, -0.014959003, -0.015052579, 0.0072923466, 0.02293981, 0.0059388177, 0.02396916, 0.0075864466, -0.020252805, -0.012018001, 0.024183052, -0.020252805, -0.00863585, 0.017004335, -0.008020913, 0.0010569224, -0.0068044076, 0.013221138, 0.016429503, -0.009290891, 0.009571623, -0.018982828, -0.013160981, 0.00969862, 0.008061018, -0.017686114, -0.006129314, -9.869483E-05, -0.01696423, 0.022632342, -0.0023310778, 0.0044148443, -0.035158336, 0.011215909, -0.014651534, -0.02264571, -0.01394302, 0.002633533, 0.029650642, -0.0006203675, 0.024904935, 0.20533536, 0.018795673, -0.013755865, 0.049783133, 0.026616063, 0.02989127, 0.0051333844, -0.003475729, -0.0071720327, 0.004388108, -0.018180735, -0.0063632578, -0.0028975548, -0.0016225638, 0.0019751498, -0.021830251, -0.029383278, 0.0108349165, -0.041949373, 0.0028190166, -0.0024614176, -0.018287681, 0.0038266438, -0.007686708, 0.013916284, -0.011663744, 0.012539361, -0.013809338, -0.008181331, 0.0043112407, 0.0035659643, -0.018996196, 0.0076399194, -0.004561894, -0.0069915624, -0.012104894, 0.009177261, -0.0021823568, -0.00981225, 0.040077828, -0.0043480033, -0.010340294, -0.010761391, -0.0014170279, 0.010560868, -0.00034840842, -0.014049966, 0.010534132, 0.008034281, 0.0028373979, -0.0119444765, -0.014932266, 0.0019768209, 0.022204561, -0.009197313, 0.014330697, 0.02404937, 0.0012365574, 0.021950565, 0.022859601, 0.008642534, 0.039142054, -0.017111281, 0.024731148, 0.013214454, 0.016416134, -0.01572099, 0.013876179, 0.0057282685, -0.012806724, 0.0013217796, -0.0072121373, -0.019196719, 0.035398964, -0.01741875, 0.011122333, 0.0034489925, 0.003056302, -0.0027521758, 0.013809338, 0.0031665897, -0.009738725, -0.016790444, -0.004047219, 0.008067702, -0.02574713, 0.009090368, -0.011911056, 0.0054976675, -0.0039937464, -0.006617253, -0.00641673, 0.019169983, -0.009056947, 0.0013384898, 0.020800902, 0.000497965, 0.03702988, -0.0113562755, 0.020185964, -0.012378942, 0.020506801, -0.009478046, 0.0058084778, -0.028313823, 0.009912511, -0.028581185, 0.018528309, 0.01346845, -0.00045953147, 0.03031905, -0.010734655, 0.0054475367, 0.00018339483, 0.0029894612, -0.0038600643, 0.015814567, -0.023675062, 0.004190927, -0.020560274, 0.008936633, -0.002197396, 0.005053175, -0.014504484, -0.00042819977, -0.02354138, -0.002270921, 0.035078127, -0.0024597466, -0.009117104, 0.0039235633, 0.00085514627, 0.009183945, 0.002274263, 0.015065948, -0.02066722, -0.00811449, -0.0017930082, -0.00015049656, 0.012793356, 0.0013125889, 0.0047691013, 0.012091526, 0.008742795, 0.029623905, -0.020306278, 0.014865425, -0.017686114, -0.018327786, -0.014985739, 0.0049595977, 0.0022408424, -0.0018364548, 0.010995335, 0.005173489, -0.035158336, -0.049783133, -0.01939724, 0.015293207, 0.005173489, -0.0012791685, 0.0031314981, 0.013227822, -0.008401906, -0.011670428, 0.018274313, -0.17089891, 0.019223455, 0.005982264, -0.010948546, -0.002489825, 0.0030178684, 0.035398964, -0.0020202675, -0.027805831, 0.0017161411, 0.011316171, -0.0051434105, -0.023755271, -0.02767215, 0.011610271, -0.0043112407, 0.004568578, 0.03334026, 0.007900599, -0.005708216, 0.030265577, -0.0033554153, 0.019664604, -0.022391714, 0.016148772, -0.00015080986, 0.018113894, -0.0022241322, 0.00084386684, -5.2637242E-05, 0.005173489, -0.01622898, 0.01931703, -0.0007970782, 0.030292314, -0.031923234, 0.00610592, -0.0070584035, -0.0077869697, 0.053098444, -0.020239437, -0.007599815, 0.0054274844, 0.0010402121, -0.018608518, 0.015440257, -0.026201649, 0.013174349, 0.00826154, -0.031976707, 0.028073195, -0.021001423, -0.004759075, 0.004976308, 0.03350068, -0.013929652, 0.0053573013, 0.002195725, 0.015386784, -0.0015791173, -0.0184481, -0.034516662, 0.0074728173, -0.01051408, -0.01931703, 0.011971212, 0.010006089, 0.022859601, -0.011697165, 0.028287087, 0.0017027729, -0.0042377156, -0.015186261, -0.038126074, 0.029356541, -0.0004231867, -0.00341223, -0.009183945, 0.018474836, -0.009778829, -0.010988651, 0.033393733, -0.025145562, 0.022017406, -0.019343767, 0.014317329, -0.028126668, -0.0112225935, -0.008455379, 0.011088912, 0.00398372, -0.020132491, 0.0041575064, -0.00021639754, 0.018060422, 0.018528309, 0.019290294, -0.02360822, 0.023594853, -0.0028891996, 0.028046459, -0.017097913, -0.0133080315, 0.030506205, 0.03061315, 0.013849443, 0.01689739, -0.017445486, 0.011115649, -0.00059530215, -0.0053004865, 0.008448695, 0.014504484, -0.003064657, 0.005902055, 0.0077602332, 0.0014111793, -0.022485292, 0.011135701, -0.0053840377, 0.018006949, -0.01866199, -0.020573642, -0.004916151, -0.003569306, -0.007619867, -0.08860435, -0.011189173, 0.009317627, 0.034062143, -0.011122333, 0.007546342, 0.0020252804, 0.0070584035, -0.008929949, 0.0145445885, -0.00383667, -0.0077736015, -0.0047223126, 0.009397836, 0.027912777, -0.008722743, 0.01165706, -0.03438298, -0.024851462, 0.010667814, -0.017258331, -0.027190894, 0.00981225, -0.015413521, 0.0040137987, -0.0062897326, -0.039489627, 0.00925747, 0.0213891, 0.014183648, 0.0036829358, 0.0004229778, 0.00481589, -0.026950268, -0.0034690448, -0.02249866, -0.01667013, 0.013588763, 0.013983125, -0.01851494, -0.002067056, 0.0044582905, 0.012231892, -0.038928162, 0.022685815, -0.017084545, -0.01368234, 0.008976738, 0.030853778, -0.022819497, -0.01165706, -0.013876179, 0.005694848, -0.02339433, 0.007031667, 0.003211707, 0.0050130705, 0.016536448, -0.013508554, -0.0031866417, 0.0020068993, 0.008829689, -0.001562407, 0.014745112, -0.0055076936, -0.016188877, -0.0066272793, -0.011717217, -0.005170147, -0.020573642, 0.0052202772, 0.007853811, 0.001317602, 0.02715079, -0.015360048, 0.0044348966, -0.02759194, -0.01475848, 0.008488799, -0.0030696702, 0.00044908756, -0.02293981, 0.019049669, -0.025359454, 0.011570167, 0.027137421, -0.00021326437, -0.027538467, 0.008702691, -0.014557957, 0.0023561432, 0.0021038186, 0.039436154, 0.004488369, -0.015988354, -0.015654149, -0.011523378, -0.029543696, 0.0022375004, -0.006951458, -0.036334734, 0.0010928494, -0.07716118, 0.014718375, 0.012318785, -0.030907251, 0.0044683167, -0.004839284, -0.00021660642, 0.004966282, -0.002284289, -0.019731445, -0.00011958262, -0.01704444, -0.0123321535, -0.00840859, -0.0044248705, -0.0064367824, 0.0071252445, 0.009317627, 0.016068563, 0.0030128553, -0.011175806, -0.013334768, -0.02612144, 0.014731743, -0.031709343, 0.011302803, -0.012298733, -0.010006089, 0.0042343736, -0.0019083088, 0.010066246, 0.0026502432, 0.0058519244, 0.03173608, -0.033527415, -0.040158037, 0.008903213, 0.0047757854, 0.008923265, -0.03259164, -0.019637868, -0.00811449, 0.016335925, 0.01830105, -0.054194633, -0.00020804243, 0.0140900705, 0.012793356, 0.008254856, 0.02707058, 0.027779095, 0.016255716, 0.010393767, 0.010420502, 0.0033854935, -0.018982828, 0.0007640755, -0.01586804, -0.011643692, -0.017806426, 0.042430628, 0.03521181, 0.014049966, -0.0003626121, -0.016549816, 0.0035392279, -0.013481818, 0.0075864466, 0.0010034497, -0.018862514, -0.0028658053, 0.0032568248, 0.029704114, 0.013254559, -0.0052002254, 0.013655604, 0.0155873075, -0.024183052, -0.0061593927, 0.032404486, 0.00045577166, -0.018461468, -0.020988055, 0.010701234, 0.00018443922, 0.0022074222, -0.015827935, 0.025693657, -0.026843322, 0.013475134, -0.016188877, 0.0006249628, -0.013281295, -0.0069915624, 0.028474241, 0.010634393, 0.004207637, 0.020560274, 0.006553754, -0.0043546874, 0.0027571889, -0.0003757714, 0.0002130555, -0.015306575, -0.007954072, -0.012713147, -0.0057215844, -0.029837796, -0.014691639, 0.020319646, -0.0037965653, -0.015025844, -0.01931703, 0.004073955, -0.011302803, -0.0066473316, 0.0023327488, -0.02736468, -0.015065948, 0.020774165, 0.003973694, 0.03769829, -0.003916879, -0.017071176, 0.0048860726, -0.018702095, -0.010868337, 0.010841601, 0.014263857, 0.0039235633, 0.0053773536, 0.003973694, -0.012345522, -0.011784058, 0.00040543207, 6.48566E-05, -0.0077067604, 0.023848848, -0.00013921714, 0.06892638, 0.016910758, -0.008863109, 0.022592237, -0.00755971, 0.03628126, 0.016416134, -0.008722743, 0.0058017937, -0.039970882, 0.031548925, -0.011670428, -0.009310943, 0.02419642, -0.037725028, -0.0038299859, 0.012078158, 0.0051935413, -0.018167367, 0.0074193445, 0.035639588, -0.024183052, 0.014945635, 0.012666359, -0.02029291, -0.023033388, 0.016763708, 0.0025900865, 0.014130175, -0.024517257, -0.005691506, -0.0045217895, -0.02767215, -0.010420502, -0.01586804, 0.0063298373, -0.013414977, -0.0036361471, -0.011663744, 0.009538203, 0.0010001076, 0.027859304, 0.002760531, -0.010113034, 0.02014586, 0.008475431, -0.0054274844, 0.0114832735, -0.05245677]
+ },
+ {
+ "Id": 46,
+ "Type": "Cycling",
+ "Brand": "B&R",
+ "Name": "Zenith Cycling Jersey",
+ "Description": "Get ready to hit the road with the Zenith Cycling Jersey by B&R. This high-performance jersey is made from moisture-wicking fabric to keep you cool and dry during intense rides. It features a full-length zipper, three rear pockets for storage, and reflective accents for increased visibility in low-light conditions. Available in a vibrant red color.",
+ "Price": 64.99,
+ "Embedding": [0.0017554734, 0.000520171, -0.0148004, 0.0142959915, 0.008979794, 0.021224968, -0.009417833, -0.040485397, 0.0040419027, -0.030476876, 0.0128292255, 0.0010793341, 0.0043936614, -0.012411097, 0.0032504464, -0.0029285543, 0.022857657, -0.0037432401, -0.001508247, -0.023999212, 0.0066303136, -0.005203369, -0.004698961, -0.0016384971, -0.00011438369, -0.0153844515, 0.029521156, -0.007340467, 0.014574743, 0.001466766, 0.031910457, 0.033025466, -0.013572563, -0.011289452, -0.01090451, 0.011627937, -0.0026697132, -0.01059921, 0.027715905, -0.006922339, 0.03668906, 0.0052564647, 0.009948788, 0.015225165, -0.016618924, 0.0004936232, 0.006802874, 0.005913523, 0.0075462125, 0.021092229, 0.0028538888, 0.022539083, -0.017959587, 0.0008652924, -0.008103716, -0.02494166, 0.012663301, 0.037883714, 0.035308577, 0.004725509, -0.009105896, -0.0011822068, -0.023839926, 0.013293812, -0.001340664, -0.034326307, -0.013227442, -0.016804758, 0.0073006456, -0.005077267, 0.025100946, -0.0051502734, -0.0012411097, 0.012172167, 0.008827144, -0.0033616154, -0.009623578, -0.010877961, 0.02310986, -0.009683311, 0.014110156, -0.0065606255, -0.02245944, 0.009451018, 0.012411097, 0.010081528, -0.01837108, 0.0048582475, 0.006690046, -0.01068549, 0.00013771672, -0.0016974001, 0.015344629, 0.007081626, -0.013240716, 0.0044799414, 0.00030032202, 0.00803071, -0.0035939086, -0.018052505, 0.0040750876, 0.009915604, -0.0015729573, -0.011023975, -0.038972173, -0.03368916, -0.004854929, 0.00076076045, 0.020733833, 0.013366818, -0.023494804, 0.017787026, 0.0055119875, -0.02174265, 0.026056668, 0.0029318728, 0.034697976, 0.018463995, 0.003092819, -0.03188391, -0.006252007, 0.025167316, -0.0013149458, -0.023972664, 0.019486086, 0.030025564, -0.030583067, -0.020853298, 0.029282225, 0.008767411, -0.0057575544, -0.0028406149, -0.0025170634, 0.030131755, -0.003044701, 0.008720953, 0.0003127663, 0.016725115, -0.019977221, -0.0075528496, -0.009517387, 0.02344171, -0.011342548, 0.0007628345, -0.00074001995, -0.0005400818, -0.017202975, 0.019857755, 0.013804857, -0.011913326, 0.010048343, -0.024171773, 0.03408738, 0.023362065, -0.015410999, -0.0039091636, 0.002772586, 0.010718675, -0.042104814, 0.0038427943, 0.0067497785, -0.0064345235, 0.010512929, -0.017773753, 0.038016453, 0.021596637, 0.027928287, -0.020441808, -0.0029351914, 0.016539281, -0.0033948002, 0.020003768, -0.026441611, -0.006842696, -0.0148004, 0.025392972, 0.010340368, 0.0032969052, -0.004463349, 0.0015240097, 0.0040750876, -0.010864688, 0.03780407, 0.006285192, -0.012324817, 0.011050522, 0.03079545, -0.011727491, -0.0020956171, -0.019061321, -0.00074458285, 0.01776048, 0.014057061, -0.0011340888, -0.65541214, 0.0037233292, -0.01762774, -0.006557307, 0.015437547, 0.008004162, 0.021689555, 0.007931156, -0.015557012, 0.013791583, 0.008150175, 0.02058782, -0.014229622, -0.035282027, -0.018357804, -0.01684458, 0.0025054489, -0.007466569, 0.014972961, -0.003673552, -0.04032611, -0.018649831, -0.00354745, 0.016340172, 0.013054881, 0.011216446, 0.004781923, 0.004496534, 0.006948887, 0.02480892, -0.03852086, 0.030025564, 0.011541657, -0.002653121, 0.05206024, -0.03536167, 0.0019429672, 0.015862312, 0.0025950477, 0.039051816, 0.012311543, 0.012391186, 0.02126479, 0.01247083, -0.007280735, 0.009457654, 0.03283963, -0.010366917, 0.014083609, -0.0022167414, 0.024609812, 0.015703024, 0.0007321386, 0.01592868, -0.0016003347, -0.011475287, 0.024543442, 0.012669939, -0.005521943, 0.006922339, -0.016857853, 0.009046163, -0.0127031235, -0.035786435, 0.007254187, 0.025061125, -0.008176723, -0.020362163, 0.006447797, -0.022207236, 0.0017372217, 0.0223267, 0.00459277, 0.027450427, 0.0314326, 0.009245272, 0.013127888, -0.0031641661, -0.002304681, 0.0023345472, 0.016964044, 0.011548294, 0.00315587, -0.020972764, 0.014919865, -0.013021696, 0.0049412097, -0.01168767, 0.014853495, 0.028698174, 0.00039925406, -0.009278457, 0.002122165, -0.013738487, -0.017070236, 0.01837108, 0.0091390805, 0.03429976, 0.020694012, -0.022632001, -0.021769198, -0.032043196, -0.009258546, 0.0053195157, 0.009417833, -0.00027128536, 0.020534724, 0.0060097585, 0.023083314, -0.024052309, -0.0037896987, -0.030715806, -0.033397134, -0.016087968, -0.010413375, -0.02983973, 0.02739733, 0.01915424, 0.029388417, -0.048131164, 0.0085085705, -0.018225066, 0.019539181, 0.017680835, -0.011342548, 0.012882321, 0.017441906, 0.00541907, -0.02739733, -0.019698469, 0.013486283, 0.00866122, 0.027689356, 0.0042941067, 0.031937007, 0.0065340777, 0.008495296, 0.011873504, 0.003763151, -0.055591095, -0.023521353, 0.006822785, -0.015557012, -0.02494166, -0.0095970305, -0.016340172, -0.023839926, 0.0012593614, -0.016287077, -0.01347301, 0.007055078, -0.009411195, -0.016526006, -0.0055352165, 0.006013077, -0.017733932, -0.016220707, -0.0028804364, -0.013021696, -0.015145521, 0.015689751, -0.011647848, -0.009729769, -0.023640817, 0.0077187736, -0.011389007, 0.0029999015, 0.026853101, -0.024344334, -0.048609026, 0.013964144, -0.003922438, -0.035414767, 0.017402085, -0.021251515, -0.007659041, -0.029653894, -0.01671184, 0.009291731, 0.0029152804, 0.005203369, -0.0058272425, -0.023614269, -0.018689653, 0.019300252, 0.00083293725, 0.013765035, 0.022286879, 0.008979794, 0.012736307, -0.00983596, 0.015663203, -0.011083707, -0.009543935, 0.0017869989, -0.01915424, 0.0071546324, 0.0055551273, 0.006583855, 0.009517387, 0.012902232, 0.007592671, 0.038680147, -0.001795295, 0.014163252, -0.0119266, 0.018463995, 0.0022781333, 0.027901739, 0.019924125, 0.0013672118, -0.032361772, -0.023229327, -0.0018235021, -0.005969937, 0.015557012, 0.00787806, 0.031220214, -0.0034313034, -0.011395643, 0.01466766, 0.0062885107, 0.019552456, -0.0134132765, -0.027769001, 0.015769394, -0.0055053504, 0.039104912, 0.00881387, -0.012975238, 0.021516994, 0.029229129, 0.0066303136, 0.0034180295, 0.008853692, 0.016618924, 0.0052564647, -0.021795746, 0.0446534, -0.013765035, 0.03358297, 0.026640719, 0.009656763, -0.020800203, 0.026282324, 0.00733383, 0.04298089, -0.0043472024, 0.034459047, 0.022685096, -0.007599308, 0.009543935, -0.018809117, 0.009172265, 0.013240716, -0.007625856, 0.018132148, -0.0020159737, 0.007207728, 0.018397627, 0.0019678557, 0.021875389, 0.02422487, 0.010088164, 0.019446265, -0.029547703, -0.009656763, 0.0077320472, -0.018278161, 0.009311642, 0.025671724, -0.030583067, 0.016897677, -0.0017554734, 0.013950869, -0.0062121856, -0.0053394265, -0.0038992083, -0.008176723, 0.03395464, -0.020030316, -0.02041526, -0.012517288, 0.03634394, -0.011435466, -0.033397134, -0.011933236, 0.01551719, 0.0076723145, 0.030662712, 0.025260232, 0.012742945, -0.016565828, -0.009265183, 0.010612484, 0.004114909, -0.0014360702, -0.017773753, 0.015623381, -0.0040385844, -0.01817197, 0.02409213, -0.007473206, -0.017879944, 0.014813674, 0.01046647, -0.020123234, -0.03310511, 0.010891235, -0.016260529, -0.0032073064, -0.018809117, 0.0028240224, -0.005146955, 0.017441906, -0.0025784553, 0.009484203, -0.021795746, 0.0074400213, -0.023282422, -0.02137098, -0.0042542852, -0.013977418, 0.010625757, 0.07465242, 0.0055053504, -0.025432793, 0.014906591, -0.005173503, 0.0057841022, -0.00058280723, -0.023893021, 0.0068692435, 0.0016177567, -0.0031591884, -0.019884303, 0.0005736814, -0.01943299, -0.016632197, -0.0033748893, -0.004596088, -0.03634394, 0.008209907, -0.0026979204, 0.006928976, -0.009676673, 0.014933138, 0.012344728, -0.0035242208, 0.008375832, 0.009437744, 0.013950869, 0.019313525, -0.013512831, 0.019207334, -0.00049777125, -0.019539181, -0.013360181, -0.0033582968, 0.0048350184, -0.0002864259, -0.018915309, 0.028034478, -0.021251515, 0.013605748, 0.0041514123, 0.0006736505, 0.0016567487, 0.027065484, 0.008793959, 0.0142959915, 0.009497476, -0.008322736, -0.026561076, 0.012902232, 0.0005641408, -0.0056745927, -0.017614467, -0.005740962, 0.04181279, 0.0034246664, -0.024729278, -0.003988807, -0.050679754, -0.00078274537, 0.008601488, 0.023667365, -0.0071745436, -0.011681032, -0.0088868765, -0.0018517092, -0.0018152059, -0.017986136, -0.013990692, -0.027636262, 0.0012494059, 0.0029982424, 0.013088066, -0.00013979076, -0.0020375438, 0.02143735, -0.010161171, 0.016419815, 0.009218724, -0.0023279104, 0.0002729446, 6.502138E-05, -0.0374324, -0.0015596834, 0.008913425, 0.012185441, -0.027158402, -0.0070949, 0.00040340214, -0.003323453, 0.0060462616, 0.050201893, 0.004184597, 0.013804857, -0.011601389, 0.025021303, 0.0061690453, -0.002966717, -0.02089312, 0.013313723, 0.016645472, 0.014826947, 0.012902232, 0.04321982, 0.018132148, -0.002576796, -0.008594851, 0.0012975238, 0.014216348, -0.0012834202, -0.017680835, 0.016618924, 0.004692324, -0.019486086, 0.03297237, -0.007831601, -0.009623578, 0.017853396, -0.021039132, 0.016419815, -0.044733047, 0.015955228, 4.018466E-05, -0.0037034184, 0.011827046, 0.0014767215, 0.009650126, -0.0032089655, 0.015410999, 0.02041526, 0.035892628, -0.0132871745, -0.02456999, -0.022260332, -0.021835567, -0.014680934, 0.0112363575, 0.0077054994, -0.013977418, -0.034326307, 0.008442201, 0.018158697, 0.019101143, -0.014588017, -0.025233686, -0.013831405, -0.01915424, -0.029733539, 0.0031243444, -0.029069843, -0.013247353, -0.0048383367, -0.0031094113, -0.022207236, -0.053069055, -0.035945725, -0.034193568, -0.0115217455, 0.028565435, 0.023508077, -0.010459834, 0.001051127, 0.03055652, -0.01793304, 0.003092819, -0.003666915, -0.0012825907, -0.028485792, 0.009769591, 0.026693815, -0.00918554, -0.017163154, -0.036078464, -0.015849037, 0.009796139, 0.008501934, -0.012802677, 0.0018351168, -0.043193273, -0.025817737, 0.0019595595, -0.006928976, -0.016632197, -0.031007832, -0.0027875192, 0.048343547, 0.005326153, -0.002953443, 0.0076789516, 0.009656763, -0.02372046, 0.013950869, -0.00021549348, 0.009656763, -0.0029949239, -0.0073139193, -0.021769198, -0.019446265, 0.011435466, 0.018556913, -0.012669939, 0.016552554, -0.014534921, 0.0010826525, 0.0058902935, -0.015225165, -0.012192078, 0.020056864, 0.025738094, -0.019897576, -0.014972961, -0.007824965, -0.047520567, -0.00546221, 0.0062951474, -0.03031759, 0.02480892, -0.011541657, -0.014972961, -0.0010934375, -0.017840123, 0.009550571, -0.032441415, 0.014813674, 0.0319901, -0.01943299, -0.013778309, -0.040777422, -0.03103438, -0.0061192685, 0.0017787027, 0.034963455, -0.018132148, -0.0025751367, 0.015172069, 0.023229327, -0.0145481955, -0.0058969306, 0.016645472, 0.028698174, 0.011435466, -0.011156714, -0.029892825, -0.003364934, 0.010559388, -0.027822096, 0.004665776, 0.005843835, -0.02058782, -0.0021404165, 0.037034184, -0.0495382, 0.019393168, -0.0037830616, 0.0037531955, -0.0022565632, 0.019831209, 0.0013788264, 0.0011656145, 0.0069090654, 0.022207236, 0.0062752366, 0.0054987133, 0.021503719, 0.01769411, 0.012351365, -0.005704459, -0.0068493327, 0.023906296, -0.0015480687, -0.017362263, -0.0060230326, -0.016937498, 0.0028007932, 0.0038693422, -0.0048781587, -0.00487484, 0.013380092, 0.009762954, -0.009650126, 0.0090528, -0.0051635476, -0.018981678, -0.008641309, -0.0048283814, -0.03852086, -0.0053792484, -0.009059438, -0.033158205, -0.029972468, -0.007897971, 0.0040651322, 0.017375536, -0.005107133, 0.0029385097, -0.006709957, 0.0063947015, -0.033052012, 0.016698567, 0.010161171, -0.0012203692, 0.008150175, 0.0135393785, 0.015862312, -0.025645176, 0.020879846, -0.015264986, -0.03018485, -0.017256072, 0.0018600053, -0.0028820958, -0.0012610205, -0.012105797, 0.0048018335, 0.0018102282, 0.020295795, -0.018397627, -0.030928189, 0.012211989, -0.0076789516, -0.006928976, 0.025260232, -0.029733539, 0.0032338542, -0.009079348, 0.005229917, 0.0073935627, 0.0014045447, -0.022539083, -0.022539083, 0.01616761, 0.0026929427, -0.017893218, 0.000101732, -0.022087771, -0.015596833, 0.026481433, -0.0021387574, 0.017441906, 0.00811699, 0.009251909, 0.013293812, 0.025578806, -0.014309265, -0.0073271934, -0.00927182, -0.024795646, -0.009338189, -0.015477369, 0.020428533, 0.034326307, 0.026627446, -0.022247057, -0.01442873, -0.008993068, -0.035467863, 0.011103618, 0.029892825, 0.007944429, 0.0036005457, 0.028459243, 0.01216553, 0.011462013, 0.025950477, 0.012742945, 0.007997525, -0.004785241, 0.019406443, 0.009066074, 0.01138237, 0.004141457, -0.047865685, -0.017893218, 0.02528678, -0.0060562175, 0.018729474, 0.011455377, 0.0026846465, 0.0065904916, 0.009437744, -0.020548, 0.011090344, 0.015782667, 0.02034889, -0.038547408, -0.007957703, 0.00507063, 0.015849037, 0.003527539, 0.0022947255, 0.0032421502, -0.0046060435, -0.016764937, -0.010751859, -0.013346908, -0.008548392, -0.017056962, 0.010612484, 0.038096096, -0.016857853, 0.027078757, 0.00057492586, -0.020070137, 0.0060927207, 0.008973157, -0.0073935627, -0.031220214, 0.0029617392, -0.020003768, 0.0031060928, -0.0030563157, 0.0069090654, 0.018742748, -0.0061756824, -0.005873701, -0.00888024, -0.021570088, 0.008043984, 0.01619416, -0.01915424, -0.011428828, 0.0056679556, -0.017335715, 0.0047719674, 0.018649831, -0.039051816, -0.042556126, 0.012603569, -0.023481531, -0.023123136, -0.013061519, -0.0009217065, 0.0014758918, 0.0086811315, -0.00080431544, 0.20579855, 0.0048350184, -0.02518059, 0.011462013, -0.012796041, 0.0074333847, -0.0029484653, -0.0106058465, 0.00927182, 0.006836059, 0.003653641, 0.009497476, -0.027689356, -0.0041082725, 0.018132148, -0.020229425, -0.02028252, -0.011793861, -0.017548097, -0.009563846, -0.01960555, 0.00896652, 0.006829422, -0.0127031235, 0.028884009, 0.0026879648, -0.013738487, -0.0008976475, 0.016924223, -0.0027178312, -0.004463349, -0.012543837, -0.0072740978, -0.0014161593, -0.0020674102, 0.0068758805, 0.007227639, 0.00085367775, 0.0052896496, 0.028353052, 0.0050108978, 0.014176526, -0.008521845, -0.004499852, 0.022446167, -0.011110255, -0.022247057, 0.0087143155, 0.00045214224, -0.015941955, -0.025538985, -0.0119465105, 0.0075793974, 0.039768606, 0.026773458, -0.0061458163, 0.016154338, -0.002332888, 0.008807234, -0.0144951, -0.012125708, -0.0045429925, -0.0028372963, 0.023481531, -0.015968503, 0.013486283, -0.023056766, 0.01371194, 0.036025368, 0.0026647355, 0.009324916, -0.010127987, 0.0074466583, 0.019778112, -0.019061321, -0.008448838, 0.0025817738, 0.0041248645, 0.005780784, 0.03045033, 0.01612779, 0.0045429925, -0.0042211004, -0.019751564, -0.0012543836, -0.052007142, 0.012172167, 0.0041580494, 0.015968503, 0.01201288, 0.010307184, -0.01745518, 0.00012662057, -0.020401986, 0.012869047, 0.006696683, -0.027078757, 0.026016846, -0.014866769, 0.022034675, -0.010612484, 0.0031591884, -0.044573758, -0.004111591, -0.021105502, -0.0036967814, -0.017202975, 0.0028455926, -0.0025187228, -0.018702926, -0.011561568, -0.037113827, 0.015012782, -0.018610008, 0.008793959, 0.004469986, -0.0017936359, -0.024145225, 0.008873602, -0.028910557, 0.02028252, -0.005336108, 0.011893415, -0.0026365286, 0.010340368, -0.015092425, 0.0017189701, 0.0077320472, -0.0014344109, -0.03575989, 0.008468749, -0.005671274, 0.004114909, -0.031777717, -0.02372046, 0.006935613, 0.00044177202, -0.018225066, -0.005452255, 0.0044202087, -0.008389105, -0.008475386, 0.012676575, -0.0009125807, 0.022618728, -0.030529972, 0.012052702, -0.020189604, -0.032175936, 0.005196732, 0.0020557954, -0.010877961, -0.0022449484, -0.021317884, 0.0071479958, 0.0023909614, -0.048343547, -0.01721625, -0.017840123, 0.0086811315, -0.009059438, 0.0050374456, 0.006026351, 0.0005164377, 0.0032803128, -0.0011191558, -0.16895021, 0.023189506, 0.043883517, -0.022804562, 0.01521189, 0.0032272171, 0.0062055485, 0.0003225143, -0.02433106, 0.019552456, 0.03538822, -0.016937498, -0.031007832, -0.009457654, -0.007234276, 0.0012245174, -0.0027045573, 0.021278063, 0.017269345, -0.0017969543, 0.0071413587, -0.013605748, 0.019472813, -0.011667759, 0.012769492, 0.005259783, 0.0054854397, 0.005966618, 0.0145481955, -0.017840123, 0.014747304, -0.018795844, 0.028167218, -0.005166866, 0.012211989, 0.008953246, -0.0077984165, 0.005229917, -0.02034889, 0.023202779, 0.008170086, 0.004572859, 0.013950869, 0.02072056, 0.0063515618, 0.033476777, -2.3553397E-05, -0.0011539997, 0.003101115, -0.013240716, 0.0232426, -0.0011067115, 0.0031309815, -0.02198158, 0.021503719, 0.016048146, -0.0069090654, 0.009464291, 0.021623185, -0.010572662, 0.0003890912, -0.0116146635, 0.018185245, -0.010068254, 0.0024954933, -0.005286331, 0.018132148, 0.0076922257, -0.014349087, 0.007951067, -0.008926698, 0.013565927, 0.0013829746, -0.018012684, 0.014866769, 0.018278161, -0.01201288, -0.011010701, 0.015530464, -0.015357903, -0.009789502, 0.037299663, -0.018264888, 0.005714414, -0.014641113, 0.01684458, -0.01619416, -0.0062088673, -0.014468552, -0.002668054, 0.0026083216, -0.03660942, 0.018198518, 0.0001672719, -0.0012560429, -0.003323453, 0.009238635, -0.010937694, -0.014999508, -0.002165305, 0.015026055, 0.0038494312, -0.026959293, 0.010619121, 0.036290843, 0.007758595, 0.032892726, -0.0046956423, 0.0004237278, -8.8406254E-05, -0.0005330301, 0.032175936, -0.007997525, 0.018663105, 0.0061823195, 0.021224968, -0.0011407258, -0.024782373, 0.023879748, -0.02861853, 0.045449838, -0.0035209022, -0.006955524, -0.0130814295, -0.008024073, -0.016472911, -0.09514732, -0.019486086, 0.014455278, 0.001514884, 0.005780784, -0.0031376183, -0.008800596, 0.047281634, -0.00491798, 0.023415161, -0.0014053743, -0.00951075, -0.016446363, 0.022671822, 0.015477369, -0.01456147, 0.02983973, -0.019950673, -0.005873701, 0.0029484653, 0.0077386843, -0.0154640945, -0.030211398, -0.0024971527, -0.012669939, -0.02126479, -0.026428336, 0.01582249, 0.022884205, -0.0010942672, 0.006862607, -0.016220707, 0.00881387, -0.04383042, -0.0140437875, -0.017096784, -0.032680344, -3.494769E-05, 0.03201665, -0.022618728, -0.010108075, 0.002570159, 0.029760085, -0.037512045, -0.0054422994, -0.01660565, -0.015769394, 0.023614269, 0.025751367, 0.0020640916, -0.021556815, -0.0063382876, 0.0033881632, 0.0026199361, 0.027012387, -0.020747107, 0.0075727603, 0.007745321, -0.017720658, -0.0030247902, -0.0007586864, 0.0052531464, 0.009570482, 0.03246796, -0.011827046, 0.008767411, -0.024131952, 0.0029949239, 0.021424076, -0.0047653303, 0.004602725, 0.0319901, -0.013021696, 0.022140866, -0.03586608, -0.00023457472, -0.02742388, -0.00951075, 0.01294869, -0.0193268, -0.022472715, -0.007473206, 0.0118204085, -0.016034871, 0.011833683, 0.039662417, 0.0074400213, -0.010393464, -0.002674691, -0.036848348, 0.002940169, 0.0453171, 0.034379404, -0.014149978, -0.01316771, -0.015397725, 0.015424273, -0.029945921, -0.008807234, -0.0060163955, -0.0001721459, -0.010884599, -0.07714791, 0.011913326, -0.0018981678, -0.019486086, 0.016990593, 0.0011689329, -0.00020118256, 0.008926698, 0.014866769, 0.015636655, 0.006696683, 0.0017770434, -0.020003768, -0.0030977966, -0.008694405, -0.02483547, 0.009464291, 0.0044168904, 0.0030729081, 0.017189702, -0.013453099, 0.008336009, -0.00081302645, -0.00787806, -0.038733244, 0.0054356623, -0.014136705, 0.017972862, -0.0010909487, -0.006437842, 0.023348792, -0.015424273, 0.009198814, 0.027370784, -0.013360181, -0.02450362, -0.009344826, 0.016565828, 0.0022432893, -0.041255284, -0.006822785, -0.013360181, -0.0062685995, -0.006374791, -0.038388122, 0.0007284053, -0.004377069, 0.010254089, 0.00033641042, 0.019977221, 0.026176132, 0.020030316, 0.0101810815, -0.041096, 0.004469986, -0.035467863, -0.0332113, -0.009948788, -0.01616761, -0.009776228, 0.04239684, 0.014030513, 0.0023544582, 0.004655821, 0.027012387, 0.007221002, -0.03480417, 0.017362263, -0.008986431, 0.0013141162, -0.024556717, -0.0024141907, 0.011256268, -0.010771771, 0.008462111, -0.02433106, 0.010725312, -0.0058571086, -0.011966421, 0.035175838, -0.0012228581, 0.013977418, -0.045449838, -0.0050374456, -0.0030148348, 0.0061989115, 0.011203173, -0.0027974746, -0.00896652, 0.014853495, -0.017362263, 0.009616941, 0.008468749, -0.026707089, -0.01155493, -0.0028372963, -0.0019446264, 0.006102676, -0.016632197, 0.010851414, -0.0043272916, 0.015570286, 0.014773851, 7.300646E-05, -0.003875979, 0.011269541, -0.017654289, -0.028087575, -0.015968503, -0.01643309, -0.0005218302, -0.012849136, 0.007977614, 0.010068254, -0.012689849, 0.0039025268, 0.010260725, -0.0041514123, -0.018848939, 0.005336108, 0.022817835, 0.03045033, -0.014508374, 0.021663006, 0.020163056, -0.0025469298, -0.00026444098, -0.014282717, 0.0043571577, 0.02372046, 0.029069843, -0.003379867, 0.009630215, 0.0021453942, -0.026242502, -0.0143756345, 0.005837198, 0.03127331, -0.013326996, 0.06493592, 0.0013738488, -0.017707383, 0.027981384, -0.0071612694, 0.008807234, 0.01545082, -0.008548392, -0.015344629, -0.035414767, 0.0042609223, 0.0038992083, -0.0023079994, 0.008581577, -0.03777752, 0.014747304, 0.008548392, 0.004141457, -0.0009407877, -0.024981482, 0.017654289, -0.008063895, 0.01878257, -0.012762856, 0.0016940816, -0.012636754, 0.007652404, 0.012105797, 0.008833781, -0.018211791, 0.03355642, -0.01551719, -0.009537297, -0.00032458836, 0.005259783, -0.0153844515, -0.020096686, 0.017986136, -0.0022847701, 0.024118679, 0.017840123, 0.018756023, -0.011070433, -0.022924026, 0.02487529, -0.048317, -0.0042708777, -0.021928484, -0.036450133]
+ },
+ {
+ "Id": 47,
+ "Type": "Climbing",
+ "Brand": "Grolltex",
+ "Name": "Edge Pro Ice Axe",
+ "Description": "Take your ice climbing adventures to the next level with the Edge Pro Ice Axe from Grolltex. This axe features a lightweight aluminum shaft, a durable stainless steel pick, and a comfortable hand grip for maximum control. Perfect for tackling steep ice walls and mixed alpine terrain. The sleek orange color adds a touch of sophistication to your gear.",
+ "Price": 129.00,
+ "Embedding": [0.009726371, -0.014478031, -0.008550284, -0.035282597, -0.005035543, 0.02721221, -0.025103364, -0.002982461, 0.038283646, -0.040933218, 0.00834751, 0.0009471214, -0.0031311614, 0.009246473, -0.02076401, 0.012903157, 0.021737324, 0.020953266, -0.01073348, -0.0042954194, -0.028415332, 0.0153296795, 0.02568465, -0.01687076, -0.0043934267, -0.020263836, 0.028874952, -0.00045793023, 0.03003752, -0.012173171, 0.030551214, -0.01318028, -0.013585827, 0.00040977154, -0.021710288, 0.0035012232, -0.005694557, 0.00053523766, 0.005427572, 0.01946626, 0.015965037, -0.03325486, -0.004866565, 0.007489103, 0.009023422, 0.008381306, -0.027158136, -0.010071086, -0.02636056, 0.016194846, -0.0002587475, 0.021088447, -0.015667636, 0.017343897, 0.01654632, -0.014694323, 0.015437826, -0.013923783, 0.03960843, 0.017222233, -0.018168509, 0.0046299957, -0.022967484, -6.801362E-05, -0.012010952, -0.0058736736, -0.020818083, -0.022791745, -0.0010147126, 0.012484091, 0.022440271, 0.00827992, 0.02054772, 0.0023099286, -0.016654467, -0.010821348, -0.009624984, -0.0054546082, 0.030253813, 0.0030787783, 0.010888939, -0.024021905, -0.0051774844, 0.027333872, 0.023318958, 0.0015055935, 0.0020209763, -0.0030061177, -0.034687795, -0.010929494, 0.0027475816, 0.008631393, 0.0182361, 0.023629876, -0.039121777, 0.010848384, -0.004413704, -0.0005310132, -0.022724155, -0.01685724, 0.02352173, 0.008604357, 0.0023471038, -0.007833818, -0.047476046, 0.0070700375, -0.0021561587, 0.011084953, 0.0031311614, -0.0034809457, -0.040419526, 0.013687214, 0.028063858, -0.028631624, -0.006650972, -0.03433632, 0.031173052, -0.0025566365, -0.0016813306, -0.027631275, 0.0070835557, 0.020290872, 0.019249968, -0.0045793024, -0.001885794, 0.0043190764, -0.022670083, 0.0124165, 0.025225028, -0.019439224, 0.03571518, 0.005116652, 0.0004359631, -0.012984266, -0.018871458, 0.027982749, 0.0030770884, -0.0106253335, -0.004792215, -0.0055999295, 0.0066543515, -0.0060189944, -0.017979253, -0.0098547945, -0.018195545, 0.02215639, 0.003403216, 0.015316161, 0.005991958, 0.006444819, 0.0054512285, -0.020358464, 0.041122474, 0.012159653, 0.0050085066, 0.008374548, 0.0067422204, 0.024265233, -0.041636165, -0.026806662, 0.0022828921, -0.014775432, 0.019182377, -0.018655166, -0.01869572, 0.02237268, -0.028226078, 0.012355668, 0.0144645125, -0.01142291, 0.0133627765, 0.01831721, -0.016208366, 0.01478895, 0.03517445, 0.0116324425, -0.011382354, 0.03174082, 0.008996386, 0.016600395, 0.012970747, -0.0055154404, 0.016667984, 0.0044643977, -0.0226836, 0.0013459094, 0.011720311, 0.033822626, -0.008239365, -0.027117582, 0.012389463, 0.022480827, -0.0031379205, 0.011693275, -0.6475776, -0.022805264, -0.0067523587, -0.030145666, 0.041419875, 0.0076378034, 0.012463814, 0.0036364056, -0.022102317, 0.0068165706, -0.009848035, 0.0205342, 0.015613562, -0.03479594, 0.005062579, -0.011706793, 0.010929494, -0.01003729, 0.006603658, -0.0040216753, -0.027104063, 0.0031227125, -0.016302994, -0.03755366, 0.0073674386, 0.0043258355, 0.004775317, -0.021331776, -0.019966435, 0.018709239, -0.011199859, 0.024265233, -0.008212328, 0.020263836, 0.057749905, -0.03585036, -0.016924832, 0.023805615, 0.022494344, 0.038824376, -0.044772398, -0.014505067, -0.0025042533, -0.017100569, 0.012423259, 0.006265702, 0.01968255, -0.0056202067, 0.00035527613, -0.0035586755, -0.006934855, -0.025197992, 0.013761564, -0.0029858404, 0.0013780151, -0.0022271294, 0.03403892, -0.0016331719, 0.01118634, 0.009814239, -0.024048941, 0.023616359, -0.036769602, -0.026725553, -0.02215639, 0.010091363, -0.04014916, -0.022778228, 0.030659359, 0.0041095437, 0.011828457, 0.021899542, -0.011558092, 0.01187577, -0.00092092983, 0.013160002, -0.005964922, -0.016221883, -0.0049544335, -0.01587041, 0.016613912, 0.0075702122, -0.00390677, 0.0043292153, 0.048530467, -0.016573356, 0.009875071, -0.024846518, 0.017506115, -0.01762778, 0.012085303, 0.013477681, -0.024116533, -0.02936161, 0.008448898, 0.008246124, -0.01777648, -0.00080433505, 0.03284931, -0.023413585, -0.0089423135, -0.008374548, 0.0014211045, 0.0033153475, 0.008827408, 0.02391376, 0.005309287, -0.0203855, 0.03379559, -0.0020040786, -0.01441044, -0.0098547945, -0.02782053, -0.020263836, -0.024481526, -0.016424656, -0.0018452392, 0.00513355, 0.015221533, -0.050179694, 0.021656213, -0.0054681264, 0.010530706, 0.011476982, -3.0072795E-05, -0.0023656914, 0.0019652136, -0.01509987, -0.028766807, -0.014167111, 0.005086236, -0.028388295, 0.024332825, 8.681242E-05, 0.020791046, 0.034850013, -0.01118634, -0.009327583, 0.03317375, -0.023805615, -0.04236615, -0.0045319884, -0.00014975671, -0.013599345, -0.007948723, -0.03725626, -0.030875651, 0.0033305555, 0.0117743835, -0.020655865, 0.00911805, 0.0040351935, 0.00834751, 0.0048631853, 0.0071849423, -0.0054681264, -0.0073606796, -0.025319656, -0.018492946, -0.010949771, 0.007157906, 0.026793145, -0.010064327, 0.01915534, -0.0061643156, 0.009564152, 0.023792095, 0.017979253, -0.012443536, -0.040879145, -0.0058635348, -0.00046849137, 0.011754106, 0.0039878795, -0.0043968065, -0.002061531, -0.015383753, -0.01585689, 0.0090842545, -0.003741172, 0.01118634, 0.018574057, -0.022007689, 0.007171424, 0.0032308584, 0.011280968, 0.010463115, 0.028144967, -0.012328631, -0.01072672, -0.01885794, 0.038716227, 0.00475166, 2.6878055E-05, -0.029280499, 0.00130282, -0.0040825075, 0.013146484, -0.00040322365, 0.03571518, 0.037742916, -0.033227824, 0.021683251, -0.012889638, 0.041419875, -0.015464862, 0.0020902574, -0.0142752575, 0.038905483, 0.020304391, 0.0003926625, -0.032470804, -0.021169558, -0.013464163, 0.00029824607, -0.0036364056, 0.00047102603, 0.03671553, 0.012328631, -0.010665888, 0.0006226837, 0.0081717735, 0.0046435143, -0.00950332, -0.04155506, 0.020980302, -0.0016238781, 0.018560538, 0.004352872, -0.031848963, 0.018209064, 0.011781143, 0.008327234, -0.013572309, 0.007854095, 0.02949679, 0.012936952, -0.016965386, 0.04558349, -0.008982868, 0.015938, 0.009814239, 0.020804565, -0.007225497, 0.021629177, 0.014640249, 0.027644793, -0.0090842545, 0.005065959, 0.025725203, 0.01931756, 0.029983448, -0.0039439453, -0.007144388, 0.009773685, -0.014545622, 0.033471152, 0.03295746, 0.016640948, 0.026022604, -0.021412887, 0.015451344, 0.0024890453, -0.004488054, 0.016046146, -0.010084604, -0.019641997, -0.030145666, -0.019114785, -0.016221883, 0.0013889987, -0.024711335, 0.0066813882, 0.026117232, 0.019452741, -0.0015655807, 0.022264535, -0.0038020038, -0.010686166, 0.009138328, -0.0067861546, -0.037364405, 0.0025312896, 0.016897796, 0.0011068056, -0.014248221, -0.016600395, -0.005005127, 0.00544109, 0.028577551, 0.0069483733, 0.024116533, -0.0006239511, 0.004383288, 0.004552266, 0.0053295647, 0.0059040897, -0.011193099, 0.020209763, -0.00021375711, 0.0018807246, 0.019209413, -0.02130474, -0.01693835, 0.044961654, -0.01900664, -0.027712384, -0.03074047, 0.017411487, -0.008151497, 0.004194033, 0.0024789064, 0.0046198573, -0.011389114, -0.0028337603, -0.0006653507, -0.0040791277, -0.03609369, 0.04079804, -0.013808878, 0.00042793667, -0.01195688, -0.020628829, -0.022886373, 0.07316069, 0.020709937, -0.0035350188, 0.031767856, 0.014518585, -0.008861204, -0.019020159, -0.017222233, 0.0039980183, 0.007380957, -0.0020395638, 0.014978206, 0.0016331719, -0.01738445, 0.0056675207, 0.002581983, -0.008773335, -0.015464862, -0.016438175, -0.011409392, 0.011030881, 0.010740238, 0.020682901, 0.02637408, 0.0030078075, 0.025062809, -0.0017962356, 0.0101184, -0.0031125739, -0.012544923, -0.012227245, -0.015897445, 0.006029133, -0.00023361202, -0.029686047, 0.0071849423, -0.0070632785, -0.0077053946, 0.024184125, -0.0012276248, 0.021250667, 0.010382005, 0.0054917834, -0.026941845, -0.0058398778, -0.015194497, 0.010071086, 0.024724854, -0.0032004423, -0.026414633, 0.0048631853, 0.012605755, -0.030010484, -0.000544109, 0.005647243, 0.009739889, 0.006863884, 0.0055897906, 0.010496911, -0.036147762, 0.0056438637, -0.006005476, 0.004778696, -0.02007458, -0.008563803, -0.019033676, -0.007198461, 0.0065090307, 0.00651241, -0.0026140888, -0.0060865856, -0.0061575565, -0.014045447, -0.0015875478, 0.029713083, 0.016262438, 0.01700594, -0.018803867, 0.012504368, 0.015491898, 0.016275955, 0.011220136, -0.002728994, -0.006728702, 0.0010873731, -0.009205919, 0.020263836, -0.00018608697, 0.0011887599, -0.012740937, 0.037526622, 0.002336965, 0.006853746, -0.01302482, -0.014532104, -0.007881132, 0.01862813, 0.049990438, -0.0009057218, -0.006928096, 0.008367788, -0.036877748, -0.0053532217, -0.025711685, 0.025089847, 0.013322222, -0.0055897906, 0.004285281, 0.011767625, -0.00031683367, 0.0057452503, 0.010665888, 0.0011177892, -0.017127605, 0.003110884, 0.019222932, -0.00012303707, 0.010429319, 0.0025769137, -0.0108619025, 0.015613562, -0.048719723, 0.03960843, 0.00789465, -0.017803516, 0.028442368, -0.010821348, -0.0295779, -0.0062724617, 0.0075769713, -0.0012816978, -0.004163617, -0.00020573066, 0.008624635, -0.019398669, -0.026306488, -0.042960953, 0.010787552, -0.0072390153, -0.0082664015, -0.005809462, -0.003494464, 0.0055830316, 0.029253462, -0.009030182, -0.03174082, -0.03571518, 0.020655865, -0.020169208, 0.009091014, -0.037148114, -0.021872506, -0.020344945, -0.010294137, -0.0028455886, -0.023413585, -0.004569164, 0.010645611, 0.036337018, 0.029929375, 0.027171655, -0.012963989, 0.020263836, 0.010746998, -0.014707841, -0.01693835, -0.020480128, -0.006522549, -0.023440622, 0.03809439, 0.0067760157, -0.0064786146, 0.007117351, -0.0013509787, -0.024819482, -0.010415801, -0.0028929026, -0.015113388, -0.009834517, -0.03725626, -0.013524995, 0.005103134, 0.009327583, -0.0013315462, -0.029307535, -0.00012578296, 0.06029133, 0.010530706, 0.0022828921, -0.00024818638, 0.008333992, -0.0225349, 0.025035772, 0.0040318137, 0.0017277995, -0.011037639, -0.028172003, -0.017519634, 0.0051470683, 0.017749444, -0.001961834, 0.009591188, -0.020980302, -0.029010134, -0.014261739, 0.025576502, -0.025170956, 0.011253932, 0.013950819, -0.030064557, -0.012828806, 0.002176436, 0.0088476855, -0.024805963, 0.019344596, 0.02567113, -0.0024501802, 0.01785759, -0.007732431, -0.015208015, 0.0055897906, -0.005630345, 0.033552263, -0.0054816445, 0.0046570324, 0.004376529, -0.008374548, -0.019763662, -0.008611117, 0.0070497603, -0.009185641, -0.008739539, 0.02022328, -0.0033457633, -0.01195688, -0.024089497, 0.019195896, 0.00421769, -0.001517422, 0.024413934, 0.024238197, 0.04774641, -0.0067050452, -0.022616008, -0.016411139, 0.017073533, 0.013585827, 0.002698578, 0.013247872, -0.007725672, -0.015289125, 0.039202884, -0.016194846, 0.028253114, 0.017871108, 0.015667636, 0.0018604472, -0.01027386, -0.026725553, 0.011517537, -0.006306257, 0.035769254, -0.0052079004, 0.0124976095, 0.0072390153, 5.7082863E-05, -0.0005462212, 0.0026935085, 0.031308234, 0.022467308, -0.010402283, -0.0056709, -0.007097074, -0.010490151, 0.01708705, -0.019898843, -0.005654002, -0.0049375356, 0.0008398204, -0.014572659, 0.011652719, -0.0052349367, -0.018209064, -0.022413235, -0.017952217, 0.00513355, -0.015221533, -0.023332475, -0.010963289, -0.026279451, 0.01203123, -0.004092646, 0.009800721, -0.020655865, 0.021142522, -0.014207666, -0.012842325, 0.002958804, -0.033011533, -3.772961E-05, 0.024495043, 0.020682901, 0.011686515, 0.0075972485, 0.025725203, -0.001617119, 0.00651241, -0.01118634, -0.018533502, -0.017289825, -0.002551567, 0.010875421, -0.0037851061, -0.004177135, -0.007482344, -0.011044399, 0.017654816, -0.011037639, -0.023886723, -0.00045370578, -0.009050459, 0.0057925642, 0.031335272, -0.016681504, -0.0069618914, -0.0037445514, 0.01647873, -0.009354619, -0.021831952, -0.011929844, -0.012335391, 0.0080771465, -0.0018976224, -0.009510079, -0.0024822862, 0.0020598413, -0.012808529, 0.0008110942, -0.019195896, 0.014843023, 0.007556694, 0.0038256608, -0.010395523, 0.020061063, -0.020371981, -0.02604964, -0.013585827, -0.022251017, -0.022764709, -0.013416849, 0.02115604, 0.031010833, -0.010456355, -0.040906183, 0.0015064385, -0.01211234, -0.050990786, -0.005471506, -0.014843023, 0.01372101, 0.02965901, 0.00055762724, -0.0055728927, 0.027455537, 0.01723575, -0.006184593, -0.014153593, -0.027685348, -0.018749794, -0.009915626, -0.015883928, -0.035958506, -0.012051508, -0.048151955, 0.017343897, 0.0012588857, -0.022115834, 0.0070092054, -0.0011068056, 0.0043866676, -0.010713202, -0.005471506, 0.02782053, 0.028983098, 0.0106253335, -0.047476046, 0.0072863293, 0.014261739, 0.017411487, -0.0062420457, 0.038959555, -0.0050693387, -0.012916675, 0.027712384, -0.012132617, -0.018749794, -0.00934786, 0.0016441555, 0.0066171763, 0.004420463, 0.011159304, 0.0275772, 0.008070387, -0.013112689, 0.005332944, 0.022872856, -0.014356366, -0.009422211, 0.0014701082, -0.025955014, 0.003940566, -0.0108619025, 0.015289125, 0.01869572, -0.0032122708, -0.014653767, 0.0028861433, -0.026090195, 0.01318028, 0.009483042, -0.008840926, -0.024184125, 0.022332126, -0.0015072833, 0.020412536, -0.020290872, -0.0030585008, -0.04185246, 0.0016576737, -0.011531055, 0.0022778227, -0.007380957, 0.011409392, -0.0018452392, 0.018100917, 0.03225451, 0.19942102, 0.013579068, -0.010686166, 0.017330378, 0.017600743, -0.013950819, 0.0088476855, -0.003933807, -0.0057215933, -0.0012014332, 0.015843373, 5.1089428E-05, -0.019601442, -0.002352173, 0.028550515, -0.008056869, -0.047449008, 0.006025754, -0.000770117, -0.0095709115, 0.021899542, -0.0005610068, 0.025454838, -0.000858408, 0.0100440495, -0.0046806894, -0.00659014, -0.0036431646, 0.008083905, 0.004163617, 0.01631651, -0.019209413, 0.013437127, 0.0042886604, -0.021534551, -0.016640948, 0.010828107, 0.007211979, -1.7967108E-05, 0.014288776, 0.023129702, -0.030632323, -0.002696888, -0.004714485, 0.009793962, 0.0023133082, -0.01126745, 0.008367788, 0.0028337603, 0.015072833, -0.02130474, -0.013085652, 0.012065026, 0.020317908, 0.010463115, 0.0051673455, -0.0013721009, -0.025617057, 0.014058965, -0.0016450003, -0.008185292, 0.021980653, -0.006536067, 0.026347041, -0.012369186, 0.021926578, -0.021899542, -0.022318607, -0.005691177, -5.5023444E-05, 0.0149511695, -0.0024349722, -0.011253932, 0.013815638, -0.019209413, -0.02214287, 0.012470573, -0.005471506, 0.0017979254, 0.0064211623, 0.006546206, 0.016289474, 0.021588624, -0.0067996727, -0.01946626, -0.018209064, 0.014058965, 0.009253233, -0.0055188197, -0.014342848, 0.002115604, -0.0036296463, 0.013707492, 0.011929844, 0.0126395505, 0.039446212, -0.025779275, 0.010645611, -0.010152196, -0.0034978436, -0.013484441, -0.007806781, 0.002521151, 0.0071849423, -0.031659707, 0.022264535, -0.02383265, 0.0053160465, 0.004728003, -0.017749444, 0.007563453, -0.025711685, 0.009604706, -0.024508562, -0.01211234, -0.011166063, 0.009449247, -0.014707841, -0.012970747, -0.032984495, 0.0124976095, -0.014572659, 0.019047195, 0.00413996, -0.0070294826, -0.019087749, -0.02444097, 0.029010134, -0.0017193507, -0.001617119, -0.0074215117, 0.0099494215, 0.036147762, -0.018357765, -0.0064346804, 0.0080298325, 0.03011863, -0.037688844, 0.0033964568, -0.01739797, -0.005501922, 0.017262787, 0.0031683366, 0.0072930884, 0.034606684, 0.0073404023, -0.01600559, -0.000107301, -0.017046496, -0.0077121537, -0.00896935, -0.016951868, -0.0070294826, -0.0030297746, -0.0036803398, 0.0021882644, -0.027225727, -0.014572659, 0.009178882, 0.020453092, -0.013369535, 0.014843023, 0.01847943, -0.025955014, 0.0038831134, 0.0040858868, -0.17292528, 0.021250667, 0.009516838, -0.023048593, 0.00083897554, 0.024265233, 0.00085164886, -0.013923783, -0.011091713, 0.013538513, 0.012274559, 0.010855144, -0.027550165, -0.011139027, 0.0054850243, -0.0033677306, 0.015126906, 0.0097601665, 0.018371282, 0.019952916, 0.018506465, -0.009354619, 0.012179931, 0.011835216, 0.0049442947, -0.016384102, 0.019614961, -0.012531404, 0.013464163, -0.0271311, -0.008834167, -0.006630695, 0.010753756, 0.016640948, 0.01861461, -0.028307186, -0.014613213, 0.012098821, -0.018222582, 0.032741167, 0.0057283523, 0.012463814, 0.026090195, 0.0003548537, 0.02529262, 0.03785106, -0.014167111, -0.003771588, 0.020899193, -0.0136399, 0.03671553, -0.012010952, -0.005968301, 0.015005242, 0.03111898, 0.013734528, 0.02368395, 0.0038053833, 0.020642346, 0.0067760157, 0.017600743, -0.009192401, 0.014653767, -0.023981351, -0.0050929952, -0.014396922, 0.0058601554, 0.029226426, -0.00743503, 0.017370934, -0.01792518, 0.0124165, -0.00095472543, -0.028956061, 0.031362306, -0.004190653, -0.024332825, -0.0008157411, 0.01954737, -0.025306137, 0.007827058, 0.038148463, -0.021818433, -0.008002795, -0.008293438, 0.006546206, -0.021548068, 0.010530706, -0.010686166, -0.018844422, 0.016465211, -0.008996386, -0.022548418, -0.014126557, 0.012355668, -0.0028185523, 0.028144967, -0.024711335, 0.009976458, -0.025508912, 0.010469873, 0.0037851061, -0.03011863, 0.0295779, 0.029091245, 0.020101616, 0.021534551, 0.0029199389, 0.014599695, 0.012957229, -0.007097074, 0.01616781, 0.008631393, 0.008117701, -0.0029419062, 0.028442368, 0.0038831134, -0.03349819, 0.010395523, -0.012504368, 0.00042497955, -0.0107199615, -0.01149726, 0.007272811, -0.006698286, -0.009063977, -0.09289732, -0.002076739, 0.0028692456, 0.013531755, 0.0023707605, 0.0101184, 0.00020889899, 0.023129702, 0.00031894588, 0.032605987, -0.012301595, 0.01985829, 0.0180874, 0.007043001, 0.028172003, 0.014018411, 0.018276656, -0.027793493, -0.035985544, 0.031173052, -0.0016154292, -0.0069956873, -0.00053903967, -0.011355318, -0.00812446, -0.0077594677, -0.023738023, 0.019087749, 0.018830903, 0.006698286, 0.016113738, 0.0062724617, 0.04193357, -0.0028793842, -0.023846168, -0.04098729, -0.021669732, -0.006184593, 0.016749095, -0.03487705, -0.007941964, 0.011747347, 0.007441789, -0.018492946, 0.00021090561, -0.0080771465, -0.012626032, 0.0002815595, 0.008320474, -0.010740238, -0.024251716, -0.018438874, -0.0029520448, -0.011064677, 0.0067388406, 0.013430367, -0.0050152657, 0.009631743, -0.010442837, -0.021629177, -0.010496911, 0.0006966116, 0.005400535, 0.00050989096, 0.030280849, 0.013376295, -0.015437826, 0.008009555, 0.005174105, -0.006941614, 0.00091586047, 0.03479594, -0.026482224, 0.0149511695, -0.02061531, -0.0075296573, -0.018709239, -0.019966435, 0.015965037, -0.0029148697, -0.029469755, -0.03701293, 0.013666936, -0.04123062, 0.014572659, 0.01954737, -0.0059818192, -0.0051707253, 0.025562985, -0.051504478, 0.026468705, 0.0156406, 0.015410789, 0.011598647, -0.010794312, 0.0060730674, 0.0037851061, -8.9452704E-05, -0.01792518, -0.0044339816, -0.028929025, -0.006377228, -0.071214065, 0.022548418, 0.0042278282, -0.0067523587, -0.014991724, -0.0049037402, 0.009239715, -0.012058266, 0.0039676023, -0.030524177, 0.00015387555, -0.017992772, 0.023792095, 0.012004194, 0.0048327693, -0.03809439, 0.0036837193, 0.002536359, 0.023792095, 0.006475235, -0.015113388, -0.012936952, -0.02965901, -0.0092735095, -0.01670854, 0.0033390042, -0.014910614, 0.011382354, -0.0040757484, -0.019804215, 0.004190653, -0.014518585, 0.011152545, 0.04377205, -0.012396223, -0.025725203, -0.004376529, 0.021345295, 0.02084512, -0.024265233, -0.01930404, -0.016140774, 0.025306137, -0.011362078, 0.0055762725, -0.00089389336, 0.013768324, -0.006877403, 0.0067151836, 0.012375945, 0.03320079, 0.012078544, 0.0014472961, -0.024616707, 0.012700383, -0.03931103, 0.0036465442, -0.006309637, -0.024765408, -0.018182028, 0.037526622, 0.019452741, 0.030929724, -0.0051977616, -0.0018993121, -0.0013721009, -0.04044656, -0.022237498, 0.00077814347, -0.012849083, -0.022237498, 0.005731732, 0.018547019, 0.0031362309, 0.0101184, 0.010746998, 0.0070835557, 0.003578953, -0.022021206, 0.020061063, -0.004538748, 0.0017979254, -0.035607032, 0.0114905005, 0.0018553779, -0.024968183, -0.034444466, 0.018993123, -0.008530007, -0.0031869242, -0.010517187, 0.004552266, -0.04039249, 0.016154293, 0.020169208, 0.009861553, -0.014099521, 0.00659014, 0.017411487, 0.0026191582, 0.008320474, -0.0043663904, -0.0064583374, 0.0036296463, -0.0018790348, -0.0056066886, -0.007800022, -0.02321081, -0.01954737, 0.000109518835, 0.009091014, -0.010023772, -0.009462765, 0.013383053, 0.0074079935, 0.0027847567, -0.018993123, -0.01892553, -0.0013011302, 0.005187623, 0.017438525, 0.027901638, 0.0038324199, -0.008719263, -0.0035688144, -0.027874602, -0.0064650965, -0.015667636, 0.0076310444, -0.005657382, 0.004582682, 0.00444412, -0.017898144, -0.02773942, 0.007901409, 0.00482939, 0.0004735607, 0.004836149, -0.014356366, 0.08127163, 0.009712853, -0.003455599, -0.0038357994, -0.0032190299, 0.029226426, 0.0075228983, 0.014478031, 0.0014827815, -0.05020673, 0.0058533964, 0.009597948, -0.012355668, 0.0011566541, -0.009611466, 0.0024552497, 0.022805264, 0.02782053, -0.03585036, -0.013518236, 0.033525225, -0.016640948, 0.018006291, -0.015654117, -0.022561936, 0.007441789, 0.019912362, 0.00896935, 0.0040453323, -0.020317908, 0.011145785, -0.0061676954, -0.006600279, -0.013626382, -0.015897445, -0.014694323, -0.0088949995, -0.0090437, -0.0071376287, 0.018601093, -0.018533502, 0.008712503, 0.0013594276, -0.019885326, -0.013065375, 0.0014768672, -0.013274908, 0.018330729, -0.029091245]
+ },
+ {
+ "Id": 48,
+ "Type": "Bags",
+ "Brand": "Zephyr",
+ "Name": "Trailblazer 45L Backpack",
+ "Description": "Take everything you need for your next adventure with the Trailblazer 45L Backpack by Zephyr. This spacious backpack features multiple compartments for easy organization, adjustable shoulder straps and hip belt for a customized fit, and durable waterproof construction for ultimate protection against the elements. The classic yellow color is timeless and versatile.",
+ "Price": 124.99,
+ "Embedding": [0.0051822057, -0.0062633385, -0.008911949, -0.021228313, -0.0020456077, 0.016943218, -0.018297097, -0.037856065, 0.0115999915, -0.0088527985, 0.015799649, 0.0029427174, 0.0017810753, 0.02256905, 0.0033436236, -0.0037001674, 0.02527681, 0.00394334, 0.006927134, -0.007965547, 0.010430134, -0.0065558027, -0.008307303, -0.014945258, -0.033202924, -0.014432624, 0.02928587, -0.0044822632, 0.014695514, -0.015760215, 0.027445646, 0.014669225, -0.00048388066, -0.01324305, -0.0044986936, -0.008313875, 0.010226395, -0.016811773, 0.01715353, 0.0087213535, 0.023449728, 0.019046333, -0.002476089, 0.035516348, -0.015983671, -0.0058985795, -0.0264861, -0.034569945, -0.01650945, 0.012263787, -0.0094508715, 0.00250895, -0.0081232805, 0.0063257744, -0.00024132419, 0.004985039, 0.0053399396, 0.020702535, 0.0068877004, -0.025776299, -0.015904805, 0.0055338205, -0.027629668, -0.0055929706, 0.008990815, -0.027761113, -0.003489856, 0.0041470793, 0.011468547, 0.032466833, 0.02083398, 0.008773931, 0.029759072, 0.016220272, 0.0067496835, -0.012428093, -0.01589166, 0.009227416, -0.028418336, 0.002561528, 0.015799649, -0.02059738, -0.020978568, -0.013525656, 0.01833653, -0.012953872, 0.015168714, 0.0019913868, -0.03433335, -0.02045279, -0.014169735, -0.012513532, 2.1334085E-05, 0.023975506, 0.0076303626, 0.003601584, 0.01600996, 0.012598971, 0.031178674, -0.028418336, -0.0073346123, -0.009924072, 0.00507705, -0.004626852, -0.03646275, -0.03057403, -0.021898681, 0.011882598, 0.028234314, 0.014708658, -0.014997836, 0.022043271, 0.0134205, -0.040327225, -0.0030922357, -0.009615177, 0.015089847, 0.005773707, 0.011593419, -0.040327225, 0.015168714, -0.0019979589, 0.01677234, -0.026026044, 0.014695514, 0.018665142, -0.020965423, -0.022555904, 0.037382863, 0.010265828, -0.0003279955, 0.03648904, 0.026262645, -0.026196921, -0.00671025, 0.022122137, -0.0034799974, 0.01441948, -0.01921721, 0.010745602, 0.004630138, 0.014905825, -0.024001796, -0.009325999, 0.0017712169, -0.003407703, 0.0027307628, 0.018533697, 0.013216761, 0.00037954646, 0.025513409, 0.00010156154, 0.02860236, 0.0030790912, -0.021372903, 0.026617544, -0.0049718944, 0.026748989, -0.015129281, 0.0009266849, -0.025355676, 0.00049209595, 0.011954892, -0.006398069, 0.022174714, 0.022187859, 0.020084744, -0.0022164856, -0.0046958607, -0.0037691758, -0.025539698, 0.03822411, -0.030258562, -0.0034997142, 0.026564967, 0.017771319, 0.016259706, -0.0056586927, -0.005724415, -0.016759194, 0.009089398, 0.008603053, 0.0063323467, 0.02057109, -0.027734824, -0.020229334, 0.0073411847, -0.021898681, 0.0073937625, -0.0197167, 0.012382087, 0.002645324, -0.016220272, -0.014169735, -0.65533054, -0.0076040737, -0.0081232805, -0.032756012, -0.002761981, -0.008530758, -0.003581867, -0.0032631138, -0.014813813, 0.0056192596, 0.007203168, 0.022201004, -0.01035784, -0.010581296, 0.008984243, -0.02230616, 0.0018369392, -0.0030018676, 0.021911826, -0.0200716, -0.042719517, 0.0012249, -0.022043271, 0.008096991, -0.010706168, 0.01836282, 0.014077724, -0.023318283, 0.011803731, 0.0013177327, -0.033623546, 0.033071477, -0.0030462302, 0.0077946684, 0.05023815, -0.020623667, 0.013486222, 0.0463211, 0.02736678, 0.018283952, -0.0052019227, -0.024304118, -0.004883169, 0.010430134, -0.01774503, 0.00517892, 0.04563759, 0.0021803384, 0.0056784097, -0.009832061, 0.028654937, -0.010791607, 0.027918847, -0.010173817, -0.0062929136, 0.020032167, 0.03146785, 0.018888598, 0.0073148957, -0.0062173326, -0.023147406, 0.021215169, 0.00013637384, -0.013735968, -0.03157301, 0.025421398, -0.016995795, -0.004117504, 0.0009965149, -0.020137323, -0.005970874, 0.029154427, 0.012132343, 0.015497326, 0.013735968, 0.015379026, 0.011442258, 0.016483162, -0.0034569947, 0.023002816, 0.02366004, 0.0036705923, -0.007012573, -0.021556925, 0.03549006, -0.010627301, 0.021031147, -0.0018845879, 0.027682247, 0.01919092, 0.021294035, 0.025789443, -0.013985712, -0.031914763, -0.023436584, 0.021754092, -0.021859247, 0.0008987529, 0.011816875, -0.011665714, 0.0014039933, -0.015444748, 0.007157162, -0.0065689473, 0.01577336, 0.010587867, -0.0010909907, 0.0017777891, 0.016759194, -0.018546842, -0.008096991, -0.030731762, -0.02401494, -0.023646895, 0.01703523, -0.030153407, 0.03380757, 0.021846103, 0.03840813, -0.060201656, 0.0017317835, -5.7198966E-05, -0.005885435, -0.0068942728, -0.024961341, 0.030416295, 0.014393191, -0.01127138, -0.018047353, 0.00060711004, 0.016351717, -0.012612116, 0.011738009, 0.011100502, 0.00013267696, 0.01686435, 0.010140956, -0.0197167, 0.014130302, -0.041299913, -0.014866391, 0.011185941, 0.009214271, -0.010318406, -0.019204065, -0.019282931, -0.0013037667, -0.02584202, -0.020203045, -0.017731884, 0.0057901377, -0.020150468, -0.004574274, -0.00017426687, 0.023607463, -0.020557946, -0.020610524, -0.010929624, -0.016364861, -0.008018125, 0.027577091, -0.0028556352, -0.00076525443, 0.0063849245, -0.014090868, -0.0073214676, 0.016535738, 0.02983794, -0.00056890893, -0.04363963, 0.0043475325, -0.023449728, -0.02710389, 0.010502429, -0.0014261747, -0.0131839, -0.003522717, -0.02622321, 0.029627627, 0.0028884965, -0.0041635097, 0.012053476, -0.013854268, 0.021648936, 0.01945381, 0.0015280442, 0.0146297915, 0.033886436, -0.014932114, 0.011928603, 0.011521125, 0.021819815, 0.00900396, -0.018875454, -0.014682369, -0.005803282, -0.0010803108, 0.0006900845, 0.014406336, 0.0046958607, 0.015825938, -0.01603625, 0.024264686, -0.024238396, -0.0021261175, -0.03449108, -0.0056455485, -0.003351839, 0.021320324, 0.03054774, 0.0022920663, -0.01615455, -0.015352737, -0.011685431, -0.008221864, -0.0018747295, 0.024396129, 0.03796122, -0.005944585, -0.025263665, -0.003913765, 0.006588664, -0.0095625995, -0.020702535, -0.022871371, 0.0117314365, -0.0051986366, 0.024816753, -0.003861187, -0.01527387, 0.029128138, 0.03790864, -0.0036475894, 0.04166796, 0.029890517, 0.0270776, 0.0023183553, -0.015786504, 0.020413356, -0.013604523, 0.017613586, 0.014380046, 0.021241458, -0.013249623, 0.025592277, 0.016706618, 0.003526003, 0.01368339, 0.008162714, 0.0030560885, -0.007078295, 0.0045216964, 0.0061351797, -0.014274891, 0.010515573, -0.008267869, 0.020281913, 0.002280565, 0.02783998, 0.01541846, -0.003327193, 0.005500959, 0.016680328, -0.008675348, 0.03422819, -0.012730416, -0.017731884, -0.009266849, -0.022003837, 0.0032844737, 0.021110013, -0.035174593, -0.00065188337, -0.019427521, -0.008754214, 0.0028293463, -0.0005676767, 0.01838911, -0.006365208, 0.026630688, -0.0022394885, -0.025579132, -0.009174838, 0.013381067, -0.0024843041, -0.028865248, -0.013453362, 0.028418336, -0.0012971945, 0.030153407, 0.0113765355, 0.0041043595, -0.0087213535, -0.0044658324, 0.013407356, -0.011468547, 0.010837613, -0.0040616402, 0.026144344, -0.0068942728, -0.022095848, 0.013735968, -0.02954876, -0.024120096, 0.014682369, 0.00473858, -0.008727926, -0.017140385, 0.0073214676, -0.0062041883, 0.01650945, -0.054891292, 0.0046794303, -0.016732905, 0.0018796587, 0.0007714159, -0.015142426, -0.008734498, 0.027971424, 0.008530758, -0.02734049, -0.010305262, -0.044717476, 0.01324305, 0.09553398, -0.013933134, -0.024028085, 0.020860268, -0.002535239, -0.02047908, -0.008839654, -0.028654937, 0.0010786678, 0.0064407885, -0.0042883824, 0.0018106502, -0.003041301, -0.014340613, 0.0044296854, 0.004255521, -7.927756E-05, -0.014669225, -0.0030544454, -0.027235335, 0.0064375023, -0.010259256, -0.010587867, 0.01079818, 0.025289953, 0.005609401, 0.01824452, 0.022753071, 0.037619464, 0.0042193737, -0.0038513287, 0.009897783, -0.0050901948, -0.007512063, -0.009030248, -0.004321243, -0.014393191, -0.035384905, 0.02057109, 0.009128832, 0.027682247, 0.028234314, 0.013551945, -0.011061069, 0.009194555, -0.0045249825, -0.008103563, -0.008938237, 0.0023775054, -0.008629343, 0.032861166, 0.01686435, -0.023147406, -0.016023105, 0.009030248, 0.0009866565, -0.005681696, 0.00046539627, -0.017679308, -0.044033963, -0.0063717803, -0.019177776, 0.03031114, -0.0065525165, 0.005014614, -0.005093481, -0.019296076, 0.023857206, -0.022108993, -0.0045677023, -0.03874989, -0.011711719, -0.008767359, 0.0014261747, 0.02389664, 0.022766216, 0.007781524, 0.0068482673, 0.027918847, 0.013433645, 0.016049394, 0.017219251, -0.011843164, -0.022700494, 0.013486222, -0.011067641, 0.001887874, -0.017942198, 0.004564416, 0.013013022, 0.003913765, 0.0016011603, 0.034675103, -0.008129853, -0.0031596012, 0.006519655, 0.006674103, 0.019112054, 0.0199533, -0.0024169388, 0.02883896, 0.0024070805, 0.012355799, 0.0073411847, -0.0024350125, 0.008267869, 0.010114667, 0.0086096255, -0.0038776177, 0.018494265, 0.008793648, -0.022319304, 0.020137323, -0.0011780728, -0.020899702, 0.013473079, 0.0072820345, -0.0020538229, 0.035516348, -0.029732782, -0.013722823, -0.057625342, 0.018901743, -0.015878515, 0.010883618, -9.298683E-05, 0.026880434, -0.0117314365, -0.02413324, 0.019204065, 0.0152081475, 0.013841123, 0.01356509, 0.015024126, -0.036594193, -0.023568029, -0.026170634, 0.007400335, 0.016443728, -0.014196024, -0.015287015, 0.010443279, 0.016693473, -0.0024958055, -0.019835, -0.017048374, -0.034859125, -0.0067496835, -0.023476018, 0.032887455, -0.012934155, 0.02033449, -0.025421398, -0.020229334, -0.0045414134, -0.0027159753, -0.023423439, -0.019322366, 0.00030786806, 0.017561007, -0.002114616, -0.01800792, 0.003601584, 0.019585256, -0.014248602, 0.017087806, -0.021044292, -0.013696535, -0.028970404, 0.027471935, 0.013394211, -0.004922603, -0.023331428, -0.02536882, 0.011264808, 0.003350196, 0.0031941053, -0.0084781805, -0.013137895, -0.04805617, 0.012710699, -0.008182431, -0.0076172184, -0.010456423, -0.033860147, 0.00079359714, 0.033597257, 0.0063849245, -0.009358861, 0.008491325, 0.018941177, -0.02071568, -7.722374E-05, 0.017574152, 0.032414254, -0.0038513287, 0.003608156, -0.034964282, -0.028129159, -0.00092175574, 0.0033682697, -0.009608605, 0.010785035, -0.013670245, -0.0056192596, -0.012033759, -0.012651549, 0.0031103094, 0.009838633, -0.006536086, -0.029443605, -0.016141405, -0.0044165407, -0.036120992, 0.0036410172, -0.003917051, -0.013367922, 0.016167695, -0.040774137, 0.00095625996, 0.0033879862, -0.0034997142, 0.022003837, -0.0105352895, 0.026420377, 0.019927012, -0.014853247, -0.01312475, -0.008714781, -0.0033748418, -0.004600563, 0.0095823165, 0.028470915, 0.0065985224, 0.01029869, 0.019256644, -0.0059577296, -0.0023117831, -0.022674205, 0.012743561, 0.02760338, 0.0100358, -0.019756133, -0.02171466, -0.0022969956, 0.02983794, -0.03433335, 0.020321345, 0.002623964, -0.020439645, -0.003100451, 0.021175735, -0.011974609, 0.0037954648, 0.00985835, -0.009779483, 0.0051460587, 0.005970874, -0.0012298292, -0.01689064, 0.0012996591, 0.019269789, 0.016706618, 0.007965547, 0.013486222, 0.012434665, -0.0108901905, 0.02068939, 0.006559089, 0.024961341, -0.030626606, -0.0061286073, -0.0068022613, 0.0027241907, 0.005609401, 0.023423439, -0.02139919, -0.012572682, 0.02139919, -0.004873311, 0.01091648, -0.01727183, -0.007663224, -0.023068538, 0.0077946684, 0.01541846, -0.0149846915, -0.033570968, -0.0026009614, -0.037672043, -0.028050292, 0.0055896845, 0.018744009, 0.017850185, -0.029496184, -0.03370241, -0.020781402, 0.007906397, -0.035148304, 0.00015650131, 0.02183296, 0.01957211, -0.024540719, 0.015760215, -0.006821978, -0.012796138, 0.009812344, -0.015089847, -0.03131012, -0.026762133, 0.0019601686, 0.007374046, 0.0053695147, 0.0052512144, 0.012743561, -0.0064440747, 0.015720783, -0.007847247, -0.03549006, -0.008346736, -0.009648038, -0.0040484956, 0.044402007, -0.01650945, -0.0015830867, 0.011580275, 0.015431603, 0.008616198, -0.003407703, -0.020005878, -0.008497898, 0.0055469647, 0.024409274, -0.016338572, 0.02736678, -0.0002653539, -0.0068482673, -0.016732905, 0.0130656, 0.029391028, 0.020163612, 0.004810875, 0.019269789, 0.039091643, -7.6967015E-05, -0.005103339, 0.015497326, -0.011159652, -0.006900845, -0.022845082, 0.005596257, 0.03128383, -0.0100686615, -0.03835555, -0.011994326, -0.017653018, -0.02810287, -0.016456872, 0.0055601094, 0.00782753, 0.015681349, 0.023291994, 0.015365881, 0.027182756, 0.011665714, 0.035831816, 0.016115116, -0.023239417, 0.0011501408, 0.006348777, -0.00985835, -0.026407233, -0.035148304, -0.04342932, 0.017455852, 0.0036968812, 0.0037001674, 0.00726889, -0.025605422, -0.01441948, 0.0039794873, 0.017731884, 0.037303995, 0.017061517, 0.017140385, -0.015576193, -0.023962362, -0.009838633, 0.014997836, 0.027182756, -0.012612116, 0.02130718, -0.0005171526, -0.020899702, -0.019506387, -0.037041105, -0.0071703065, 0.010390701, 0.00360487, -0.0041602235, 0.0042620935, 0.015102992, -0.007216312, -0.023686329, 0.008603053, 0.00720974, -0.0077946684, -0.01933551, 0.00738719, -0.029732782, 0.004991611, -0.01527387, 0.020781402, -0.0077420906, -0.022214148, 0.0033058333, -0.022608483, -0.023844061, 0.029759072, 0.018165654, -0.02289766, -0.03178332, -0.0035720088, -0.01712724, 0.0116197085, 0.0039597703, 0.00284742, -0.02907556, 0.034175612, -0.019348655, -0.03478026, -0.03228281, 0.017179817, -0.0048568803, 0.006283055, 0.021057436, 0.184338, 0.013249623, 0.0046597132, 0.036594193, -0.009904356, 0.01821823, 0.012224354, -0.00038899406, -0.00354572, 0.0036738785, -0.007610646, 0.019006899, -0.0068877004, -0.0038020369, 0.0026009614, -0.008169286, -0.055101603, -0.007873535, -0.020045312, 0.0017564293, -0.0033584111, 0.003999204, 0.02118888, -0.007098012, 0.016943218, -0.0019913868, -0.017061517, 0.0023561455, 0.009358861, 0.014748092, -0.015379026, -0.01539217, 0.01091648, -0.013827979, 0.0067365393, 0.014564069, 0.020505367, -0.020952279, 0.0036508755, 0.017337551, -0.033386946, 0.015510471, 0.022345593, -0.0011583561, -0.0063257744, -0.0058197128, -0.031967342, 0.01298016, 0.013262766, -0.0016143048, -0.011087357, -0.013814834, 0.0015321518, 0.00048182686, -0.003356768, -0.01515557, 0.040537536, -0.011823447, -0.0009045036, -0.00077552354, -0.002198412, 0.017679308, -0.01824452, 0.012513532, 0.0096940445, 0.010390701, 0.003578581, -0.0025911028, 0.027918847, -0.014012001, -0.0027110463, 0.0053629423, -0.01356509, 0.035542637, -0.0075646406, 0.0076697962, 0.013604523, -0.00026987234, -0.0057868515, 0.019664122, -0.00045841327, -0.003999204, 0.012868432, -0.0032039636, 0.0028835672, -0.021701515, -0.01565506, -0.0073148957, 0.014971548, 0.00720974, 0.020847123, -0.01465608, 0.005103339, -0.017994775, -0.0084781805, 0.016062537, -0.012888149, 0.013486222, -0.017823897, 0.012020615, -0.02304225, 0.019532677, -0.023291994, -0.030442584, -0.016180838, -0.004321243, 0.01268441, 0.018205086, -0.0018747295, -0.022043271, -0.0099372165, -0.022963382, 0.009832061, -0.004732008, 0.0010228038, 0.016062537, 0.0015715853, -0.013335061, 0.008688493, -0.013354778, -0.00026288934, -0.027892558, 0.03472768, -0.00726889, -0.01600996, -0.021846103, -0.0008930022, 0.01627285, 0.0053103645, -0.036830794, 0.006562375, 0.0034044168, 0.0080115525, -0.014104012, 0.0021376188, -0.008037841, -0.017022084, -0.020860268, -0.017455852, 0.0011386394, 0.007124301, -0.01079818, 0.0045808465, -0.0051822057, 0.037593175, -0.024185818, 0.0011123505, -0.025973465, -0.00974005, -0.019769277, 0.003437278, -0.0102724, -0.031678163, -0.012763277, 0.005832857, -0.030863207, -0.04805617, -0.03601584, 0.0030528023, 0.0036968812, 0.0004789515, 0.00075827143, 0.012171776, -0.012697554, -0.006683961, 0.022713639, -0.16635637, 0.015287015, 0.0040222066, -0.0072228843, 0.006900845, 0.010581296, 0.008090419, 0.0043541044, -0.023331428, -0.003631159, 0.03430706, -0.004557844, -0.02713018, -0.014406336, -0.008629343, -0.011047924, -0.01183002, 0.013880556, 0.015221292, 0.0203082, 0.011468547, -0.008274442, 0.0068351226, 0.016101971, 0.01091648, 0.0008083847, 0.0054516676, 0.0130590275, 0.0021918397, -0.013387639, 0.001746571, -0.013197045, 0.037540596, -0.0012117556, 0.032230232, -0.008484753, -0.010732457, -0.0111333635, -0.022082703, 0.044402007, 0.005270931, 0.008727926, 0.012493815, 0.012362371, -0.0015042198, 0.009286566, -0.008839654, -0.011074213, -0.012046903, -0.02280565, -0.00068351225, -0.02413324, -0.028760092, -0.017179817, 0.021846103, 0.0013686676, 0.0050277584, -0.005997163, 0.02686729, -0.016167695, -0.0031415275, -0.0014393191, 0.00021215991, -0.0044691185, -0.025736865, -0.01415659, 0.0052676448, 0.0037396008, 0.0027701964, 0.01898061, -0.018901743, -0.011672286, 0.0057868515, -0.00027048847, 0.018021064, 0.025934033, -0.0013349849, 0.0032861165, 0.010587867, -0.020531656, -0.0002064092, 0.048739683, -0.024921909, 0.017429562, -0.008760787, 0.0077355187, -0.017416418, 0.0024744458, 0.015063559, -0.027682247, 0.0044921213, -0.025881454, -0.01133053, -0.010896763, -0.005750704, 0.0038809038, 0.011810303, -0.018836021, -0.011810303, 0.00462028, 0.0024300832, 0.013643956, -0.018191941, 0.016456872, 0.03370241, 0.019585256, 0.023278851, 0.017022084, 0.013906846, -0.024317263, 0.0020784687, -0.006815406, 0.002734049, -0.0003269686, 0.006572233, 0.0066806753, -0.0005939656, -0.040038045, 0.031178674, -0.018047353, 0.030127117, -0.016969506, -0.0066379556, 0.018559987, -0.015996816, 0.0047648693, -0.09506078, 0.00959546, 0.026893578, 0.0071177287, 0.004248949, -0.00024173496, -0.009924072, 0.04043238, 0.006821978, 0.010482712, 0.020623667, -0.012296649, -0.015576193, -0.014642935, 0.033886436, -0.0075580683, 0.03619986, -0.03430706, -0.01662775, 0.015799649, -0.012552965, -0.003272972, -0.005520676, 0.007636935, -0.007998408, -0.018586276, -0.03677822, -0.0053695147, 0.0195984, 0.018796587, 0.031914763, 0.0051164837, 0.0072557456, -0.018612565, 0.008169286, 0.0050047557, -0.04282467, 0.013256194, 0.029233294, -0.035674084, -0.013814834, -0.0041569374, 0.003077448, -0.04111589, -0.012973589, -0.0035555782, -0.002596032, -0.005011328, 0.0071111564, -0.002287137, 0.012598971, -0.015641915, -0.011527698, -0.020939136, 0.018888598, 0.0047648693, -0.026827857, 0.0028096298, 0.003608156, -0.00010690148, -0.018691432, 0.013893701, 0.023186838, 0.015326448, -0.022411315, -0.019861288, 0.006003735, 0.017258685, 0.0050179, -0.013578234, 0.0039269095, 0.01739013, -0.0071703065, 0.037987508, -0.017429562, -0.0011632853, -0.02598661, 0.01298016, 0.013045883, -0.004929175, -0.0026321795, -0.019913867, 0.023830919, 0.0029739356, 0.029995672, 0.028470915, 0.015181859, -0.014472058, 0.0028277033, -0.007866963, 0.006677389, 0.011304242, 0.01650945, -0.00850447, -0.029732782, -0.0014886109, 0.012658121, -0.023055395, -0.005208495, -0.0008371382, 0.0028441339, 0.003831612, -0.07476573, 0.037014816, 0.00047032544, -0.015615626, 0.012020615, -0.008451892, -0.00619433, -0.0067496835, 0.0042062295, 0.011606564, -0.0018385822, 0.011922031, 0.0028211311, -0.019611545, 0.007866963, -0.009306283, 0.007466057, 0.0046892883, 0.030942075, 0.017140385, -0.023015961, 0.013459934, -0.0055075316, -0.003690309, -0.051131975, 0.015234437, -0.0011649283, 0.014261746, 0.022108993, -0.0062337634, 0.012796138, 0.00597416, 0.017232396, 0.04064269, -0.006756256, -0.040327225, 0.022095848, 0.0101541, -0.0066050943, -0.035384905, -0.0022953525, -0.012454382, 0.026972445, -0.019835, -0.036383882, -0.022608483, 0.016220272, 0.0042193737, 0.013735968, 0.022161571, 0.0026272503, 0.007485774, 0.026972445, -0.021609504, 0.0029361453, 0.006756256, 0.0065492303, -0.009076254, -0.003519431, -0.013427072, 0.032571986, 0.016470017, 0.01627285, 0.0033321222, -0.00061902223, -0.006306058, -0.01418288, 0.0060070213, 0.0076763686, -0.0047221496, -0.012999877, -0.00075827143, 0.038855042, 0.013893701, 0.0013037667, -0.0062896274, -0.013335061, -0.0029114992, -0.02831318, 0.014577214, 0.021793526, -0.018205086, -0.011705147, -0.015405315, 0.00211133, -0.013328489, -0.019138344, -0.005750704, -0.004699147, 0.004939033, -0.034859125, -0.009726905, -0.0007899003, -0.013617667, 0.0046071354, 0.0131839, -0.0054516676, -0.004810875, -0.013893701, 0.023581173, -0.026841, 0.0046597132, -0.0074069067, -0.014958403, -0.010502429, -0.0024892334, 0.0013916704, -0.01115308, -0.022647915, 0.016325427, 0.0073214676, -0.021004857, -0.0033978445, 0.0012331152, -0.013341634, 0.0044724047, -0.0018845879, -0.023384007, -0.014603502, 0.027813692, 0.021648936, 0.04082671, 0.009891211, -0.011192514, 0.010022656, -0.009017104, 0.0020028881, 0.0061844713, -0.0023528596, 0.017114095, 0.017442707, -0.0017038515, 0.026196921, 0.012382087, -0.006516369, -0.0033206209, -0.006056313, 0.030731762, -0.0027931991, 0.057362452, 0.0010162316, -0.010114667, 0.014274891, -0.0064079273, 0.020636812, 0.0339653, -0.0025401681, -0.011665714, -0.033833858, 0.0118628815, 0.00841903, -0.011356819, 0.024580153, -0.039959177, -0.0197167, 0.007176879, 0.0033879862, -0.019874433, 0.002507307, 0.027287912, -0.02380463, 0.0153395925, 0.0129275825, -0.016470017, -0.02256905, 0.033334367, -0.005205209, -0.0037921786, -0.020676246, 0.029233294, -0.009904356, -0.010101522, -0.025316242, 0.0030741622, 0.00211133, -0.021517491, 0.017679308, 0.0076829405, 0.0097992, 0.0034011307, 0.012835572, -0.00037133117, -0.029627627, 0.016811773, -0.0070717228, -0.002734049, 0.00918141, -0.018770298]
+ },
+ {
+ "Id": 49,
+ "Type": "Jackets",
+ "Brand": "Daybird",
+ "Name": "Arctic Shield Insulated Jacket",
+ "Description": "Stay warm and stylish in the Arctic Shield Insulated Jacket by Daybird. This jacket features a water-resistant outer shell, insulated fill for exceptional warmth, and a detachable hood for added versatility. The sleek pink color is perfect for any outdoor occasion.",
+ "Price": 169.99,
+ "Embedding": [-0.01076299, -0.0035349352, -0.015288998, -0.0056300703, 0.0037576847, 0.0019062825, -0.010465991, -0.031946775, 0.008348258, -0.021241894, 0.00285216, -0.006714763, -0.008089998, -0.016722342, -0.0063370573, 0.0015261559, 0.016851472, -0.0025600034, -0.0020967494, -0.009458777, -0.020170115, 0.023075541, 0.0071279793, 0.007618673, -0.01116975, -0.022623586, 0.013326222, -0.015766779, 0.02152598, 0.0047358447, 0.02848609, 0.006908458, 0.004174129, -0.026239228, -0.016231649, 0.0045066387, 0.006062656, -0.031171996, 0.009775145, 1.8575056E-05, 0.02599388, -0.011524857, 0.020957809, 0.027427224, -0.016050866, -0.0039610644, -0.001206559, -0.016360778, -0.0019789182, 0.012971114, 0.007851107, -0.002643938, -0.025386969, -0.02049294, 0.0007993957, 0.0074637174, -0.0046938774, -0.0047971816, 0.010620947, -0.0338579, -0.015443955, -0.013984785, -0.022830194, 0.009755775, 0.007360413, -0.030345563, -0.028150352, 0.0074637174, -0.008173932, 0.037964236, 0.012254442, 0.024702579, 0.016786907, 0.0056720376, -0.0020709233, -0.032850686, 0.0039320104, 0.008128737, 0.0033670662, -0.0024470147, 0.026523313, -0.03081043, -0.00025462834, 0.015960475, 0.014230132, 0.022830194, -0.007767173, 0.026523313, -0.0072441963, -0.011989726, 0.011195576, -0.004493726, -0.0022936726, -0.0009515271, -0.020583332, 0.020092636, 0.025464447, 0.0124029415, -0.0047455295, -0.02530949, -0.000937, -0.01722595, 0.016554473, -0.0055138534, -0.030242259, -0.005458973, -0.005546136, 0.022442803, -0.0019466355, -0.0061950143, -0.00683098, 0.020441288, 0.039668754, -0.06657945, 0.031223647, -0.0021112764, 0.0031523874, -0.016593212, 0.015469781, -0.02564523, 0.022055414, 0.033263903, 0.0075282822, -0.0046841926, 0.0029990457, 0.0017029026, -0.026497487, -0.013804003, 0.009039104, 0.017083906, 0.010950229, 0.01654156, 0.006230525, -0.0057333745, -0.027298095, 0.010879207, -0.023876147, 0.014695, 0.010821098, 0.0035995003, 0.006011004, 0.0067728716, -0.011085816, 0.0043645957, -0.009232799, -0.002106434, -0.0067599583, 0.0020241137, 0.0038351626, 0.0069536534, 0.022804368, -0.02654914, 0.01783286, 0.005200713, -0.008625887, 0.010323948, -0.010588665, 0.017974904, -0.01288718, 0.007973781, 0.020996546, -0.006656654, 0.017161384, -0.00055122393, 0.017032254, 0.00934256, -0.008625887, -0.010582208, -0.007857564, 0.014849956, 0.00017523352, 0.042044748, -0.012022008, 0.0010443394, 0.015276086, 0.046460994, -0.008354715, -0.01011734, -0.02281728, -0.01624456, -0.009135951, -0.016761081, 0.013022766, 0.029364174, -0.024044016, -0.010691969, 0.0059625804, -0.011589423, -0.009878449, -0.011163293, 0.009297364, -0.0071215224, 0.012848441, -0.0069149146, -0.6582534, -0.010407883, -0.012635376, -0.033367205, 0.027685484, 0.0045130956, 0.009484602, 0.008464475, -0.02250737, 0.008903517, 0.015030739, 0.012493333, -0.0054234625, 0.008909974, -0.021551806, -0.025193274, 4.557383E-05, -0.011453836, 0.0059916344, 0.027737135, -0.009458777, 0.013184179, 0.0052814195, -0.0068245237, -0.0024728405, -0.0036317827, 0.012874266, -0.009923644, -0.014901608, 0.019834377, -0.03571737, 0.035123374, 0.0024195744, 0.001796522, 0.047803946, -0.026161749, 0.007115066, 0.049611766, 0.005333071, 0.03866154, -0.028176177, 0.014798304, 0.025838925, 0.0034316313, 0.0033315555, 0.0126805715, 0.014617522, 0.009110126, 0.0066179154, -0.008735648, 0.010872751, -0.008516127, -0.008212672, -0.0065985457, -0.0016932179, -0.0005560663, 0.033160597, 0.0036802066, 0.004183814, 0.011072902, 0.0035478482, 0.02032507, 0.004742301, -0.029183393, -0.013287483, 0.027917918, -0.025748532, -0.020441288, 0.008354715, -0.025296578, 0.01606378, 0.03166269, -0.0051684305, 0.007115066, 0.0034768267, 0.017445471, 0.023346715, -0.0047035622, -0.0047616707, -0.004932768, 0.03416781, -0.015882997, -0.017497122, -0.01679982, 0.022326587, -0.02453471, 0.00670185, -0.0029215675, 0.01997642, -0.0024050472, 0.0030668387, 0.021771327, -0.013390787, -0.033031467, -0.028253656, 0.00020620455, -0.005097409, -0.013455352, 0.014682087, -0.0102529265, -0.0075347386, -0.0016932179, 0.0088970605, 0.007399152, 0.012409398, -0.0073668696, 0.0023404823, -0.01417848, 0.0075605647, -0.025386969, -0.0020273419, -0.015534346, -0.0072635654, -0.02505123, -0.012622463, -0.023579149, 0.03496842, 0.007844651, 0.02719479, -0.020286331, 0.008987452, 0.0058625047, -0.0065533505, -0.0077090645, -0.016941864, 0.018052382, 0.00085629366, -0.012758049, -0.014268871, -0.020673722, 0.02049294, 0.011621705, 0.01602504, 0.014578783, 0.01958903, 0.02835696, -0.0030087302, 1.8675939E-05, 0.035639897, -0.027065659, -0.020557504, 0.0055784183, -0.0032137244, -0.023889061, -0.022481542, -0.029932346, -0.04000449, -0.009426494, -0.01063386, 0.00060570065, -0.016890211, 0.0009127881, 0.01366196, 0.018827163, 0.01812986, 0.0052975607, 0.010194818, -0.006330601, -0.018452685, -0.007450804, 0.0021128906, 0.013158353, -0.0031088062, -0.0040030316, -0.01683856, -0.006117536, 0.0077478033, 0.009788059, -0.013984785, -0.046280213, -0.013907307, -0.0037092608, -0.023088453, -0.016167084, -0.010104427, -0.012312551, 0.0011532928, -0.0144883925, -0.015237346, -0.015702214, -0.0025922859, -0.009697667, -0.018052382, -0.007521826, 0.03429694, -0.0043645957, 0.015689302, 0.028563568, -0.0032702186, 0.019756898, -0.0043097157, 0.024431407, 0.0060077757, 0.0032944304, -0.0108146425, -0.059296522, 0.012015551, 0.0031007354, 0.024650928, 0.013636134, 0.016464083, -0.024095668, 0.026355444, -0.016012127, 0.0178716, -0.012015551, 0.0056171576, -0.013545743, 0.020299245, 0.0038739017, 0.010588665, -0.023140106, 0.0025616174, -0.017161384, -0.0016383376, 0.0109889675, 0.005145833, 0.028537743, -0.013235831, -0.011563596, 0.0070311315, 0.022752715, 0.005510625, -0.014707914, 0.002106434, -0.0046841926, 0.0025729164, 0.0075863907, -0.011014794, -0.022765629, 0.011576509, 0.008335345, 0.0032589198, 0.0013494091, 0.0015358406, -0.0040546837, -0.007379783, -0.037835106, 0.021706762, 0.016722342, 0.038015887, -0.008264324, 0.022739803, -0.013739438, 0.030293912, -0.005878646, 0.042483788, 0.016786907, -0.024702579, 0.0018610869, -0.010427252, -0.016179996, -0.009077843, 0.005365354, 0.012383573, -0.016141256, 0.017522948, 0.0034768267, 0.010272296, 0.034400247, -0.0016020198, -0.006127221, 0.006514611, 0.0030168009, 0.04635769, 0.00034824762, -0.00539118, -0.02908009, -0.0223395, -0.0007445155, 0.010620947, -0.0033186425, -0.013261656, -0.031301126, 0.008755018, -0.01129888, 0.008709822, 0.034581028, 0.0020709233, 0.034890942, 0.0050263875, -0.024741318, 0.007353957, 0.037757628, 0.012067203, 0.0013590938, -0.009471689, 0.008767931, -0.0014583626, 0.027272267, 0.017251775, 0.022158718, 0.0075089126, -0.009387755, 0.022184543, -0.011150381, 0.04176066, -0.012293181, -0.0041257055, -0.01366196, 0.012331921, -0.00723774, -0.00044469163, -0.015069477, 0.03711198, 0.010956685, 0.0039610644, -0.030319737, 0.011079359, -0.0052555935, -0.015818432, -0.025787272, -0.00016464082, 0.006253123, 0.013984785, 0.016696516, -0.020906156, -0.012816158, 0.015443955, 0.015276086, -0.01246105, 0.0034865115, -0.02440558, -0.0013534444, 0.096692584, 0.006230525, 0.0074120653, 0.038170844, 0.011376358, -0.008406366, -0.0210482, -0.011118098, 0.018401032, -0.013164809, -0.0077478033, 0.02019594, -0.002259776, -0.025167448, -0.0018417174, -0.00850967, -0.016657777, -0.008044803, -0.023437105, -0.007282935, 0.009626646, -0.015095304, -0.009226343, 0.006136906, 0.011731465, 0.004235466, 0.023553323, 0.01748421, 0.014346349, -0.0056074727, 0.005339528, 0.008742105, -0.00814165, 0.003786739, -0.0026261825, 0.005801168, 0.013126071, -0.013126071, 0.026471661, -0.001028198, 0.020040985, 0.018465597, 0.0005467851, -0.002325955, 0.032979816, 0.0006537209, 0.008038346, 0.031946775, -0.0025648458, -0.0140364375, 0.020053897, 0.0030135727, -0.0038351626, 0.002915111, -0.008522584, 0.019214552, 0.0065694917, -0.0025729164, 0.0054137777, -0.029829042, -0.011118098, -0.0062079276, 0.029157566, -0.003068453, -0.030371388, -0.01366196, 0.028563568, 0.022223283, -0.013946046, 0.012125312, -0.021422677, -0.025154535, 0.015121129, 0.007257109, 0.017342167, 0.019356595, 0.016102519, -0.009962384, 0.013842742, 0.02242989, 0.03897145, -0.007915673, 0.009607276, -0.0024825253, 0.01606378, 0.005458973, 0.007140892, -0.012544985, -0.011602336, 0.038119193, 0.029751565, 0.007792999, 0.018091122, -0.008709822, -0.019046683, 0.031352777, 0.010014036, 0.0268074, 0.015134042, 0.008696909, 0.020208854, 0.013881481, -0.0006291055, 0.018413946, 0.008173932, -0.019860202, -0.019227466, 0.01246105, -0.015263173, 0.01920164, 0.0122286165, -0.011950986, -0.005517082, -0.017716644, -0.0115506835, 0.0023098139, 0.015159869, -0.0034735985, 0.019731073, -0.030965388, -0.00827078, -0.0390231, 0.029364174, 0.0162833, 0.0045647477, 0.0005161167, 0.007618673, -0.02088033, -0.024844622, -0.01417848, 0.007870477, 0.023191758, -0.029157566, -0.0191629, -0.016102519, -0.018698033, -0.022675239, 0.0003877937, -0.024857536, -0.008089998, -0.009613733, 0.017213037, 0.038558234, 0.02242989, 0.00033089577, -0.020647896, 0.0030765235, 0.00040090847, -0.028331134, 0.03140443, -0.024392668, -0.0102271, 0.0083869975, 0.007954411, -0.025283664, -0.028279481, -0.0076057604, -0.019059597, 0.029519131, 0.011725009, 0.031456083, 0.009658928, 0.004829464, 0.025077056, -0.013442439, -0.004622856, -0.011466749, -0.011214945, -0.007851107, 0.018349381, 0.006301547, -0.02246863, -0.006727676, -0.033625465, -0.0107048815, 0.0073668696, 0.009607276, -0.023217585, -0.0026294107, -0.013003397, 0.01933077, -0.009232799, -0.019924767, 0.000330694, -0.018026555, 0.012047834, 0.040030316, 0.00852904, 0.021965023, 0.0037931954, 0.013145439, -0.002928024, 0.014914521, -0.0006835822, -0.013636134, -0.0037092608, 0.00011379586, -0.025567751, -0.0060594277, 0.034606855, 0.010556382, -0.0006077183, -0.010440165, -0.003005502, -0.014023524, 0.006162732, 0.004403335, -0.010104427, 0.022972237, -0.024418494, -0.02667827, -0.028899306, -0.028692698, -0.04343935, 0.020286331, 0.007812368, -0.022223283, 0.0090132775, -0.0067405887, -0.014281784, 0.0031281756, -0.031740166, 0.020002246, -0.012067203, 0.03062965, 0.014423828, -0.0061950143, -0.018465597, -0.007935042, -0.014849956, 0.017626252, 0.008109367, 0.02444432, 0.0024550853, -0.030164782, -0.01404935, 0.021061111, 0.0036511524, -0.0047358447, 0.015366477, 0.017329253, 0.023940712, -0.023721192, -0.019085422, -0.009562081, 0.015521432, 0.008961626, 0.004203183, 0.008025433, 0.005307245, 0.010672599, 0.022326587, -0.020660808, 0.0022145805, 0.0014930663, -0.0040934226, 0.020402549, -0.02250737, 0.01951155, -0.022365326, 0.008064172, 0.004697106, 0.0020112006, 0.018039469, 0.024909187, -0.01168627, 0.022830194, 0.01447548, 0.007502456, 0.02758218, -0.015792606, -0.009316733, -0.008774388, -0.008748561, 0.0100269485, -0.011725009, -0.014501305, 0.000776798, -0.022404065, -0.013829829, 0.0032653762, -0.016722342, -0.011260141, -0.0049230834, -0.013946046, 0.0003012362, -0.016489908, -0.024676753, -0.012854897, -0.01209303, -0.029467478, 0.0047616707, -0.022494456, -0.0070698704, 0.0007796227, 0.0020273419, -0.0012541757, 0.0016722343, -0.018956292, 0.012325464, 0.010872751, 0.010582208, 0.004396878, 0.01855599, 0.015198608, -0.026859052, -0.0028570024, -0.004881116, -0.021616371, -0.048785336, 0.0034187182, 0.015469781, 0.00723774, -0.0065436657, 0.021887545, -0.0073475, 0.008516127, -0.0030103445, -0.023333801, 0.0099688405, -0.014837043, -0.013455352, 0.04480813, -0.004777812, 0.0132487435, -0.017458383, 0.01855599, 0.009884906, -0.0072893915, -0.0072441963, -0.01495326, 0.009161778, 0.012247986, -0.025464447, 0.002158086, 0.0025390198, -0.012777419, -0.011350532, -0.023023888, 0.016205821, 0.016631952, 0.033444684, -0.0028263342, 0.010052775, -0.021887545, -0.02100946, 0.0035091094, -0.010775903, -0.012267355, -0.020157201, 0.011389271, 0.029364174, 0.014695, -0.021332284, -0.025386969, -0.0038416192, -0.05800522, 0.0067986976, -0.0071086097, -0.0028570024, 0.009529798, 0.0132487435, -0.0012291567, 0.03760267, 0.028253656, 0.008025433, -0.0019547062, -0.013726525, -0.012661202, -0.0065533505, 0.012247986, -0.024431407, -0.02268815, -0.042587094, 0.0015818431, -0.012971114, 0.006688937, 0.020725373, -0.020841591, 0.0019950594, -0.0046131713, 0.01301631, 0.010349774, 0.040675968, 0.0012775805, -0.017264688, -0.013222918, 0.0035091094, -0.005032844, -0.018246077, -0.0056558964, -0.001593142, 0.02152598, -0.009665385, -0.03179182, -0.029441653, -0.020996546, -0.0210482, 0.008064172, -0.0030377845, 0.009994666, 0.0070053055, -0.006304775, -0.024289364, -0.0040514553, 0.00070618, -0.017200124, -0.015934648, 0.009820341, -0.013674873, 0.00051813433, -0.013313308, 0.020002246, 0.0152244335, -0.0034832833, 0.00017382116, 0.0014882239, -0.020350898, -0.0043710526, -0.016528647, -0.0056203855, -0.029415827, -0.0017222721, 0.014101002, 0.023617888, 0.0044097914, 0.004700334, -0.03548494, 0.012131769, -0.017910339, -0.0054686577, -0.024457233, 0.012758049, 0.020505853, 0.023088453, 0.033289727, 0.21301293, -0.006485557, -0.003350925, 0.017367993, -0.01718721, 0.025064144, -0.0007231283, -0.0023453247, -0.0028150352, -0.00035288822, -0.00577857, -0.00026471663, -0.020376723, 0.006521068, 0.030190608, -0.028382786, -0.027685484, -0.018271903, -0.0054363753, -0.016722342, 0.0118347695, -0.0035478482, -0.00683098, -0.013674873, 0.024702579, 0.00564944, 0.001206559, 0.011905791, 0.009994666, -0.0071602617, -0.02603262, -0.0002265829, 0.0028683015, -0.008884148, 0.015650563, -0.01299694, 0.0015124357, -0.0012339992, 0.0043129437, 0.0011290809, -0.004793953, -0.008458018, 0.0023453247, 0.003964293, 0.0108146425, 0.012151138, -0.020828677, 0.007786542, -0.0020967494, 0.009910732, -0.008716279, -0.017032254, 0.028666873, -0.000577857, 0.008619431, -0.0055493643, 0.029441653, -0.029364174, 0.011182663, -0.009142408, -0.011892878, 0.018491425, -0.02173259, 0.029544957, -0.015650563, 0.02187463, 0.0012533686, -0.011963899, -0.008290149, 0.0010959913, 0.012648289, -0.004839149, -0.0063983942, 0.018620554, -0.0091811465, -0.029364174, 0.008089998, 0.01958903, 0.006049743, 0.036879543, 0.012841984, -0.0030668387, -0.0108146425, -0.009090756, -0.011854139, -0.031533558, -0.0046551386, -0.015598911, -0.0099688405, 0.005365354, 0.0059658084, 0.00031092096, -0.003609185, -0.0037157175, 0.018194424, 0.0064016227, -0.008574235, 0.025722707, -0.003325099, 0.009871993, -0.018323556, -0.02272689, -0.009458777, 0.006676024, -0.015753867, 0.017716644, 0.012577267, 0.01048536, 0.022843108, -0.011311793, -0.00972995, -0.045944475, 0.0031895123, -0.015482694, 0.011344075, 0.012635376, 0.025361143, -0.020312158, 0.019188726, 0.0055009406, 0.018284816, -0.0058366787, 0.032075904, 0.0048778877, -0.008044803, -0.015805518, -0.018284816, 0.0134166125, -0.0121124, -0.022107065, -0.0056429836, 0.008470932, -0.003880358, -0.03003565, -0.016476994, 0.032540776, 0.017367993, -0.02672992, -0.004416248, -0.006462959, -0.013894394, -0.001874, -0.0010548312, 0.012189877, 0.033496335, -0.025761446, 0.024844622, -0.03677624, -0.0018852989, 0.016334953, -0.028537743, -0.0006198243, -0.0019627768, -0.0020095864, 0.0041095642, 0.0014995228, -0.025232013, -0.025232013, -0.009316733, 0.013313308, -0.020376723, 0.01641243, 0.017277602, -0.012764506, -0.01654156, 0.025890576, -0.16322039, 0.017535862, -0.004290346, -0.016128344, 0.012938832, -0.0011048691, -0.00036519594, -0.0030393987, -0.041399095, 0.008064172, 0.030784605, 0.021900458, -0.00812228, -0.0034897397, 0.015405215, -0.004916627, -0.012880723, 0.029984, 0.01207366, 0.013042136, 0.019149987, -0.005429919, 0.006075569, 0.020428374, 0.008832496, 0.0008369242, -0.0013824987, -0.023579149, 0.0033444685, -0.035769027, -0.0039578364, -0.013507004, 0.045169692, -0.006382253, 0.016037952, -0.012390029, 0.0033041153, 0.008864778, -0.020983635, 0.03592398, 0.0018465598, 0.009568538, 0.015017825, -0.0005516275, -0.0005100637, -0.0082191285, -0.0083869975, 0.0026358673, 0.001386534, -0.02887348, 0.01812986, -0.018194424, -0.034348596, -0.0039352383, 0.023850322, 0.029105915, 0.005197485, 0.026600791, 0.034813464, -0.0052039414, 0.01667069, -0.014695, 0.010188362, -0.008909974, -0.0014430283, 0.0118347695, -0.0041515315, 0.0204542, -0.012519159, 0.008929343, -0.0016916037, -0.0038706735, -0.008800213, -0.02272689, 0.01048536, -0.0029958172, -0.029493304, -0.008851865, -0.013003397, -0.03380625, -0.012841984, 0.04312944, -0.029054262, 0.013352048, -0.0038222496, -0.0024115038, -0.039255537, 0.00021145046, 0.005868961, 0.0017561688, 0.0018013642, -0.03416781, -0.0069020013, 0.00670185, 0.008328889, 0.01709682, 0.015753867, -0.0099688405, 0.0032266374, -0.009704123, 0.0015019439, -0.009374842, 0.0036124133, 0.021358112, -0.0017755383, -0.0029457794, 0.018852988, -0.0025438622, 0.011544227, -0.006356427, 0.0036382393, -0.002837633, 0.005985178, 0.001991831, 0.010104427, 0.011421554, 0.023953626, -0.015495607, 0.009652472, -0.031481907, 0.030862084, 0.011195576, -0.0075605647, 0.005339528, -0.012080117, -0.0011129397, -0.08202341, -0.023437105, 0.02926087, -0.010188362, 0.01761334, -0.004442074, -0.0034639137, 0.024663841, -0.012241529, 0.0067212195, 0.014733739, -0.021074025, 0.017639166, -0.017716644, 0.025671056, 0.01430761, 0.014992, -0.017936165, -0.011163293, 0.009846167, 0.0036898914, -0.0022613902, -0.03269573, -0.008884148, -0.023992365, -0.0049295397, -0.030552171, 0.005914157, 0.024353929, 0.014268871, -0.0008885762, 0.010304579, -0.012661202, -0.028253656, -0.033573814, -0.024792971, -0.024470145, 0.0049133985, 0.030164782, -0.034400247, 0.006973023, 0.015921736, -0.0017384134, -0.04325857, 0.012783876, -0.016076691, 0.009265082, -0.0017287286, 0.03354799, -0.01525026, -0.010272296, -0.010233557, 0.0023566235, 0.0056107007, 0.038635712, -0.008658171, 0.0022484772, -0.004161216, -0.0002990168, -0.011963899, 0.003786739, 0.009148864, -0.003890043, 0.012306094, -0.0045421496, -0.007935042, -0.01847851, 0.013300396, 0.036208067, -0.0052555935, -0.015327738, 0.010950229, -0.022455717, 0.03527833, -0.005739831, -0.016218735, -0.037654325, 0.00075339316, -0.007941498, -0.012764506, -0.009529798, -0.02848609, 0.017045168, 0.00035329178, 0.005074811, 0.004416248, 0.008083542, -0.013597395, 0.006792241, -0.018142773, 0.0059077, 0.012913005, 0.0027246443, -0.029544957, -0.03217921, 0.016050866, -0.015198608, -0.036414675, 0.013442439, 0.022649411, -0.016309125, 0.00079616753, -0.07484378, 0.037705977, 0.006908458, -0.01855599, 0.019860202, 0.0018207338, -0.010356231, -0.007496, 0.015818432, -0.019498639, -0.020428374, -0.00827078, -0.010014036, -0.014720826, 0.0053201583, -0.0009273152, -0.007831738, 0.01615417, 0.03140443, -0.0014567485, -0.011421554, 0.009665385, 0.008942257, -0.010188362, -0.029699912, -0.0016367234, -0.022236196, 0.0038319344, -0.003287974, -0.0038739017, -0.004212868, -0.03625972, -0.009277995, 0.046383515, -0.028047048, -0.04034023, 0.00708924, 0.025658142, 0.014849956, -0.051058024, -0.017213037, -0.03853241, 0.035123374, -0.023708278, -0.007857564, -0.01534065, 0.016347865, 0.009368385, 0.009336103, -0.015585998, 0.038351625, 0.028796002, 0.023346715, -0.036311373, -0.02023468, -0.0041031074, 0.020983635, -0.008328889, -0.014023524, -0.019020857, 0.024676753, 0.03866154, 0.01624456, -0.01537939, 0.023682453, -0.0075799343, -0.0072635654, 0.001940179, 0.009420037, 0.010821098, -0.022830194, -0.0103110345, 0.023734104, -0.0011395727, 0.016761081, -0.009465233, -0.0045066387, -0.00839991, -0.028460264, 0.032024253, -0.023979452, 0.010976055, -0.04382674, 0.006921371, 0.009658928, 0.011931617, -0.02939, -0.010879207, -0.001593142, 0.019498639, -0.026704095, -0.015999215, -0.025490273, 0.011260141, 0.00762513, 0.0055751903, 0.012790332, -0.025038319, -0.021939196, 0.023424191, 0.012351289, 0.023992365, 0.0007235318, 0.0033832074, -0.018878814, -0.0043452266, 0.019279117, -0.029054262, -0.021112764, -0.005675266, 0.004396878, -0.018246077, -0.017070994, 0.012086573, -0.031740166, 0.011854139, -0.004584117, -0.00272303, -0.02496084, -0.0038609887, 0.002488982, 0.008154563, 0.022210369, -0.012428768, -0.005726918, 0.004086966, -0.0023307975, 0.0091230385, 0.018633466, 0.012751593, 0.04046936, -0.0042419224, 0.034684334, 0.019111248, -0.01179603, 0.0103756, 0.01336496, 0.043852568, -0.014811218, 0.05795357, 0.00033997523, -0.036595456, -0.008767931, -0.035252504, 0.0065694917, 0.0077736294, 0.0011460292, -0.014268871, -0.01748421, 0.017548775, -0.000513292, -0.0052071693, -0.00016857525, -0.044885606, 0.0056300703, 0.014643349, -0.014914521, -0.022933498, 0.004212868, 0.020983635, -0.027917918, 0.026213402, -0.016347865, -0.03904893, -0.012448138, 0.016644863, 0.0024970525, -0.0029231817, 0.007179631, 0.017561687, -0.016644863, -0.008748561, -0.007864021, 0.024663841, 0.010130253, -0.017032254, 0.008025433, 0.0012138225, 0.025270753, 0.021965023, 0.031843472, -0.008541953, -0.022197457, 0.019317856, 0.004377509, -0.00854841, -0.04072762, -0.0006169996]
+ },
+ {
+ "Id": 50,
+ "Type": "Navigation",
+ "Brand": "AirStrider",
+ "Name": "Astro GPS Navigator",
+ "Description": "Never get lost on your outdoor adventures with the Astro GPS Navigator by AirStrider. This compact and rugged device comes loaded with topographic maps, GPS tracking, waypoint storage, and a long-lasting battery. It is equipped with a high-resolution color display for easy navigation in any lighting condition. Available in a sleek gray color.",
+ "Price": 249.99,
+ "Embedding": [0.005618993, 0.011548465, -0.0011845445, -0.0016122967, -0.002185164, 0.012884874, -0.01162271, -0.02458183, 0.017332822, -0.013850058, -0.00031933768, 0.0069992743, -0.036906492, 0.017022343, -0.0033781454, 0.0056392415, 0.01206143, 0.0062062033, 0.008430177, 0.007782221, -0.014079543, 0.016293392, 0.0082141915, -0.024797814, 0.003165535, -0.005193772, 0.014956984, -0.014403521, 0.038445387, -0.0073165027, 0.025040798, -0.0038877358, -0.022772951, -0.034368664, -0.016792858, 0.0025766373, 0.00095674745, -0.020127133, 0.005207271, 0.0032684654, 0.0075662355, -0.0042893332, -0.020208126, 0.0072017605, -0.0264717, 0.023758385, 0.0024737068, -0.029886968, -0.0015878296, -0.0020400488, -0.0065673036, 0.012196421, -0.013296596, -0.025067795, 0.00926712, -0.0012208233, -0.009611347, -0.009638345, 0.015159469, -0.04179316, -0.015861422, 0.0033494597, -0.019668164, 0.027025163, -0.011332479, -0.013269598, -0.029347004, -0.013019865, -0.0040193517, 0.007917211, 0.023164425, 0.033747707, 0.015483447, 0.015766928, -0.004721304, -0.025283782, -0.014295529, 0.013229101, -0.008369431, 0.025229786, 0.0028314325, -0.010016319, -0.006277073, 0.016968347, 0.00838968, 0.0070735193, -0.0056662397, 0.011453971, -0.019560171, -0.0051802727, -0.0034895127, 0.009516853, -0.012594644, 0.0146330055, -0.012068179, 0.00071334216, -0.0019658038, 0.02236798, -0.018129267, -0.025067795, -0.00037206846, -0.001567581, 0.001202262, -0.008997139, -0.02544577, 0.014255031, 0.016563375, 0.002728502, 0.015550943, -0.000864785, 0.00017074229, 0.031830836, 0.040092275, 0.0037122476, -0.008754155, -0.017602803, 0.01353283, 0.0036413774, -0.004542441, -0.0112649845, 0.01602341, 0.006344569, 0.03928233, 0.0082141915, -0.018885216, 0.031236876, -0.022232989, -0.015375455, 0.011129993, -0.0045086937, 0.0027234398, 0.022975437, 0.023609895, -0.0036211289, -0.010785767, 0.016090905, -0.010846512, 0.017872784, -0.021544535, -0.0023792132, 0.001037742, 0.015861422, -0.033747707, 0.0037561196, -0.01251365, 0.00063192577, 0.017589305, -0.006091461, 0.027025163, 0.0009643407, 0.024311848, -0.027916102, 0.012128926, -0.005409757, -0.023555899, 0.013600325, -0.00654368, 3.5013243E-05, -0.011494469, -0.005254518, 0.0071410146, 0.008781153, 0.024824813, 0.0058889748, 0.03180384, 0.02532428, -0.021099066, -0.0152674625, -0.009381862, -0.0016325453, 0.014673502, 0.018844718, -0.011953438, 0.018291257, 0.014579009, 0.023002436, 0.01251365, 0.015469949, -0.01499748, 0.004063224, -0.0010596779, -0.019600667, -0.014538512, -0.002347153, -0.024460338, -0.030048957, 0.013735317, 0.030237945, 0.026431203, -0.018264258, -0.008484174, -0.0058619766, -0.013917554, 0.0034827632, -0.6635069, -0.013904055, 0.0014983981, -0.027781112, 0.026566194, 0.0016519502, 0.0048394212, 0.017440815, -0.008814901, -0.0008323028, -0.009192875, 0.0048799184, -0.012101928, 0.0017666924, -0.018655732, -0.009759837, 0.005102653, -0.0027538128, 0.035529584, 0.010239054, -0.018291257, 0.010104063, -0.019735659, -0.004849545, 0.010401043, 0.027281646, 0.0142685305, -0.048461705, -0.022543468, 0.021598531, -0.0107520195, 0.0176433, -0.004248836, 0.009489855, 0.05326738, -0.051269516, -0.03118288, 0.06798138, 0.0038809862, 0.03717647, -0.015186468, -0.029778976, 0.006148832, -0.007444744, -0.008794652, -0.012601393, 0.028294077, -0.028618054, 0.003184096, -0.031560853, 0.02969798, 0.011251485, 0.0051060277, 0.013060362, 0.013465335, 0.0052578924, 0.03277577, 0.02590474, 0.01338434, -0.011696955, -0.014066044, 0.010576531, -0.0115079675, -0.017764792, -0.03072391, 0.04003828, -0.024541331, -0.0014469329, -0.007903713, -0.021517538, 0.02840207, 0.029535992, 0.014403521, 0.012898373, 0.011879193, 0.025256783, 0.0057877316, 0.0060374644, -0.008551668, 0.0035063867, 0.048272718, -0.0017202894, -0.014390022, -0.0118994415, 0.030858902, -0.0037156225, -0.008504421, -0.0044985693, 0.014471016, 0.009368363, -0.0007015304, 0.020221625, -0.02089658, -0.022813449, -0.012689138, -0.006074587, -0.024028366, 0.008605665, 0.013769064, -0.020127133, -0.01044829, 0.013917554, 0.004636935, 0.008808151, 0.005872101, 0.026242217, -0.001600485, -0.007518989, 0.0060678376, -0.034773637, -0.022165494, -0.010880261, -0.029212015, -0.010684524, -0.011845444, -0.019222694, 0.014214533, -0.015456449, 0.024757316, -0.0338287, 0.018466745, -0.03739246, 0.01675236, -0.010387544, -0.01866923, 0.010677774, 0.017265327, -0.020991074, -0.01883122, -0.0028702423, -0.011987185, -0.004441198, 0.010056816, 0.005308514, -0.006354693, 0.0032617159, 0.0033123374, -0.019155199, 0.010097314, -0.0037594945, -0.035205606, 0.020829083, -0.0069385283, -0.006003717, -0.024514334, -0.02722765, 0.0076742284, -0.010407792, -0.013708319, -0.0036818748, -0.00897689, -0.016306892, 0.006756291, 0.009570849, 0.021288052, -0.021058569, -0.018169764, -0.016117904, 0.018304756, -0.009321117, 0.021004573, 0.013499082, -0.0048866677, 0.0015684246, 0.0018459995, 0.0014157163, -0.018264258, 0.049082663, -0.0071680127, -0.030561922, 0.017292324, 0.01397155, -0.026107226, 0.041226197, -0.01749481, -0.0018156266, -0.026255716, -0.02764612, 0.013782563, 0.0011626085, 0.00032439982, 0.023987869, -0.028591057, -0.016738862, 0.008943142, 0.0031334744, 0.00926712, 0.01590192, -0.019911146, 0.02192251, -0.0068879067, 0.020032639, 6.21696E-05, 0.007033022, -0.00867316, 0.004984536, 0.008558419, -0.002601948, 0.019911146, 0.022259986, 0.024406342, -0.018628733, 0.016252896, -0.017319323, 0.020842584, -0.010583281, -0.0017768167, -0.010171559, 0.0052747666, 0.00043049417, 0.0016080781, -0.015064976, -0.0019101201, -0.020032639, 0.026741682, 0.016576873, 0.0060138414, 0.021166561, 0.006709044, -0.015456449, 0.0077484734, 0.013215601, 0.005929472, -0.029104022, -0.007923962, 0.029347004, -0.009462857, 0.016495878, 0.00045306297, -0.04103721, 0.026714684, 0.015091974, 0.015429451, 0.024757316, 0.03293776, 0.02103157, -0.0117037045, -0.014322527, 0.029913967, 0.0026390706, 0.028132088, 0.0016232646, 0.02590474, -0.014579009, 0.0099960705, 0.022637961, 0.022597464, -0.0023269043, 0.012398907, 0.02221949, -0.028078092, -0.0083356835, -0.011987185, 0.022273486, 0.009672092, -0.017562306, 0.016738862, 0.006179205, 0.016819857, 0.025094794, 0.015982913, 0.005710112, 0.005895724, 0.005089154, 0.0010875198, -0.014579009, 0.0006749541, -0.015415953, 0.0075392374, -0.0045829383, 0.029670984, -0.016374387, -0.0040699732, -0.005838353, 0.012689138, -0.012864625, 0.007195011, 0.012540648, 0.00676304, 0.011433722, 0.011062498, -0.035637576, 0.026566194, 0.014187535, 0.011534966, -0.0058856, -0.016414884, 0.0035536333, -0.012122176, 0.019951643, -0.017454313, 0.001765005, 0.011575463, -0.013019865, 0.0058451025, -0.012432655, 0.023258919, -0.019114701, 0.021099066, -0.0081399465, -0.00434333, 0.0036076298, -0.016225897, -0.008362682, 0.0382564, 0.009098382, -0.008504421, -0.012554146, 0.0056324922, -0.0036143793, -0.0033342734, -0.019600667, 0.0132898465, -0.029535992, -0.0068609086, 0.012088428, -0.021504039, -0.025553763, 0.033315737, 0.005190397, -0.025189288, -0.0050655305, -0.008571917, 0.007856466, 0.08067051, -0.022678459, 0.0024500834, 0.0025766373, 0.0072017605, -0.019938145, -0.026525697, -0.0036582514, 0.01839925, -0.0011330792, -0.0066887955, 0.0014730874, 0.007309753, -0.04103721, 0.030831905, 0.020262122, 0.011075997, -0.018939212, -0.014835492, -0.008004956, 0.0036143793, 0.0037999917, 0.0027926227, 0.011595712, 0.033747707, -0.018615235, 0.015348457, 0.0045795636, 0.009510104, -0.018088771, -0.007532488, 0.0029225512, 0.005500876, 0.015537444, -0.0075392374, 0.0052578924, -0.017724296, 0.010380794, 0.013654321, 0.018358752, 0.023366911, 0.007606733, 0.014039046, -0.022489471, 0.012425905, -0.0127296345, -0.0060374644, 0.0142685305, -0.016644368, -0.012203171, -0.010650776, 0.00032250152, 0.014471016, -0.008551668, -0.0099218255, 0.0068744076, -0.0026137598, 0.001657856, -0.0075729853, -0.03253279, 0.0018763725, -0.0044648214, 0.024041865, 0.003735871, -0.011561964, -0.038877357, -0.013877057, 0.0045221928, -0.024109362, -0.0025378275, 0.023690889, -0.017170833, -0.021126064, -0.0003507652, 0.030993894, 0.019506173, 0.0067157936, -0.0044040754, -0.011345979, 0.03150686, 0.02767312, -0.010475288, 0.0039788545, -0.021342048, 0.009145629, 0.006739417, 0.0033292111, 0.0061994535, -0.0034827632, -0.0016848543, 0.016266394, -0.0038269898, 0.030345937, -0.012695887, -0.01073852, -0.0119736865, 0.0075797345, 0.008349182, 0.009807084, 0.018777223, 0.012675638, -0.018304756, -0.022786452, -0.006189329, 0.038877357, 0.014214533, 0.010833014, 0.012311163, -0.0023134053, 0.0088486485, -0.0051499, -0.023474904, 0.00074877724, -0.00809945, -0.010927507, 0.010333547, 0.013553078, 0.0029883594, -0.0061285836, -0.0067326673, -0.030885901, -0.020329619, 0.010320049, 0.041901153, 0.013742066, 0.029832972, 0.0060678376, 0.0088284, -0.02532428, 0.020532105, 0.012027683, 0.0033376482, 0.004454697, -0.007829468, 0.0037156225, -0.022610962, -0.022408476, 0.011393226, 0.0010655838, -0.008909394, -0.011568714, -0.0036278784, 0.016954847, 0.015456449, -0.009321117, -0.016887352, -0.022408476, -0.0098003335, -0.025661755, 0.023002436, -0.014754497, 0.0032802771, -0.018277757, -0.02837507, -0.0004480008, -0.03809441, -0.0026221967, -0.0021311676, 0.022570467, 0.029104022, -1.7387978E-05, -0.003988979, 0.008396429, 0.0048461705, -0.011217738, 0.004255586, -0.027538128, -0.0063141957, -0.03944432, 0.00033199307, 0.011595712, -0.0037156225, -0.02400137, -0.015280961, -0.025256783, -0.003315712, -0.0067124185, -0.00868666, 0.012783631, -0.061177842, 0.0059733437, -0.009165877, -0.01339109, 0.009105131, -0.026836175, -0.010158059, 0.028186085, 0.01206143, -0.008889146, 0.001490805, 0.024622327, -0.006415439, 0.012007434, 0.0146330055, 0.001460432, -0.017980779, 0.004910291, -0.023812382, -0.005868726, 0.004350079, -0.0152674625, -0.006705669, -0.006705669, -0.00063698797, -0.026269214, 0.0076404805, 0.0022931567, -0.0025530139, 0.018574737, -0.01441702, 0.0028213083, -0.023434406, -0.013397839, -0.03145286, -0.0018021275, -0.010718271, 0.006044214, 0.011906191, -0.0323978, 0.0044918195, -0.004181341, -0.013573327, 0.008916144, -0.008544919, 0.015955916, 0.021072067, -0.0067157936, -0.030264942, -0.02441984, 0.0068271607, 0.008713658, 0.0011870755, -0.0014528388, -0.01250015, -0.02559426, 0.018061772, 0.0145115135, -0.0016477318, -0.013330344, 0.012999617, 0.03150686, 0.020356616, -0.017035842, -0.024068864, -0.0104347905, 0.041469183, -0.006945278, 0.016576873, -0.01572643, 0.014983982, -0.023515401, 0.013458585, -0.017386818, 0.0176568, 0.016806358, 0.009442608, -0.0035603829, -0.006844035, 0.025864242, -0.013310095, 0.030210946, 0.02162553, 0.014376523, 0.014187535, 0.019614168, 0.019897647, 0.009078133, 0.002596886, 0.023407409, 0.021018071, -0.020626597, -0.03296476, 0.019830152, 0.0047179293, 0.024298348, 0.023623394, -0.022044001, -0.016212398, 0.01368132, -0.008598915, 0.013505832, 0.0076134824, -0.009341365, -0.023110429, 0.011460721, -0.0077012265, -0.013782563, 0.005355761, -0.014956984, -0.04084822, -0.022151994, -0.00032946197, 0.011163741, -0.00926712, 0.0014815243, -0.0008576136, -0.010468538, 0.008004956, -0.03909334, 0.0013895618, 0.034233674, 0.018169764, -0.013377591, 0.03296476, 0.0250003, -0.041469183, 0.007836217, 0.0051262765, -0.01605041, -0.035799567, -0.006057713, 0.0011955125, 0.023839379, 0.009962323, -0.008916144, -0.010968004, 0.014403521, -0.01707634, -0.026390705, -0.008862148, 0.006017216, 0.010205306, 0.033936694, -0.02177402, 0.024190355, -0.023758385, 0.005575121, 0.020464608, -0.005014909, -0.018993208, -0.022381479, 0.008504421, 0.002736939, -0.02575625, -0.019587168, 0.004971037, -0.0056459913, 0.009955573, -0.014349525, 0.028726047, 0.022111498, 0.0007538394, 0.012668889, -0.0032735274, -0.026093727, 0.0031908455, -0.00038493477, -0.011278483, -0.029185016, 0.004488445, 0.019668164, 0.033639714, 0.015037978, -0.03849938, -0.0124124065, -0.011534966, -0.044195995, -0.008457175, -0.013917554, 0.016144903, 0.041307192, 0.029266011, -0.008943142, 0.03180384, -0.00209742, 0.021423044, 0.021423044, -0.0047179293, -0.011305481, 0.015564442, -0.01575343, -0.032154813, -0.027700117, -0.032991756, -0.0032482166, -0.001079083, 0.008490923, -0.0015363643, -0.009807084, -0.016698364, -0.003995728, -0.01235841, 0.03806741, 0.017575806, 0.002023175, -0.026809178, -0.0058012307, -0.0039248583, 0.004535692, -0.011055749, -0.0045053186, 0.025621258, -0.001386187, 0.005976719, -0.00093396776, -0.014983982, -0.017238328, -0.0034321416, 0.018507242, 0.0021294802, -0.0023589646, 0.02162553, 0.0073637497, -0.023407409, -0.0014950234, 0.005770858, -0.010468538, -0.012770132, -0.010934257, -0.033180743, -0.006695545, 0.00183925, 0.014376523, -0.00055135315, -0.003661626, -0.0016156714, -0.0002986672, -0.0077889706, 0.029886968, 0.018061772, -0.0023488402, -0.017710796, 0.019263191, -0.015442951, 0.0007993988, -0.0015768616, -0.0044074506, -0.020802086, 0.01587492, -0.0027605623, -0.008767654, -0.03547559, 0.02458183, -0.014228033, 0.007829468, 0.029239012, 0.20540203, 0.010569781, -0.0075392374, 0.019519674, -0.0007158732, 0.03941732, 0.0036008803, 0.013512582, 0.0021159812, -0.013229101, -0.010016319, 0.011717203, -0.017035842, -0.012459653, 0.011541716, -0.035340596, -0.028024094, -0.0147005, -0.027335642, -0.0028955531, 0.021207059, 0.008956641, 0.029886968, -0.023933873, 0.011534966, -0.008247939, -0.016954847, -0.00691153, 0.024392841, 0.024392841, -0.010968004, -0.026404206, 0.0071072667, 0.0055953697, 0.0017886284, 0.011710454, 0.0074649923, 0.034341667, 0.0040699732, 0.018858219, -0.0161854, -0.006648298, 0.009597847, -0.025675254, 0.011258234, -0.005197147, -0.0026778805, 0.0041577173, -0.020086635, -0.0086529115, -0.022462472, -0.020545604, 0.0077282246, 0.008045453, -0.0264717, -0.005487377, 0.012466403, -0.025972234, 0.0092131235, -0.0018898715, -0.0135598285, 0.016833356, -0.0020467984, 0.013006366, -0.014579009, 0.032910764, 0.0085314205, 0.0047280537, 0.024365844, 0.0038641123, 0.015483447, -0.0006306603, -0.00014564245, 0.006756291, -0.005703362, -0.021598531, 0.012432655, 0.00055557163, -0.0021598532, 0.001300974, 0.006256825, 0.0061859544, 0.005389509, -0.017751293, -0.012621642, -0.035232604, -0.009604597, -0.0022475973, -0.015429451, 0.000686344, 0.008403179, -0.0264852, -0.00463356, -0.021207059, -0.005484002, 0.008855398, -0.0050722803, 0.0176433, -0.014444018, 0.010657526, -3.293038E-05, 0.019060705, 0.00522077, -0.0012267291, -0.013505832, 0.003705498, 0.023866378, 0.014781496, -0.0039214836, -0.006958777, 0.0028955531, -0.024649324, 0.00691828, -0.009651843, 0.001029305, 0.024608826, -0.00867316, -0.0068541593, 0.02400137, -0.0102863, 0.032613784, -0.010515785, 0.012297664, 0.015847923, -0.008754155, -0.0338017, -0.021261055, 0.010603529, 0.0009964011, -0.01970866, -0.0051566493, -0.008646162, 0.02693067, -0.023569398, -0.0020602974, 0.003695374, 0.0034827632, -0.0065605543, -0.01587492, -0.0142685305, 0.021099066, -0.00551775, 0.028456066, 0.013188603, 0.038526382, -0.012884874, 0.014430519, -0.00024256164, -0.0058619766, -0.01117724, -0.003206032, -0.0081399465, 0.0037426206, 0.019087702, 0.008166945, -0.015564442, -0.03312675, -0.023771884, 0.0074514933, -0.01735982, -0.022610962, 0.021531036, 0.037932422, -0.011710454, -0.019087702, 0.017008843, -0.17343621, 0.01456551, 0.009003888, -0.0338017, -0.011042249, -0.010522535, 0.022394978, 0.009098382, -0.007485241, -0.004296083, 0.02705216, 0.0042792093, -0.03806741, -0.011548465, 0.017697297, 0.012783631, -0.0071140165, 0.00926037, -0.0021649154, 0.00969909, 0.011163741, 0.0013254412, 0.01822376, -0.00720851, 0.006196079, -0.002618822, -0.01869623, 0.0034692641, -0.0058349785, -0.021504039, 0.009780086, -0.020640098, 0.02529728, -0.004383827, 0.025931736, -0.0016713551, -0.007444744, -0.000617583, -0.016792858, 0.025189288, -0.012992866, 0.008747405, 0.02767312, 0.0064188135, 0.010563032, 0.016954847, -0.015037978, -0.0005095904, 0.0028719297, -0.03836439, 0.010279551, -0.021760521, -0.03118288, -0.0018325004, 0.033288736, 0.011480969, 7.529957E-05, 0.008916144, 0.02896903, -0.03660951, -0.019749157, -0.012824128, -0.033639714, -0.015658936, -0.007046521, -0.014660004, -0.006354693, 0.011237986, -0.007863215, 0.024230853, -0.023299417, 0.005490752, 0.019560171, -0.010893759, 0.0076674786, 0.0020096758, -0.014916486, 0.023461405, 0.00077071326, -0.005868726, -0.006985775, 0.014322527, -0.030048957, 0.006381691, 0.007984707, -0.0092873685, 0.006958777, -0.0031908455, -0.003735871, -0.0010394293, 0.01807527, -0.026066728, -0.0070667695, 0.011109745, 0.017305823, 0.02235448, 0.034611646, -0.0041104704, 0.01117724, -0.020505106, 0.010394294, 0.0017548808, -0.0098003335, -0.010158059, 0.034341667, 0.020667095, 0.026255716, 0.006344569, 0.02309693, -0.0066584223, -0.015658936, 0.019384682, -0.005237644, 0.017089838, -0.018115768, 0.014187535, -0.00038366922, -0.018412748, 0.018331753, -0.01486249, 0.010313299, -0.0146330055, -0.016603872, 0.013917554, -0.0018409374, -0.0146330055, -0.09838131, -0.040929217, 0.03812141, -0.001007369, -0.02455483, 0.0038371142, 0.007809219, 0.015361955, 0.004120595, 0.04044325, -0.009732839, -0.021760521, -0.01162271, -0.007296254, 0.015793927, -0.014538512, 0.02896903, -0.023515401, -0.003082853, 0.01587492, -0.00750549, -0.02294844, 0.006776539, 0.006428938, -0.010482037, -0.011332479, -0.031857833, -0.00081796, 0.04076723, 0.011433722, 0.008646162, 0.014552011, -0.0012309476, -0.019492675, -0.020694094, -0.005602119, -0.02602623, -0.0046740575, 0.014835492, -0.02620172, -0.007890213, -0.00158108, 0.0052477685, -0.036906492, -0.0067326673, 0.0015836111, -0.009908327, 0.021639029, -0.007876715, -0.021976506, -0.014349525, 0.00040328508, -0.0054671285, -0.019222694, 0.01661737, -0.0035873812, -0.0040261014, 0.004410825, 0.017238328, 0.0015557692, -0.012385408, -0.013546329, 0.0032904013, 0.005548123, -0.019924646, 0.022327483, -0.026458202, -0.0013693132, 0.0191282, -2.2904937E-06, -0.013296596, 0.024055365, -0.027430136, 0.025648257, -0.017616302, -0.0031739718, -0.009010637, 0.015361955, 0.020829083, 0.009084882, -0.008916144, -0.01590192, 0.018507242, -0.01795378, 0.01308736, 0.028861038, 0.0047989236, -0.008882396, 0.004049725, -0.03766244, 0.019992141, 0.022516469, 0.0054131323, -0.0058754757, -0.017575806, -0.022786452, 0.006412064, -0.0007378092, -0.010880261, -0.025661755, -0.010252553, -0.003148661, -0.07678278, 0.01795378, 0.0033224616, -0.0035603829, -0.009057884, -0.007019523, -0.0041003465, -0.025972234, 0.0081399465, -0.024743818, 0.01000282, -0.042927083, -0.0006555492, -0.0012039494, 0.014106541, -0.011669957, -0.013080611, 0.0032330302, 0.0054401304, -0.0139985485, -0.018129267, 0.02427135, -0.0044648214, 0.01634739, -0.016846854, -0.0005779295, -0.00795096, -0.006749541, 0.0084099285, -0.01280388, 0.0072895046, -0.011251485, 0.0017219767, 0.023488404, -0.013721817, -0.015091974, 0.015334957, 0.012905123, -0.0018848093, -0.0005521968, -0.0015549256, -0.00338152, 0.042873085, -0.012736384, -0.005990218, -0.023137428, 0.0035840063, 0.008625913, 0.032856766, -0.0070802686, 0.005237644, 0.014714, 0.01734632, -0.02896903, -0.03269478, -0.03415268, 0.0010731771, -0.010353796, -0.033936694, -0.02458183, 0.04457397, 0.026701186, 0.016441882, 0.011966936, 0.020329619, 0.01737332, -0.04179316, 0.0020130507, 0.022232989, 0.0042724595, -0.008430177, -0.008423427, 0.038526382, -0.020505106, 0.0062062033, -0.021126064, 0.005909223, -0.008227691, -0.012716136, 0.020059636, 0.01838575, -0.0064188135, -0.032910764, 0.010171559, -0.0004543285, 0.0056426167, -0.032316804, 0.010495537, -0.010583281, 0.0008057265, -0.024257852, -0.01073852, -0.0094831055, -0.015307959, -0.0050250334, 0.03145286, -0.0054266313, -0.0083356835, -0.00011822243, 0.039012346, 0.0009736213, 0.00030436213, 0.00012391736, -0.006844035, -0.00025711535, 0.025121793, -0.020707592, -0.008929643, -0.021288052, -0.017575806, 0.011521467, 0.005649366, 0.004856295, 0.016455382, -0.00720851, 0.007235508, -0.01147422, -0.015496947, -0.010428041, 0.008058952, 0.029428, 0.004765176, 0.00096940284, -0.017467812, 0.020761589, -0.0069655264, 0.007964458, -0.0033055877, -0.0012689137, 0.0005433381, 0.016738862, 0.008727157, 0.019371184, 0.020478109, -0.0062871976, 0.0065133073, 0.0010968004, 0.01266214, -0.05675014, 0.07251707, 0.012284165, -0.017994277, -0.0054401304, -0.023312915, 0.015564442, 0.008720407, -0.00342033, -0.031560853, -0.021058569, 0.0023977745, 0.0012031057, 0.0085786665, 0.016306892, -0.00017854646, 0.008193943, 0.0029664233, 0.019141698, -0.027416637, -0.003288714, 0.046436843, -0.02720065, -0.0033207743, 0.010765518, -0.0132898465, 0.0054131323, 0.023650393, 0.023555899, 0.011939938, -0.03736546, 0.017062841, -0.015483447, -0.031992827, -0.0045188176, -0.0025631383, -0.0076269815, 0.002311718, -0.025013799, 0.012162673, 0.027578626, 0.016725363, 0.011312231, -0.0063884407, -0.010563032, 0.010684524, -0.017386818, -0.015307959, -0.01691435, -0.028807042]
+ },
+ {
+ "Id": 51,
+ "Type": "Climbing",
+ "Brand": "Grolltex",
+ "Name": "SummitStone Chalk Bag",
+ "Description": "The SummitStone Chalk Bag in forest green is a must-have for climbers seeking adventure. Keep your hands dry and have easy access to chalk with this durable and compact bag. It features a drawstring closure, adjustable waist strap, and a Loop-Slider buckle for easy attachment to harnesses.",
+ "Price": 29.99,
+ "Embedding": [0.010449567, 0.0034708926, 0.027740313, -0.023809988, -0.01881995, 0.014393305, -0.029591456, -0.037317965, 0.026573287, -0.0044299993, 0.011824509, 0.008631959, 0.009356319, 0.011247704, -0.0075387117, -0.016539557, 0.026559874, -0.00064345653, -0.0035815588, 0.002930976, -0.01733099, -0.0021177474, 0.01207267, -0.01003373, -0.0017605977, -0.022213712, 0.031442598, -0.009510581, 0.021462524, -0.013038483, 0.014661587, 0.007122875, -0.012575698, -0.022481995, -0.013300058, -0.007599075, -0.018793123, -0.0035480235, 0.005365631, -0.018739466, 0.003873315, -0.007377743, -0.0037358205, -0.0067741093, -0.015278635, 0.01213974, 0.00061034056, -0.02147594, -0.039947122, 0.021127172, 0.0005118309, 0.0064957673, -0.023581948, 0.012964706, -0.011375138, 0.015989581, -0.0031841667, 0.0001122381, 0.025124567, -0.027257405, -0.019571139, -0.0055064787, -0.017223677, -0.0034641856, 0.014098195, -0.025567232, -0.010087387, -0.0054461155, 0.00858501, 0.029296346, 0.0077868723, -0.004312626, 0.012394608, 0.009141694, -0.009772155, -0.0067170993, -0.039893467, 0.00069040584, 0.0018226379, 0.0025822099, 0.031818192, -0.025580646, 0.007216774, 0.008370385, 0.020134531, 0.0010689343, -0.0011041462, 0.0075185904, -0.0045205443, -0.018927263, -0.002853845, 0.0054259943, 0.009591065, -0.0019383342, -0.031845022, 0.012890928, 0.0005566842, 0.0033082468, 0.00425897, -0.033347398, 0.0063381516, 0.007780165, 0.0004862603, -0.01177756, -0.04375672, -0.018363873, -0.0028722894, -0.0014554274, 0.012005599, -0.0047485833, -0.033857133, 0.0039739204, 0.016901737, -0.02072475, 0.016552972, -0.021140587, 0.030637754, 0.008571596, 0.000980066, -0.041664124, 0.027740313, -0.018135833, 0.05714397, -0.020536954, -0.004446767, 0.0239173, -0.04308602, -0.0009884499, 0.019423585, -0.006210718, 0.0075051766, 0.032703523, 0.012736667, -0.019826006, -0.018430943, 0.021368627, 0.007646024, -0.0019919905, -0.008263072, -0.002085889, 0.007894184, 0.027981766, -0.020416226, -0.023152698, -0.003055056, 0.034822945, -0.007525298, 0.031764537, 0.008598424, -0.017948035, 0.01148245, -0.016150549, 0.013192746, 0.019517483, -0.0059390827, 0.011998893, 0.028518328, 0.01852484, -0.024628246, -0.008356971, -0.0018880315, 0.0016926889, 0.022803932, -0.014607931, 0.005610438, 0.019101646, 0.0036318616, -0.014862798, 0.0039537996, 0.006810998, 0.024695316, 0.02641232, 0.00017752693, 0.012005599, 0.009839226, 0.029618284, 0.009255714, 0.027847625, -0.01542619, -0.0140847815, -0.016070064, 0.011026372, 0.0120927915, 0.021060102, -0.04550055, -0.00901426, 0.01302507, 0.009148401, 0.0152115645, 7.5925775E-05, 0.0175322, -0.005080582, -0.012964706, -0.0051744804, -0.658041, 0.012515334, -0.012126327, -0.036405805, 0.050812528, 0.01845777, 0.030181674, 0.0039336784, -0.009913003, -0.0046177963, 0.019289443, 0.041208047, -0.012783616, -0.014353063, 0.005895487, -0.026358662, -0.0047754114, -0.023273425, 0.024038028, 0.01080504, -0.019168718, 0.0138567425, -0.0239173, -0.0013187715, 0.0126159405, -0.008216122, 0.002246858, -0.027176922, -0.010858696, 0.017183434, -0.010208113, 0.032166958, -0.0043361005, 0.03098652, 0.054192875, -0.015144493, -0.029269518, 0.036110695, 0.007069219, 0.032301098, -0.012649476, -0.01911506, 0.008638666, -0.0049565015, -0.014715243, 0.0050202184, 0.029993877, -0.0113080675, 0.01195865, -0.032462068, 0.024681903, -0.011670248, 0.020845477, 0.008839877, 0.014232337, -0.0045742006, 0.020268671, -0.0025352607, 0.015265221, 0.0055936705, -0.02256248, 0.011562935, -0.016432244, -0.022790518, -0.026439147, 0.017612685, -0.023608778, -0.028276876, 0.012669597, -0.0050135115, 0.006261021, 0.013065312, 0.007921013, 0.005680862, 0.01852484, 0.021462524, -0.010100801, -0.017921207, -0.02183812, -0.003271358, 0.008316728, -0.0022552419, 0.003628508, -0.010798332, 0.040993422, 0.00047284624, 0.0042455555, -0.014929868, 0.010516637, 0.01159647, -0.0067439275, 0.02618428, -0.011328189, -0.017451715, -0.014205508, 0.024856286, 0.0016423862, 0.025151396, 0.012441557, -0.0073039653, -0.014044539, -0.0036754573, -0.022575893, 0.0015258513, 0.0015619016, 0.032354757, 0.0001206219, -0.012931171, 0.031710878, -0.008665495, 0.008296607, -0.015050596, -0.03747893, -0.04338113, -0.003392085, -0.022777105, 0.018833365, -0.022307612, 0.018954093, -0.042871393, 0.016123721, -0.012005599, 0.0048055933, -0.0015417805, -0.013407371, 0.024292896, 0.007914306, -0.015681056, -0.013393956, -0.014151852, -0.015533502, 0.001304519, 0.029886564, 0.00036825836, 0.0073509146, 0.010711141, -0.0034943672, -0.020443054, 0.012817151, -0.012971413, -0.01062395, -0.014983525, 0.008464283, -0.024306308, -0.029403659, -0.04322016, -0.032247443, -0.009718499, -0.006633261, -0.017022464, -0.020925961, -0.00901426, -0.013461027, -0.013648824, 0.025607474, -0.015332291, 0.011978772, -0.01898092, 0.02197226, -0.016472487, -9.845723E-05, 0.006210718, -0.027083023, -0.027793968, -0.033535194, -0.0026358662, 0.0062442534, 0.022710033, 0.009456925, -0.06170476, -0.0064722924, 0.0030600864, -0.01845777, 0.019463826, -0.0061235265, 0.009832519, -0.017223677, -0.018779708, 0.0042757373, 0.014554274, 0.003635215, -0.0078137005, -0.021663735, -0.011904994, 0.033830304, -0.0054092268, 0.01947724, 0.020630851, -0.008350263, -0.005449469, 0.015842026, 0.009785569, -0.00565068, -0.008618545, 0.0044601806, -0.010784918, -0.0022703325, 0.0049732695, 0.01202572, 0.0386862, 0.02937683, 0.0042254343, 0.041422673, -0.006559484, 0.014675001, -0.024494106, 0.009034381, -0.00089119776, 0.019571139, 0.011770853, -0.011368431, -0.016646871, -0.0006111789, -0.02371609, 0.008725857, 0.010664192, 0.015305462, -0.0038766684, -0.00462115, 0.0004497908, 0.015613986, -0.019665038, 0.01845777, -0.026197694, -0.022683205, 0.0140847815, -0.004996744, 0.026881812, 0.009027674, -0.012421436, 0.016767597, 0.005067168, 0.009845933, 0.002052354, 0.014379892, -0.0055165393, 0.015962752, -0.031979162, 0.049954027, 0.0030684702, 0.015681056, -0.004067819, 0.020805234, -0.00044350294, 0.01710295, 0.0076594385, 0.01911506, -0.010489808, 0.0031288336, -0.0005872851, 0.0042723836, -0.0075118835, -0.00906121, 0.015935924, 0.022146642, -0.0030651167, 0.024708731, 0.019946733, 0.0031573386, 4.283597E-05, 0.0025017255, 0.015734714, 0.004751937, -0.0027951584, 0.016861496, -0.021824704, -0.034581494, -0.014098195, -0.04520544, -0.029698769, 0.0061637685, -0.017505372, -0.0008752686, 0.009584359, 0.005080582, -0.012481799, 0.025647717, 0.013226281, -0.007934427, 0.008759392, -0.009752034, -0.009798984, 0.0015333968, 0.018471185, 0.0038833756, -0.0061537083, 0.0002875643, 0.023152698, -0.022347853, 0.027311062, 0.014446962, 0.008625252, -0.016284691, 0.005399166, -0.004758644, 0.00017585017, 0.012716546, -0.0175322, 0.02727082, -0.0046848664, -0.002114394, 0.00565068, -0.011985478, -0.024775801, 0.029350001, -0.0016340023, -0.019141888, 1.15866715E-05, -0.0010387526, 0.00047200787, -0.0011360047, -0.020684509, 0.014862798, 0.001105823, 0.0048525427, 0.0005365631, 0.008980725, -0.009845933, 0.034957085, 0.0002202843, -0.019879663, -0.028089078, -0.029028064, 0.0033384287, 0.09191326, 0.0032428533, -0.01189158, 0.030235332, 0.0028706125, -0.005798235, -0.031764537, -0.020027218, 0.0045238975, -0.017263917, 0.01861874, -0.0143128205, -0.0137091875, -0.0027968353, 0.0027415021, 0.009966659, -0.0012852363, 0.006177183, 0.005120824, -0.00057722453, -0.0098056905, -0.010469688, -0.013950641, 0.024963599, -0.010402617, 0.009477046, 0.0015074069, 0.022656377, 0.011214169, -0.014782313, 0.0028722894, 0.012575698, 0.012495213, 0.0008903594, -0.010194699, 0.005093996, -0.0008576626, -0.008095396, 0.00090041995, -0.0054729437, 0.017062707, 0.019812593, 0.0165798, -0.0048458357, 0.02625135, 0.007646024, 0.004198606, 0.01123429, -0.006418636, -0.0154396035, 0.018068762, 0.025245294, -0.014500618, 0.0029980463, 0.014514032, 0.021060102, 0.001688497, 0.023514878, 0.018779708, -0.04598346, 0.00912828, -0.032193787, 0.02835736, 0.0021211011, -0.016928567, -0.014715243, -0.030342644, 0.0050202184, 0.000763764, 0.00047997246, -0.0003252914, -0.028115908, -0.017196847, -0.014728657, 0.014581103, 0.026787912, 0.008149052, -0.0019718695, 0.00330154, 0.028840266, 0.019906491, -0.01703588, 7.047631E-05, 0.004503777, -0.0051979553, 0.005392459, 0.02618428, -0.015050596, 0.004544019, 0.007458227, 0.026720842, 0.006076577, 0.013642117, -0.0024916648, -0.01352139, -0.0027850978, 0.021958845, 0.006757342, 0.009772155, -0.004108061, 0.029054893, 0.0037995374, 0.0036788108, -0.004480302, 0.028813438, 0.011817803, 0.008323436, 0.024400208, -0.017518785, 0.032703523, 0.01243485, -0.02713668, 0.013608581, -0.0067808162, -0.013762844, 0.008772807, 0.022052744, 0.027579343, -0.0039973953, -0.022428337, 0.0016985576, -0.040054437, 0.011757439, 0.010355668, -0.010885524, 0.01881995, 0.009711793, -0.033803474, -0.020671094, 0.010315426, -0.00648906, 0.03332057, -0.005399166, 0.0047284625, -0.008350263, -0.010577001, -0.006606433, 0.0026543105, -0.009886175, 0.013112261, -0.0025939473, 0.008276486, 0.006448818, 0.003920264, -0.03839109, -0.021234484, -0.015265221, -0.015144493, -0.013434199, 0.002288777, -0.01700905, 0.010201406, -0.007189946, 0.004319333, -0.0033585497, -0.016888324, -0.025419677, 0.0067808162, 0.031281628, 0.019960148, 0.012683011, -0.005053754, 0.028250048, 0.0007490924, -0.020483296, -0.01159647, -0.008370385, -0.028169563, -0.014339649, -0.00045482107, -0.002156313, -0.016539557, 0.009148401, -0.0084844045, -0.006448818, 0.012508627, -0.00093730865, -0.015050596, 0.0024883114, -0.061060883, -0.022227127, 0.0038900825, 0.011375138, -0.004004102, -0.036727745, 0.001203075, 0.04493716, 0.019369928, -0.0005742902, -0.004782119, 0.04279091, -0.022119815, 0.004466888, 0.01363541, 0.004376343, 0.0043629287, -0.005372338, -0.020134531, -0.00074238534, 0.010006902, 0.01875288, 0.0058015888, 0.016096894, -0.02776714, -0.004654685, 0.008303314, -0.018082177, 0.0009306016, 0.018726053, -0.02822322, -0.014259164, -0.00070591585, -0.016177379, -0.03908862, 0.01927603, 0.0040376373, -0.0043629287, 0.008631959, -0.0061805365, 0.01098613, 0.016727354, -0.013367129, 0.013373835, -0.015479846, 0.0075454186, -0.025674544, -0.0008299961, -0.027981766, -0.011073321, -0.0018192843, -0.0058183563, 0.0065628374, 0.0077265087, -0.003376994, -0.0024748973, 0.0003833492, 0.022227127, -0.006385101, -0.010898938, 0.0010840251, 0.0266806, 0.014218923, -0.017706582, -0.011925115, 0.0020154652, 0.0061537083, 0.002540291, -0.010657485, -0.00894719, -0.014581103, -0.013662238, 0.025500162, -0.02878661, 0.015855439, 0.007283844, 0.0007205875, -0.010704434, -0.005855245, 0.0025218467, -0.010073972, 0.0029527738, 0.01542619, -0.0014688415, -0.0071765315, 0.018900435, 0.019906491, 0.0033904081, 0.003350166, -0.0073643285, 0.02631842, -0.023930715, -0.0109660085, 0.0009926418, -0.012448264, 0.010845282, 0.0050068046, -0.007780165, -0.0010320456, -0.0025486748, -0.017719997, 0.031093832, -0.0057311645, -0.028464673, -0.02161008, 0.0096916715, 0.02937683, -0.018216318, -0.033508368, -0.00288235, -0.03302546, -0.04466888, -0.0013070342, 0.0055232467, 0.0024027966, -0.0013615289, -0.026036724, -0.0035849123, 0.027163507, -0.015573745, 0.0023273425, 0.011026372, 0.017491957, -0.008906947, 0.007820407, 0.023649018, -0.034286384, -0.003474246, -0.014339649, -0.028411016, -0.009886175, 0.006599726, 0.01789438, -0.0105904145, -0.006177183, 0.017813895, 0.0021395453, 0.030610925, 0.016646871, -0.014701829, -0.012850686, -0.01700905, -0.009181936, 0.041798268, -0.007082633, 0.008497818, -0.003594973, 0.023273425, 0.001405963, -0.0100672655, -0.03723748, -0.0053354492, 0.012803737, -0.0002372615, -0.024400208, 0.028142735, -0.023877058, -0.008209416, 0.016539557, -0.014420133, 0.013326886, 0.027378133, 0.027740313, 0.014567688, -0.0055400142, -0.026291592, 0.0050504003, -0.006948492, -0.016620042, -0.020778406, -0.025044084, 0.018015107, 0.058807317, 0.0038062446, -0.014406719, -0.006455525, 0.0042388486, -0.025312364, -0.0010798333, -0.0033048934, -0.0013103877, 0.030235332, 0.025339194, 0.0012517011, 0.031979162, 0.0051040566, 0.024131926, 0.0019551017, -0.0027364718, 0.018967506, -0.0010295304, -0.018605325, -0.0010756414, 0.004594322, -0.008739271, 0.015868854, 0.016002994, -0.0039403853, 0.017518785, -0.023997786, -0.013581754, -0.010731262, -0.0011435502, 0.041288532, 0.016646871, 0.016204206, -0.02421241, -0.020013804, -0.023085628, 0.024735559, 0.0019400109, 0.018779708, 0.00021567322, 0.0025922705, 0.012602526, -0.03812281, -0.021073516, -0.009336198, 0.007431399, 0.015949339, -0.0076057822, -0.008450869, 0.0036318616, 0.0017136484, -0.031952333, -0.0063482122, 0.015050596, -0.009020967, -0.014755486, -0.00944351, -0.020080874, 0.010811747, 0.0019986976, 0.012032428, 0.001141035, -0.016713941, 0.0066667967, -0.030020706, -0.008873412, 0.016231034, 0.0050738747, -0.013776258, 0.0020439702, -0.008155759, -0.026600117, 0.029001236, -0.015453017, -0.049229667, -0.04512496, 0.03348154, -0.034957085, -0.02262955, -0.005610438, 0.0029611576, 0.010784918, 0.000763764, 0.031684052, 0.21183512, 0.013353715, -0.0111940475, 0.034286384, 0.0037224065, 0.022911245, 0.02516481, 0.009470339, 0.0014311144, 0.0008178395, -0.00097587414, 0.033991273, -0.041476328, -0.0039638598, 0.01621762, -0.025057497, -0.04362258, -0.0043998174, -0.049041867, -0.016016409, -0.003132187, 0.010637363, 0.029135376, -0.011965358, 0.003823012, -0.004758644, 0.0023072213, -0.017854137, 0.0023642313, -0.005308621, -0.006901543, -0.018296802, -0.0015518412, -0.019597968, 0.0077600437, -0.0062442534, 0.04839799, -0.00035819778, -0.0072301878, 0.012193397, -0.012401314, 0.012622647, -0.008491111, 0.009155108, -0.008524646, -0.0051878947, -0.016861496, 0.011341603, 0.025486747, 0.0087929275, -0.00937644, -0.016016409, 0.031308457, 0.007371036, 0.0022736862, -0.0020154652, 0.016204206, -0.016378589, -0.0020221723, 0.011837924, -0.016526144, 0.010979422, 0.013434199, 0.013004948, -0.0021546362, 0.00944351, -0.023796573, 0.014983525, -0.008377092, -0.016700527, 0.00049212895, -0.007525298, 0.017679755, 0.01093918, -0.011978772, -0.021221071, 0.014446962, 0.0043226867, -0.013662238, 0.01542619, -0.023903886, -0.02260272, 0.012535456, -0.008819756, -0.014017711, -0.013628703, 0.0013682359, -0.009845933, 0.012454971, -0.013776258, 0.01733099, 0.0028152796, 0.0017907794, 0.00425897, -0.004171778, 0.018337045, -0.00636498, 0.010637363, -0.0076862667, 0.014581103, -0.00908133, -0.0033853778, -0.0060262745, 0.028598813, -0.025245294, 0.0017823955, -0.02776714, 0.014299407, 0.0042388486, -0.011676955, -0.00077256706, -0.05325389, -0.0071698246, -0.007800286, -0.017223677, 0.004577554, 0.0022736862, -0.003900143, -0.0048190076, -0.026452562, 0.012917757, -0.018296802, 0.0015811844, -0.0101812845, -0.014379892, -0.017076122, 0.01513108, 0.020121116, 0.014138438, -0.02342098, 0.0077265087, -0.01080504, 0.01417868, -0.0041181217, -0.005358924, -0.0017807188, -0.013407371, -0.029484143, 0.008008204, -0.004165071, -0.0044065244, 0.008913655, -0.00018884506, -0.0047485833, 0.051241778, -0.016901737, -0.024386793, -0.016901737, -0.022683205, -0.015654229, 0.007907599, -0.0038967896, -0.010288598, -0.01309214, -0.011475744, -0.018591912, -0.030020706, -0.018940678, -0.0022300903, -0.003923618, -0.0025738261, 0.007820407, 0.018591912, -0.016539557, 0.006147001, 0.0024799276, -0.1717002, 0.025017254, 0.034098584, -0.024131926, -0.013179331, 0.0032160252, 0.02167715, -0.0028907338, -0.012381194, -0.017626097, 0.0013481148, 0.008618545, -0.020630851, -0.007820407, -0.0010102477, 0.0058015888, 0.025875757, 0.02161008, -0.010369082, 0.016861496, -0.0029745717, -0.029242689, 0.008846584, 0.0010094093, -0.001730416, -0.009108159, 0.001628972, -0.004912906, 0.0023290191, -0.004285798, -0.0102148205, -0.021945432, -0.012501921, 0.00094233896, 0.014809142, -0.024131926, 0.010268477, -0.02967194, -0.014057954, 0.051858824, -0.0137896715, 0.032784007, 0.0061604152, 0.0011016311, 0.019799178, 0.03141577, -0.010335547, -0.00068830984, 0.010449567, -0.014044539, 0.0221064, -0.0073173796, -0.026157452, 4.330756E-05, 0.0036788108, -0.0008744302, -0.004151657, -0.007853943, 0.023608778, -0.011851338, 0.003594973, -0.023286838, -0.0042522624, 0.010322133, -0.024534348, -0.017545614, -0.015935924, 0.005952497, 0.0040845866, 0.016163964, -0.014057954, 0.0035144885, -0.008370385, -0.019329686, 0.016378589, 0.0057579926, 0.00045020998, 0.0154396035, -0.0025939473, -0.020389399, -0.006650029, 0.035842415, -0.03259621, -0.0030148139, 0.009041089, 0.006133587, -0.006539363, -0.0040443446, 0.00018580594, -0.017491957, 0.00052314904, -0.0027800675, 0.0012584082, -0.016016409, 0.01189158, 0.017652927, 0.017491957, -0.032757178, 0.010141043, -0.017854137, 0.021261314, -0.0021512827, -0.02588917, 0.0032780652, 0.028679298, 0.008927069, 0.042522628, 0.016727354, 0.02647939, -0.008974018, -0.016834667, 0.020040631, 0.009731913, 0.0059290226, -4.1473602E-05, 0.0076929736, 0.004544019, -0.03680823, 0.000441407, -0.020630851, 0.008846584, -0.024856286, -0.011911701, 0.008886826, 0.011569642, 0.026170865, -0.09743986, -0.006358273, -0.0013347007, 0.02154301, -0.0053756917, -0.015600572, -0.012649476, 0.022186885, 0.033722993, 0.044132315, -0.0030248745, 0.013367129, 0.014701829, 0.038015496, 0.01733099, -0.004996744, -0.013528097, -0.025191639, -0.016029824, 0.008001497, 0.0037089924, -0.0087124435, -0.008645373, -0.0303963, -0.0043864036, -0.0068680076, -0.028115908, 0.00985264, 0.025728201, 0.014272579, 0.016848082, 0.0025386142, 0.0116031775, -0.0183907, 0.0016708911, -0.0110532, -0.027324475, 0.0042187274, 0.015010353, -0.018243145, -0.02154301, -0.013313472, 0.008544767, -0.034098584, 0.0097252065, 0.0042656767, -0.014916454, -0.0063683335, 0.016016409, -0.019423585, -0.030315816, -0.0060061533, -0.023474636, -0.014862798, 0.012629354, 0.0005705175, -0.004014163, 0.007974669, 0.015184736, 0.0008207739, -0.013347007, -0.000341011, 0.0014973464, 0.003809598, 0.0055936705, 0.011583056, -0.012535456, 0.007216774, -0.0056573874, 0.005986032, 0.0075118835, 0.018699225, -0.016110307, 0.038149636, -0.008155759, 0.0010379143, -0.023005143, -0.003537963, -0.0026325127, -0.016043236, 0.0014319528, -0.029430486, 0.03753259, -0.017196847, 0.018712638, 0.005486358, 0.010657485, -0.011381845, 0.007122875, -0.02398437, 0.019879663, 0.014218923, 0.0070088557, -0.012951292, -0.009537409, -0.012656182, 0.0038531937, -0.007417985, -0.0144603755, -0.0061436477, -0.028411016, -0.0138567425, -0.07404571, 0.017800482, 0.022736862, -0.021999087, 0.00330154, -0.004835775, -0.01159647, -0.0059759715, 0.015949339, -0.026586702, 0.005372338, -0.023702675, -0.002372615, 0.009591065, 0.009866054, -0.0064655854, 0.016687112, 0.01069102, 0.026787912, 0.004772058, -0.029537799, 0.0034004687, -0.016646871, -0.0016490932, -0.024963599, 0.010047144, -0.015305462, 0.0376399, 0.0027850978, -0.0071094614, 0.012817151, -0.006230839, 0.027015952, 0.026828155, -0.007035684, -0.039920297, 0.0042522624, 0.014420133, 0.0043595755, -0.028464673, -0.0017991632, 0.0038833756, 0.022495408, 0.00015289952, -0.02427948, -0.0018762941, 0.00901426, 0.0029745717, 0.038578887, -4.2626376E-05, 0.011287946, 0.012394608, 0.02654646, -0.01202572, 0.005305268, -0.019061405, 0.0061034053, 0.0042455555, 0.006019567, -0.019208958, 0.013306765, -0.0019366575, 0.027713485, 0.011267825, 0.007780165, 0.011254411, -0.015265221, 0.007833822, 0.011569642, -0.011395259, -0.014004298, -0.011059907, 0.022656377, -0.014581103, 0.009074624, 0.0052851466, 0.013467734, -0.007592368, -0.015707886, 0.027954938, -0.017411472, 0.0013196099, -0.049497947, 0.01884678, 0.0014763869, -0.0053287423, -0.039061796, 0.0071161683, -0.0017555674, -0.0016096893, -0.028947579, -0.010241648, -0.0064085755, -0.004101354, -0.010053852, 0.023890473, -0.0034038222, 0.014218923, 0.0386862, 0.02167715, -0.0015551946, -0.003537963, -0.020832062, 0.008752686, -0.0061604152, 0.017813895, 0.005127531, -0.019597968, -0.030369472, 0.0003116677, 0.010778211, 0.00079268817, 0.0070155626, 0.014929868, -0.004500423, 0.012166568, 0.00727043, 0.003112066, -0.004339454, 0.008719151, 0.0138567425, 0.02203933, -0.0057546394, 0.0026761084, 0.024816044, 0.004007456, -0.027901283, -0.03358885, 0.0077935793, -0.014446962, 0.0059055476, 0.0110800285, -0.009886175, 0.0034977207, 0.0034574785, 0.027190335, -0.0068545938, 0.01171049, -0.029484143, 0.054031905, 0.019852836, 0.0069686132, 0.020322328, 0.015815198, 0.017948035, 0.04305919, -0.0023206354, -0.016056651, -0.025084326, -0.014487204, -0.010751383, -0.0184846, 0.019262616, -0.019195545, -0.0042757373, 0.00840392, 0.048210196, -0.034152243, -0.008457576, 0.04582249, -0.0077332156, 0.008249658, 0.019530898, -0.0062543135, -0.0069954414, -0.00038775068, -0.0020959496, -0.014232337, -0.009463632, 0.030315816, 0.025272122, -0.012052549, -0.018806538, 0.0010672576, 0.0093496125, -0.019678451, 0.024467278, 0.0055936705, 0.017438302, -0.004443413, 0.0036653967, -0.0222003, -0.020711336, 0.007833822, -0.002233444, -0.026626945, -0.01213974, -0.029859737]
+ },
+ {
+ "Id": 52,
+ "Type": "Bags",
+ "Brand": "Legend",
+ "Name": "TrailHug 50L Backpack",
+ "Description": "The TrailHug 50L Backpack in navy blue is a perfect companion for all your hiking adventures. Made from lightweight and water-resistant nylon, this backpack features adjustable padded straps, multiple compartments for organized storage, and a breathable back panel for added comfort. It also comes with a handy built-in rain cover for unexpected showers.",
+ "Price": 129.99,
+ "Embedding": [0.008806933, 0.0075693787, 0.00026130234, -0.015832836, 0.008695618, -0.007523543, -0.0040007704, -0.031770438, 0.011956476, -0.012048146, -0.00831584, -0.0011376985, 0.0030038515, 0.0088855075, -0.0031380837, -0.009304574, 0.028391717, -0.0018317766, -0.00043502648, -0.019263938, 0.00091916224, 0.015597111, -0.0096974475, -0.00940934, -0.025707077, -0.014863745, 0.039287433, -0.013855368, 0.035096772, -0.0137898885, 0.0049305726, -0.0069473274, -0.011177274, -0.015597111, 0.015780453, -0.005277612, 0.0038305246, 0.0048781894, 0.02513086, 0.009016465, 0.034939624, 0.028077418, 0.0073794895, 0.012388637, -0.01807222, -0.0019791045, 0.006145209, -0.016945979, -0.020835435, 0.013829176, -0.0039876746, 0.00092980254, -0.00019193548, 0.012355898, -0.014955416, 0.02382128, -0.003666827, 0.015073278, 0.027082136, -0.020874722, -0.025549928, 0.006875301, -0.03632778, 0.0065642754, -0.001659894, -0.039470773, -0.011517766, 0.0060961, 0.010784401, 0.03664208, -0.004806163, 0.021503322, 0.015623302, 0.010018296, 0.0035751564, -0.012945209, -0.011655272, 0.0061386614, -0.0063318247, 0.0033050552, 0.019709196, -0.024397496, -0.024711795, -0.018425805, 0.018622244, -0.023651034, 0.015859026, 0.019119883, -0.03342051, -0.035332497, 0.005117188, -0.006724699, -0.010430813, -0.007353298, -0.009906981, 0.014182763, 0.004583534, 0.016081655, 0.015295907, -0.010450457, -0.028025035, -0.0048094364, -0.008171786, -0.0042725084, -0.035149157, -0.018176986, -0.015073278, 0.004246317, 0.024148675, 0.0005373375, -0.030644197, 0.0033427058, 0.0011851708, -0.026466634, -0.0053038034, -0.013279152, 0.014523254, -0.0064431387, 0.016120942, -0.038658835, 0.017417429, 0.011805873, 0.013239864, -0.0132857, -0.010024843, 0.027920268, -0.0059815114, -0.020704476, 0.024240347, 0.00678363, 0.007386037, 0.03711353, 0.01550544, -0.013449398, -0.008152142, 0.022328358, -0.013947039, 0.0037715936, -0.014470871, 0.0105945105, 0.010889167, 0.03679923, -0.015531631, -0.009081945, -0.0056606643, 0.007955705, 0.0066166585, 0.022302166, 0.011164179, -0.0115439575, 0.028679825, -0.009867693, 0.026715454, 0.014745883, -0.03326336, 0.009304574, -0.0037192102, 0.020547327, -0.01703765, -0.01203505, -0.019486567, 0.0006416947, 0.019211555, -0.006921136, 0.017653152, 0.021922387, 0.027160712, 0.0014241694, -0.011760038, 0.013462493, -0.010574867, 0.024816561, -0.017548386, -0.0044754934, 0.02310101, 0.020219931, 0.020246124, -0.015793547, -0.027736926, -0.022577178, -0.0067443424, 0.0058538276, 0.00690804, 0.025536831, -0.015151853, 0.0070913816, 0.008702166, -0.030408472, 0.015269715, -0.012585074, 0.012801155, -0.0069538755, -0.028784592, 0.004770149, -0.6583526, -0.00035767932, -0.008289648, -0.023742706, 0.021529512, -0.0013054886, 0.01737814, 0.015531631, -0.018687721, 0.005470775, 0.013128551, 0.024685603, -0.013266057, -0.01640905, -0.007248531, -0.007215792, -0.01103322, -0.018176986, 0.031089455, -0.012624362, -0.039837457, 0.008924795, -0.011052865, -0.01960443, -0.0062565235, 0.00856466, 0.032870486, -0.014313721, -0.001034569, 0.0018890707, -0.026584497, 0.022956956, -0.0027632162, 0.010280211, 0.05235705, -0.040125564, 0.002214829, 0.048192583, 0.029125083, -0.006770534, -0.010614155, -0.01138026, -0.0042987, -0.00091752526, -0.008368223, 0.013527973, 0.04114704, -0.015924506, -0.006921136, -0.0045999037, 0.025995184, -0.017954357, 0.0027173806, -0.0052317763, 0.0023703417, -0.011275494, 0.028365526, 0.011845161, 0.01331844, -0.004855272, -0.029570341, 0.017784111, -0.011773134, -0.010915359, -0.03373481, 0.03491343, -0.039051708, -0.020691382, 0.013082715, -0.015387578, -0.0020756861, 0.04442099, 0.018543668, 0.01018854, 0.015741164, 0.016513817, 0.008073567, 0.0054085697, -0.012093982, 0.014470871, 0.026807124, -0.0057621566, -0.0037290321, 0.0013865189, 0.052749924, -0.0051564756, 0.013763697, 0.0018874337, 0.028522676, -0.0044034664, 0.004007318, 0.029596532, -0.018465092, -0.016959075, -0.03247761, 0.03572537, -0.020468753, 0.0100575825, -0.015793547, -0.0068032737, -0.0037781415, -0.0070324503, 0.0018366874, -0.008846221, 0.017993644, 0.0106861815, -0.00060077035, 0.018347232, 0.02591661, -0.010424266, -0.002560231, -0.025405873, -0.02778931, -0.029701298, 0.013907751, -0.032739528, 0.009173616, -0.0035522387, 0.03373481, -0.043268558, 0.0036537312, 0.0015731342, 0.014667308, -0.011792778, -0.018779393, 0.025628502, 0.006790178, -0.020036591, -0.02278671, -0.010175445, -0.0007002166, 0.008813481, 0.02206644, 0.014510158, 0.021935483, 0.03019894, 0.003398363, -0.011013577, 0.028234567, -0.032084737, -0.016998362, 0.0037846894, 6.157845E-06, -0.01581974, -0.009514106, -0.034651514, -0.028548868, -0.020586615, -0.018609148, -0.013776793, 0.008820029, -0.01800674, 0.0023818007, 0.0047439574, 0.004344535, -0.01866153, -0.015164949, -0.011949928, -0.00022140105, -0.021058064, 0.020010399, -0.0012735676, -0.014732787, 0.0005168753, -0.020743765, -0.007687241, 0.017116224, 0.0481402, 0.005840732, -0.042928066, -0.004085893, -0.020717572, -0.018805584, 0.023781992, 0.011210014, 0.0016574386, -0.0034147326, -0.030460855, 0.031089455, 0.0040466054, -0.0041055367, 0.001247376, -0.0059815114, 0.00944208, 0.02181762, 0.0064857, 0.02285219, 0.029020317, -0.0036570053, 0.0030693307, 0.018334135, -0.0014986518, -0.010817139, 0.0007333654, -0.03166567, -0.027055945, -0.008748001, 0.004082619, 0.035253923, 0.015151853, 0.010653442, -0.021450939, 0.020953298, -0.015426865, -0.003666827, -0.036956377, 0.012205295, 0.0035849782, 0.013397015, 0.006921136, 0.009396244, -0.013449398, -0.036563504, -0.019578237, -0.0072092437, 0.009075397, 0.016356668, 0.02682022, -0.0017679344, -0.015544727, 0.003529321, -0.0015510351, 0.0011196919, -0.02190929, -0.021621184, 0.0069407797, -0.030775156, 0.027265478, -0.014575638, -0.017548386, 0.025091574, 0.034494366, -0.002011844, 0.033237167, 0.005146654, 0.018700818, -0.00080539234, -0.015400673, 0.03583014, 0.010168897, 0.01525662, 0.008322388, 0.012414829, -0.019958016, 0.031429946, 0.039104093, 0.012716033, 0.0027484833, 0.0068294653, -0.00048618196, 0.0053889262, 0.022236686, 0.0055591715, -0.014077997, 0.00868907, -0.009906981, 0.024751082, 0.02228907, 0.031403754, 0.01134752, 0.0054936926, 0.019971112, 0.015426865, -0.019656813, 0.037532594, -0.031429946, -0.014392296, -0.006498796, -0.04038748, -0.004639191, 0.026427345, -0.02826076, 0.009514106, -0.012663649, -0.0005455224, -0.0070848335, 0.03053943, 0.004377275, 0.007818199, 0.014523254, -0.014012517, -0.021490226, 0.012107077, 0.018897256, 0.009717092, -0.02116283, -0.00734675, 0.012460664, -0.0077003366, 0.015636398, 0.017522195, 0.0064791525, 0.0011090515, 0.00981531, 0.001210544, -0.009108136, 0.016016176, -0.006619932, 0.0334467, -0.004907655, -0.02682022, 0.008780741, -0.025641598, -0.039182667, 0.014863745, -0.003532595, -0.022354549, -0.021202117, 0.010051034, 0.006145209, 0.0055722673, -0.030303705, 0.012296966, -0.009599229, 0.01069273, 0.018700818, -0.021594992, 0.0033361579, 0.033315744, -0.00062409724, -0.023153393, -0.023480788, -0.03572537, 0.014235146, 0.08302744, 0.0020331247, -0.0068294653, 0.010496292, -0.0052317763, -0.02444988, -0.014719691, -0.02122831, 0.008806933, 0.003810881, 0.0030267693, -0.0012408281, 0.0073663937, 0.0027124698, 0.005041887, 0.0076610493, 0.0036242655, -0.02091401, -0.0025504092, -0.0052219545, 0.0149161285, -0.014235146, -0.015597111, 0.036170628, 0.009645064, 0.001995474, 0.036301587, -0.0046457388, 0.042849492, -0.0020314876, 0.013580356, 0.0019627346, -0.008171786, -0.005474049, -0.017705536, 0.0052285027, -0.011727299, -0.02526182, 0.014326817, 0.003958209, 0.032556187, 0.018962733, 0.014850649, 0.0001689155, 0.018687721, 0.012552335, -0.0038305246, 0.010293308, -0.0018399614, -0.0065970146, 0.019984208, 0.005618103, -0.01244102, -0.007818199, 0.018766297, 0.008060471, -0.0028794415, 0.0069473274, -0.013933943, -0.04617583, -0.021464033, -0.01678883, 0.048244968, -0.013685122, 0.0038927298, -0.021830717, -0.027344054, 0.0010648532, -0.019290129, -0.025589215, -0.03795166, 0.0011278767, -0.0101492535, 0.008342031, 0.012146365, 0.00010169716, 0.0048749154, 0.0019987482, 0.010155802, 0.0121267205, -0.0051335576, 0.014235146, -0.009703996, -0.0009895522, 0.01591141, -0.017626962, 0.0047505056, -0.016959075, 0.0023064998, -0.010345691, 0.020625902, -0.016841212, 0.026479729, -0.011020125, -0.011596341, 0.008060471, 0.009180163, 0.018216273, 0.0079426095, -0.0051695714, 0.016225709, -0.014523254, -0.005925854, -0.012382089, 0.015178044, -0.0012031776, -0.0012481945, 0.0043281657, -0.004144824, 0.014732787, 0.021765238, -0.010136157, 0.00844025, 0.016186422, -0.0165662, 0.023742706, -0.0056934035, -0.013672027, 0.022996243, -0.036537312, -0.022472411, -0.033106208, 0.016291188, 0.00565739, -0.006420221, 0.010109966, 0.021961674, -0.0121725565, -0.022223592, 0.011615984, -0.0013930668, 0.030591814, -0.0045999037, -0.009121233, -0.02488204, -0.0347039, -0.046647277, 0.012820799, 0.0006699326, -0.019394895, -0.0055919113, 0.009900433, 0.01244102, -0.0036242655, -0.0378207, -0.012152912, -0.023781992, -0.012493404, -0.022498602, 0.044316225, -0.012977948, 0.011118343, -0.026623784, -0.0005692585, 0.0013005777, -0.006688685, -0.02350698, 0.004573712, 0.002070775, 0.018347232, 0.0027452093, -0.02528801, 0.016618583, 0.0038174288, -0.005873471, 0.0069866152, -0.0057948963, -0.024096292, -0.028575059, 0.0069866152, 0.035306305, -0.002969475, -0.0062597976, -0.006701781, -0.009586133, 0.01947347, -0.0014429947, -0.03182282, -0.014732787, -0.048035435, -0.00012134087, -0.02422725, -0.01256543, -0.0039254692, -0.04133038, -0.0025062107, 0.02334983, 0.0057654306, 0.0068949442, 0.014929225, 0.030748963, -0.022433124, -0.0019709195, 0.020023495, 0.0030267693, 0.007818199, -0.009553394, -0.03229427, -0.024214154, 0.004220125, 0.0035620607, -0.011485026, 0.0047799707, -0.030932305, -0.032922868, -0.009114685, -0.012945209, -0.005349639, 0.0068294653, -0.012244583, -0.031220414, 0.004514781, -0.014182763, -0.032687142, 0.010483197, 0.009494463, -0.009350409, 0.014104188, -0.028208377, 0.022223592, -0.010967742, 0.0060961, 0.010489744, -0.007693789, 0.020743765, 0.016461434, -0.007975349, -0.023140298, -0.018596051, 0.009913528, -0.008911699, 0.011825517, 0.009586133, 0.0056966776, -0.002488204, 0.016304284, -0.0036308134, 0.01065999, -0.03247761, 0.016003082, 0.027160712, 0.00988079, -0.016291188, -0.034022916, -0.014968512, 0.020494943, -0.015872123, 0.014994703, 0.009952816, -0.011458835, -0.008093211, 0.02972749, -0.0028532497, 0.0196961, 0.0040989886, -0.015178044, 0.0078509385, 0.0045376983, 0.010522484, -0.033368126, 0.0037781415, 0.026558304, -0.008165238, 0.005536254, 0.013672027, 0.019106789, -0.0014839191, 0.016291188, 0.0036897447, 0.021267597, -0.024999904, 0.004940395, -0.00057048624, 0.017954357, 0.016815022, 0.004632643, -0.01134752, -0.015060183, 0.016251901, -0.024358207, 0.016749542, -0.004279056, -0.0046621086, -0.017993644, -0.0022524795, 0.014614925, -0.025366586, -0.029544149, -0.0030218584, -0.026047567, -0.04389716, 0.010142705, -0.002699374, 0.02194858, -0.019368704, -0.030015599, -0.00077265286, 0.016553104, -0.03826596, 0.0015600384, 0.011340972, 0.009658161, -0.028941741, 0.023860568, -0.0077920076, -0.029439382, -0.002291767, -0.008459894, -0.028339334, -0.019198459, 0.0035489646, 0.011282041, -0.0020265768, -0.0041055367, 0.01591141, -0.008414058, 0.005113914, -0.01572807, -0.036877804, 0.015387578, -0.008466442, 0.004085893, 0.037192103, -0.020246124, -0.0063580163, -0.0011843524, 0.02763216, 0.0075628306, -0.005817814, -0.016579296, -0.002137891, 0.011609436, 0.02019374, -0.021136638, 0.020652093, 0.0032772266, -0.019643717, -0.010483197, -0.00988079, 0.025157053, 0.033368126, 0.019460374, 0.024934424, 0.023035532, -0.024266537, -0.008656331, 0.032268077, -0.01791507, -0.00311844, -0.01065999, 0.020743765, 0.04342571, -0.0019054405, -0.03619682, -0.0019038034, 0.0043838224, -0.01816389, -0.012997592, 0.023074819, 0.0058472794, 0.011674915, 0.0045311507, 0.0085974, 0.032215696, 0.011419547, 0.017076937, 0.028810784, -0.0074318727, -0.0058603752, -0.0038960038, 0.0012604718, -0.014523254, -0.02325816, -0.029963216, -0.0023818007, 0.023520077, 0.006168127, 0.0034965815, -0.025536831, -0.01663168, -0.004148098, 0.0132857, 0.031089455, 0.009789119, 0.016134039, -0.0019774674, -0.018857967, -0.013403562, 0.03166567, 0.0023948965, -0.012814251, 0.01654001, 0.01672335, -0.008571208, -0.039156474, -0.03729687, -0.008610495, -0.02131998, 0.013855368, 0.0037781415, -0.019015117, 0.018124603, -0.0017744823, -0.019460374, 0.012257679, 0.011151083, -0.0037093884, -0.0212545, 0.0039123734, -0.019683003, 0.016513817, -0.0045606163, 0.011020125, -0.004910929, -0.018556764, 0.0017646605, -0.024096292, -0.023926046, 0.020272315, 0.015610207, -0.030932305, -0.008414058, 0.007405681, -0.0129386615, 0.025720172, 0.0093831485, 0.0060666343, -0.028155994, 0.039104093, -0.0048192586, -0.01985325, -0.017587675, 0.011792778, -0.011000481, -0.005320173, 0.021660471, 0.18994164, 0.014169667, 0.014326817, 0.020783052, -0.0019594608, 0.02210573, 0.013829176, 0.010980837, 0.0042364947, 0.003941839, -0.019224651, 0.02609995, -0.007248531, -0.0010558497, 0.0027795858, -0.039470773, -0.04924025, -0.008846221, -0.023376022, 0.008374771, -0.01259817, 0.0060338946, 0.0054576793, -0.010398074, 0.012689841, -0.0060862782, 0.0010190178, -0.0068229176, -0.0026748194, 0.012198748, -0.01287973, -0.04135657, 0.0011491574, -0.027003562, 0.010751661, 0.010018296, 0.015924506, -0.0082569085, -0.0083485795, -0.0013071257, 0.00035072217, 0.018556764, 0.024030812, 0.012899374, -0.010077226, 0.0071437648, -0.024855848, -0.0079884445, 0.0036831968, 0.010280211, -0.008387866, 8.425313E-05, 0.010109966, 0.01097429, -0.007883678, -0.0118779, 0.014339913, -0.014274434, -0.0030676937, 0.0029662012, -0.011583244, 0.010548675, -0.0005385652, 0.014431584, -0.013311892, -0.0017040924, -0.025968993, -0.0031970148, 0.017875781, -0.01807222, -0.016278094, 0.0061943186, -0.0132529605, 0.022406932, -0.0052285027, -0.012211843, 0.0011671642, 0.014876841, -0.016422147, 0.019290129, -0.0016394318, -0.023795089, 0.0065249875, -0.0056475685, 0.008381319, -0.03101088, -0.027108328, 0.009167068, 0.026780933, -0.008512277, 0.016304284, -0.021503322, 0.0018465093, 0.005405296, -0.014863745, 0.020088974, -0.0036209917, 0.0121922, -0.02672855, 0.026270196, -0.02513086, -0.0008430428, -0.025432065, -0.019172266, -0.030015599, -8.476468E-05, 0.0050713527, 0.009887337, -0.0023343284, -0.017417429, -0.0048192586, -0.023493884, 0.0045966296, -0.012375541, 0.0060731824, 0.006770534, -0.0013537795, -0.016605489, 0.007602118, -0.028051227, 0.017548386, -0.004635917, 0.01606856, -0.0018301395, -0.012925565, -0.0047963406, 0.003193741, 0.006416947, 0.021018777, -0.040675588, 0.000347039, 0.0078509385, 0.023231968, -0.018268656, 0.014483967, 0.011301685, -0.02372961, -0.02253789, -0.03410149, -0.006227058, -0.008787289, -0.007117573, 0.00276649, -0.0024996628, 0.049502164, -0.016867405, 0.0031364467, -0.014156572, -0.019028213, -0.006809822, 0.002493115, 0.0072419834, -0.024345113, 0.0075038997, -0.0039713047, -0.013213673, -0.047223493, -0.03166567, 0.020796148, 0.008839672, -0.004757053, -0.0022328356, 0.03085373, 0.0010231102, -0.0026207992, 0.015741164, -0.16574058, 0.014313721, 0.00775272, -0.0062663453, 0.00076283095, 0.017063841, 0.026898796, 0.012120173, -0.026951179, -0.0051532015, 0.016998362, -0.0019807413, -0.029622724, -0.0122183915, -0.015675686, 0.0018088588, 0.019185362, 0.013023783, 0.0028974481, 0.010411169, 0.023912951, -0.008414058, 0.019198459, 0.008669427, 0.011439191, 0.005857101, 0.010522484, 0.01509947, -0.016670967, 0.008263457, 0.0068687527, -0.007641406, 0.020612806, -0.006655946, 0.027920268, 0.0077003366, 0.0043281657, 0.013141646, -0.017011458, 0.033368126, -0.017496003, -0.0011205103, 0.033368126, 0.008695618, 0.00053815596, 0.019486567, -0.007981896, -0.0026109773, -0.00056025514, -0.029544149, 0.007936061, -0.020102069, -0.010123062, 0.0024620125, 0.004449302, 0.008459894, 0.013017236, -0.0010370245, 0.014876841, -0.025052287, -0.028601252, -0.0070979293, -0.010162349, 0.00059995183, -0.022145016, -0.015217332, -0.010587963, -0.009088493, 0.007477708, 0.012264227, -0.029963216, -0.023781992, 0.009494463, -0.014457775, 0.01009687, 0.01784959, -0.003185556, 0.0064136735, 0.0055919113, 0.0046817525, 0.0022884929, 0.044997204, -0.039287433, 0.008826576, -0.001379971, -0.0070062587, -0.035594415, -0.0033001443, 0.00512701, -0.017116224, -0.0016959074, -0.026348772, 0.008328936, -0.007484256, 0.011327877, -0.00066788634, 0.032660954, -0.033368126, -0.006227058, -0.0025389504, 0.012585074, 0.003039865, -0.030094173, 0.03166567, 0.03517535, 0.016579296, 0.018713914, 0.010869523, 0.030801347, -0.0019758304, 0.002989119, 0.023310544, 0.0053005293, 0.0038501683, 0.006718151, 0.014667308, -0.008623592, -0.04442099, -0.0020151178, -0.030775156, 0.04023033, -0.024187963, 0.001077949, -0.0058472794, -0.0014200769, 0.0001178623, -0.093242176, 0.011557053, 0.034494366, 0.0150077995, -0.011419547, 0.016657872, -0.0010124699, 0.03679923, 0.014837554, 0.017810302, 0.00052137696, 0.006577371, -0.0171948, 0.013436302, 0.024305824, -0.0051564756, 0.0085253725, -0.030356089, -0.011013577, 0.016998362, -0.015584015, 0.006921136, -0.008675975, -0.039287433, 0.0010165623, -0.032660954, -0.030487048, 0.009016465, 0.037087336, 0.018805584, 0.013488685, -0.0062008663, 0.00872181, -0.020638999, -0.0046457388, -0.0085253725, -0.025576118, 0.022158112, 0.0259428, -0.037427828, -0.01726028, -0.0056606643, 0.014339913, -0.051859412, 0.0009134328, -0.014929225, -0.0103718825, 0.0023474242, 0.008545017, -0.0055951853, 0.009199807, -0.027841695, -0.0063383724, -0.014457775, 0.005621377, -0.008695618, -0.030172748, 0.01722099, -0.0033394317, -0.0033492537, -0.017273374, 0.03213712, 0.010024843, 0.020363986, -0.008276552, -0.0006032258, 0.007137217, 0.007903322, 6.3330524E-05, -0.0058603752, -0.0050124214, 0.004347809, -0.0011057776, 0.031246604, -0.0093766, 0.012054694, -0.025576118, 0.010208185, -0.0024489167, -0.0030906114, 0.0011376985, -0.018281752, 0.017862685, -0.013089263, 0.0066821375, 0.03242523, -0.0042594126, -0.017574579, -0.017103128, -0.00831584, 0.017626962, 0.022328358, 0.016278094, -0.0009887337, -0.017456716, -0.0010214732, 0.010404621, -0.012257679, 0.0012129995, 0.001388156, -0.015989985, 0.013501781, -0.07606047, 0.029046508, 0.008099759, -0.009396244, 0.009664709, 0.0011679826, -0.011426095, -0.004351083, 0.023847472, -0.0050746268, 0.005045161, -0.0042594126, 0.005555898, -0.014588733, 0.008872412, -0.021765238, 0.0031888299, 0.005454405, 0.016893595, 0.013488685, -0.0037781415, -0.0018383245, -0.015361386, 0.015309003, -0.030932305, 0.012048146, -0.0016255175, 0.021031871, 0.006249976, 0.011792778, -0.00047390466, -0.01816389, 0.011151083, 0.03137756, -0.009121233, -0.04924025, 0.010476649, 0.00678363, 0.008499181, -0.034625325, -0.012696388, -0.02372961, 0.026623784, -0.024607029, -0.03308002, -0.0030153105, 0.010836784, -0.0046817525, 0.00311844, 0.009402792, 0.029963216, 0.011399903, 0.01791507, -0.016697159, -0.016134039, -0.010515936, -0.002633895, 0.010758208, 0.002622436, 0.0059978813, 0.03569918, -0.004891285, 0.014025614, 0.007759268, -0.014641116, 0.009664709, 0.014798266, 0.0042725084, 0.018936543, 0.00803428, 0.0037323062, -0.00024452334, 0.042063743, 0.0029842078, -0.0035882522, 0.0018890707, -0.010476649, -0.0073009147, -0.038894556, -0.0028876262, 0.023035532, -0.009507558, -0.029282233, 0.0049993256, -0.0023916224, -0.008400963, 0.00049354834, 0.007536639, 0.018059123, -0.0049600382, -0.030067982, -0.013475589, 0.0033754453, -0.0067639863, -0.012788059, 0.020075878, 0.004855272, -0.010764756, -0.009618873, 0.029753681, -0.006282715, 0.005749061, -0.014418487, -0.01978777, -0.0041120844, -0.0033083293, -0.0070259026, -0.0037781415, -0.0043543573, 0.02181762, 0.007903322, -0.014169667, -0.008276552, 0.011491574, -0.025968993, -0.011681464, 0.00055739045, -0.019054405, -0.0030709677, 0.035961095, 0.005745787, 0.041304186, 0.020337794, -0.015623302, 0.00024206788, 0.0048127105, 0.0037912372, 0.0052841594, 0.0040335096, 0.015859026, 0.008394415, -0.005454405, 0.0030333172, 0.009225999, 0.0052939816, 0.006921136, 0.0025896966, 0.02190929, -0.004956764, 0.057726335, -0.0023359652, -0.0041120844, 0.00068466534, 0.006367838, 0.017613865, 0.026689263, -0.009311122, -0.0022000961, -0.02422725, -0.00043011553, 0.008486086, -0.01175349, 0.008106307, -0.05123081, 0.0031266247, -0.0018432353, 0.002553683, -0.029544149, 0.00595532, 0.020822339, -0.014837554, -0.0025995185, 0.006076456, 0.00863014, 0.013514876, 0.02544516, -0.0011483389, 0.0074318727, -0.01881868, 0.02431892, 0.00092980254, -0.015138757, -0.027082136, 0.022118824, -0.013089263, -0.018740105, 0.032241885, -0.0021919112, 0.009330765, 0.025549928, 0.0193818, -0.0096516125, -0.01631738, 0.021621184, 0.0018383245, -0.009501011, 0.010404621, -0.008309292]
+ },
+ {
+ "Id": 53,
+ "Type": "Ski/boarding",
+ "Brand": "Daybird",
+ "Name": "Raven Swift Snowboard",
+ "Description": "The Raven Swift Snowboard is ready to take you on thrilling rides down the slopes. With its striking white design and black logo, this all-mountain board is perfect for riders of all skill levels. It features a camber profile for stability and pop, and a medium flex for smooth turns and responsive control. Get ready to fly and carve like never before!",
+ "Price": 349.00,
+ "Embedding": [-0.011002553, -0.0051657553, -0.019055054, -0.0046276557, 0.0009970667, -0.024967818, -0.02433476, -0.060368437, 0.008951444, -0.04206039, -0.0020352823, -0.0073751286, -0.017852243, -0.027905209, -0.002992783, -0.009210997, 0.0058146403, -0.013268901, -0.009755428, -0.016446853, -0.015560572, 0.00021345934, -0.007729641, -0.0059602438, -0.0051562595, -0.010920255, 0.013458819, -0.009274304, 0.0013626579, 0.013041, 0.026563125, -0.009033741, 0.0081854435, -0.027753275, -0.021372046, -0.009711114, -0.0016902656, -0.01510477, 0.0024910842, 0.012199033, 0.0065458226, -0.00922999, -0.012749793, 0.026360545, 0.01325624, -0.016598787, -0.007311823, -0.022625502, 0.030437442, 0.019105699, 0.013104306, 0.0045232014, -0.02043512, -0.003336217, 0.015003481, 0.0017393276, 0.007849922, 0.0247779, 0.03552723, -0.022005105, 0.0114773465, -0.004497879, -0.0063654007, 0.0069826324, 0.019409567, -0.008767857, -0.01782692, -0.0038426637, -0.004421912, 0.0035577875, 0.024613306, 0.009267973, 0.014484373, 0.017231846, -0.004912532, -0.028842134, -0.0070459386, 0.009578171, -0.02053641, -0.010192238, 0.032665808, -0.029196648, -0.0012043933, 0.026664414, 0.00467197, 0.017155878, -0.00016400166, 0.008558948, -0.04206039, 0.010945577, 0.010204899, 0.020042624, -0.014535017, 0.009356601, -0.0011450441, 0.008172782, 0.016687416, 0.022106394, -0.032210004, -0.019295616, 0.029272614, 0.047327437, 0.0039123, -0.01249024, -0.032437906, -0.018333368, -0.022245668, 0.008451328, 0.01771297, -0.008881807, -0.03183017, 0.014028572, 0.015497266, -0.0052100695, 0.02793053, 0.01445905, 0.043807633, -0.011502668, 0.03314693, -0.026107322, 0.018497963, 0.0056342185, 0.01380067, -0.034159824, 0.008463989, 0.0048334, -0.022283651, -0.007071261, 0.011895165, -0.003399523, 0.024537338, 0.010534089, -0.004520036, -0.0042668125, -0.019548839, 0.004542193, -0.008160121, 0.020789633, -0.017902888, 0.007096583, -0.0104328, 0.016320242, -0.03127308, -0.0030038615, -0.00037963712, -0.006988963, -0.0008744117, -0.018409334, 0.03185549, -0.008546286, 0.019941336, -0.015079448, 0.043427795, 0.010382156, 0.002902572, -0.004137036, 0.012205363, 0.019055054, -0.023524445, 0.0049695075, 0.0015312097, 0.008090485, 0.004323788, -0.010996222, 0.0080018565, 0.024043553, 0.0104771145, -0.013167612, -0.005042309, -0.0036337543, 0.00023541854, 0.014737597, -0.039300255, 0.025904745, 0.010983561, -0.009002089, -0.010078288, 0.001456034, -0.01205976, 0.004770094, 0.010369495, -0.0193336, 0.0032665806, 0.019257633, -0.0034090187, -0.01890312, 0.016155647, -0.0018516955, -0.013636075, -0.0075333933, -0.024942495, 0.019574162, 0.02195446, -0.000704673, -0.6527084, -0.015611216, 0.018371351, -0.008153791, 0.022182362, 0.002487919, 0.018105466, -0.0006714374, 0.020473104, 0.0073498064, -0.014117199, 0.008356369, -0.007235856, -0.011198801, -0.009970668, -0.0082614105, 0.010660701, 0.003814176, -0.008596932, -0.0045137056, -0.03327354, 0.036793347, -0.025980711, -0.020422459, -0.0024689273, 0.0075270627, -0.007229525, 0.0012210112, -0.015256704, 0.01118614, -0.026664414, 0.046947602, 0.0035672833, 0.011306421, 0.03251387, -0.033855956, -0.018966425, 0.034868848, 0.019865368, 0.0393509, -0.019966658, 0.007830931, -0.014585663, 0.0004273143, -0.011376057, 0.0065141697, 0.004722615, -0.0058431276, -0.0067610624, -0.023714362, 0.020333832, -0.011464685, 0.0057829875, -0.0098883705, -0.01532001, -0.025119752, 0.035046104, 0.01759902, -0.017041929, 0.021131486, -0.022967353, 0.02934858, -0.0046656393, -0.015471944, -0.029475193, 0.02684167, -0.024360081, -0.010964569, 0.02727215, -0.025334992, -0.001009728, 0.012965033, -0.006096351, 0.02770263, -0.0038521595, 0.031906135, 0.03519804, -0.008831163, 0.0023264892, -0.0023249064, 0.000628706, 0.022473568, -0.018016838, -0.02988035, 0.020663021, -0.027753275, -0.00067025045, 0.015092109, -0.0017171706, 0.0059697395, 0.018637234, 0.013686719, -0.007520732, -0.019941336, -0.0064698556, 0.010907594, -0.0032665806, 0.010230222, 0.024929835, -0.030285507, -0.00266201, 0.0076853274, 0.026765704, -0.0014504947, 0.02934858, -0.0047669285, -0.017864903, -0.019270293, 0.004858722, -0.01086328, 0.015497266, -0.020840278, -0.012414273, -0.0067420704, -0.008748865, -0.018497963, 0.015370655, -0.015801134, 0.0070775915, -0.054594945, -0.011167148, 0.005194243, -0.008096815, 0.015725167, -0.019219648, 0.012312983, 0.0018880962, 0.0065774755, -0.0057608304, 0.0036559114, 0.013230918, -0.001728249, 0.018206757, -0.013851315, 0.001054042, 0.0128067685, 0.0075777075, 0.0067547318, 0.0067420704, -0.026385868, -0.03747705, 0.010192238, -0.03064002, -0.0034406716, -0.008824832, 0.009521197, -0.028285043, 0.00012809539, -0.024360081, -0.01597839, -0.020194558, -0.017523052, -0.002787039, 0.002375551, 0.012426933, -0.0045137056, 0.002568634, -0.016282259, -0.002478423, 0.0040135896, -0.0038394984, -0.003586275, -0.002872502, -0.0016237944, -0.0037983495, -0.020511087, -0.016459515, 0.01195214, -0.0017440756, -0.040946208, -0.026588447, 0.0008744117, 0.011673595, 0.0096668, 0.007039608, 0.0048967055, -0.019181665, 0.009059064, -0.01140771, -0.013547447, 0.015953068, 0.019498194, -0.040363796, 0.0025654687, 0.021258097, 0.012756124, 0.0075460547, 0.022967353, -0.0066977562, -0.016016373, -0.024600644, 0.04236426, -0.0063432436, 0.0017424929, -0.021865832, -0.023752347, -0.0020922576, -0.017561037, 0.002595539, 0.024891851, -0.02356243, -0.0093692625, -0.0021159973, -0.0009147692, 0.0019023401, -0.010799974, 0.007887906, -0.008331046, 0.013876637, 0.013977926, 0.025271686, -0.045276325, -0.0076410132, -0.029095357, -0.020219881, 0.013167612, -0.014750257, 0.016294919, -0.004194011, -0.015066787, -0.0047067883, 0.010407478, 0.019941336, -0.022448245, -0.0085906, -0.011483677, -0.010223891, 0.007615691, 0.027981175, -0.008894469, -0.008774187, 0.023106627, 0.027120216, -0.0048207385, 0.016586127, -0.0044693914, -0.0057101855, -0.016294919, 0.038388655, -0.0037255478, 0.01640887, 0.011654602, -0.009692122, -0.0066787647, 0.026056679, 0.0077676247, 0.011502668, 0.021650592, -0.004118044, 0.0108126355, -0.03031083, 0.0087045515, 0.0047669285, -0.0048365653, -0.0014750258, -0.01107852, 0.035020784, 0.000606549, 0.026006034, 0.018232077, -0.00089261215, 0.021587286, 0.014585663, 0.00078380527, 0.025474265, 0.010692354, -0.025765471, -0.037553016, -0.016535481, -0.020979552, 0.010717676, -0.038439296, 0.0127308015, 0.0063495743, -0.00020475478, -0.015066787, -0.008191774, 0.016915318, 0.009065394, 0.042870704, -0.012426933, -0.03064002, 0.00836903, 0.024499355, -0.019131022, -0.0065584835, -0.003823672, -0.0025385637, 0.0011189305, 0.026689736, 0.026132645, 0.011452024, -0.015269365, 0.007508071, 0.013332207, -0.0052765408, 0.014648968, 0.0039502834, 0.017725632, 0.004409251, -0.0070775915, -0.012180041, 0.0062925993, -0.02337251, 0.03031083, 0.0029136506, -0.0062862686, -0.008603262, -0.006640781, 0.004269978, 0.009033741, -0.027905209, -0.014902191, -0.03922429, -0.012053429, 0.0084070135, -0.0062641115, -0.032463226, 0.035831098, 0.01989069, -0.011793875, -0.017472409, 0.020067947, -0.019143682, 0.08665302, 0.029221969, -0.024360081, 0.016067019, -0.020954229, -0.0098883705, -0.001534375, -0.0057291775, 0.020283187, -0.0064508636, 0.0210935, 0.026664414, 0.003706556, -0.009438898, -0.0026904976, 0.0043902593, 0.012515562, 0.0031067333, -0.0072675087, -0.016674755, -0.011502668, -0.0067294096, 0.0010856949, 0.00781827, 0.021827849, 0.016687416, 0.007520732, 0.00043562322, 0.012876405, -0.02955116, -0.0128131, 0.009597164, -0.011603958, -0.0003323556, 0.010894933, 0.009356601, 0.009920023, -0.0336787, -0.0071092444, -0.017003944, 0.023448478, 0.007571377, 0.019384244, -0.0022204518, 0.011122834, 0.0040768953, -0.0019545674, 0.007229525, 0.021131486, -0.02977906, 0.014053893, 0.008951444, -0.031095821, 0.014686951, 0.005618392, 0.016662093, -0.009154023, 0.007539724, 0.0008815336, -0.036109645, -0.024587983, -0.0039914325, -0.0056247227, -0.00019377518, 0.0010959822, -0.016142985, -0.0130283395, 0.019751418, 0.0013674059, 0.026461836, 0.008615923, -0.014003249, -0.0067610624, 0.033830635, 0.02258752, 0.011819198, 0.010793643, -0.0047827554, 0.011971132, 0.018637234, 0.016649432, -0.010420139, -0.00037033908, -0.0045770113, -0.0052607143, -0.012483909, 0.022853402, 0.0051847473, -0.0085906, 0.003412184, 0.011420371, 0.019814724, -0.0007295997, -0.019840047, -0.006995294, 0.008881807, 0.017991517, 0.018852474, 0.011603958, -0.012344636, 0.0085906, -0.0063843927, -0.004573846, 0.00934394, 0.035147395, 0.0033552088, 0.003443837, 0.024828546, 0.005352508, 0.0024420223, 0.006691426, 1.8583722E-05, -0.0013832323, 0.013560108, -0.008331046, 0.007400451, 0.003617928, 0.0219418, -0.0032396757, -0.011629281, 0.007299162, -0.03248855, 0.0120660905, 0.008179112, -0.020764312, 0.025790794, -0.0061026816, -0.0074384348, -0.015357994, 0.019650128, 0.0050043254, 0.015028804, 0.004497879, 0.014598324, -0.00858427, -0.013129628, -0.022233006, -0.02130874, 0.0056310534, 0.009521197, -0.031678237, 0.012775116, 0.0016475341, -0.0029484688, -0.004703623, -0.023423156, -0.018662557, 0.029247291, -0.016117664, 0.030589376, -0.041781846, 0.011787545, -0.007508071, -0.009135031, 0.015839119, -0.01477558, -0.013927282, -0.00597607, 0.04130072, 0.02793053, -0.0035767793, 0.00225527, -0.0052607143, -0.0010849036, -0.012319313, -0.013357529, -0.01748507, -0.0125851985, -0.016497498, 0.010451792, 0.01706725, 0.005203739, -0.0034501676, -0.031349044, 0.024296775, -0.0054822844, -0.0027189853, -0.028006498, -0.0032475889, -0.023727024, -0.00065877626, -0.0111038415, -0.013674058, -2.7770486E-05, -0.033931922, -0.0023518114, 0.03162759, -0.0013792757, -0.0020922576, 0.012737133, 0.016814027, -0.025170397, 0.017409103, 0.00543164, 0.007906898, -0.010382156, -0.013560108, -0.026259257, -0.013104306, -0.00024906886, 0.011034206, 0.011781215, 0.007944881, 0.021068178, -0.024727255, 0.016130324, -0.016598787, 0.0015628625, 0.005906434, -0.01682669, -0.020637698, -0.0336787, -0.016003713, -0.020232541, 0.020245204, 0.025069106, -0.017966194, 0.018738525, -0.058089428, -0.0219418, 0.009685791, -0.011319081, 0.028158432, 0.02215704, 0.015877102, 0.041427333, -0.021232774, 0.0025828776, -0.007508071, -0.003716052, -0.019422228, 0.01868788, 0.024258792, -0.033298865, -0.0025844604, -0.014281794, -0.023929602, -0.018877797, -0.0049188626, 0.029095357, -0.0022631832, 0.008812171, -0.022346957, -0.018713202, -0.0005456171, 0.03238726, -0.026259257, 0.014091877, -0.015484605, -0.0250058, -0.009179344, 0.035780452, 0.009831395, 0.0098124035, 0.0134714795, -0.029627128, -0.0044630608, 0.011616619, -0.00023225325, -0.015788473, -0.0062419544, 0.050366115, -0.02215704, 0.013218257, 0.0052132346, 0.00073039095, 0.019713433, 0.02357509, -0.007596699, 0.02337251, -0.0016396209, -0.010705016, -0.0069826324, 0.005403152, -0.029399225, -0.008153791, -0.0095908325, -0.024967818, 0.009242651, -0.0127687855, 0.027145538, -0.0024214478, -0.029728416, -0.011205131, -0.01118614, -0.021663254, -0.024309438, -0.008204435, -0.013737365, -0.031982105, -0.024638627, -0.009799742, 0.015256704, 0.037730273, 0.032969676, -0.010230222, 0.00042019243, 0.023752347, -0.050669983, 0.01249657, 0.026866993, 0.018156111, -0.0074510956, 0.012661166, 0.010584734, -0.020814955, 0.025385637, 0.0015889762, -0.024170164, -0.045377616, 0.025448943, -0.014243811, -0.010489776, -0.012648504, 0.021815188, 0.002764882, 0.013268901, -0.007223195, -0.024689272, -0.025398297, -0.0061216736, 0.003997763, 0.0007663962, -0.024372743, -0.001228133, -0.017649664, 0.020941567, 0.013129628, -0.015902424, -0.020371815, -0.0055044414, 0.0060330452, -0.0088501545, -0.02422081, -0.013699381, 0.011553314, -0.0054443013, 0.004042077, -0.024296775, -0.0034058534, 0.015471944, 0.0035039776, 0.012464917, 0.033096287, -0.023878958, -0.015826456, 0.03421047, -0.033045642, -0.002965878, -0.03932558, 0.02238494, 0.04616261, 0.014927514, 0.011224123, 0.007083922, 0.0028566753, -0.04583342, 0.00640655, -0.0060330452, 0.030361474, 0.04332651, 0.018346028, 0.0057101855, 0.007925889, 0.005498111, 0.00017517908, 0.0021919643, -0.0091856755, -0.0029547994, 0.004586507, 0.008824832, -0.014167844, -0.020118592, -0.016877333, 0.01761168, 0.0069699716, -0.008793179, 0.010287196, -0.016927978, -0.0012202198, -0.016294919, 0.0017852243, 0.030918565, 0.02390428, 0.013851315, -0.032463226, -0.017852243, 0.015079448, -0.015953068, 0.005273375, 0.020181898, 0.0016744391, 0.014332439, 0.017421763, -0.009413577, -0.022182362, -0.0027237332, 0.0034849858, 0.024385404, -0.0065584835, 0.006169153, 0.035476584, -0.012350967, -0.021587286, -0.00068449427, 0.024499355, -0.0067673926, -0.0028946588, -0.0048872097, -0.037882205, -0.011686255, 0.0061090123, 0.016700078, -0.00027795215, -0.015471944, -0.0030750805, -0.0032349278, -0.031095821, 0.014952837, -0.016155647, -0.01639621, -0.015307349, 0.00635907, -0.009065394, 0.040110573, -0.011838189, 0.0076410132, -0.021410031, 0.01946021, 0.017016606, 0.0059918966, -0.032640483, 0.015851779, 0.011160817, 0.008938783, 0.009951676, 0.20703538, -0.007615691, -0.004497879, 0.029601805, 0.018371351, 0.0089261215, -9.1249414E-05, -0.0006235624, 0.009027411, -0.0129903555, -0.0046529784, 0.008951444, -0.007723311, -0.0076093604, 0.018333368, -0.0040579033, -0.023625735, -0.010166916, -0.0043111267, -0.0034280105, 0.016168308, -0.007735972, 0.002652514, -0.018523285, -0.014623646, 0.010388486, -0.009761758, -0.009749097, 0.008286732, 0.007096583, 0.004744772, -0.0156492, -0.006042541, -0.0040579033, -0.0054696235, -0.0013492054, 0.04347844, 0.006039376, -0.021422692, 0.033425476, -0.01705459, 0.0054411357, 0.018080143, -0.0067610624, 0.023537107, 0.008634915, -0.010584734, 0.023942264, 0.008419675, -0.0052543837, -0.022296311, -0.0128131, 0.025904745, 0.024714595, -0.009046403, -0.0006931988, 0.021485997, -0.00646669, 0.024296775, -0.0010033974, -0.036362868, 0.024575321, -0.013370191, 0.044820525, 0.00619764, 0.033096287, 0.013167612, -0.0134714795, 0.00135791, 0.011673595, -0.0030038615, 0.002875667, -0.008242419, 0.03271645, -0.028943423, -0.01989069, 0.006596467, -0.0016285424, -0.0058178054, 0.012509231, -0.014281794, 0.013484141, -0.004956846, 0.016915318, -0.020701006, -0.024106858, 0.0047859205, -0.0035672833, -0.0064698556, -0.007140897, 0.0169533, 0.0051530944, 0.011502668, 0.0008870729, 0.016421532, 0.033172254, -0.021131486, 0.017459746, -0.01467429, -0.01824474, -0.01845998, -0.007007955, -5.1881103E-05, 0.024423387, -0.010730337, 0.009844056, 0.009381924, -0.0010714511, 0.0071219057, -0.031070499, 0.00046015423, -0.049707733, 0.022043088, -0.012161049, -0.0071535585, 0.0043111267, 0.008527295, -0.005561417, -0.020764312, -0.0055044414, 0.011597628, -0.023714362, 0.0048745484, -0.006431872, 0.00934394, -0.011255776, -0.012338306, 0.015687184, -0.0018501128, -0.016206292, -0.003519804, 0.008774187, 0.005529764, -0.007843592, 0.0064382027, -0.009052733, 0.027905209, -0.01576315, 0.0027348117, -0.019561501, -0.016687416, 0.007704319, 0.021410031, 0.010673363, 0.017117895, -0.022030428, 0.0033931923, -0.028816812, -0.003649581, 0.00527021, -0.026866993, -0.0055772434, -0.0032792417, -0.01781426, 0.032412585, 0.016902655, -0.020055287, -0.014041232, 0.012724471, 0.019548839, -0.04476988, 0.02586676, 0.024727255, -0.025334992, -0.00060219667, -0.0008918208, -0.15801135, 0.024296775, 0.013053661, -0.01596573, 0.0023597246, -0.014800902, 0.015117431, -0.003595771, -0.010350503, 0.020814955, 0.020397138, 0.0016950135, -0.01867522, -0.0022616007, 0.0046213255, -0.002688915, -0.0077612945, 0.021599948, -0.016155647, 0.009248981, 0.023461139, -0.028209075, -0.0019213319, 0.009945345, 0.011869842, -0.03251387, -0.015155415, 0.025056446, -0.0068433597, -0.020916246, -0.003005444, -0.0021967122, -0.0020558566, -0.0014220071, 0.032767095, -0.015737828, -0.012002785, 0.0047764247, -0.017915549, 0.03127308, 0.020688344, 0.020941567, 0.022866065, 0.0042573167, 0.013294224, 0.013268901, -0.0074510956, 0.004747937, -0.0024641792, -0.026082, 0.027727952, -0.013990588, 0.010230222, -0.008748865, 0.03848994, -0.00059942703, 0.017371118, 0.0036875643, 0.024942495, -0.0026240265, 0.0057893177, -0.0059190947, 0.0059285904, -0.0035799444, -0.007330815, -0.0012218024, -0.0057893177, 0.012350967, -0.03876849, 0.0006421585, 0.016712738, 0.032108717, -0.018599251, -0.006327417, 0.010502436, 0.01640887, -0.023929602, 0.0026968282, 0.022752114, -0.014307117, 0.018776508, 0.044288754, -0.011002553, -0.008622253, 0.019840047, -0.0076220217, -0.022777436, -0.0037730273, 0.012534553, -0.023321867, 0.007729641, -0.013889298, -0.008172782, -0.0036369197, 0.01576315, -0.00527021, 0.029956317, 0.013699381, 0.009457891, -0.018130789, 0.004444069, -0.0098883705, -0.022296311, 0.0046054986, 0.022435585, -0.012104074, 0.023967586, 0.023182593, 0.022308974, -0.00089656876, -0.0001745856, 0.032893706, 0.0127687855, 0.018915782, 0.001536749, 0.016776044, -0.005194243, -0.043655697, 3.5485882E-05, -0.009571841, 0.026132645, 0.0048334, -0.03433708, 0.023473801, 0.0008585853, -0.014003249, -0.08123404, -0.035780452, 0.01716854, -0.021891154, -0.010103609, 0.021068178, 0.010407478, 0.02195446, 0.0054158135, 0.010787313, -0.0016807697, -0.028639555, 0.007723311, 0.010901263, 0.030234862, -0.009958006, 0.025588214, -0.011338074, -0.013876637, 0.006052037, 0.0015668191, -0.009002089, -0.019080376, 0.0053683342, -0.01966279, -0.015168076, -0.016345564, -0.015851779, 0.013129628, 0.016054358, -0.007539724, 0.014864208, 0.0036464157, -0.010388486, -0.01292705, 0.030665342, -0.046542443, 0.0067547318, 0.0017314143, -0.0075903684, 0.0119204875, 0.0062831035, -0.017674986, -0.022524213, -0.025284346, 0.017839583, -0.018725863, 0.010040304, 0.025119752, 0.015497266, 0.006995294, -0.00516259, -0.011350735, -0.024081536, 0.028310366, -0.022790097, 0.016548144, 0.004197176, 0.015560572, 0.01130009, -0.025094429, 0.0041338704, 0.009046403, 0.025322331, -0.0023470635, -0.0052638794, 0.002152398, -0.0014180505, 0.032767095, -0.014370423, -0.0066217897, -0.004485218, -0.025828777, 0.017434424, -0.012908058, 0.00054680405, -0.037831564, -0.006226128, -0.003934457, -0.009198337, -0.013116967, -0.019498194, 0.026993604, -0.038971066, 0.015877102, 0.029652448, -0.0012368376, -0.0029247291, -0.0010366329, -0.023182593, 0.036590766, 0.024360081, 0.03717318, -0.019814724, -0.008463989, 0.005846293, 0.002304332, -0.0063843927, -0.025334992, 0.025018463, -0.018409334, -0.008881807, -0.060013924, 0.026765704, 0.0068940045, -0.015294688, 0.00032543152, -0.010179576, 0.0059412518, -0.042794738, -0.0040579033, -0.022840742, -0.0005286037, 0.0012479161, 0.011445694, 0.029804382, -0.0043396144, -0.02291671, -0.004054738, -0.010363163, 0.016927978, 0.0009954841, -0.030893244, -0.009597164, -0.0024815884, -0.0004593629, -0.018814491, 0.0033678699, -0.01477558, 0.00662812, 8.298998E-05, -0.01054042, 0.022460908, -0.014648968, 0.026563125, 0.04246555, -0.020067947, -0.040718306, 0.028867457, -0.007735972, -0.009084386, -0.020688344, -0.019080376, -0.023081305, 0.015294688, -0.018573929, -0.007894237, 0.003465994, 0.004421912, 0.0073941206, 0.030564053, 0.022853402, 0.028057143, 0.02704425, 0.0013017261, -0.035729807, -0.0079638725, -0.031576946, 0.032741774, -0.0033836963, -0.014142522, -0.02052375, 0.025183057, 0.0020257866, 0.0072105336, -0.016345564, 0.013218257, 0.0051341024, -0.008115807, -0.0048112427, -0.0014196332, -0.01575049, -0.014686951, 0.0016823524, 0.026157968, 0.014332439, -0.01238262, 0.03031083, 0.008976766, -7.28017E-05, -0.028436977, 0.013306885, -0.003706556, 0.012414273, -0.030032285, 0.002706324, 0.006944649, 0.0134334965, -0.03215936, -0.009027411, -0.010002321, 0.018738525, -0.013990588, -0.0057196813, -0.027246827, -0.018599251, 0.026006034, 0.020283187, -0.009641477, -0.004140201, 0.010426469, 0.018852474, -0.011933148, 0.0073941206, -0.010667032, -0.03365338, -0.007811939, -0.012116735, -0.0034153494, -0.020992212, -0.0098883705, 0.0016427862, 0.012692818, -0.0016855176, -0.025740148, -0.00019971009, 0.0006429498, -0.015054125, 0.0029595473, -0.02575281, -0.018953765, 0.03593239, 0.030184219, 0.011787545, 0.028082464, -0.015573233, 0.0037318785, -0.00434911, -0.019726096, -0.008008187, 0.0054158135, 0.013737365, -0.009597164, -0.029525837, 0.004801747, 0.009901031, -0.011990123, -0.013408174, -0.026082, 0.038844455, 0.0016459515, 0.07566313, 0.02584144, -0.027398761, -0.026385868, -0.011325412, 0.027879886, 0.041781846, -0.0058494583, -0.006988963, -0.023448478, 0.018928442, -0.0059412518, -0.0058684503, 0.00749541, -0.013648736, 0.004032581, 0.0025638859, 0.022802759, -0.029804382, -0.02684167, 0.023283882, -0.016889995, 0.035451263, -0.028588912, -0.014281794, -0.011382388, 0.0289181, 0.008312055, -0.0247779, -0.009945345, -0.011338074, -0.0059918966, 0.0034248452, -0.004649813, -0.009742767, -0.009040072, -0.0017519888, 0.03031083, -0.019612145, 0.019637467, 0.022119056, 0.0053746644, -0.011508999, -0.025917405, 0.0134714795, 0.0004941811, 0.0036210932, -0.016029036, -0.0077612945]
+ },
+ {
+ "Id": 54,
+ "Type": "Trekking",
+ "Brand": "Gravitator",
+ "Name": "Nebula Pro Headlamp",
+ "Description": "Illuminate your outdoor adventures with the Nebula Pro Headlamp. Its sleek design and water-resistant construction in neon color make it perfect for night hikes, camping trips, and emergencies. With 500 lumens of bright white light, adjustable brightness modes, and a rechargeable battery, this headlamp will light up the darkness and keep you safe.",
+ "Price": 59.99,
+ "Embedding": [0.035294745, -0.0033970526, -0.026843702, -0.019058097, -0.0072732195, 0.0048410497, -0.0031508412, -0.018885083, 0.0075393943, -0.022225576, 0.0035600846, -0.009329418, 0.008537549, 0.005672845, 0.005523122, 0.004724598, 0.028294355, -0.022425206, 0.0005518963, 0.004831068, -0.015092097, 0.0058458587, -0.013455124, -0.003566739, -0.009828495, -0.047938038, 0.027163113, -0.011259183, 0.037370905, -0.004192249, 0.026005253, -0.010740143, -0.004045853, -0.014599674, 0.008065089, 0.011185985, 0.011305764, 0.007865458, 0.013342, 0.011698372, 0.0253132, 0.0032306935, 0.0026168285, 0.006295028, -0.019816695, 0.019404124, 0.0089634275, -0.0099882, -0.011718335, 0.009934965, -0.008038471, 0.012736452, 0.0010988018, -0.0044484423, -0.0079053845, -0.015797459, -0.0025486213, -0.008331263, 0.020455513, -0.031355362, -0.014666217, 0.015970472, -0.028720234, 0.019963091, 0.013162332, -0.024554603, -0.019750152, 0.008218139, 0.005380053, 0.009675445, 0.017434433, 0.009948274, 0.020774923, 0.005103897, 0.011199295, -0.010553821, -0.007918693, -0.008344572, 0.017327962, -0.011585247, 0.0066277464, -0.013335345, -0.034709163, -0.002671727, 0.0010879885, 0.006318318, -0.010846613, 0.005722753, -0.037157968, -0.025166804, -0.010780069, -0.0008817032, 0.015930546, -0.0063249725, 0.003909439, 0.021054408, 0.0048210863, 0.027083261, -0.009455851, -0.013461778, -0.011851422, -0.00852424, -0.03127551, -0.008510931, -0.0067075985, -0.003130878, -0.0061918856, 0.027628917, 0.024434824, 0.0116251735, -0.014573056, 0.022119105, 0.024634454, -0.03452284, -0.025339818, -0.03484225, 0.02436828, -0.0088968845, 0.0113323815, -0.017354582, 0.019537212, 0.021666609, 0.017554212, -0.01485254, 0.011585247, 0.022358662, -0.016289882, -0.009209639, 0.035188276, -0.0219594, -0.0004911752, 0.012051052, 0.028587146, -0.019670298, -0.0064480784, 0.028267737, 0.017860312, -0.009748643, -0.032659616, 0.01913795, 0.014785997, 0.029625228, -0.020016326, -0.0020911337, -0.013348654, 0.004168959, -0.012610019, 0.008683945, 0.017793769, 0.00034290768, 0.02351652, -0.02372946, 0.020109488, 0.015118714, -0.014599674, -0.00940927, -0.009349381, 0.05155801, -0.022518367, -0.017980091, -0.0049874457, -0.015398198, 0.018033326, -0.010806686, 0.017620755, 0.02511357, 0.0014631283, -0.0068673035, -0.0068140686, -0.0061186873, -0.012197449, 0.050679635, -0.028613765, 0.0062151756, -0.015225184, 0.020242574, 0.023383435, 0.005506486, -0.012982664, -0.004208885, 0.0014506513, -0.009588938, -0.0067941053, 0.003969328, -0.016981937, -0.009682099, 0.033191968, -0.010660291, 0.0153449625, -0.017700607, 0.00033438177, 0.026684, -0.02080154, 0.0011653454, -0.65415055, -0.025552757, -0.007892075, -0.03242006, -0.0020029636, 0.00475787, 0.00329391, -0.0034902138, -0.011485431, 0.01390762, 0.014147177, 0.005346781, -0.026417824, -0.011072861, -0.0042155394, -0.016742378, -0.016502822, -0.011665099, 0.009236257, -0.022332044, -0.009169714, -0.0066310735, 0.0009823504, -0.025672534, -0.011492087, 0.022039253, 0.021932783, -0.019670298, -0.027948327, 0.0038928029, -0.017181568, 0.02239859, -0.0060621253, 0.021107642, 0.049215674, -0.05083934, -0.0019181203, 0.03920751, 0.001220244, 0.016795615, -0.043572772, -0.015624446, 0.012011127, -0.024900628, -0.010893193, 0.02018934, 0.025273273, -0.005343454, 0.01684885, 0.0018781942, 0.021666609, -0.008757142, 0.02395571, 0.010367499, -0.020974554, -0.021200802, 0.021693226, 3.4214088E-06, -0.008717217, 0.017314654, -0.011591902, -0.0012451978, -0.015677681, -0.024594529, -0.015850695, 0.035055187, -0.028613765, -0.024275118, 0.00523033, -0.0025436305, 0.010194485, 0.024714306, -0.018685453, 0.026830394, 0.011798187, 0.006421461, 0.03212727, 0.010553821, -0.006082088, 0.002618492, 0.033617847, -0.016675835, -0.022984173, -0.03353799, 0.025459595, -0.0023024098, -0.006531258, -0.0068539944, 0.030077724, 0.021506904, 0.015145332, 0.0063615716, -0.028640382, -0.020868085, -0.025472904, 0.027123187, -0.016236648, 0.010819996, 0.013109096, -0.015624446, -0.012071016, -0.016875466, 0.0115120495, -0.016170103, 0.037610464, 0.0005785137, 0.020029634, -0.0026617455, 0.010241066, -0.024514675, -0.027256275, -0.013461778, -0.04663378, -0.018259574, 0.009269529, -0.022238884, 0.03577386, -0.0032955736, 0.03691841, -0.020841466, 0.029625228, 0.000878376, 0.014865848, 0.0009981545, 0.0030560165, -0.0053035277, 0.0067708152, -0.017115023, -0.019643681, -0.016742378, 0.016449587, 0.0028963117, 0.01956383, 0.01758083, -0.0065711844, 0.025805622, 0.0009573966, -0.02322373, 0.0023822621, -0.01286954, -0.017075097, 0.007133478, -0.014426661, -0.017208185, -0.022744615, -0.031674773, -0.031861093, -0.01716826, -0.008703908, -0.00051696086, -0.004591511, -0.024567911, -0.0059922547, 0.006584493, 0.02488732, -0.018898392, -0.018339427, 0.011824804, -0.015624446, -0.01684885, 0.023303581, 0.02656422, -0.012263992, 0.003184113, -0.019004863, -0.007486159, 0.0050573163, 0.041709553, 0.008317955, -0.04256131, -0.004787815, 0.006671, -0.020695072, 0.04644746, -0.018845158, -0.014972318, -0.024235193, -0.025645917, 0.019257728, 0.0068340315, -0.0023772714, -0.0033804167, -0.016356425, -0.0043087006, 0.023077333, 0.016609292, 0.008171558, 0.018845158, 0.013707989, 0.013215566, -0.004175613, 0.02038897, -0.0032855922, 0.0013558266, -0.022558292, -0.016968628, 0.013501704, -0.007020354, 0.0089967, 0.010440697, 0.0061186873, -0.031861093, 0.0024504694, -0.027083261, 0.0069604646, -0.021639992, 0.013668063, -0.0063349544, 0.0039427103, 0.00017415718, 0.003037717, -0.017607447, -0.038036343, -0.0033205275, 0.002395571, 0.009974891, -0.0012027762, 0.03148845, 0.0048942845, -0.024301736, 0.000874217, 0.011259183, -0.013322036, 0.002289101, -0.009615555, 0.005636246, 0.0008080893, 0.008976737, 0.0005048998, -0.005523122, 0.022757923, 0.014280264, 0.0027632245, 0.007046971, -0.008484314, 0.0219594, 0.006531258, -0.030210812, 0.028933173, 0.016622601, 0.022531675, 0.014093942, 0.0044883685, 0.003496868, 0.0067774695, 0.043945417, 0.009542357, 0.001545476, 0.012603365, 0.005672845, -0.018925011, 0.020242574, -0.005413325, -0.0043253363, 0.014386734, -0.015464742, 0.015318345, 0.02520673, 0.029039644, 0.009089861, 0.0065345853, 0.020402279, 0.017713916, -0.014386734, 0.009289492, -0.0026534274, 0.016742378, -0.022930937, 0.0039859638, -0.01390762, 0.012982664, -0.00488763, 0.012244029, -0.024647763, 0.023835931, -0.010360844, -0.0014331836, 0.014000781, -0.003570066, 0.026284738, -0.025366435, -0.009895039, 0.005616283, 0.019617064, -0.0021443686, -0.016369734, -0.019257728, 0.0014489878, 0.00805178, 0.015358271, -0.015198567, 0.015824078, 0.008683945, 0.008663981, 0.01369468, -0.019617064, -0.00013246342, -0.00051737676, 0.017115023, -0.019630373, -0.011478777, 6.747941E-05, -0.030556839, -0.025180113, 0.026857013, 0.0015512985, -0.016289882, -0.012317227, 0.003367108, -0.018885083, -0.00742627, -0.024927247, 0.013035898, -0.016369734, 0.009429233, -0.0020079543, -0.003822932, -0.0063016824, 0.0053101825, 0.0032440023, 2.8618962E-05, -0.0036964992, 0.0031974218, -0.014080633, 0.06830039, -0.010380807, 0.007985236, 0.039553538, -0.0104074245, -0.013322036, -0.016076943, -0.010101324, 0.015651064, -0.0013890985, -0.00026097582, 0.007053626, 0.0015313354, 0.004957501, 0.0021227421, -0.0019630373, 0.027522448, -0.012896157, -0.012377117, -0.004205558, 0.014080633, 0.008291338, -0.0028330954, 0.0040159086, 0.022531675, -0.006880612, 0.019404124, -0.006288374, 0.033191968, -0.0038428952, 0.018485822, -0.009010009, -0.017394507, -0.0034635963, -0.00329391, 0.0034702506, -0.016875466, -0.019830003, 0.04769848, 0.013182295, 0.034655925, 0.026936864, 0.0199764, -0.0049308836, 0.0007024513, 0.01155863, -0.0047112894, 0.0054066707, -0.0055397577, -0.0073663807, 0.016276574, 0.0063648988, -0.017234802, -0.019177876, 0.006750852, -0.0024837411, 0.012483587, -0.0010796705, -0.012709835, -0.029252583, 0.01009467, -0.023649609, 0.034576073, 0.02186624, -0.016116869, -0.018153105, -0.00064422557, 0.007832186, -0.013574902, -0.020349044, -0.013628137, -0.0036998263, -0.03138198, 0.015704298, 0.016981937, 0.0028597128, 0.021147568, -0.007299837, 0.019271037, 0.012949392, 0.007046971, 0.008018509, 0.0029262565, -0.0011894675, 0.013421851, 0.007818878, 0.007113515, -0.018020017, -0.008271374, 0.005270256, 0.012503549, -0.006767488, 0.018179722, 0.014586365, -0.0033138732, 0.0071867127, 0.010054744, 0.017115023, -0.004029217, 0.015757533, 0.020841466, -0.04245484, -0.0011520367, -0.0062085213, 0.02331689, 0.0022175666, -0.011618519, 0.019457359, 0.0017600792, -0.0047079623, 0.0199764, -0.0150521705, 0.022438515, 0.0036366098, -0.01808656, 0.015371581, -0.015517976, -0.0097087165, 0.024115413, -0.030343898, -0.017634064, -0.038036343, 0.043972034, 0.0050440077, -0.00262681, 0.005616283, 0.03399049, -0.010753452, 0.009921656, 0.026817085, -0.0025885475, 0.027628917, -0.0182995, -0.010946428, -0.02416865, -0.04019236, -0.020841466, 0.0109264655, -0.012989318, -0.01255013, -0.0047844877, -0.013335345, 0.008311301, 0.007918693, 0.0023356816, -0.013448469, -0.029438905, -0.014919084, -0.0064148065, 0.014147177, -0.00043378133, 0.00046538957, -0.02384924, -0.021480286, 0.00262681, -0.0043852255, -0.0077722967, -0.023689535, 0.03441637, 0.0013159005, 0.010513894, 0.007852149, 0.015105406, 0.008624055, -0.002525331, 0.00992831, -0.023969019, -0.0042488114, -0.05030699, 0.008204831, 0.0014140523, -0.002012945, -0.0024754233, -0.001309246, -0.0051271874, 0.008883576, -0.00402589, -0.030876247, -0.0045116586, -0.033191968, -0.007665827, -0.011824804, -0.026098415, 0.006072107, -0.004318682, -0.010300955, 0.04791142, 0.020229265, -0.00012310572, -0.0016070289, 0.02217234, -0.016862158, 0.01187804, 0.00593902, 0.028214503, -0.007732371, -0.0010097997, -0.018951628, -0.014160486, 0.016702453, 0.000329391, -0.017727224, -0.015957164, -0.026790468, -0.041044116, 0.014346808, -0.006371553, -0.0033271818, 0.004298719, -0.027415978, 0.003550103, -0.008071743, -0.02813465, -0.038755015, 0.015038862, 0.0013192276, -0.0027665517, 0.0153449625, -0.013408543, -0.015291728, 0.019603755, -0.022891011, 0.013421851, -0.027948327, 0.013009281, 0.011478777, -0.008723871, -0.029731696, -0.031142423, -0.008025163, -0.003972655, 0.014439969, 0.018605601, -0.010101324, -0.0123704625, 0.018658835, 0.0021460324, 0.022092488, -0.02269138, 0.013787841, 0.03220712, 0.034868866, 0.003643264, -0.028560529, -0.015664373, 0.017793769, 0.0052469657, 0.016715761, 0.013228875, -0.011851422, -0.018379353, 0.003510177, -0.02351652, 0.0005864158, 0.026697308, 0.0071800584, 0.017926855, 0.01171168, -0.007665827, -0.0074528875, -0.018366044, 0.043279983, -0.0063416087, 0.007572666, 0.012889503, -0.002041226, -0.0020079543, 0.004664709, 0.030610073, 0.024807468, -0.018033326, -0.015504668, 0.009868422, 0.008564166, 0.010114633, -0.03417681, -0.024541294, -0.0039027843, 0.025286581, 0.021932783, 0.012077671, 0.0057160985, -0.009356036, -0.038542073, 0.0063948436, -0.006524604, -0.03417681, 0.021147568, 0.010693562, -0.019710226, -0.020615218, -0.013468432, 0.015517976, 0.012004472, -0.0022425207, -0.015651064, 0.008823686, 0.0036532457, -0.03002449, -0.008836995, 0.029252583, 0.023622992, 0.0024987136, 0.0073064915, 0.013827768, -0.024714306, 0.011977855, -0.029891402, -0.026684, -0.00015689743, -0.010427388, 0.0071268235, 0.006384862, -0.00992831, -0.007865458, 0.0030061088, -0.0070136995, -0.011698372, -0.027442597, 0.013621482, 0.0015546257, 0.02781524, 0.041044116, -0.026604146, -0.007918693, -0.025792314, -0.003992618, 0.0048976117, -0.019177876, -0.0075660115, -0.023676226, -0.010753452, 0.014000781, -0.009495777, 0.0021127604, -0.00031046764, -0.00977526, -0.0112858005, -0.014599674, 0.043838948, 0.023862548, 0.0012992645, 0.00092162937, 0.005027372, -0.033484757, -0.004877649, -0.0069737732, -0.027495831, -0.0037031535, -0.0036898446, 0.010946428, 0.034655925, -0.0021377143, -0.04562232, 0.015824078, -0.013528322, -0.035135042, -0.005875803, -0.017620755, -0.020415587, 0.012796341, 0.010753452, 0.0029162748, 0.03641268, 0.012563439, 0.0049242293, -0.0069205384, -0.015371581, -0.00055355986, 0.0067807967, -0.014799305, -0.022984173, -0.021147568, -0.0028813395, 0.0055331034, 0.004957501, 0.0030327262, 0.021560138, -0.025672534, -0.0049242293, -0.009848459, 0.01322222, 0.03345814, 0.018871775, -0.005563048, -0.02488732, -0.025912093, -0.0027133168, 0.016356425, -0.01255013, 0.009921656, 0.034363136, 0.012862885, 0.001167009, -0.025925402, -0.054991663, -0.010267683, -0.004461751, -0.0079719275, 0.013355308, -0.0032889193, 0.0349221, 0.007985236, -0.039979417, 0.009229602, 0.01828619, -0.012689872, -0.008810378, -0.007898729, -0.004791142, -0.00029819866, 0.004574875, 0.0040924335, -0.027495831, -0.01401409, -0.0075992835, -0.0074528875, -0.02824112, 0.022438515, 0.018432587, -0.028320972, -0.014879157, 0.011352344, 0.007193367, 0.013841077, -0.004737907, 0.010806686, -0.016356425, 0.02237197, 0.013322036, -0.006145305, -0.02781524, 0.022731306, 0.007279874, 0.005672845, 0.02186624, 0.21112965, 0.021892857, -0.011532012, 0.04602158, -0.004355281, 0.033511374, 0.0017168259, -0.013641446, 0.009003354, -0.012224066, -0.02488732, 0.007985236, -0.010034781, -0.010141251, 0.016449587, -0.007007045, -0.04069809, -0.0034070343, -0.0064846775, -0.022052562, -0.010746798, -0.004428479, -0.0048643397, -0.005942347, 0.0073597264, -0.0019430742, 0.00014837152, -0.004664709, 0.016396353, 0.017035171, -0.00428541, -0.03127551, 0.00088918937, -0.01056713, -0.001427361, 0.014160486, 0.015451432, -0.00525362, -0.016476205, 0.016396353, 0.00073572306, 0.014626292, 0.0147593785, -0.0067608333, 0.016063634, 0.00036973308, -0.020415587, 0.012862885, 0.0020778251, 0.008078397, -0.029438905, -0.024501367, 0.020548675, -0.009169714, -0.011778223, -0.012689872, 0.012543475, -0.015025553, 0.0062850467, 0.0032123942, -0.0039227474, 0.029997872, 0.001476437, 0.0338574, -0.004554912, 0.01788693, -0.017594138, -0.010573784, 0.033644464, 0.012696526, 0.0061186873, 0.0026451095, -0.023556447, 0.0064447513, -0.017101714, -0.010600401, 0.014785997, -0.0047745057, -0.0073198, 0.007705753, 0.017926855, -0.013188949, -7.985236E-05, -0.008018509, 0.009768606, -0.018871775, -0.007572666, 0.004611474, 0.0038894755, 0.0063083367, -0.0010805023, 0.014173795, -0.017288037, 0.007313146, -0.020961246, -0.0029428923, -0.011651791, 0.01050724, -0.011252529, 0.0069405013, -0.026697308, 0.016755687, -0.001638637, -0.01828619, -0.019111333, 0.012543475, 0.018046634, 0.020016326, 0.005053989, -0.0005344286, 0.021560138, -0.01828619, -0.004232175, -0.012483587, -0.00066709996, -0.0065412396, -0.0006225989, -0.012044398, 0.02217234, -0.018046634, 0.006674327, -0.015318345, 0.022012636, 0.011665099, -0.007279874, -0.02540636, -0.00019890309, 0.037690315, -0.0003553846, -0.0236363, 0.016249957, -0.0042388295, 0.020215956, -0.009242911, 0.012942737, 0.0147593785, -0.0039260746, -0.008903539, 0.0008833668, -0.013002627, -0.013162332, -0.0019946455, 0.0075327395, 0.009296146, 0.020561984, -0.017926855, 0.00684734, -0.014919084, -0.0015604483, -0.0088503035, -0.012669909, 0.020029634, -0.0025968654, -0.020961246, -0.0021809677, -0.021706535, -0.041869257, -0.012124251, 0.017434433, -0.005925711, -0.027256275, 0.003042708, 0.019271037, -0.020069562, -0.008085052, 0.013628137, -0.16939348, 0.008431079, 0.021932783, -0.028081415, -0.0062417933, 0.0026900265, 0.002488732, -0.0012551794, -0.016476205, -0.0051504774, 0.008471005, 0.011532012, -0.049801257, -0.0049508465, 0.005227003, 0.011472123, 0.030796396, 0.020681763, 0.01726142, 0.000601804, 0.016289882, -0.0053101825, 0.024621146, 0.00032440023, 0.004022563, -0.010819996, -0.0003119233, 0.018539058, 0.0108133415, 0.008258065, -0.0011844768, -0.010280992, 0.02738936, 0.0028314318, 0.03763708, -0.012816304, 0.012403734, 0.026218193, 0.0015504668, 0.038994573, -0.023556447, 0.013734607, 0.030743161, 0.0075393943, 0.001350004, 0.019843312, 0.0009898366, 0.00977526, 0.0071867127, -0.0035900292, 0.035827093, -0.033431523, -0.014559748, -0.0071600955, 0.0016976945, 0.03244668, 0.011385616, 0.0048044506, 0.02813465, -0.024328353, -0.0027482521, -0.038089577, -0.008324609, -0.010959737, -0.009741988, -0.012816304, 0.0253132, 0.029971255, -0.011551975, 0.023543138, -0.014932392, -0.01861891, -0.017687298, -0.01485254, 0.012423697, -0.0108798845, -0.012017781, 0.002114424, -0.0031874403, 0.00017696449, 0.016276574, 0.03316535, -0.02426181, 0.027522448, -0.016808923, -0.014080633, -0.019257728, 0.010088015, -0.030610073, -0.015451432, 0.014506513, -0.028108032, -0.0050972425, -0.00041672954, 0.01935089, 0.0028364225, 0.0276023, -0.015810769, 0.018885083, -0.005779315, -0.0036166466, 0.023183804, -0.018459205, 0.03870178, 0.04934876, -0.0024787504, 0.028054798, -0.0010455669, 0.013960855, 0.00029341585, 0.0011744952, 0.0039427103, 0.0144000435, -0.008371189, -0.01736789, -0.002094461, 0.008803723, -0.031115804, 0.0030626708, -0.007932002, 0.031035952, -0.033245202, -0.0338574, -0.016715761, -0.0058824574, -0.029518757, -0.09608901, -0.01819303, -0.0021809677, 0.023862548, -0.015411506, 0.014892466, -0.0018565675, 0.02959861, -0.015917238, 0.03231359, 0.0049841185, 0.007885421, -0.017554212, 0.020908011, 0.026484368, -0.0051837494, 0.036013417, -0.014879157, -0.022518367, 0.015730916, -0.004671363, -0.0022591564, -0.017035171, -0.02070838, -0.01072018, -0.014027399, -0.022265501, 0.0034735778, 0.028613765, 0.011385616, -0.0216533, -0.01547805, 0.009209639, 6.9298956E-05, -0.008411116, -0.007572666, -0.0074928137, -0.0016128514, 0.00585584, -0.04844377, -0.003302228, 0.013109096, 0.015744224, -0.017061789, -0.0006924697, -0.0044916957, 0.01714164, -0.0028164594, 0.005559721, -0.03912766, -0.020016326, 0.00032918307, -0.014386734, 0.007985236, 0.017514285, -0.01050724, -0.02259822, 0.033963874, -0.011352344, -0.0060055633, -0.01913795, 0.021613372, -0.020136105, 0.018352736, -0.0073264544, -0.0051637865, -0.015997091, -0.011891348, 0.008344572, -0.02959861, -0.013761224, 0.018685453, -0.00852424, 0.028294355, -0.03127551, -0.010161214, -0.003082634, -0.0043386454, 0.010853267, -0.004974137, -0.033963874, -0.013974164, 0.017860312, -0.015970472, 0.0013899303, 0.033298437, 0.008337918, -0.02050875, 0.02375608, -0.016662527, 0.0126566, 0.040485147, 0.008477659, -0.007140132, -0.019310964, 0.005120533, 0.000116035466, -0.010607055, 0.0068539944, -0.012303919, -0.009309455, -0.025659226, -0.077935904, 0.034629308, 0.0019763461, -0.011339036, -7.865666E-05, 0.0025236674, -0.01547805, -0.0027249618, 0.0055131405, -0.010187831, 0.0075127766, -0.018459205, 0.0041822675, -0.024488058, -0.00023207093, -0.0012676563, 0.0017950146, 0.0039061115, 0.00075984513, -0.0051637865, -0.011598556, -0.013162332, -0.016329808, 0.032872558, -0.042694397, -0.00988173, -0.0014722779, -0.025579374, 0.0008151596, -0.003623301, 0.02895979, -0.015624446, 0.004059162, 0.010480623, -0.014426661, -0.03862193, -0.0018765306, 0.010081361, 0.012051052, -0.024075488, -0.019696917, -0.01788693, 0.023889165, -0.010986354, -0.016915392, -0.0018049962, -0.00024475582, 0.00094408786, 0.026218193, 0.030982718, 0.0042754286, 0.01736789, 0.007699099, -0.0042388295, -0.028400823, -0.013095788, 0.0050074086, 0.0017700607, -0.0009815186, -0.012164176, 0.02644444, 0.020468824, 0.006461387, 0.016875466, -0.0053334725, 0.020961246, 0.006967119, 0.019510595, 0.0029745006, 0.0001776923, 0.0002761561, -0.0027482521, 0.043572772, 0.001508877, 0.00077190617, -0.014865848, 0.0013591538, -0.0024038889, -0.022997482, 0.012789687, 0.015597829, -0.008644018, -0.04131029, 0.008803723, 0.017421125, 0.0046214554, -0.030130958, 0.017008554, -0.0101811765, -0.0071201692, -0.0236363, 0.010467314, 0.0075260852, 0.012064361, 0.0094824685, 0.037716933, 0.0005552235, -0.023077333, -0.001455642, 0.016249957, -0.002215903, 0.006913884, 0.015730916, -0.011259183, -0.016902084, 0.0068340315, -0.028667, -0.016170103, -0.0010805023, 0.0150521705, 0.0065778387, -0.029518757, -0.022558292, 0.008038471, 0.007080243, -0.007046971, -0.009801878, -0.026085107, -0.006404825, 0.03327182, 0.020881394, 0.028001562, 0.0024088796, -0.011079515, 0.03420343, -0.020894703, -0.008717217, 0.00962221, 0.026178267, 0.008510931, -0.0042454842, 0.0036931718, -0.036545765, 0.003037717, 0.004119051, -0.0053301454, 0.0107002165, 0.019204494, -0.0072931824, 0.07415623, -0.0035467758, -0.025153495, 0.018898392, -0.015132023, 0.0098883845, 0.035614155, 0.001293442, -0.0019547194, -0.010347536, 0.014133869, 0.027109878, -0.006873958, -0.011139405, -0.027655536, -1.5336229E-05, 0.014360117, 0.016462896, -0.032366823, -0.006531258, 0.060261916, -0.020309119, 0.004135687, -0.0023040734, -0.024195267, -0.0017001899, 0.0276023, 0.0009806869, 0.014054016, -0.02372946, 0.00846435, 0.008178213, -0.0035966835, -0.024820777, -0.004934211, -0.0035168312, -0.0025286581, 0.01663591, -0.009016663, -0.0053035277, 0.02352983, 0.024354972, 0.0037830058, -0.006311664, 0.008178213, -0.007912039, -0.013528322, 0.0026866994, 0.006344936]
+ },
+ {
+ "Id": 55,
+ "Type": "Jackets",
+ "Brand": "Solstix",
+ "Name": "Vigor 2.0 Insulated Jacket",
+ "Description": "Stay warm and stylish on the slopes with the Vigor 2.0 Insulated Jacket in vibrant red. This waterproof and breathable jacket is made with a 2-layer technical shell and features a detachable hood, adjustable cuffs, and multiple pockets for storage. With its modern design and ergonomic fit, it's the perfect outer layer for your winter adventures.",
+ "Price": 189.99,
+ "Embedding": [-0.008242342, -0.008523405, -0.009739167, 0.008987486, -0.006010177, 0.0227988, -0.031897407, -0.0461728, -0.004225753, -0.041754227, 0.0039610304, 0.008458042, -0.0026668322, -0.013053098, 0.0013358672, -0.02902141, 0.02419758, -0.00016453228, 0.013059635, -0.010425484, 0.0042780433, 0.029282864, -0.012105327, 0.002586762, -0.016262447, -0.035479326, 0.020994768, -0.012203372, 0.032132715, 0.003232227, 0.027452685, -0.0020916332, -0.03061628, -0.0057846727, -0.006049395, -0.007248816, -0.0011152653, -0.020223478, 0.01093532, -0.01617094, 0.035505474, -0.008948268, 0.004160389, -0.0023890373, -0.021739911, -0.003732258, -0.004307457, -0.022811875, -0.009967939, 0.009360058, -0.0048859245, 0.0057291137, -0.020419568, 0.0031194747, -0.0005437429, 0.0048859245, 0.010601966, 0.019151516, 0.0047584656, -0.03461653, -0.022811875, -0.019439116, -0.022119021, 0.004209412, 0.010177103, -0.029884208, -0.01627552, -0.008418824, 0.0035230946, 0.00939274, 0.02095555, 0.025282616, 0.00332537, 0.014066233, -0.007693288, -0.014915959, -0.024537472, 0.0043401388, 0.0022697488, -0.004715979, 0.03490413, -0.034956418, 0.012379854, 0.016327811, 0.025648652, 0.03260333, -0.0008076482, 0.015726468, -0.03192355, -0.017438991, 0.030825444, 0.01593563, 0.0048140245, 0.0293613, -0.030877734, 8.0632046E-05, 0.015033613, 0.0021896784, 0.0022419693, -0.013334162, 0.00966073, -0.02491658, -5.259722E-05, -0.00462447, -0.045571458, -0.019962024, 0.010137884, 0.018484809, 0.010353584, 0.013491034, -0.034224346, 0.017412845, 0.026851341, -0.04036852, 0.024511326, 0.014667577, 0.041754227, 0.008222733, 0.018720116, -0.023387073, 0.0036472853, 0.024615908, 0.016380101, -0.007471052, 0.017805027, -0.007065798, -0.02815861, -0.008458042, 0.026040833, -0.0046669566, 0.023975344, 0.017805027, -0.0064023584, -0.006062468, -0.018850844, 0.017425919, -0.006745517, 0.014484559, 0.014876741, 0.014027014, 0.0056343367, 0.0054774643, -0.016053284, -0.00828156, -0.0055755097, 0.0013366843, -0.003068818, 0.03370144, 0.0071703796, -0.007614852, 0.012948517, -0.035662346, 0.034067474, 0.008190051, -0.008275024, 0.0016496122, 0.004251898, 0.010131348, -0.018471735, 0.0111510195, 0.006137636, -0.022105947, -0.0025426415, 0.013007344, -0.0014110353, 0.016053284, 0.01602714, -0.0087587135, 0.009026704, 0.010588893, 0.0086345235, 0.0464604, -0.018759334, 0.014523777, 0.024655126, 0.02448518, -0.012196836, -0.007778261, -0.00266193, -0.003287786, 0.003197911, -0.026877485, 0.013412598, 0.024955798, -0.030171808, 0.021360803, 0.018393299, -0.0021929466, -0.0014878375, -0.029805772, -0.0027223912, -0.0050035785, 0.008458042, 0.015478085, -0.65719116, -0.00406888, -0.010144421, -0.02206673, 0.024171436, -0.004363016, 0.010033303, 0.0060330546, -0.0028759956, 0.011628173, 0.015569594, 0.026929777, -0.0067128353, -0.02075946, -0.009909112, -0.042094115, -0.0034708038, -0.0070331166, -0.004977433, 0.015582667, -0.015373504, 0.012484435, -0.017321337, 0.012085718, 0.007556025, 0.002550812, 0.015687248, -0.01830179, 0.002369428, 0.036342125, -0.023779254, 0.029962644, 0.015373504, 0.024354454, 0.046251237, -0.037492525, 0.004232289, 0.042512443, 0.026759831, 0.035819218, -0.016000994, 0.020628732, 0.016393175, 0.011713145, -0.00034254577, 0.0112752095, 0.0041440483, 0.00077128975, -0.0135956155, -0.015242777, 0.021308513, -0.013314553, -0.011785045, 0.0014682284, 0.010418948, -0.007993961, 0.018667826, 0.017164465, -0.007431834, 0.015778758, -0.0016463441, 0.012915835, 0.0011079119, -0.030459408, -0.014549923, 0.0235178, -0.04246015, -0.016550047, 0.007196525, -0.031086897, 0.010778447, 0.019765934, -0.0066997623, 0.00953654, 0.006320654, 0.010438557, 0.009065922, 0.0017419382, 0.0052911784, 0.012968126, -0.0027272934, 0.009713021, -0.025217252, -0.020223478, 0.018484809, -0.020746386, 0.0045427657, 0.0041799983, 0.012131472, 0.00820966, 0.020733314, -0.0018448858, 0.00063606893, -0.025295688, -0.009987548, 0.01195499, -0.0060232496, 0.027923303, 0.02482507, -0.020001242, -0.020681024, -0.012151081, -0.010373193, -0.0076083154, 0.032132715, 0.023112547, 0.008346924, -0.018563244, 0.007706361, -0.03895667, 0.010693475, -0.02274651, -0.013464889, -0.020589514, -0.007431834, -0.03174053, 0.017974973, 0.003532899, 0.021230076, -0.025282616, 0.010118275, -0.008431896, -0.00034213727, 0.018236427, -0.029753482, 0.021112422, 0.012484435, 0.01308578, -0.03153137, -0.03262948, 0.030250244, 0.030171808, 0.012464826, -0.00029393166, 0.018471735, 0.020785604, 0.0075168065, 0.0023056988, 0.028289339, -0.025439488, -0.051035848, -0.009477712, -0.009719558, -0.022445839, -0.014628359, -0.03882594, -0.031557515, 0.0056702867, -0.0077717244, -0.0021847761, -0.012883153, 0.007484125, 0.0055657052, -0.004042735, 0.018824698, -0.0045427657, 0.016484683, 0.01279818, -0.014040087, -0.007046189, -0.0030018203, -0.00051187817, 0.0027746821, -0.00842536, -0.01356947, 0.0011937015, -0.011641245, 0.014628359, -0.0031635952, -0.040107064, -0.001256614, -0.008340388, -0.017961899, -0.0020932672, 0.0035427036, 0.004529693, 0.0028155344, -0.0012247493, -0.010497384, -0.0054055643, 0.0034544629, -0.0055330233, -0.01704681, -5.6682443E-06, 0.03255104, 0.0067716623, 0.004461061, 0.021635331, -0.0025736892, -0.0029348228, -0.0010417313, 0.00946464, 0.012360245, 0.013000807, -0.03056399, -0.028472356, 0.02776643, -0.0016414418, 0.025570216, 0.014981322, 0.02100784, -0.021478457, 0.020145042, 0.0030459408, 0.020602586, -0.021426167, 0.010124812, -0.017033737, 0.018262573, 0.002622712, -0.007817479, -0.02434138, -0.015831048, -0.022328183, -0.009758776, 0.01713832, 0.014236178, 0.029858064, -0.00042077777, -0.013144607, 0.002643955, 0.0059284726, 0.010523529, -0.024419816, -0.018680898, -0.016471611, -0.0239492, 0.015922558, -0.009811067, -0.014301541, -0.0067585898, 0.010981074, 0.03336155, 0.0042551663, 0.015491158, 0.004987238, -0.01120331, -0.022877237, 0.03119148, 0.0061670495, 0.039191976, 0.016000994, 0.006765126, -0.02482507, 0.03866907, -0.0015491158, 0.04178037, -0.002959334, -0.015674176, -0.0065298174, 0.011242528, -0.006784735, -0.008863295, -0.0013080877, 0.011693536, -0.02631536, 0.037204925, 0.008510333, 0.0035623128, 0.030380972, -0.0059807636, -0.0036146035, 0.008105079, 0.005957886, 0.04230328, 0.00076557044, -0.027374249, -0.014628359, -0.028210903, -0.015909484, 0.016458537, -0.014131596, -0.009373131, -0.017700445, 0.013268798, -0.0008971145, 0.018144917, 0.015399649, 0.00021324854, 0.03260333, -0.006104954, -0.021230076, -0.0025442757, 0.020994768, 0.01002023, -0.003954494, -0.021975221, 0.01405316, 0.0072030616, 0.041937243, 0.017791955, -0.000978819, -0.017752737, 0.0025475437, 0.012151081, 0.00046285553, 0.035191726, -0.03398904, 0.0069089257, 0.005268301, 0.006693226, 0.008935195, -0.0022909918, -0.022184383, 0.03597609, 0.025648652, -0.0021602649, -0.025648652, 0.04400273, 0.008294633, 0.008915586, -0.022145165, 0.0071442346, -0.014118523, -0.0012615162, 0.0045787157, -0.010216321, -0.023988418, 0.0236616, 0.011451691, -0.0047650016, -0.006121295, -0.008183515, -0.009065922, 0.07592628, 0.01830179, 0.012425608, 0.037074197, 0.014144669, -0.028367775, -0.010706547, -0.0021831421, 0.01946526, -0.014366905, 0.017569719, -0.0006266729, -0.014942104, -0.011994209, -0.009144358, -0.012693599, 0.007137698, -0.006062468, -0.038878232, -0.0050918194, -0.0011765437, -0.018824698, 0.0062029995, 0.010523529, 0.0016406247, 0.010713084, 0.014170814, 0.03312624, 0.017399773, -0.011530127, 0.00101722, -0.004117903, -0.008935195, 0.014746014, 0.007288034, -0.009484249, 0.0031505225, -0.016576193, 0.0055787778, 0.0019854174, 0.012843935, 0.01970057, -0.0033923674, 0.0057258457, 0.031086897, 0.0013775366, -0.013857069, 0.025753234, 0.0073664705, -0.023047183, 0.007085407, 0.019203806, -0.01274589, -0.016157866, -0.017739663, 0.01694223, -0.013543325, -0.017033737, 0.006343531, -0.03584536, -0.019713642, -0.021164713, 0.031818967, -0.014576068, -0.013948578, -0.019713642, 0.0119746, 0.019661352, -0.013961651, 0.0021749716, -0.031897407, -0.014981322, -0.0063108495, 0.017360555, 0.031897407, 0.01801419, 0.00772597, -0.007065798, 0.0025655187, 0.0053303964, 0.022694219, -0.001885738, -0.00095267355, 0.0050362605, 0.031139188, 0.003068818, -0.007863234, 7.9712874E-05, -0.007693288, -0.012569408, 0.016471611, 0.0033890994, 0.009994085, -0.013843996, 0.00030639156, 0.028080175, 0.019086152, 0.01821028, 0.021661475, -0.0020573172, 0.026668323, 0.007176916, -0.0017876927, 0.009882967, 0.02534798, -0.00883715, -0.0010311098, 0.014549923, 0.0136609785, 0.017059883, 0.001921688, -0.0037845487, -0.0059807636, -0.027348103, -0.026877485, -0.0026112732, 0.017020665, 0.0011773607, 0.01405316, -0.02781872, -0.018327935, -0.031060752, 0.021138567, 0.010445093, -0.006921998, -0.0015768952, -0.005755259, 0.0013056366, -0.0113994, -0.000564169, 0.0021896784, 0.015177413, -0.0087783225, -0.00953654, -0.016680775, -0.021609185, -0.021347731, -0.003715917, -0.010811129, -0.020301914, 0.008275024, 0.0057617957, 0.02313869, 0.00932084, 0.0013906092, -0.022864165, -0.014602214, 0.0047813426, -0.035923798, 0.028655374, -0.0011740925, -0.009837212, -0.000702658, -0.013948578, -0.016693847, -0.037780125, -0.04481324, -0.003846644, 0.011883091, 0.028498502, 0.015556522, 0.00709848, -0.006902389, 0.039558012, -0.009118213, 0.009922185, -0.011066047, -0.0032828837, -0.018890062, 0.025282616, 0.006654008, -0.003977371, -0.0025606165, -0.03163595, -0.0137132695, -0.016536975, 0.0010784983, -0.018968498, -0.010758838, -0.016680775, -0.0028351434, -0.0018546904, -0.011549736, -0.0062029995, -0.025034234, 0.018824698, 0.017321337, 0.0013611956, 0.010105203, 0.024785852, 0.00062708143, -0.010516993, 0.013883215, 0.012464826, -0.0019249561, 0.004251898, -0.008301169, -0.027687993, 0.0050395285, 0.018262573, 0.0031554247, 0.011752363, 0.012634772, -0.0051800604, 0.0033694902, 0.028838392, -0.00539576, -0.014549923, 0.024419816, -0.014785232, -0.010811129, -0.016863791, -0.022668075, -0.030982316, 0.015281995, 0.017661227, -0.0135563975, 0.023635454, -0.011314428, -0.00820966, 0.012151081, -0.017295191, 0.046669565, -0.0045394977, 0.011445155, 0.011340573, -0.009340449, -0.015295068, -0.020079678, -0.0051996694, 0.017438991, -0.0036570898, 0.022354329, -0.013118462, -0.032394167, 0.0049610925, 0.0066245943, 0.0020033924, -0.010569284, 0.021883711, 0.0017321337, 0.030747008, -0.021347731, -0.040603828, -0.017569719, 0.000150234, -0.012791644, 0.023308637, -0.0047257836, 0.0136348335, 0.0111248735, 0.040577684, -0.019033862, -0.00966073, 0.01984437, -0.008373069, 0.035714637, -0.01777888, 0.026772903, -0.015098977, 0.003199545, 0.026328431, -0.010249003, 0.0005028907, 0.008111615, 0.007451443, 0.009137822, 0.02240662, -0.00056090084, 0.019975096, -0.023125619, -0.01602714, -0.01064772, -0.0137524875, 0.008948268, -0.014353832, -0.017020665, -0.016092502, 0.012634772, 0.0055820458, 0.007078871, -0.02317791, -0.0018579585, -0.004170194, -0.013504107, -0.011360182, -0.026433013, -0.021478457, -0.014549923, -0.018484809, -0.01641932, 0.0022975283, 0.0069808257, -0.0032959562, -0.008052788, 0.0041832663, -0.011412473, 0.00650694, -0.042983063, 0.002941359, 0.004810756, 0.022772655, -0.005307519, 0.014863668, 0.010628111, -0.021517675, 0.0111967735, 0.005117965, -0.03262948, -0.052160103, 0.026982067, -0.011981136, -0.003568849, -0.010216321, -0.0014183887, -0.015987922, 0.00987643, -0.0045231567, -0.014876741, 0.017556645, 0.0054807323, -0.00018352855, 0.028655374, -0.03119148, 0.0027599754, -0.012490972, 0.012327563, 0.0027240254, -0.020301914, -0.02941359, -0.0023792328, 0.0034446584, 0.017347483, -0.014379978, 0.0137524875, -0.00038094685, -0.012575944, 0.004846706, 0.007484125, 9.574737E-05, 0.0086541325, 0.015896412, 0.0086410595, 0.008516869, -0.0066997623, -0.034407366, 0.010353584, -0.012915835, -0.013053098, -0.034407366, -0.0007059262, 0.039322704, 0.011281746, -0.013026953, -0.008941731, 0.009647658, -0.040865283, 0.0026929777, -0.0055853142, 0.026184632, 0.009543076, 0.02482507, -0.0055885823, 0.020837896, 0.016693847, 0.0063337265, 0.009092067, -0.028210903, -9.661548E-05, 0.0002606371, 0.01713832, -0.012477899, -0.032080423, -0.03153137, 0.002696246, 0.017007591, 0.014327687, 0.018602462, -0.030354826, 0.0061507085, -0.0064807944, 0.019569842, 0.02472049, 0.043139935, 0.0020932672, -0.020406496, -0.02873381, -0.0051146965, 0.015582667, 0.00092571107, 0.004823829, 0.0072749616, 0.023164837, -0.012785108, -0.013216507, -0.036106817, -0.0071507706, -0.008026642, 0.003787817, 0.018288717, -0.00960844, 0.0038760577, 0.008242342, -0.016837647, -0.0025949324, 0.023374, -0.018733189, -0.015295068, 0.029492028, -0.014576068, -0.0053630783, 0.004062344, 0.028629228, 0.0021586309, -0.003915276, -0.0087325685, 0.0004399783, -0.013098853, -0.0040884893, 0.0021749716, -0.012850471, -0.019164588, -0.0136348335, 0.009673803, 0.029047554, -0.00473232, -0.015713394, -0.026877485, 0.009641121, -0.016471611, 0.0007500466, -0.025988542, -0.0049676285, 0.0019167857, 0.00647099, 0.029047554, 0.20905873, 0.0067193713, -0.0059807636, 0.02511267, 0.002640687, 0.022158239, 0.012288345, -0.010360121, 0.009791458, -0.0008096908, 0.010974538, 0.004843438, -0.028132467, 0.0025557142, 0.018341009, -0.007412225, -0.047192473, -0.011948454, -0.02385769, -0.008301169, -0.007105016, -0.0072030616, 0.011288282, -0.022981819, 0.009039777, 0.004189803, -0.006006909, 0.017504355, 0.01641932, -0.008863295, -0.003862985, 0.005451319, 0.010615038, -0.013196898, -0.005899059, -0.0006066553, 0.017791955, -0.0009665633, 0.002331844, 0.0044708657, 0.008190051, 0.009196649, -0.0070004347, -0.007248816, 0.009366594, 0.028655374, -0.024942726, 0.016889937, 0.004970897, -0.004081953, -0.025504852, -0.0111510195, 0.012641308, 0.016144793, 0.014223105, -0.0060722725, 0.0287861, -0.015334286, -0.0016961837, 0.0010074155, -0.023164837, 0.0038303032, -0.019595988, 0.0238054, -0.014667577, 0.01679843, 0.0057454547, -0.010961465, -0.017399773, -0.007451443, 0.017452065, 0.012654381, -0.011621636, 0.046512693, -0.0058435, -0.0136217605, -0.019582916, 0.0066834213, -0.009405813, 0.022393547, -0.007667143, -0.0011879823, 0.01864168, -0.011582418, -0.011033365, -0.041309755, 0.0001237822, -0.002457669, -0.004046003, 0.0031472542, 0.010615038, -0.010438557, -0.009941794, 0.006902389, -0.0009077361, 0.016746137, -0.03555776, 0.03843376, 0.004863047, 0.004304189, -0.011072583, 0.0024086463, 0.0013979626, 0.00896134, -0.014340759, 0.012039963, 0.006725908, 0.023609309, 0.008503796, -0.01419696, -0.01009213, -0.048473597, 0.011517055, -0.018576317, -0.0046734926, 0.0046146656, 0.00037481904, -0.016576193, 0.00057029683, -0.008987486, 0.030982316, -0.006245486, 0.025452562, 0.00018618394, -0.0008150016, -0.034564238, -0.011549736, 0.007980888, -0.012000745, -0.01869397, -0.0028825318, 0.00469637, 0.022903383, -0.026929777, 0.0043237978, 0.02482507, 0.017543573, -0.02472049, -0.0071507706, 0.005193133, -0.013477961, -0.014589141, 0.0074775885, 0.015177413, 0.043427534, -0.026080051, 0.011392864, -0.03176668, -0.007118089, 0.015059759, -0.012399463, -0.015987922, -0.003807426, -0.0030361363, 0.0024151825, -0.02153075, -0.040969864, -0.019595988, -0.011072583, 0.011222919, -0.014785232, 0.036812745, 0.023870762, -0.013151144, -0.016615411, 0.012523653, -0.16576193, 0.0110791195, 0.0025164962, -0.01960906, 0.012857008, -0.0060167136, 0.007399152, -0.00229426, -0.030747008, 0.0072945706, 0.028367775, 0.026223851, 0.00059154, -0.00543171, 0.00883715, 0.016981447, 0.002643955, 0.01511205, 0.0011389597, 0.009445031, 0.033100095, -0.02457669, 0.0061245635, 0.008895977, 0.0086998865, -0.0030426725, -0.00039728775, 0.009830676, 0.008843686, -0.016327811, -0.005140842, -0.0075364155, 0.028759956, 0.0045427657, 0.020014314, -0.026851341, -0.0024445963, 7.230841E-05, -0.008366533, 0.026080051, 0.015059759, 0.012222981, 0.0036897715, 0.00046448963, -0.013961651, 0.007863234, -0.0044120387, 0.010667329, 0.007876306, -0.0299365, 0.023622382, -0.009144358, -0.011438618, -0.006539622, 0.053859554, 0.011222919, 0.0050199195, 0.007902452, 0.02434138, 0.010497384, 0.016484683, -0.016759211, 0.0111314105, -0.00580755, -0.0057454547, -0.01253019, 0.023400147, -0.0039446894, -0.030694716, 0.0018171063, 0.0032256905, 0.009373131, -0.017412845, -0.018707044, 0.024851216, 0.008830613, -0.014013942, -0.022824947, 0.012373317, -0.033544566, 0.012994271, 0.03262948, -0.013870142, 0.0032812494, -0.017935755, 0.0009722826, -0.042381715, -0.00010662427, 0.018876988, -0.0078109424, -0.012281808, -0.019491406, 0.010706547, -0.0035067536, -0.0031881065, 0.010392802, 0.02115164, 0.004477402, 0.0075168065, -0.0030655498, 0.0032109837, -0.012693599, -0.026066978, 0.02342629, -5.755055E-05, -0.010405875, 0.022105947, 0.018667826, 0.0015605544, -0.0046342746, -0.0017631814, 0.021125495, -0.010588893, 0.0030263318, 0.012092254, 0.011896163, -4.6137466E-05, -0.018798552, -0.0020834627, -0.026106196, 0.03317853, -0.01376556, -0.010098666, -0.0034119766, -0.017164465, -0.018602462, -0.086123, -0.023818472, 0.029465882, -0.00428458, 0.01864168, 0.008183515, -0.009850285, 0.03597609, -0.0041799983, 0.005176792, -0.0028188024, -0.024955798, 0.0013064537, 0.010497384, 0.031609807, -0.009987548, -0.002052415, -0.012490972, -0.003273079, 0.023988418, -0.007902452, -0.008915586, -0.037492525, -0.00046734928, -0.024040708, -0.01202689, -0.02328249, 0.0059154, 0.018942352, 0.012164154, 0.013778633, 0.012739353, 0.0051506464, -0.017072955, -0.027034359, -0.014040087, -0.021125495, -0.008150833, 0.02776643, -0.01694223, 0.0035263628, 0.008523405, -0.012249127, -0.03124377, 0.004497011, -0.00070551765, 0.0050329925, -0.008869831, 0.024537472, -0.0022158239, -0.007556025, -0.008307706, 0.010981074, -0.015373504, 0.028524647, -0.025073452, 0.010216321, -0.0007545403, -0.007118089, 0.0038335714, 0.00020262696, 0.017844245, -0.01253019, 0.0111706285, 0.0011781778, -0.00932084, -0.0032109837, -0.016092502, 0.015517304, 0.0049055335, 0.0009518565, 0.0034479266, -0.015478085, 0.021256221, -0.016131721, -0.0070396527, -0.031139188, 7.920222E-05, -0.0074383705, -0.0030916953, -0.0025900302, -0.027635703, 0.002960968, -0.0055591688, 0.023779254, 0.0111183375, 0.0043237978, -0.03346613, 0.002295894, -0.025073452, -0.0027191231, 0.01641932, 0.03798929, -0.02167455, -0.014602214, 0.012190299, -0.020066606, -0.023923054, -0.009000558, 0.010889565, -0.0074579795, -0.004193071, -0.06980826, 0.023308637, 0.021413093, -0.0293613, 0.0053826873, 0.016131721, 0.011046438, -0.0071246256, 0.016667701, -0.019308388, -0.010536602, 0.008373069, -0.0029511636, -0.0044872067, -0.001053987, -0.014040087, 0.010588893, 0.013870142, 0.026276141, 0.004170194, -0.007065798, -0.011334037, -0.0087783225, -0.0068893167, -0.04687873, 0.0086345235, -0.034067474, 0.01405316, 0.007503734, -0.006029786, -0.00083828735, -0.014066233, 0.014066233, 0.050617523, -0.024119144, -0.049310252, 0.03119148, 0.019452188, -0.0028057299, -0.036734305, -0.023687745, -0.0299365, 0.0136609785, -0.007431834, -0.02405378, -0.019569842, 0.0005886803, 0.017713519, 0.015412722, -0.007013507, 0.023583164, 0.016262447, 0.0007766005, -0.039741028, -0.012772035, -0.019151516, -0.008242342, -0.0013897922, -0.010373193, -0.025308762, 0.03249875, -0.00087178615, 0.03317853, -0.004879388, 0.03244646, -0.014785232, -0.012118399, 0.009124749, -0.005931741, 0.01057582, -0.012719744, -0.011360182, 0.022328183, 0.0086345235, -0.0021341194, -0.0085626235, 0.0008431896, -0.00022121472, -0.022864165, 0.027165085, -0.019099224, -0.004879388, -0.04099601, 0.002567153, 0.0019282243, 0.018393299, -0.033623002, 0.0027550731, 0.00528791, 0.01898157, -0.026982067, 0.0060918815, -0.03893052, -0.0229426, 0.027844867, -0.007013507, 0.0026684664, -0.008268488, -0.010765375, 0.0020638537, -0.01322958, 0.031165333, -0.017961899, -0.014562996, -0.0030802565, -0.013262262, 0.009118213, -0.023439365, -0.02815861, -0.0012664185, 0.014419196, -0.008438433, -0.029152136, 0.013040026, -0.021373875, -0.0063108495, 0.014746014, -0.02747883, -0.023295565, 0.017857319, 0.023609309, 0.021648403, 0.013242653, -0.0064938674, 0.0012876616, 0.0067716623, -0.0035721173, -0.008399215, -0.009235867, 0.010713084, 0.03385831, -0.0046113976, 0.025648652, 9.6002695E-05, -0.007078871, -0.008882904, -0.0006560865, 0.035766926, -0.009307767, 0.06191234, 0.013896287, -0.032864787, 0.017269047, -0.01617094, 0.017805027, 0.0007398335, 0.006993898, -0.034459654, -0.049127232, 0.0024315235, 0.005660482, -0.010856884, 0.008549551, -0.04172808, 0.0026488572, 0.017595863, -0.0015254215, -0.015425795, -0.0018448858, 0.02563558, -0.027295813, 0.020171188, -0.00650694, -0.013040026, -0.006134368, 0.028080175, 0.01496825, -0.0113275, -0.019491406, 0.019086152, 0.0001827115, -0.017739663, -0.027661849, 0.007922061, -0.010294757, -0.0026946117, 0.018850844, -0.020576442, 0.041884955, 0.01030783, 0.024890434, -0.017791955, -0.031452935, 0.01593563, 0.0037257215, -0.023648527, -0.029544318, 0.015059759]
+ },
+ {
+ "Id": 56,
+ "Type": "Bags",
+ "Brand": "B&R",
+ "Name": "Traveler's Companion Duffel Bag",
+ "Description": "Whether you're embarking on a weekend getaway or a month-long expedition, the Traveler's Companion Duffel Bag has you covered. Made from durable waxed canvas in earthy brown, this versatile bag features multiple carry options, including shoulder straps and handles, and multiple compartments for organized packing. It even has a padded laptop sleeve, making it great for both adventure and work.",
+ "Price": 79.99,
+ "Embedding": [-0.0075491336, 0.00792325, 0.003331974, -0.027844947, -0.030597374, 0.0025787307, -0.016113726, -0.030223258, 0.010000932, -0.0018388487, -0.0033286335, 0.026588984, 0.0050873146, 0.02262068, -0.009372951, -0.005949118, 0.040564902, 0.02674932, 0.00085846346, -0.01779725, 0.000725268, -0.0053745825, -0.0035340635, -0.0057854424, -0.028272508, -0.0064368057, 0.0403244, -0.014844403, 0.023195215, -0.008297367, 0.0032668374, -0.0015607667, -0.026174784, -0.029875863, -0.004352443, -0.0067040315, 0.0010655635, -0.0179175, 0.022406898, -0.0061963024, 0.04278288, 0.023702944, 0.0106289135, 0.027417386, -0.013234367, 0.011196769, -0.0030931407, -0.014082809, -0.006386701, 0.01234584, -0.009165851, 0.01996178, -0.017169269, 0.013528315, -0.012880292, 0.0053645615, -0.0064434865, 0.02880696, 0.0060125845, -0.038106423, -0.022567233, 0.008036821, -0.022647401, -0.0010964616, -0.008865221, -0.020856988, -0.0027875009, 0.009032238, 0.029074186, 0.03652979, 0.018064477, 0.006243067, 0.024544707, 0.015766332, 0.025226133, -0.020950517, -0.032040395, 0.024157228, -0.006192962, -0.0009302804, -0.0060760505, -0.028352676, -0.03179989, -0.0052543306, 0.030784432, 0.004248893, -0.007809679, 0.026695875, -0.03425837, -0.0325214, -0.009887361, 0.008671483, -0.016407674, 0.0068677077, -0.005959139, -0.012112018, 0.012726638, 0.015793055, 0.00028622407, -0.015325409, -0.0033987805, 0.015525829, -0.006550377, -0.016447758, -0.032467958, -0.012853569, 0.0012417657, -0.002448458, 0.005324478, -0.01295378, -0.016808514, 0.011450633, 0.017449856, -0.03556778, -0.006874388, -0.010000932, 0.0013703682, -0.022340091, 0.004208809, -0.036930628, 0.01471079, 0.002827585, 0.044092286, -0.013434786, 0.012659831, 0.020041948, -0.022553872, -0.009593412, 0.035140216, 0.0059791813, -0.00092526997, 0.042863045, 0.01861229, -0.012018489, -0.003650975, 0.0076693855, -0.022994796, 0.028058728, -7.1177624E-06, 0.01255294, 0.016835237, 0.0118447915, -0.029394858, -0.016955487, 0.0008338285, 0.02848629, 0.01646112, 0.03415148, 0.0127065955, 0.008724928, 0.018037753, -0.0025954323, 0.0047766645, 0.020295814, -0.011557523, 0.039576165, 0.013815583, 0.021725472, -0.012499495, -0.0037612056, -0.027711334, 0.014724151, 0.022674125, -0.0066205235, 0.01994842, 0.0020743418, 0.03465921, 0.014831042, -0.0016033559, 0.012426008, -0.010842694, 0.017837334, -0.0158465, 0.017957585, 0.010929543, 0.029715529, 0.0166749, -0.00648357, -0.04946353, -0.0061963024, -0.022273285, 0.01707574, 0.00658378, 0.0292078, -0.017115824, -0.021939253, -0.003941583, 0.0061562182, 0.023515886, -0.020242367, 0.005635128, 0.010441855, -0.0016225628, -0.01038841, -0.6516038, -0.0054046456, -0.010969627, -0.019507496, 0.009192574, 0.008838499, 0.0026973123, 0.015258603, -0.014470287, -0.0048468113, 0.0063232346, 0.037892643, 0.0033470055, -0.017022295, 0.006573759, -0.008250602, 0.013869029, -0.013414744, 0.010468578, -0.005307776, -0.02664243, 0.026588984, -0.03815987, 0.0011691137, 0.009012196, -0.011597607, 0.010508661, -0.0025937622, 0.003547425, 0.013748776, 0.0022129652, 0.03383081, 0.0015048162, -0.013748776, 0.05104016, -0.003590849, 0.01275336, 0.02077682, 0.024718402, 0.03786592, 0.00085762836, -0.01871918, -0.0020142158, -0.009833916, -0.021324633, -0.0021144256, 0.04443968, -0.0029912607, 0.02108413, -0.04278288, 0.015191797, -0.00013089897, 0.0040250914, -0.016180532, 0.020803543, -0.005528237, 0.017850695, 0.0073420336, 0.026829489, -0.0073286723, -0.0042655948, 0.03746508, 0.011183407, -0.00076576945, -0.02510588, 0.022914628, -0.045027576, -0.009339548, 0.03137233, -0.029715529, -0.030356871, 0.032868795, 0.018705819, -0.011223491, 0.020322535, 0.028593179, -0.0022580596, -0.0059023537, -0.0011106579, 0.014884487, 0.016621456, -0.008584634, -0.008317408, -0.009339548, 0.049971256, -0.01707574, 0.00023632798, 0.0015156723, 0.019226909, -0.008731609, -0.011250214, 0.04302338, -0.017008934, -0.016474482, -0.024010254, 0.027818223, -0.009346228, 0.0021428184, -0.007702789, -0.0075691757, -0.0050539114, 0.007976695, -0.0008634739, -0.018959682, 0.007829721, 0.007990057, 0.0021578497, 0.044306066, 0.0070280433, -0.015472384, 0.010281519, -0.021364717, -0.00915249, -0.026482094, 0.0030396956, -0.024878738, 0.024157228, -0.009940807, 0.029608639, -0.048367903, -0.0026705896, -0.004990445, -0.00097537483, -0.0064334655, -0.019053211, 0.031612832, -0.008390896, -0.024451178, -0.025894197, 0.0066405656, 0.00813035, 0.017770527, 0.0016960498, 0.001564107, -0.0044693546, 0.033483416, 0.008150392, -0.021645304, 0.008798415, -0.03984339, -0.00047182085, -0.015098267, -0.0015883244, -0.04136658, 0.000118894684, -0.03321619, -0.013074031, -0.027497552, -0.032040395, -0.022500427, 0.0059925425, -0.028833684, -0.0035140216, -0.019066574, 0.0055482793, -0.015592636, -0.004175406, -0.018785987, -0.0010814301, -0.0038881379, 0.0021645303, -0.024771849, -0.028245786, 0.01819809, -0.03984339, -0.019627748, 0.002097724, 0.015766332, 0.00018664064, -0.052910745, -0.007983376, -0.009499883, -0.0007519906, 0.03888138, 0.0019540899, -0.0018037753, -0.016902043, -0.005648489, 0.024638236, -0.006653927, -0.014416842, 0.0006747456, -0.0048802146, -0.01265315, 0.02870007, -0.012820167, 0.015165074, 0.026535539, -0.012112018, -0.0045428416, 0.027069991, 0.009079003, 0.010268158, -0.003116523, -0.013722054, 0.0012684884, 0.005618426, -0.0038313523, 0.027764779, 0.005237629, 0.030704265, -0.03404459, 0.014483648, -0.033055853, -0.0094865225, -0.0567588, -2.1842592E-05, 0.003764546, 0.042649265, 0.024544707, -0.012633108, -0.03324291, -0.014657345, -0.014069447, -0.014069447, 0.031131826, 0.017730443, 0.0054781325, -0.024611512, 0.0054981746, 0.00978047, 0.003487299, 0.016407674, -0.016421037, -0.024598151, 0.016848598, -0.02426412, 0.006663948, -0.0037812477, -0.02992931, 0.029341413, 0.023783112, 0.0025904218, 0.025426552, 0.018545482, 0.011250214, 0.0035607861, -0.021177659, 0.048100676, -0.004609648, 0.014069447, 0.028245786, 0.024157228, -0.01151744, 0.019707916, 0.0049537015, 0.0010104482, 0.0023599395, 0.0066105025, -0.0069077914, 0.01779725, 0.012947098, -0.0028726791, -0.0155525515, 0.007702789, -0.0014831042, 0.026241591, 0.01676843, 0.03489971, 0.010375049, -0.0057954635, 0.0012618076, 0.018278256, -0.014269867, 0.03578156, -0.007188379, -0.016634816, -0.0148978485, -0.031078381, 0.0099541675, 0.0170891, -0.022300007, 0.014416842, -0.016995572, 0.016033558, -0.008631399, 0.0074823275, 0.0060059037, 0.010615552, 0.020723375, -0.019186825, -0.03407131, 0.0034037908, 0.021631943, 0.016006837, -0.010642274, -0.013488231, 0.027631165, 0.009252699, 0.025012352, 0.014056087, 0.023382273, -0.0033971102, -0.024090422, 0.013207644, 0.025052436, 0.014096171, -0.014056087, 0.026535539, -0.010161268, 0.009132448, -0.018451953, -0.019507496, -0.038560707, 0.020349259, -0.005872291, -0.04219498, -0.009332867, 0.01398928, 0.0050973357, -0.014176338, -0.022887904, 0.0012459412, -0.017850695, 0.0049603824, 0.005832207, -0.017356327, 0.0075892177, 0.0364229, -0.00053278176, 0.008103628, -0.012105336, -0.016167171, -0.002129457, 0.10031663, -0.010769207, -0.023168493, 0.018371785, 0.026001088, -0.03663668, -0.02303488, -0.0054881535, 0.008618038, -0.0013428106, -0.0037912684, -0.015058184, 0.0024133846, 0.001275169, 0.0014805989, -0.0019808125, -0.008604676, -0.016942127, 0.00013768401, -0.03147922, -0.0022797717, -0.022246562, -0.014684067, 0.01851876, 0.017302882, 0.0017336286, 0.016527927, 0.028192341, 0.0054079858, -0.0069612367, -0.000106994776, 0.024731765, 0.011129962, 0.015873224, -0.012840209, 0.0034271732, -0.0008551231, 0.0036643362, 0.012265672, 0.0039215414, 0.0073620756, 0.027003186, 0.006914472, -0.00236662, 0.025052436, 0.00027077508, -0.007970015, 0.010228074, 0.009286103, -0.010789249, 0.020536317, 0.018144643, -0.01162433, -0.012025169, 0.016434398, 0.014617261, -0.009125767, 0.011190088, -0.02427748, -0.035353996, 0.013234367, -0.022393538, 0.020202285, 0.008304047, -0.015913308, -0.032067116, -0.015659442, 0.020041948, -0.0050772936, -0.009239338, -0.0054781325, -0.004045133, 0.016808514, 0.005528237, 0.015980113, 0.009733706, 0.011463994, -0.0002860153, 0.032895517, 0.0032250835, 0.022032782, 0.008210518, -0.0015824789, -0.018158006, 0.018879516, 0.006987959, 0.011965043, -0.010421813, -0.014069447, 0.0057654004, 0.0027808202, 0.007602579, 0.015058184, 0.0064167636, -0.00565517, 0.0093929935, 0.017717082, 0.019467412, 0.009312825, -0.0350066, 0.031345606, -0.005017168, -0.0022714208, 0.0016960498, 0.010461897, -0.010822652, 0.00095616793, -0.0030948108, -0.0031749785, 0.022099588, 0.0067207334, -0.02108413, 0.0036576556, -0.016274061, -0.011437272, 0.013441467, 0.00017547143, -0.001820477, 0.027283773, -0.030196534, -0.029555192, -0.044680182, 0.008370854, -0.0038012895, -0.00462969, 0.01048862, 0.0021110852, -0.02870007, -0.015111629, 0.0056952536, 0.005855589, 0.0033186127, -0.011637691, -0.009533287, -0.01902649, -0.015873224, -0.019774722, 0.008858541, -0.0038513944, -0.005925736, -0.024330925, 0.01152412, -0.0014764235, -0.012880292, -0.026829489, -0.02242026, -0.013595122, 0.0002325701, 0.0033553562, 0.053204693, -0.002241358, 0.015285326, -0.009740387, -0.007529092, -0.018946322, -0.034498874, -0.023328828, 0.0034021207, 0.017556747, 0.034552317, 0.0033002407, -0.010568787, 0.022687485, 0.008791734, -0.007281908, -0.008711567, 0.012900334, -0.01942733, -0.0120318495, -0.011510759, 0.017556747, -0.009272741, -0.009686941, -0.0154323, 0.020335896, 0.025346383, -7.5026826E-08, -0.022059504, -0.022032782, -0.04451985, 0.005134079, -0.014069447, 0.0077295112, 0.009740387, -0.0350066, -0.00057662354, 0.03260157, 0.03497988, 0.0038714362, 0.0154590225, 0.034231648, 0.0056752115, 0.0111700455, 0.015245242, -0.024224035, 0.015405578, 0.0021211063, -0.03115855, -0.012826847, -0.004455993, 0.01347487, -0.0011014721, 0.01739641, -0.015686166, 0.0017135866, 0.004673114, -0.0055482793, -0.007522411, 0.013140838, -0.0054681115, -0.033082575, -0.016407674, -0.015472384, -0.028058728, 0.014309951, 0.0058923326, -0.019534219, 0.02398353, -0.019360522, -0.010528703, -0.018184727, -0.009960848, 0.029768974, -0.021538414, 0.0067942203, 0.014416842, 0.006543696, 0.0011565874, -0.017463218, 0.015766332, -0.0109829875, 0.011403869, 0.03652979, 0.0012150431, -0.005424687, 0.011911598, -0.004492737, -0.020041948, -0.02314177, 0.0053712423, 0.024330925, 0.01841187, -0.0038847977, -0.019614387, 0.007081488, -0.0067641577, -0.012372563, 0.0010221393, -0.0016743378, -0.03722458, 0.0032534762, 0.019467412, -0.014630622, 0.003650975, -0.0010271498, -0.009914083, 0.0003991688, -0.009847277, -0.004288977, -0.024651596, 0.009513245, 0.00042526508, -0.0015590965, 0.0019808125, -0.00679088, 0.03249468, -0.0023699603, 0.026254952, 0.004719879, 0.01747658, -0.018532122, -0.009560009, -0.00043632992, -0.014497009, 0.013935835, 0.008324089, -0.0078564435, -0.0077829566, 0.0057687405, -0.005945778, 0.0128936535, -0.0069478755, -0.004910277, 0.003437194, -0.0019223569, 0.008350812, -0.011838111, -0.048394624, 0.0053545404, -0.017236076, -0.026001088, 0.0028225745, -0.0029344752, 0.0411528, -0.01265315, -0.009379632, -0.0052109067, 0.01831834, -0.008116989, 0.02479857, 0.028513012, 0.016902043, -0.03805298, 0.010475258, 0.0052409694, -0.027003186, 0.00066890003, -0.005174163, -0.016741708, -0.017129185, 0.002243028, -0.00083549874, -0.0067040315, -0.00037996194, 0.013501593, -0.017236076, 0.00678754, 0.009967529, -0.037812475, 0.007869805, -0.0009628486, -0.0050572515, 0.029688805, -0.008711567, -0.010842694, -0.003033015, 0.014363396, 0.004055154, -0.012646469, -0.008203837, -0.017556747, 0.0017119164, 0.025546804, -0.00853787, -0.0126130665, -0.006359978, -0.018652374, -0.0035641266, 0.0037879283, 0.0035574457, 0.022660762, 0.008157073, -0.015285326, 0.01759683, -0.024063699, -0.001429659, 0.0050539114, -0.01821145, -0.017008934, -0.007602579, -0.009706983, 0.044466402, -0.0103282835, -0.026094617, -0.017062379, 0.014978016, -0.0350066, -0.019160103, 0.025039073, 0.009493203, 0.021525053, 0.020442788, -0.010929543, 0.044065565, 0.010842694, 0.011544162, 0.018492037, -0.023342188, -0.0023849919, -0.0022864523, 0.008891945, -0.016728345, -0.020282451, -0.020456148, 0.004910277, 0.031826615, 0.0047265594, 0.000967024, 0.007602579, -0.023996893, -0.012526218, 0.023756389, 0.014884487, 0.020522956, 0.0039115204, 0.0012810145, 0.0028526373, -0.018064477, 0.01738305, 0.019213548, -0.0053612213, 0.0133612985, 0.00174866, 0.0022781014, -0.010041016, -0.020095393, 0.0150181, -0.01624734, 0.0007056436, 0.0039248816, -0.0076359822, 0.011016391, 0.0019073253, -0.023475802, -0.009960848, 0.02037598, -0.009680261, -0.010248116, 0.0013152529, -0.027524276, 0.02079018, -0.02519941, 0.023502525, -0.007736192, -0.017837334, -0.01696885, -0.013922473, -0.019507496, 0.024143867, 0.015485745, -0.025453275, -0.0040083895, -0.0027490873, -0.0076627047, 0.017409772, -0.006466869, 0.004816748, -0.036155675, 0.013301173, -0.0100476965, -0.0118648335, -0.021832362, -0.012005127, -0.005434708, 0.022139672, 0.008477744, 0.19699898, 0.004876874, 0.0066906703, 0.023408996, 0.0036710168, 0.013254409, 0.021845724, 0.0018471995, 0.0002530296, 0.0023014836, -0.015993474, 0.018558845, 0.013074031, -0.004372485, 0.0025687097, -0.007863124, -0.033055853, -0.02077682, -0.025974365, -0.0058054845, 0.00026325934, -0.0060159247, 0.016180532, -0.013047309, 0.021231104, -0.0089988345, 0.001738639, -0.02642865, -0.004479375, -0.0054447292, -0.0015382195, -0.0372513, -0.0038881379, -0.011089878, 0.0044459724, 0.005090655, 0.027390663, -0.019280354, -0.017316243, 0.018064477, -0.004085217, 0.013555038, 0.0012417657, 0.012212227, -0.011824749, 0.009413035, -0.015793055, 0.006042647, 0.024157228, -0.011744582, 0.007108211, -0.009132448, 0.011029752, 0.015245242, -0.0073420336, -0.014737513, 0.021284549, 0.0062196846, -0.006263109, 0.013514954, -0.023328828, 0.021859085, -0.020148838, 0.009352909, 0.014643984, -0.003971646, -0.004599627, -0.0018421891, 0.004556203, -0.02026909, -0.006533675, -0.0059290766, -0.00524765, 0.035514332, -0.008177115, -0.007642663, 0.017944224, 0.00042881418, -0.013481551, 0.022072867, 0.015058184, -0.023088325, 0.010555426, -0.0118447915, 0.011757943, -0.009266061, -0.00064050726, -0.01996178, 0.019774722, -0.023649499, 0.016100366, -0.023221938, 0.014109531, -0.02519941, -0.0009845607, 0.028887128, 0.00061420223, 0.026615707, -0.0048301094, 0.03097149, -0.02467832, 0.01234584, -0.014737513, -0.035835, -0.030303426, 0.00072109257, -0.0059190555, -0.003178319, 0.0076760664, -0.012178824, -0.00096034334, -0.029822418, 0.011811388, -0.020188922, -0.0066171833, 0.017556747, 0.019266993, -0.015619358, -0.012780082, -0.014323313, 0.012973821, -0.04133986, 0.022567233, -0.027764779, -0.031238716, -0.01985489, 0.0041186204, 0.0091858925, 0.000833411, -0.034338538, 0.014857764, 0.009172532, 0.02592092, -0.020589761, 0.010147907, -0.0102882, -0.0040083895, -0.034311816, -0.0105353845, 0.009058961, 0.010582149, 0.00095616793, 0.006663948, -0.01296714, 0.033991143, -0.01573961, -0.00043549485, -0.006663948, -0.017062379, -0.01861229, -0.006463528, -0.0150181, -0.021444885, -0.012105336, 0.011477356, -0.013675289, -0.049757477, -0.010542065, 0.0153654935, -0.02097724, 0.005287734, -0.00205764, 0.012993863, 0.005625107, -0.010842694, 0.01038841, -0.16974194, 0.030944768, 0.017276159, -0.01790414, 0.02180564, 0.017115824, 0.015699526, 0.011183407, -0.009346228, -0.020188922, -0.00032129747, 0.004262254, -0.03484627, -0.006954556, -0.021979336, 0.0011231842, -0.0075958986, 0.014951293, 0.0055850227, 0.012292395, 0.030597374, -0.009339548, -0.00030522217, 0.0027507574, -0.00648357, 0.009179212, 0.024918823, 0.0011716189, -0.018131282, -0.02324866, -0.0001644066, -0.030410316, 0.021738833, 0.0005649324, 0.009479841, -0.010281519, 0.00029895906, -0.009833916, -0.006460188, 0.022353454, -0.023355551, 0.012198865, 0.020148838, 0.010308242, 0.002324866, 0.0150849065, 0.011537481, 0.011056474, -0.012633108, -0.027818223, 0.005802144, -0.022700846, -0.009793832, -0.00915917, 0.009125767, 0.0028776897, 0.036262564, 0.003550765, 0.018171366, -0.028138895, -0.019881614, -0.027083352, 0.0023950129, -0.00462969, -0.0073487144, -0.030730987, -0.017610192, 0.01172454, 0.02499899, 0.013414744, -0.014269867, -0.006366659, -0.008036821, -0.011390507, 0.0032551463, 0.019347161, -0.009526606, -0.009399674, -0.002849297, -0.0116777755, -0.023128409, 0.044573292, -0.02694974, 0.0076493435, 0.0058689504, 0.010896139, -0.019534219, -0.0028376058, 0.01398928, -0.016861958, 0.004916958, -0.012332479, -0.0248921, -0.012305756, 0.010789249, 0.016581371, 0.010508661, -0.00019728793, -0.0055816825, 0.007295269, -0.0030179834, -0.0011273596, 0.00236662, 0.0052743726, 0.021631943, 0.021765556, 0.014871126, -0.012332479, 0.02715016, -0.0067942203, 0.0078029986, 0.017356327, 0.006563738, 0.0039983685, 0.0134548275, 0.0044994173, -0.0044693546, -0.034311816, 0.013154198, -0.013561718, 0.021565136, -0.009332867, -0.0037779072, -0.0114706755, -0.006139517, 0.03497988, -0.10528704, -0.010455216, 0.011704498, 0.016861958, -0.010662316, 0.01913338, -0.010294881, 0.027604444, 0.009219296, 0.014256506, 0.010962945, -0.006256428, 0.005277713, 0.0059992233, 0.0389081, -0.025640333, 0.013408063, -0.01924027, -0.022607317, -0.0019724618, -0.0031632874, 0.002623825, 0.0035240427, -0.009192574, 0.0016342539, -0.0128936535, -0.036048785, 0.0064334655, 0.026348481, 0.018946322, -0.01851876, 0.00044593334, 0.0063432767, -0.0129871825, -0.0076493435, 0.008898625, -0.013541676, 0.0016325837, 0.042328596, -0.02963536, -0.0037612056, -0.010468578, -0.03682374, -0.040351123, -2.607019E-05, -0.0019357181, -0.010822652, 0.0055616405, 0.010448536, 0.003238445, -0.0035774878, -0.011711178, -0.0071549756, -0.018064477, 0.021003962, 0.004272275, -0.01748994, 0.027310494, 0.023943447, -0.009506564, -0.041072633, 0.006056009, 0.0002586664, 0.010308242, -0.016367592, -0.011136643, 0.0060626892, 0.026482094, 0.005297755, -0.016714985, -0.00018163015, -0.0041820863, -0.009179212, 0.029849142, -0.018037753, 0.00069269986, -0.015886584, 0.016287424, 0.0046564126, -0.016808514, 0.004389187, -0.028032005, 0.014844403, -0.011945001, 0.01769036, 0.03436526, -0.002560359, -0.008030141, -0.01233916, -0.01265315, 0.013922473, 0.0150849065, 0.025586886, -0.016421037, -0.016327508, 0.0014831042, 0.009306145, -0.022874543, 0.014871126, 0.005007147, -0.0155525515, 0.0067641577, -0.07428882, 0.013762138, 0.018278256, -0.012065253, -0.0045528626, 0.0019407286, -0.0027925114, -0.006336596, 0.01254626, -0.014737513, -0.010261478, 0.00854455, 0.020068672, -0.019079935, 0.005628447, -0.016514566, 0.012452731, 0.005418007, 0.029127631, 0.00565851, -0.024811933, 0.005955799, 0.014483648, -0.016087003, -0.061996426, 0.021752194, -0.017556747, 0.022460343, 0.0046263495, 0.009453119, -0.002623825, 0.002602113, 0.03209384, 0.033804085, -0.0031916802, -0.024651596, 0.0040150704, 0.022580596, 0.005945778, -0.028138895, -0.0046029673, -0.024544707, 0.051761672, 0.003971646, -0.042675987, -0.020416064, 0.00792325, 0.011998447, 0.017342966, 0.00760926, 0.00069395243, 0.027203605, 0.027925115, -0.021124214, 0.0010146237, 0.0012350851, -0.0068476656, -0.008825138, 0.0037278023, -0.010949585, 0.018772624, 0.011357104, 0.03220073, 0.012472772, 0.0024267458, -0.0070013204, -0.012426008, -0.007976695, 0.015165074, 0.021591859, 0.009012196, -0.013107434, 0.021819001, -0.014430203, 0.009379632, -0.013621844, 0.005327818, -0.005748699, -0.031211995, 0.02593428, 0.0089988345, -0.0045127785, -0.037732307, 0.015699526, 0.010408452, 0.009606774, -0.014911209, 0.0057453583, 0.005564981, 0.01142391, -0.029875863, -0.0061027734, -0.0010029325, -0.0080435015, -0.0030697584, 0.036583237, 0.0060025635, 0.010869416, 0.00895875, 0.0068543465, 0.0027724695, 0.0046664337, -0.0058388878, -0.013327896, -0.018572206, -0.004476035, -0.027631165, 0.005952459, -0.017249437, 0.023475802, 0.014363396, -0.0057754214, -0.008477744, -0.0012968811, -0.02467832, -0.01624734, -0.0042455527, -0.00045136138, -0.018692456, 0.02395681, 0.0020492892, 0.031345606, 0.015031462, -0.019226909, 0.026816126, 0.0030313446, 0.0024267458, -5.46391E-06, 0.0021261168, 0.01131702, 0.020309174, -0.0035607861, 0.011343743, 0.0020075352, -0.008217199, -0.0012726637, -0.0070347236, 0.0325214, -0.014951293, 0.049223024, -0.0031866697, -0.013935835, 0.024651596, -0.0045595434, 0.011437272, 0.023008157, 3.528218E-05, -0.0097671095, -0.0128936535, -0.00956669, 0.02562697, 0.0003225501, 0.016928766, -0.038346928, 0.014844403, 0.0033753982, -0.00061378465, -0.0074222013, 0.00058497436, 0.021337993, -0.018398508, 0.0042555737, 0.010174629, -0.017957585, -0.024357649, 0.01851876, -0.0075491336, -0.029768974, -0.023649499, 0.01738305, -0.025399828, -0.0019507497, -0.016407674, -0.008237241, -0.002603783, -0.02642865, 0.002027577, -0.0034037908, 0.03489971, -2.6083238E-05, 0.011604288, -0.024143867, -0.04331733, 0.0051474404, -0.012793443, 0.0014137925, -0.0073286723, -0.029127631]
+ },
+ {
+ "Id": 57,
+ "Type": "Footwear",
+ "Brand": "Zephyr",
+ "Name": "Ascend XT Trail Running Shoes",
+ "Description": "Take on any trail with confidence in the Ascend XT Trail Running Shoes in charcoal gray. These lightweight yet rugged shoes offer excellent grip and support, thanks to their durable rubber outsole and advanced cushioning technology. The breathable mesh upper keeps your feet cool when the adventure heats up. It's time to push your limits and conquer the great outdoors.",
+ "Price": 109.99,
+ "Embedding": [0.022574168, -0.014672544, -0.021988861, -0.034985304, -0.005217865, 0.03269729, -0.02647177, -0.037885226, 0.024250269, -0.01448631, 0.020844856, -0.014233565, 0.0015688514, -0.013674864, -0.009404794, 0.011985459, 0.018543541, 0.008786233, -0.014712451, 0.011060943, -0.011479968, 0.01598948, 0.0030628769, 0.0065580816, -0.0020934648, -0.018383913, 0.029770764, -0.0044097444, 0.018796287, -0.02486218, 0.012444393, 0.014393194, -0.017133487, -0.017958235, 0.0009735692, 0.016521577, 0.00034856438, -0.002505839, 0.014991801, -0.015590409, 0.014566124, -0.020299457, -0.0023262566, -0.009757308, 0.030063417, 0.004379814, 0.007376179, -0.024995204, -0.0020369296, 0.0030146558, -0.028493734, 0.009564423, -0.019248568, -0.0024459783, 0.0035218096, 0.000946133, -0.0019338359, 0.006870688, 0.02841392, 0.021536581, -0.0042002317, -0.0017642304, -0.024902087, 0.01632204, 0.0032491104, -0.006016009, -0.031553287, 0.0055570765, -0.002439327, 0.026046094, -0.0029098992, -0.0010525521, 0.018610053, 0.026405258, 0.009504562, -0.025620416, -0.0026006186, -0.01204532, 0.0009220224, 0.019488012, 0.00028184452, -0.00921191, -0.016361948, -0.0013801237, 0.01819768, -0.0051646554, 0.01354184, -0.010661871, -0.016348645, -0.00965754, 0.032005567, -0.013515235, 0.0138744, 0.019740757, -0.025780044, -0.020778345, -0.012384532, 0.015723433, 0.001659474, -0.01143341, 0.0022846868, 0.010256148, -0.013794586, -0.0099235885, -0.05344903, -0.0074559934, -0.009371539, 0.027935034, 0.016388552, -0.007981438, -0.013741376, 0.014965196, 0.013322351, -0.019913688, 0.0008372196, -0.020392574, 0.017918328, 0.007775251, -0.0012113495, -0.024675947, 0.018689867, 0.0015929621, 0.0138877025, 0.0015821538, 0.004273395, 0.02769559, -0.023119565, -0.0123645775, 0.0074892496, 0.0023877802, 0.005510518, 0.007070224, 0.033708274, 0.0020801623, -0.016162412, 0.0160959, -0.0129565345, 0.029345088, -0.029318484, 0.00284505, 0.013049652, 0.014845475, -0.0113336425, 0.0023362334, -0.006149033, 0.011040989, 0.02281361, -0.010023356, 0.024436504, -0.0050150035, 0.022574168, -0.01980727, 0.021749418, -0.018663263, -0.006431709, -0.01543078, 0.022840215, 0.014060633, -0.02197556, 0.010562103, -7.885307E-06, 0.010801546, 0.014739056, -0.011965506, 0.036661405, 0.020632017, 0.022999844, -0.0015106534, -0.004845398, 0.0019404872, 0.0074027837, 0.020286156, -0.013215931, 0.009577726, 0.019634338, 0.014725753, 0.019727455, 0.024210362, -0.011865738, 0.008067904, -0.0060525904, 0.00082807423, 0.023345707, 0.004805491, -0.0037878575, -0.00949126, 0.0058031706, 0.014606032, -0.0013668212, -0.01954122, -0.0056801233, 0.008187626, -0.018729774, -0.0028816317, -0.65852183, -0.0128301615, -0.00959768, -0.042647485, 0.03839072, 0.012796906, 0.023053054, -0.0069904095, -0.027163494, 0.01231802, -0.014526217, 0.02092467, 0.007276411, -0.020153131, 0.0051912605, -0.016029388, -0.0008862722, -0.014579427, 0.0076954365, 0.019674245, -0.042354833, 0.0027087005, -0.005450657, -0.032723896, -0.009504562, 0.00057034026, -0.01126713, -0.008460324, -0.028254291, 0.01592297, -0.04756937, 0.04155669, 0.017106883, 0.00074451853, 0.061031397, -0.02597958, -0.021736117, 0.04174292, 0.008353905, 0.054752667, -0.0059395204, -0.0005470611, 0.0024609435, 0.00160959, -0.0056734723, 0.030036813, 0.014978499, -0.022175096, 0.023744779, -0.023678267, 0.017572466, 0.00932498, 0.011260479, -0.021656303, 0.009724053, 0.006897293, 0.039321885, 0.017572466, 0.007150038, -0.003119412, -0.0054473314, 0.021523278, -0.00971075, -0.038044855, -0.033335805, 0.036155917, -0.037087083, 0.0004975928, 0.014087238, -0.001153983, 0.022520958, 0.035384376, -0.010582057, 0.02447641, 0.010794895, 0.021669604, 0.013954215, -0.0019388243, 0.011187316, 0.010342614, 0.008001392, 0.010202939, 0.01765228, -0.026059395, 0.019009124, 0.009810518, -0.0057798913, -0.02281361, 0.017013766, 0.012976488, -0.0072963648, 0.023758082, -0.037619177, -0.033149574, -0.0122515075, 0.01975406, -0.031154213, 0.015417478, 0.004123743, -0.017891724, -0.001000174, -0.011360247, -0.022414539, 0.016295437, 0.01730642, 0.028653363, 0.023625057, -0.016641298, 0.017825212, -0.018330703, -0.0028500385, -0.011752668, -0.010515545, -0.030435884, 0.009956844, -0.023931012, 0.012776952, -0.0016528228, 0.022348028, -0.05211879, 0.00068923045, -0.009950193, 0.019049032, -0.014406496, -0.018024748, 0.015883062, 0.015377571, -0.004273395, -0.010861407, -0.02435669, -0.01819768, -0.0043465584, 0.022826914, 0.0026155838, 0.0038111368, -0.008959164, -0.005650193, -0.010721732, 0.02447641, -0.033149574, -0.022574168, 0.0155238975, -0.0029996906, 0.002490874, -0.023212682, -0.025939673, -0.03096798, -0.014938592, -0.015590409, -0.018264191, -0.0042534415, -0.014433101, -0.020937974, 0.016774323, -0.006528151, -0.037486155, 0.005124748, -0.03573024, -0.009391492, 0.004605955, 0.028866202, 0.001917208, 0.0023595127, -0.0067941993, 0.014845475, -0.024343386, -0.02846713, 0.039933797, -0.0010392497, -0.02087146, -0.0059794276, -0.008772931, -0.0030395978, 0.026644701, 0.008001392, -0.01071508, -0.027376333, -0.033655066, 0.0116595505, 0.008686465, 0.012065274, 0.017199999, -0.019221963, -0.0076488783, -0.0011913959, 0.0022015467, -0.0101630315, 0.01481887, 0.008001392, 0.026378654, -0.027456148, 0.019953595, -0.013767981, 0.022081979, 0.00876628, -0.014991801, 0.008493581, 0.001676102, 0.01287672, 0.0039109048, 0.016627995, -0.023691569, 0.028254291, -0.023159472, 0.029770764, -0.0048753284, 0.00086715, -0.013056302, 0.015962876, 0.008706419, -0.009005723, -0.035251353, -0.019554524, -0.019049032, -0.021762721, 0.0001048603, 0.016987162, 0.019182056, -0.0046292343, -0.029291878, 0.018024748, 0.00011327823, 0.009058933, -0.024436504, -0.0034952047, 0.026990563, -0.01753256, 0.03618252, -0.010229543, -0.002638863, 0.024130547, 0.0155105945, 0.031180818, -0.0019887083, 0.025620416, -0.017160092, 0.010681825, -0.021682907, 0.03679443, -0.0043598604, 0.027203402, 0.018663263, -0.0043498836, -0.024263572, 0.012204949, 0.022068676, 0.034266975, 0.010828151, 0.011040989, -0.014566124, -0.012550811, 0.01970085, 0.0025407579, 0.0044496516, 0.030382674, -0.02381129, 0.022095282, 0.010841453, 0.020658622, 0.0028533642, 0.009132096, -0.0027253286, 0.020472389, 0.009943542, 0.025154833, -0.018237587, -0.024330083, -0.008447022, -0.009471307, -0.014073936, 0.018224284, -0.016375251, 0.0160959, 0.014552822, 0.002258082, 0.018995823, 0.018995823, -0.003144354, -0.008141067, 0.03086156, -0.00804795, -0.034213766, 0.014366589, 0.0106153125, -0.0069238977, -0.013980819, -0.015656922, 0.016109202, 0.0048520495, 0.04091817, 0.0050482596, 0.006258778, 0.0073495745, 0.0024692575, 0.00677092, 0.019514617, 0.011326991, -0.02131044, 0.038310904, -0.022640679, -0.008985769, 0.002306303, -0.020246249, -0.029291878, 0.035889868, -0.0056069605, -0.018942613, 0.0035783448, 0.0020868136, -0.020765042, 0.009418097, -0.02319938, 0.01115406, -0.0060891723, 0.005444006, 0.011559783, -0.0046691415, -0.014925289, 0.034692653, -0.006780897, 0.0072631086, -0.034559626, -0.03785862, 0.002530781, 0.08194277, 0.013847795, -0.00826744, -0.0018024748, -0.007236504, -0.0010034996, -0.011473318, -0.0032723898, -0.013728074, -0.011533178, -0.0010700115, -0.024037432, -0.0012570765, -0.01970085, 0.031872544, 0.0277488, -0.012344624, -0.032989945, -0.005776566, -0.01670781, -0.005859706, -1.3601181E-05, 0.00887935, 0.012304717, 0.009038979, 0.01597618, -0.004043929, -0.022826914, 0.018995823, -0.023891104, -0.00016337006, -0.014778963, -0.0067576175, -0.0055969837, -0.021736117, 0.011346945, -0.05211879, -0.01392761, 0.018171074, -0.00799474, 0.027017169, 0.0072165504, 0.0093316315, -0.028866202, -0.0042434647, -0.008021345, -0.00033255992, 0.020286156, 0.027429542, -0.021337045, 0.018450424, 0.005700077, -0.01920866, -0.00034710942, -0.017120184, 0.025793348, -0.00959768, -0.018250888, -0.0048620263, -0.037832018, -0.009032328, -0.024995204, 0.013781283, -0.0045826756, -0.0025008507, -0.0049750963, -0.002929853, 0.009790564, -0.014778963, 0.0011523202, -0.020073317, 0.00014622245, -0.021390254, 0.011519875, 0.011426759, -0.00050715386, -0.0013892691, -0.0057067284, 0.019780664, 0.014260169, 0.0037878575, 0.02192235, 0.002938167, 0.0021001159, 0.016827533, -0.0042999997, -0.01786512, -0.025021808, 0.020419179, -0.0029414925, 0.016228924, -0.016494973, 0.012025367, 0.010974477, -0.0017825211, -0.0023661638, 0.019860478, 0.020951275, -0.0059960554, 0.011559783, -0.013215931, -0.028626759, 0.013056302, -0.006671152, 0.0030163184, 0.00441307, 0.015590409, 0.015936272, 0.017678885, -0.0244232, 0.0100366585, 0.007442691, 0.011067594, 0.0012703789, -0.02953132, 0.007303016, -0.005590332, 0.005553751, -0.0054772617, -0.014672544, -0.005124748, -0.023731476, 0.037193503, 0.012477648, 0.0057034027, 0.017971538, 0.015789945, -0.011293735, -0.026697911, 0.015191337, 0.0062754056, 0.017958235, 0.015896365, 0.011965506, -0.008486929, -0.0058929618, -0.052358236, 0.0027153518, 0.008307347, -0.010216241, -0.011566434, 0.009823821, -0.009278422, 0.01632204, -0.009744006, -0.021669604, -0.028679967, 0.015031708, 0.0015622003, 0.025633719, -0.017266512, -0.00024276874, -0.032032173, -0.011646248, -0.027296519, -0.023079658, -0.006538128, -0.013249188, 0.0119122965, 0.016029388, 0.004599304, -0.032830317, 0.013382211, 0.010648569, -0.02785522, -0.00010745843, -0.011134107, -0.00876628, -0.040120028, 0.008733024, 0.010049961, 0.026644701, 0.0034752511, -0.017732095, -0.007901624, 0.0007873356, -0.01952792, -0.0066545242, -0.002439327, -0.06278732, -0.014034029, -0.018397216, -0.0013385537, 0.010941221, -0.025500694, 0.0034652743, 0.04873998, 0.020698529, -0.013674864, 0.017944934, 0.02458283, -0.0031426912, 0.035597213, -0.016401855, 0.0035284609, -0.009291724, -0.007509203, -0.032005567, 0.004007347, 0.032484453, -0.0038410672, -0.00607587, 0.016973859, -0.010608662, 0.004778886, -0.0102761015, -0.00771539, -0.015457385, 0.014885382, -0.005394122, -0.009032328, -0.016734416, -0.008081206, -0.04450982, -0.0063518947, 0.013142768, -0.0066977567, 0.015031708, -0.020099921, -0.00031904966, 0.006780897, 0.0016511601, 0.0019188707, -0.015404176, 0.013807888, 0.014073936, -0.006238824, 0.004748956, -0.011440061, 0.006454988, 0.0069238977, 0.015444083, 0.0003392111, -0.003418716, -0.005118097, 0.008846094, -0.0037446248, -0.010588708, 0.00799474, 0.0131826755, 0.00466249, 0.016494973, 0.0027752125, -0.017692188, -0.0026238977, 0.01903573, -0.021483371, 0.007442691, -0.0043532094, -0.015617014, 0.0008604988, 0.02603279, -0.0135351885, 0.016468367, 0.0077220416, 0.0016187354, -0.009278422, 0.008733024, 0.0082873935, 0.008972467, 0.00060151774, 0.026086, -0.0023378963, 0.0074892496, 0.037273318, 0.018490331, 0.017466048, -0.011779273, 0.0029680973, 0.027482752, -0.017133487, 0.0040173237, 0.00024027454, 0.003734648, 0.01625553, -0.005320959, 0.00063602085, -0.008174323, 0.0027935035, -0.014473008, 0.017466048, -0.0026355374, -0.0040705334, -0.021935653, -0.012510904, -0.016854137, -0.026232326, -0.012238205, -0.00073578884, -0.027615776, -0.025540601, 0.0021433488, 0.0073894816, 0.025647022, -0.0007968967, -0.016827533, -0.015936272, 0.0045860014, -0.015497292, 0.014499613, 0.0029680973, 0.011420107, -0.01753256, 0.0143532865, 0.006248801, -0.05038948, 0.012198298, -0.0075225052, -0.018450424, -0.037486155, -0.008945862, -0.018131167, 0.010482289, 0.0011090874, 0.0045095123, 0.014153751, 0.008699767, -0.0072165504, -0.037060477, -0.0160959, -0.002863341, -0.016508274, 0.030169837, -0.0103891725, 0.018450424, 0.020951275, 0.015843155, 0.025075018, -0.015603712, -0.021629697, 0.0016062644, -0.010641918, 0.0155238975, -0.02897262, 0.012584068, 0.00937819, 0.0074493424, 0.0054839132, -0.008174323, -0.00771539, 0.026258932, 0.0012570765, -0.0019205336, 0.015138128, -0.025673626, -0.009644237, -0.005550425, -0.0016228925, -0.02281361, 0.00060609047, 0.00074119295, 0.053741682, 0.008333951, -0.031313844, 0.007196597, 0.01065522, -0.06055251, -0.028573548, -0.014020726, 0.007482598, 0.012291415, 0.0042002317, 0.003077842, 0.01420696, -0.0086399065, 0.000264593, 0.0099102855, 0.0009236852, 0.0034619488, 0.009497912, -0.005982753, -0.008886001, -0.026179118, -0.006637896, 0.03623573, 0.0042933486, 0.018157773, 0.0020286154, -0.020658622, -0.011220572, -0.014725753, -0.0032175172, 0.046664808, 0.014300076, 0.017505955, -0.050309666, -0.019488012, 0.0056535187, -0.028706573, 0.029185459, 0.00022614075, 0.0011315352, 0.0015879737, -0.02292003, -0.01410054, -0.021536581, -0.02486218, 0.0037878575, 0.016787626, 0.01215174, -0.009185305, -0.01642846, 0.019634338, -0.030781746, 0.0064583137, 0.009584377, 0.0091054905, -0.0033322505, 0.0018024748, -0.023292497, -0.0014191995, -0.01592297, -0.003377146, 0.017346326, -0.01737293, 0.014326681, 0.016654601, -0.0019122196, 0.004183604, 0.017386233, -0.024888786, -0.013169373, -0.008260788, -0.005344238, 0.01898252, 0.00070336426, -0.0011980471, -0.031766124, 0.040758543, -0.0026205722, -0.019248568, -0.015377571, -0.002672119, -0.023265893, -0.017772002, 0.033601854, 0.20379272, 0.0026272235, -0.01065522, 0.041583292, 0.007848415, 0.0003069944, 0.005304331, 0.001655317, -0.003244122, -0.004047254, 0.020206342, 0.013807888, -0.018610053, -0.00557703, 0.010242846, -0.011420107, -0.042434648, 0.00049842417, -0.023545243, -0.02409064, 0.008972467, 0.004047254, 0.028227687, -0.027881823, 0.020751739, -0.0011365236, 0.0029664345, -0.02974416, -0.009464655, 0.007775251, -0.0013934261, -0.029983602, 0.021616396, 0.0022447794, 0.01569683, -0.0014258507, 0.03402753, 0.036209125, -0.011666202, -0.0016287122, -0.009584377, 0.014752358, 5.1728657E-05, 0.011586388, -0.0011731051, 0.018583449, -0.023332404, -0.0064017787, -0.025633719, 0.0053907963, -0.032936733, -0.009391492, -0.0112072695, -0.0025108275, -0.008726372, -0.0072098994, 0.026910748, -0.024715854, 0.011925599, -0.0009702436, -0.011579736, 0.01054215, -0.0056069605, 0.023265893, -0.018357309, 0.006721036, 0.00446628, -0.005560402, 0.009544469, 0.018769681, -4.785745E-05, -0.0026372003, 0.010129775, 0.03506512, -0.004845398, -0.008580046, 0.02447641, -0.001992034, 0.0008779582, 0.018264191, 0.00056285766, -0.0063352664, 0.0194215, 0.00399737, -0.033202782, -0.042514462, -0.0027918406, -0.013329002, 0.015271151, 0.008087858, 0.0030844933, -0.0048919567, -0.0032823666, -0.013322351, -0.009285073, 0.011479968, -0.013674864, 0.025620416, -0.01298979, 0.016907347, -0.030249652, 0.0029514693, -0.019740757, 0.02186914, -0.019740757, 0.0069305487, -0.0077353436, -0.005344238, -0.0032291568, -0.0048686774, -0.013362258, -0.031313844, 0.003947486, -0.0037978343, -0.020472389, -0.0031742845, 0.013082908, -0.024383293, 0.0116595505, -0.040811755, 0.020525599, 0.008506883, -0.002116744, 0.016175715, 0.009670842, -0.0177587, -0.0048320955, 0.007741995, 0.022068676, -0.03240464, 0.005301005, -0.022507656, 0.009830471, -0.012796906, -0.015191337, 0.001975406, 0.0068241297, -0.020206342, -0.011366898, 0.0019687547, -0.015111523, 0.0013194315, 0.006737664, 0.026697911, 0.028068058, -0.04174292, 0.017984841, -0.000971075, -0.020060014, -0.008892653, 0.009152049, -0.016521577, -0.0008746326, -0.0056535187, 0.018250888, -0.0002849623, -0.021709511, -0.0059029385, -0.014911987, 0.0017359628, -0.024489712, -0.00035958042, 0.026498375, -0.011839134, 0.00380116, -0.013980819, -0.16931291, 0.015217942, 0.008673163, -0.0022115235, 0.03152668, -0.012963186, 0.025833255, 0.019341685, -0.021470068, 0.010927919, 0.015377571, 0.0032058777, -0.035118327, 0.010123124, -0.0048620263, 0.007861717, 0.008699767, 0.014047331, 0.01980727, -0.0008409609, 0.0052245166, -0.01787842, 0.024383293, 0.0059461715, -0.007608971, -0.0016228925, -0.004835421, 0.0017775327, 0.009165351, -0.007642227, -0.0055138436, -0.025926372, 0.0053874706, -0.0066511985, 0.0136615615, -0.0029448182, -0.00034648587, 0.017638978, -0.027988244, 0.030755142, 0.004812142, 0.0094447015, 0.033016548, -0.0033073085, 0.028121267, 0.00065597444, -0.02115081, -0.005121423, -0.010289404, -0.013967517, 0.010761639, 0.005876334, -0.015789945, 0.0037878575, 0.03362846, 0.008806187, -0.0021001159, -0.006963805, 0.012730394, -0.02708368, 0.006817478, -0.013967517, 0.009178654, -0.0001872728, -0.003947486, -0.0015148105, 0.022281514, 0.014685846, -0.021190718, 0.02491539, -0.02435669, -0.0051646554, -0.01015638, -0.014885382, 0.014113843, 0.012078577, 0.0017209976, 0.006019335, -0.015603712, -0.037087083, -0.015590409, 0.02897262, -0.031739518, 0.00025731823, 0.009038979, 0.031101003, -7.913887E-05, 0.022374632, -0.02286682, -0.01814447, -0.017173395, -0.020352667, -0.014113843, -0.017505955, 0.012923279, 0.01453952, 0.006238824, -0.016987162, 0.0072098994, -0.018304098, 0.017000463, -0.0062188706, -0.007815158, 0.01276365, 0.031819332, 0.02580665, 0.031260632, 0.00804795, 0.022720493, -0.005277726, -0.02292003, 0.010508894, 0.0017442768, 0.021669604, 0.0210843, 0.015896365, 0.0040173237, -0.029158855, 0.003601624, -0.006564733, 0.022853518, -0.01730642, -0.0233058, 0.016588088, -0.0033704948, -0.035038512, -0.093276404, 0.007868368, 0.014446403, 0.003784532, -0.022826914, -0.012737045, -0.0065614074, 0.03152668, 0.0119122965, 0.027349727, 0.025859859, -0.010395823, 0.016721113, 0.003691415, -0.004406419, -0.0010907965, 0.034000926, -0.0010550463, -0.032111987, 0.025819952, -0.02358515, -0.009344934, -0.003575019, -0.036342148, -0.019368289, 0.025048414, -0.03408074, 0.008367208, 0.011792575, 0.02458283, 0.012145088, 0.027429542, 0.0039541377, -0.011060943, 0.009551121, 0.0038676718, -0.017998142, -0.0079481825, 0.01259737, -0.0032291568, -0.0205389, -0.012032018, 0.015656922, -0.018809589, 0.004416396, -0.020512296, -0.008613302, 0.020898066, 0.029291878, -0.027589172, -0.008194276, 0.0011099187, -0.009032328, -0.024157153, 0.029132249, -0.027057076, -0.017226605, -0.0068773394, -0.006721036, 0.011646248, -0.0117859235, -0.007036968, -0.014140448, 0.029371692, 0.007675483, -0.00816102, -0.022946635, 0.020725135, 0.021948954, -0.00535754, 0.0041603246, 0.017678885, -0.013202629, 0.04512173, -0.007376179, 0.0135351885, -0.033043154, -0.022281514, -0.0026771075, -0.0122515075, -0.013335653, -0.014087238, 0.028866202, -0.03655499, -0.007901624, 0.020884763, -0.0011880703, -0.030223045, 0.00971075, -0.031180818, 0.013455374, 0.02785522, 0.022826914, 0.0001522501, -0.011566434, -0.019660942, 0.01681423, -0.013834493, -0.014512915, -0.011772621, -0.016401855, -0.0079348795, -0.06794865, 0.038843, 0.008486929, -0.034958698, -0.00921191, 0.016361948, 0.015656922, -0.0108547555, 0.009138747, -0.024236968, -0.008061253, -0.020472389, -0.006345243, 0.0012354602, 0.0035484144, -0.01597618, -0.005749961, -0.007010363, 0.016588088, 0.000875464, -0.016747719, -0.0024675946, -0.021337045, 0.022707192, -0.014898685, 0.0009685808, -0.017519256, 0.020725135, -0.004622583, 0.008360556, 0.013954215, -0.006581361, 0.030755142, 0.040705334, -0.015217942, -0.0015023395, -0.010362567, 0.013601701, -0.0002525377, -0.019328382, -0.00062562834, -0.01592297, 0.010010053, -0.021097602, -0.0025972931, -0.016654601, 0.020498993, 0.0023761406, 0.013249188, 0.016029388, -0.0069771074, 0.021337045, 0.017186698, -0.024569526, -0.0047921883, -0.027376333, 0.013009744, -0.02596628, 0.0015322699, -0.02319938, 0.03658159, 0.008187626, 0.0022647332, 0.005919567, 0.014406496, 0.0069438512, -0.01648167, 0.0036581592, 0.02570023, -0.019142149, -0.009271771, 0.0123778805, 0.024928693, 0.004921887, 0.005184609, 9.867676E-05, -0.021057695, -0.011346945, 0.0019288475, 0.009258469, 0.0021682908, -0.0040040216, -0.036927454, 0.010289404, -0.0036382056, -0.0068573854, -0.009178654, -0.006338592, -0.028546944, 0.0064782673, -0.0106153125, 0.004705723, -0.023159472, -0.008014694, 0.005553751, 0.0123778805, 0.021283835, 0.020405877, 0.007336272, 0.0062288474, -0.006345243, 0.0055703786, -0.0043199533, -0.004921887, -0.012783604, 0.012976488, -0.0094580045, -0.0022048722, -0.033096362, -0.0005258604, 0.008859396, 0.0047223507, -0.00062063994, 0.0013593386, -0.014459706, 0.009777262, 0.004595978, -0.0116529, -0.011506573, 0.020831553, 0.030728538, 0.018024748, 0.00068174786, 0.0055570765, -0.00466249, 0.0022663958, 0.0069505023, -0.0030662024, 0.017891724, 0.02902583, 0.028227687, 0.008174323, -0.022095282, 0.001655317, -0.004057231, 0.006674478, -0.0026039442, 0.023438824, -0.016295437, 0.06369188, 0.022095282, -0.0020219644, -0.0016228925, 0.018171074, 0.014366589, 0.011287084, 0.0068773394, -0.014951894, -0.022946635, -0.009936891, -0.0049119103, -0.016933952, 0.0035218096, -0.046265736, 0.016601391, 0.0045095123, -0.0073562255, -0.023731476, -0.020445785, 0.022800308, -0.0027419566, 0.02008662, 0.0013884377, -0.008819489, -0.015364269, 0.023079658, 0.035224747, -0.012451043, -0.011293735, 0.027123587, 0.02103109, -0.021403557, -0.008839442, -0.0024692575, -0.01098778, 0.003618252, 0.0023911058, -0.0022281515, 0.016880741, 0.01243109, 0.0011065932, -0.0030096674, -0.004306651, 0.0134221185, -0.00037184358, -0.027615776, -0.00371802, -0.0024775714]
+ },
+ {
+ "Id": 58,
+ "Type": "Cycling",
+ "Brand": "Raptor Elite",
+ "Name": "VelociX 2000 Bike Helmet",
+ "Description": "Protect your head in style with the VelociX 2000 Bike Helmet in glossy black. This aerodynamic helmet features an adjustable fit system, detachable visor, and 14 ventilation channels to keep you cool during intense rides. With its sleek design and lightweight construction, it's the perfect choice for road cycling, mountain biking, and everything in between.",
+ "Price": 79.99,
+ "Embedding": [0.00843028, 0.0023899078, -0.0004882786, -0.038238525, 0.004039094, 0.0030891097, -0.012037562, -0.046130702, 0.025828943, -0.0280345, 0.02928343, 0.0026340473, 0.00017967906, -0.011592465, -0.003394699, 0.010509616, 0.023331081, 0.0008441075, -0.003024338, -0.017963339, 0.01606337, 0.017790614, -0.011027789, -0.00014449061, -0.024912175, -0.01248266, 0.022879342, -0.019212268, 0.026280683, -0.022640184, 0.023357654, 0.023317795, -0.0062014707, 0.0004579688, -0.006357587, 0.026054813, 0.007659663, -0.015598343, 0.012648742, 0.011878124, 0.048548844, -0.0035408502, 0.01375152, 0.020992659, -0.021417826, 0.014681575, 0.001057937, -0.017963339, -0.014708147, -0.0034245935, -0.014681575, 0.0104365405, -0.0033033544, 0.0026224216, 0.015372472, -0.02617439, 0.025124758, -0.008589718, 0.03425258, -0.005763016, -0.0099848, -0.002273651, -0.024487006, 0.0031771327, -0.008749155, -0.010855065, -0.0019032902, 0.005573684, -0.0024845742, 0.008058258, 0.023105212, 0.022361167, 0.00058211444, 0.012967617, 0.015531911, -0.006012138, -0.011911341, -0.023012206, -0.0033166409, 0.006566849, 0.020261902, -0.00865615, -0.011605752, 0.008842161, 0.03624555, 0.003306676, -0.002821719, -0.0015528589, -0.021072378, 0.009626064, 0.0046768454, 0.002512808, 0.0054773567, 0.009998086, -0.0029977649, 0.030984102, 0.010330249, 0.0375742, 0.0012854682, 0.0078921765, -0.0014125203, -0.012250147, -0.013479147, -0.015492051, -0.039567176, -0.03329595, -0.005972279, 0.01320013, 0.012874612, -0.0010595978, -0.009161036, 0.034651175, 0.026014954, -0.016501823, 0.013166915, -0.013724947, 0.035368644, 0.025138045, 0.001450719, -0.014096969, 0.0046668807, 0.022879342, 0.0155850565, -0.021922713, 0.0029927825, -0.009240756, -0.020660497, -0.0001998164, 0.033136513, 0.002406516, -0.0070551275, 0.0023301188, 0.009386907, 0.010556119, -0.011778476, 0.020288475, 0.000599553, 0.019730441, -0.014362698, -0.0036305343, 0.0033930382, 0.017325588, -0.004248356, 0.018282214, -0.010589335, 0.004979113, -0.027609332, 0.018494798, 0.019571004, -0.00031887583, 0.02140454, -0.029708598, 0.022892628, 0.036006395, 0.010489686, 0.011572535, -0.00714149, 0.033960275, -0.014827726, -0.004646951, -0.0019248807, -0.0032767814, 0.014402558, 0.0013975729, 0.031382695, 0.024141558, 0.017989911, -0.015066883, 0.00814462, -0.018162636, -0.012097352, 0.04344683, -0.021470973, 0.0106690535, -0.0104365405, 0.01450885, 0.021736702, 0.0026290647, -0.008044971, -0.0089351665, 0.017671036, -0.0003545833, 0.019982886, 0.019185696, -0.0128081795, 0.018893393, 0.018853534, -0.0077725984, 0.01909269, -0.022626897, 0.015332613, 0.027237311, 0.014641715, -0.015027024, -0.65518355, -0.013592082, -0.018189209, -0.021045804, 0.004294859, 0.0047465996, 0.0012522519, -0.0034312368, -0.011698757, 0.0017039927, 0.006390803, 0.016993424, -0.0064339843, -0.015810927, -0.01810949, -0.029682025, 0.018760528, 0.0005032259, 0.0072610686, -0.014628429, -0.01864095, -0.016355673, -0.024128271, 0.0280345, -0.006145003, -0.0126886, 0.025098186, -0.004291537, -0.016754268, 0.0046502724, -0.03943431, 0.034226004, -0.008569788, -0.0033016936, 0.046848174, -0.050834123, 0.005351135, 0.021191956, 0.011997703, 0.027317028, -0.0048960727, 0.0027818594, -0.0021706808, 0.00943341, -0.015558483, 0.023982119, 0.022626897, -0.0073673604, 0.004354648, -0.026665991, 0.00918761, -0.00636423, 0.0002142447, 0.02496532, -0.013764807, -0.013439287, 0.034465164, 0.0055770054, 0.003198723, 0.008948453, -0.0011409776, 0.010124308, -0.019850021, -0.01655497, -0.013379498, 0.013253276, -0.050860696, -0.015492051, 0.016023511, -0.033003647, 0.0077327387, 0.021936, -0.0093404045, 0.019863307, 0.021617124, 0.018680809, 0.033136513, 0.0019198982, 0.006148325, 0.0073142145, 0.01598365, 0.0057530515, 0.007094987, -0.00394941, 0.010303675, -0.02220173, -0.00835056, -0.0066233166, 0.017950052, 0.022640184, 0.022228302, -0.0028864907, 0.0016857238, -0.020873081, -0.014854299, 0.016661262, 0.008828875, 0.023052065, 0.029150566, -0.021112237, -0.015133316, -0.0011824978, 0.007932036, 0.015518623, 0.021563979, 0.011878124, 0.020075891, -0.028140793, 0.025297483, -0.028831689, 0.0060353894, -0.0280345, -0.013645228, -0.012290006, 0.00019607958, -0.027981354, 0.02928343, -0.003799937, 0.0059822435, -0.051285863, 0.0062214, -0.01712629, 0.014973878, -0.022547178, 0.0030093906, -0.010350178, 0.0136186555, 0.018760528, -0.045333512, -0.014482277, 0.03337567, 0.03321623, 0.038876276, 0.007858961, 0.013379498, 0.017471738, 0.016342387, -0.0067229653, -0.01860109, -0.019929739, -0.009898437, 0.013399428, -0.027104445, -0.010144237, 0.00021652831, -0.022719903, -0.008981669, 0.0072411387, -0.0016251041, -0.009087961, 0.011007859, -0.012907828, -0.0086428635, -0.025177903, 0.007148133, -0.01962415, 0.015226321, -0.017830474, -0.011924627, -0.013817953, 0.03675044, -0.006055319, 0.011858195, -0.008277485, 0.00208764, 0.009081318, -0.0041786022, 0.048442554, -0.002627404, -0.041267846, -0.009951583, 0.002848292, -0.027064586, 0.027821915, -0.01981016, 6.3526044E-05, -0.008509999, -0.027954781, 0.023570238, -0.011991059, 0.014203261, -0.01810949, -0.01894654, 0.008270842, 0.010828491, -0.0012481, 0.023277937, 0.021537405, -0.010675697, 0.0112470165, 0.016116517, -0.007467009, -0.014748007, 0.0020494414, -0.0047931024, -0.025217764, 0.011320092, 0.007114917, 0.026905147, 0.004749921, 0.048548844, -0.023277937, 0.016873846, -0.0026871932, 0.019345134, -0.010921497, -0.0116522545, 0.007307571, 0.010157524, 0.0077593117, 0.005905846, -0.022374455, -0.0060254247, -0.0020411375, 0.0016176305, 0.0019082725, 0.016196234, 0.009307188, -0.0031804543, -0.0149473045, 0.01810949, -0.006955479, 0.020633923, -0.012887898, 0.010469756, 0.023477232, -0.011545963, 0.035023194, -0.0026157782, -0.03435887, 0.018348647, 0.030346349, 0.012755034, 0.010130951, 0.018189209, 0.026639419, 0.0044841915, -0.013113769, 0.042596497, 0.0069687655, 0.036644146, 0.019185696, 0.009798788, -0.00863622, 0.016501823, 0.0061649326, 0.042383913, -0.005141873, 0.0044742264, 0.0055305026, -0.009719069, -0.019464713, 0.0023633349, 0.001180837, 0.040550377, -0.0004712553, 0.016275954, 0.015478765, 0.007938679, 0.030744944, 0.0018318752, 0.008629577, 0.0074603655, -0.0017289049, 0.014615142, 0.00040855966, -0.03372112, -0.002934654, -0.020567492, -0.019451426, 0.00675286, -0.033694547, 0.015146602, 0.0019879914, 0.03008062, -0.009207539, -0.022972345, 0.011864838, -0.005068797, 0.029841462, -0.007852318, -0.041400712, -0.012848038, 0.019690583, 0.0054972866, -0.013326352, 0.0036371774, 0.0031837758, 0.008038328, 0.037521057, 0.008051614, 0.015664775, -0.030027473, -0.005782946, -0.015106742, 0.0139641045, 0.030186912, -0.019052831, 0.016236095, -0.03419943, -0.027821915, 0.012223573, -0.0018733955, -0.05295996, 0.004450975, 0.0017172792, -0.002114213, -0.026838716, 0.0069156196, -0.007985182, 0.02212201, -0.023277937, 0.00021839673, -0.019637436, -0.0118249785, 0.009672567, -0.028061073, -0.015199748, 0.011751903, 0.00894181, 0.0051717674, -0.012476017, -0.01149946, -0.018242355, 0.060108095, -0.0010587674, -0.0086428635, 0.015492051, -0.008729226, -0.027144305, -0.008596361, 0.00053519657, 0.01450885, 0.010894924, -0.02363667, 0.005410924, -0.02273319, 0.005078762, 0.0019414888, -0.008616291, 0.00081172166, -0.01806963, -0.017538171, -0.0053876727, -0.024619872, -0.0019248807, 0.017923478, 0.006769468, 0.00624133, -0.012044206, 0.015744494, 0.028858263, 0.0154654775, -0.009380264, 0.009406837, 0.0014797831, -0.005915811, 0.002486235, -0.026998153, -0.00087607815, -0.00841035, -0.015877359, 0.023849254, 0.00058958813, 0.0049292888, 0.0091676805, -0.009240756, 0.022640184, 0.017604603, -0.0067595034, 0.0019614184, 0.006822614, 0.021736702, -0.024779309, 0.010330249, 0.0070817005, 0.0055072512, -0.00011168958, -0.027635906, 0.011964487, -0.0015478764, -0.03693645, -0.010615908, -3.5266297E-05, -0.020793362, -0.0054341755, 0.01252252, -0.006075249, 0.007201279, -0.0112470165, 0.0022205052, -0.010715556, -0.014163401, -0.02580237, -0.012183714, -0.012449444, -0.021524118, -0.0014606838, -0.0073872902, 0.02443386, 0.030293204, -0.036511283, 0.007334144, 0.0204612, -0.009825362, -0.0015835839, -0.004125456, -0.008197766, -0.009440053, 0.000802172, 0.0011119134, -0.011512746, 0.00841035, -0.009014886, 0.025510067, -0.00587263, 0.026812142, -0.01663469, -0.009725713, -0.0058859163, 0.030824663, 0.02322479, 0.012396298, -0.010775345, -0.009705783, -0.0015786014, 0.012123925, 0.0072876415, 0.02682543, 0.014668288, 0.0062446515, 0.027981354, 0.019863307, -0.0044376887, -0.011061005, 0.023596812, -0.0016641333, -0.017750755, -0.036830157, -0.00065020774, 0.020899653, 0.01614309, -0.00049533707, -0.021205243, 0.005344492, -0.026626132, 0.031728145, -0.017817186, -0.017179435, 0.022866054, 0.025855515, 0.0025759188, 0.014269694, 0.0065635275, 0.028858263, 0.006523668, -0.0010629194, -0.017259154, -0.025204478, -0.002195593, -0.010483043, -0.009612777, -0.0049425755, -0.031993873, -0.0054541053, 0.017113002, 0.010695627, 0.010469756, -0.012197001, -0.013073909, -0.023357654, -0.004945897, -0.024898889, 0.028140793, -0.018175922, -0.025138045, -0.012203644, -0.022547178, -0.0144291315, -0.0375742, -0.031090394, -0.010748773, 0.005331205, 0.015385759, 0.027529614, -0.010283746, 0.011187227, 0.007207922, -0.017857047, 0.006460557, -0.030399496, -0.0010720539, -0.028273657, 0.013844525, 0.00990508, -0.0019846698, 0.002177324, -0.02349052, -0.017152863, 0.0204612, 0.011094222, -0.024566725, -0.023078639, -0.029894609, -0.0058659865, -0.0065103816, 0.0064937733, -0.021962572, -0.020328334, -0.0059124893, 0.0280345, 0.009705783, 0.008310702, 0.012947687, 0.015279467, -0.001806963, 0.021059092, -0.009068032, 0.012263433, 0.017338874, -0.010675697, -0.009559631, -0.02568279, 0.03996577, 0.004999043, 0.006613352, 0.0122302165, -0.022374455, -0.0006688919, 0.0100910915, -0.0044808695, -0.018959826, 0.009606134, 0.0009574579, -0.03962032, -0.026293969, -0.029655453, -0.05649417, -0.015651489, 0.030744944, -0.022215016, 0.025709365, -0.009805432, -0.0069953385, 0.027317028, -0.018800387, 0.030027473, -0.019305274, 0.03095753, 0.006181541, -0.011898055, -0.014070396, -0.03746791, -0.00638416, -0.0030658583, 0.018415079, 0.02610796, -0.01320013, -0.0027752162, 0.0083572045, -0.0053544566, -0.00089600787, -0.026453407, -0.006081892, 0.022254875, 0.033880558, -0.0051451945, -0.027449895, -0.009107891, 0.017989911, 0.00020168482, 0.0011526033, 0.01591722, -0.013844525, 0.0013004155, 0.031063821, -0.034943476, 0.004999043, 0.00994494, -0.0106690535, 0.036032967, -0.025908662, 0.0102306, -0.0023782821, 0.016448678, 0.03053236, 0.0038663694, 0.012210287, 0.015678061, -0.011286876, 0.018800387, 0.008696009, 0.0056168647, 0.021431113, -0.017564744, -0.011273589, -0.011957844, -0.0059888866, 0.015518623, -0.01628924, -0.008264199, -0.01700671, 0.006463879, 0.0031073785, -0.0032120096, 0.020700356, -0.0040689884, -0.0018650914, -0.0054275324, -0.00969914, -0.03497005, 0.012396298, 0.02424785, -0.03611269, -0.033694547, -0.010615908, 0.011619038, -0.0035641016, 0.003843118, -0.0040955613, 0.0007452892, 0.013844525, -0.021524118, 0.006869117, 0.04227762, 0.0005019803, -0.008649507, 0.011154011, 0.0011036093, -0.0104365405, 0.015784353, -0.005042224, -0.012761677, -0.029336575, -0.0034611314, 0.0009582883, 0.01837522, -0.022334594, 0.015704636, -0.00046668807, 0.02234788, 0.0043413616, -0.022520605, 0.023889115, -0.015505337, 0.007712809, -0.0002869052, -0.021736702, -0.0017770685, 0.0051518376, 0.0012813162, -0.008310702, -0.028087646, -0.017405305, -0.023198217, -0.018561231, 0.014336126, -0.013924245, -0.016727695, -0.01424312, -0.027144305, -0.003926159, -0.008323988, 0.011147368, 0.01598365, 0.003175472, -0.014176688, 0.0006867456, -0.029974328, -0.025895374, 0.0052747377, -0.025975093, -0.0014000642, -0.010941427, 0.012429514, 0.05883259, 0.020235328, -0.014256407, 0.013153628, -0.008051614, -0.03228618, -0.0022005753, 0.006065284, 0.014841013, 0.014083683, 0.021311535, -0.011366595, 0.0008569788, 0.00994494, 0.02295906, 0.01454871, -0.025921948, 0.015199748, 0.007872247, 0.015611629, -0.007712809, -0.02719745, -0.014336126, 0.01147953, 0.00023625045, 0.020222042, 0.024221277, -0.0037268612, -0.014827726, 0.004866178, -0.016209522, 0.017378733, 0.029921181, -0.010615908, -0.033189658, -0.020434625, -0.019982886, 0.0033963597, 0.009599491, 0.011433027, 0.00025368898, 0.014708147, -0.015850786, 0.0057198354, -0.024872314, 0.0110145025, -0.039381165, 0.009021529, -0.0046702023, 0.009792145, 0.02113881, 0.0064140544, -0.017511597, 0.01614309, 0.015133316, -0.036165833, -0.023238076, 0.009127821, -0.025908662, -0.0074802954, -0.0073607173, 0.009154393, -0.013034049, 0.001798659, -0.01305398, 0.0027586082, -0.017019998, 0.025031753, 0.0073939334, -0.023875827, -0.026652705, 0.0060088164, 0.0027735555, -0.0012655385, -0.0007656342, 0.0045705535, -0.018282214, 0.02936315, 0.001886682, -0.0023749606, -0.020168897, 0.009519773, 0.00030745775, -0.010914854, -0.007088344, 0.1885619, 0.028406521, -0.010463113, 0.038318247, -0.022799622, 0.00061325467, 0.0064937733, 0.010316961, 0.01147953, 0.0143095525, 0.011785119, 0.010682341, 0.0027303742, -0.008855447, 0.017617889, -0.005739765, -0.031568706, -0.025204478, -0.008775729, -0.0052149487, -0.024779309, -0.0023699782, -0.0021191956, -0.027210737, 0.007985182, 0.021763276, -0.004789781, -0.0126886, 0.00871594, -0.014070396, 0.015810927, -0.035979822, 0.007280998, -0.0060885353, -0.021271676, -0.013399428, -0.0026705852, -0.023424087, -0.022866054, 0.029416295, -0.020368194, 0.011306806, -0.012595595, -0.011599109, 0.0029213675, 0.019730441, -0.0082974145, -0.0048263185, -0.035288926, -0.012894541, -0.04440346, -0.0130938385, 0.0011750242, 0.021152096, -0.009639351, -0.01864095, 0.025789082, -0.0050920486, -0.0004862026, 0.0037002882, -0.0035076342, 0.009958226, -0.005397638, 0.022467459, -0.012276719, 0.015996937, -0.014003963, -0.040178355, 0.016568257, -0.011878124, 0.005018973, -0.008476783, -0.003517599, -0.0009549667, -0.017232582, -0.01454871, 0.0011916324, 0.025775796, -0.0015154906, 0.017963339, 0.0032053664, -0.023277937, -0.0027038013, 0.0031273083, 0.006161611, -0.024354141, 0.013578796, -0.0065369545, 0.018043058, 0.0023118497, -0.01149946, -0.013778093, -0.019690583, -0.002502843, -0.0070817005, 0.004248356, -0.034598026, 0.031090394, -0.024327569, 0.0025676147, -0.02197586, 0.012017633, -0.010542832, -0.02776877, 0.005756373, 0.007978539, -0.025576498, 0.020049319, -0.0047798157, -0.022055577, -0.00022109554, -0.030585507, 0.010084448, -0.003024338, 0.023012206, -0.012290006, 0.0029379758, -0.004055702, 0.014880872, 0.009692497, 0.03340224, 0.02713102, 0.027582759, 0.009446696, 0.017591316, -0.028858263, -0.048283115, 0.010097735, 0.008722583, -0.020673783, 0.002901438, -0.009692497, -0.0027901635, -0.006081892, -0.012143855, -0.0040590237, 0.025496779, -0.017604603, -0.012250147, 0.0074603655, -0.013924245, -0.0033382312, 0.023091925, -0.0019614184, 0.034465164, -0.024340855, 0.00994494, -0.008264199, -0.010363464, 0.0023467268, -0.01432284, -0.017099716, 0.0158375, -0.018361934, 0.0031422556, 0.0036571072, -0.02784849, -0.0058493786, -0.020049319, 0.01248266, -0.012084065, 0.00022441716, 0.02034162, -0.015930505, -0.019145837, -0.02481917, -0.16900419, 0.008888664, 0.009559631, -0.024114985, 0.017471738, -0.004377899, 0.009293902, 0.009898437, -0.036644146, 0.0059955297, 0.0046303426, -0.006513703, -0.026426835, -0.036272127, 0.02402198, -0.008649507, -0.0023766214, 0.026293969, 0.007513512, 0.015505337, 0.010057875, -0.016302526, 0.020899653, -0.030824663, 0.008377134, 0.009406837, 0.0040424154, 0.044270594, 0.020819934, -0.0042782505, -0.0037534342, -0.014761293, 0.03962032, 0.020939512, 0.022082152, -0.010117664, 0.0058859163, 0.008403706, -0.01147953, 0.015199748, -0.0021723416, 0.021510832, 0.021032518, 0.016714409, 0.00019701378, 0.03159528, -0.006829257, -0.011047719, 0.025443634, -0.024380714, 0.04166644, -0.014163401, 0.0069754086, -0.011359951, 0.04807053, 0.0034611314, 0.009938297, -0.002371639, 0.028831689, -0.019690583, -0.0052680946, -0.0319673, 0.009034815, -0.020567492, -0.03372112, -0.024008693, -0.004593805, 0.0031073785, -0.01837522, 0.0070418413, 0.009360334, -0.0055504325, -0.009592848, -0.0069156196, -0.0036936451, 0.018959826, -0.029575733, -0.011864838, 0.02633383, -0.015452191, 0.0024629836, 0.03228618, -0.014216548, -0.0011177262, -0.027263884, -0.0027652513, -0.036511283, 0.0036637504, -0.016501823, 0.0048595346, -0.013479147, -0.012123925, -0.019371707, -0.0054507838, -0.0073740035, 0.015319326, 0.0076729497, -0.020886367, 0.0011667202, -0.005676654, 0.00814462, -0.016515112, -0.016754268, 0.019305274, 0.027184164, 0.015252894, 0.035023194, 0.01909269, 0.02944287, 0.0050455458, -0.009818718, 0.020142322, 0.0010695626, -0.0062380084, -0.0036770368, 0.010197383, 0.0026489946, -0.021045804, -0.0051916973, -0.017764041, 0.02269333, -0.026453407, -0.020793362, 0.011565892, 0.002705462, -0.0082376255, -0.092420846, -0.012130568, 0.015877359, 0.0124627305, 0.004354648, 0.019823447, -0.01526618, 0.044483177, -0.00023168323, 0.017936766, 0.0037168963, -0.01894654, 0.0017289049, 0.012044206, -0.009114535, -0.0073673604, 0.029788317, 0.0003684926, -0.019571004, -0.002300224, -0.008171193, -0.005493965, -0.019677296, 0.0068956898, -0.026200963, -0.009672567, -0.022640184, 0.042569924, 0.021563979, -0.00255765, -0.007832387, -0.011373238, 0.0032950502, -0.003554137, -0.009127821, 0.00014532101, 0.006729609, -0.0006996169, 0.010649124, -0.0336414, -0.00060993305, 0.008729226, 0.033880558, -0.040948972, 0.0027021405, -0.02113881, -0.0020328334, 0.010502973, 0.02545692, -0.004108848, -0.019876594, -0.007500225, 0.0009848613, -0.012595595, 0.01149946, -0.025563212, -0.0036471423, -0.009234113, -0.011373238, 0.028858263, -0.0041221343, 0.017299013, -0.028353376, 0.026373688, 0.018880107, -0.019863307, -0.013897671, 0.0017255832, 0.014003963, -0.0039427667, -0.026665991, 0.028007926, -0.0092806155, 0.034491736, -0.010688984, 0.0077260956, -0.014110255, -0.006822614, -0.005195019, 0.0059556705, -0.017857047, -0.014827726, 0.014110255, -0.023610098, -0.0044808695, 0.029974328, 0.01575778, -0.0037932936, 0.01708643, -0.033667974, 0.0224276, 0.032073595, 0.052455075, -0.0017754076, -0.021165384, 0.0069222627, 0.0063874815, -0.008031685, 0.007978539, -0.007513512, -0.024805883, -0.004816354, -0.07328829, 0.008802301, 0.016940279, -0.014708147, 0.009154393, 0.025217764, 0.029469442, -0.00835056, 0.0018086239, 0.0051717674, -0.008609648, -0.0066100303, -0.010629195, 0.00835056, -0.016847273, -0.0070484844, 0.032551907, 0.016475251, 0.023105212, -0.0091676805, 0.018694095, 0.00795861, -0.0055570756, 0.011233729, -0.03263163, -0.0054607484, -2.8830651E-05, 0.010914854, -0.006188184, 0.008490069, 0.007885533, -0.024008693, 0.011519389, 0.036963023, -0.023437373, -0.027954781, 0.0023467268, -0.002406516, 0.0016134785, -0.034039997, -0.03685673, -0.024327569, -0.0030641975, -0.015332613, -0.03443859, -0.007852318, 0.011831622, -0.015864072, 0.0149473045, 0.021537405, -0.004813032, 0.0034179504, -0.031302977, -0.031063821, -0.0016035136, -0.0010911532, -0.023012206, -0.011180583, 0.011579178, -0.03435887, 0.023729676, 0.01428298, 0.0049492186, -0.012077422, 0.0033050152, 0.0049957214, -0.02299892, 0.004816354, -0.0006688919, -0.0054607484, -0.007526798, 0.009054745, 0.032047022, 0.013073909, -0.03340224, -0.008217696, 0.014708147, 0.004899394, -0.0076928795, 0.009818718, 0.0020760144, -0.022905914, -0.018694095, 0.008682723, 0.022892628, 0.0025875445, -0.031993873, 0.008603004, -0.0061383597, 0.015824214, -0.025297483, 0.0020162254, -0.006400768, -0.009765572, 0.0073607173, -0.0051020132, -0.024978606, 0.0030741624, 0.012934401, 0.0022454173, -0.0025260944, 0.018335361, -0.012881255, 0.003613926, -0.0049857562, 0.014628429, -0.0049226456, -0.015771067, -0.02295906, 0.011592465, -0.0040058778, -0.00032053664, -0.00839042, 0.0072411387, -0.035368644, -0.006161611, -0.01017081, -0.0008835518, -0.02197586, 0.01454871, 0.01432284, 0.0121704275, 0.012396298, -0.0057862676, 0.005736443, 0.0040058778, 0.006145003, -0.022254875, 0.020394767, 0.0014963913, 0.0050023645, -0.0053212405, -0.008323988, -0.0063741948, -0.015066883, 0.0102306, 0.0029678703, 0.035820384, -0.0028765257, 0.06595415, 0.015731208, 0.008157907, 0.018361934, 0.007712809, -0.0024546795, 0.0027918243, -0.0045007993, -0.029868037, -0.03640499, -0.0002993613, 0.010383395, -0.009114535, -0.0061250734, -0.04788452, 0.031116966, 0.00648713, -0.0073939334, 0.001313702, -0.010024659, 0.011778476, -0.019238843, 0.016010225, -0.014296266, 0.0033448746, -4.159814E-05, 0.026918435, 0.027157592, -0.018082917, -0.025350628, 0.013977391, 0.022839481, -0.0022188444, -0.029469442, -0.016568257, -0.005430854, -0.016422106, 0.0399392, 0.0043147886, 0.0155850565, 0.020235328, 0.037680496, -0.0054806783, -0.0036903233, -0.0046170563, -0.033083368, -0.011904698, -0.016966851, -0.010542832]
+ },
+ {
+ "Id": 59,
+ "Type": "Navigation",
+ "Brand": "Quester",
+ "Name": "TrailSeeker GPS Watch",
+ "Description": "Stay on track and explore new trails with the TrailSeeker GPS Watch. With its durable design in stealth black, this watch is packed with features like GPS navigation, heart rate monitoring, and activity tracking. It also offers a long battery life, so you can keep going without worrying about recharging. The TrailSeeker is the ultimate companion for outdoor enthusiasts who love to explore.",
+ "Price": 149.99,
+ "Embedding": [-0.008936176, 0.00029353323, -0.008916019, -0.018436743, -0.00244737, 0.013417702, -0.011744688, -0.034481544, 0.0052810786, -0.014472574, 0.0022458022, 0.019041445, -0.0115968725, -0.015856674, -0.006409859, -0.003866744, 0.023395313, -0.0043034744, 0.010098551, -0.012907064, -0.0029227342, 0.014862272, 0.011919381, -0.018033607, -0.0073706657, -0.0064669694, 0.015332597, -0.011785002, 0.011623748, -0.001323629, 0.004945132, -0.0030100804, -0.020949623, -0.015762608, -0.0048880214, 0.014217255, -0.0061478205, -0.016286684, 0.0061780554, 0.006369545, 0.00978948, 0.016864512, -0.020197103, 0.009890264, -0.024685347, 0.012470333, -0.0012858352, -0.02617695, -0.014566639, 0.009675259, -0.009681977, 0.004135501, -0.014902585, -0.0016494972, 0.0048107533, -0.011274364, 0.022253094, -0.001054032, 0.017187022, -0.027601361, -0.009856669, -0.020734616, -0.020882433, 0.025115358, 0.0021164627, -0.013458015, -0.04197987, 0.025760375, 0.0030890277, 0.016797323, 0.000954088, 0.012470333, 0.013007848, 0.028031373, 0.0020022409, -0.033218388, -0.0019064962, -0.002183652, 0.011576716, 0.015426662, 0.020748055, -0.021299006, -0.015386349, 0.024430027, 0.008707733, 0.021500574, 0.0010028002, 0.021675266, -0.011301239, -0.007243006, -0.012456895, -0.01750953, -0.01668982, 0.021204941, -0.012329236, 0.00495857, -0.012335954, 0.010535281, -0.011724532, -0.016058242, -0.0022357237, 0.0040044817, 0.009594631, -0.00991714, -0.043726794, 0.0006760923, -0.0019921625, -0.019592399, 0.020640552, 0.0027094083, -0.027144475, 0.03585221, 0.024456903, 0.009191495, -0.01273909, -0.019095197, 0.02277717, -0.00073026365, 0.018302364, -0.030638319, 0.051198244, -0.021890271, 0.053455804, -0.009137744, -0.011086234, 0.02096306, -0.009782761, 0.0092183715, 0.031310212, -0.021003373, -0.015090715, 0.011791721, 0.009097431, 0.008580073, -0.035126563, -0.001374861, -0.0014664064, 0.01600449, -0.030288935, -0.0036047057, 0.004273239, 0.021473698, -0.0054322546, -0.010683098, -0.0011237409, -0.0035946271, 0.009930578, 0.017025767, 0.018974258, 0.012987691, 0.023368437, -0.0124904895, 0.02103025, 0.010098551, -0.031337086, -0.0061276634, 0.004316912, 0.00018760511, -0.01631356, -0.00028534455, -0.0071959733, 0.009722291, 0.03050394, 0.0023062725, 0.027762616, 0.025558807, -0.00150588, -0.005590149, -0.0022642792, -0.004175815, 0.007861148, 0.03155209, -0.023529692, 0.006765962, -0.01832924, 0.014029125, -0.0069204974, 0.0015327558, -0.008176937, -0.00078947423, -0.0036248625, -0.012671901, 0.008741328, -0.0035005622, -0.009023522, -0.019659588, 0.008398661, -0.023180306, 0.017536405, -0.0141769415, 0.006413218, -0.010542001, -0.0011195416, 0.011704375, -0.6622177, 0.009097431, -0.0055263196, -0.016058242, 0.029643917, 0.0151713425, 0.03163272, 0.0205868, -0.014109752, 0.0053247516, 0.007431136, 0.0075856713, -0.012833156, -0.0074983253, -0.023932826, -0.021124315, 0.0036987707, -0.028112, 0.03483093, 0.017119832, -0.01670326, -0.0006618145, -0.019807404, -0.004169096, -0.00015831477, 0.021366196, -0.0018258691, -0.028031373, -0.022992177, 0.021110876, -0.02447034, 0.0205868, 0.0052239676, 0.020680865, 0.049021307, -0.059234083, -0.0017956339, 0.056707766, 8.808097E-05, 0.051574502, -0.020237416, -0.018463617, 0.018221736, -0.006221729, -0.024215022, -0.0021416587, 0.022508414, 0.001933372, -0.0007814955, -0.028192628, 0.019323641, -0.015964177, 0.011892505, 0.023220621, -0.0014008968, 0.0044412124, 0.031095205, 0.00884883, 0.0076528606, 0.008701013, -0.02303249, 0.012120949, 0.012658463, -0.015332597, -0.024430027, 0.043458037, -0.030288935, 0.004172455, 0.015520727, -0.02773574, 0.035637204, 0.032734625, 0.008499445, 0.013693178, 0.009077273, 0.0141769415, 0.016797323, -0.016824199, -0.0013471453, 0.0011917701, 0.036739107, -0.0047166883, -0.0058992202, -0.012846593, 0.027063848, -0.009104149, 0.0067760404, -0.015346034, 0.017912665, 0.023744697, -0.0018225096, 0.008304597, -0.033030257, -0.01607168, -0.015910424, 0.011281082, -0.0025767095, 0.014015687, 0.012456895, -0.020613676, -0.033809654, 0.00022865357, 0.004222847, -0.005133262, -0.0036416599, 0.023677507, 0.01042106, 0.0015134389, 0.029455787, -0.027023533, -0.012255327, -0.030288935, -0.013740211, -0.0067122104, -0.023381874, -0.02592163, 0.013337075, -0.009863389, 0.03415904, -0.02881077, 0.017536405, -0.0069809677, 0.030611442, -0.015614792, -0.013720054, 0.020452421, 0.0139753735, -0.0049820864, -0.014916023, -0.014512887, -0.0037290058, -0.0057211686, 0.015977614, 0.0072631626, -0.0078208335, 0.0034972029, 0.009010084, -0.007625985, 0.00797537, -0.017025767, -0.006460251, 0.024645032, -0.0069070593, 0.0051433407, -0.020183664, -0.031229584, -0.004216128, -0.009440096, -0.025464743, -0.025881317, 0.01832924, -0.019753652, 0.004625983, 0.005778279, 0.0032116482, -0.03190148, -0.022454662, -0.025693186, -0.022212781, -0.0057984362, 0.015843235, -0.0064669694, -0.012759247, -0.010494968, 0.0038835413, -0.003937293, -0.014351633, 0.043350533, 0.0001236703, -0.03905042, -0.0039944034, 0.0034501702, -0.022938425, 0.030100804, 0.00035673316, 0.011744688, -0.01506384, -0.023650631, -0.00144373, 0.009883545, -0.014916023, 0.010179178, -0.030100804, 0.0064904857, 0.01800673, 0.0068331514, -0.002096306, 0.03230461, -0.009278841, 0.032895878, -0.0006664338, 0.0017586797, -0.018463617, 0.009285561, 0.0029529694, -0.0051937327, 0.0070817517, -0.011556558, 0.021554325, 0.020371795, 0.016044803, -0.021890271, 0.015547602, -0.02410752, 0.010582314, -0.020922747, 0.002894179, -0.014741331, 0.023825323, 0.020318042, -0.00083440705, -0.029455787, -0.006604708, -0.005516241, 0.0045016827, 0.0036987707, 0.014203817, 0.030073928, 0.0041052657, -0.018020168, 0.009453534, 0.0104009025, 0.006708851, -0.031525217, -0.005593509, 0.03324526, -0.0021702142, 0.023072803, -0.00018980975, -0.031793974, 0.031982105, 0.017872352, 0.016461378, 0.027507298, 0.021070562, 0.008438976, 0.0028219505, -0.005973128, 0.015977614, 0.008055996, 0.016085116, 0.014633829, 0.00433035, -0.036255345, 0.014486012, 0.025007855, 0.01832924, 0.0025263175, 0.009231809, 0.014512887, -0.020882433, -0.001738523, -0.011556558, 0.01123405, 0.00596305, -0.003068871, 0.0106024705, 0.0036080652, 0.014539763, 0.0347503, 0.011690937, 0.019296765, -0.0070683137, 0.0023684227, -0.0037189275, -0.0037525222, 0.0012043681, -0.00809631, 0.017576719, -0.011395304, 0.04466744, -0.010192616, 0.0032989944, 0.0024154552, 0.023381874, -0.0006269601, 0.02598882, 0.00790818, -0.0035543137, 0.0037323653, 0.0025128797, -0.019054884, 0.0149697745, 0.011287802, 0.00046276627, -0.013101912, -0.012940658, 0.006597989, -0.005737966, 0.031014578, -0.01776485, 0.002855545, -0.004807394, -0.011287802, 0.0027211665, 0.008956333, 0.034508422, -0.015722295, 0.014109752, -0.008748046, -0.02096306, 0.01167078, -0.015466976, -0.037572253, 0.030369561, -0.0051937327, -0.008989927, -0.012886907, 0.017496092, -0.004461369, -0.014486012, -0.031928353, 0.008795079, -0.03719599, -0.012248608, 0.010716693, -0.0041019064, 0.00014456197, 0.02166183, 0.010159021, -0.010387465, -0.016515128, -0.014257568, -0.007330352, 0.09105493, 0.007773801, 0.012396425, 0.00809631, -0.013202696, -0.008956333, -0.025370678, -0.011301239, 0.014365071, 0.011314677, -0.013148945, -0.0075856713, -0.014848834, -0.016394189, 0.016152306, 0.010965293, 0.0012908743, -0.024201583, -0.02378501, 0.009238528, 0.00809631, -0.013478172, 0.0061411015, 0.015668543, 0.023274371, -0.018356115, 0.025437867, -0.00025888876, 0.0079216175, -0.009749167, -0.004625983, -0.009184777, 0.011684218, 0.0009809637, -8.855339E-05, 0.016206058, -0.008465851, 0.0050425567, 0.016542004, -0.0062788394, 0.023395313, 0.010555438, 0.010877946, -0.011590153, 0.010427779, 0.008902581, 0.011146704, 0.01167078, 0.0036550977, -0.015480413, 0.026633836, -0.0009860029, -0.015896987, 0.0020173586, 0.009554317, 0.01952521, 0.008687575, 0.0007924137, -0.0005307954, -0.04243676, -0.017294524, -0.01694514, 0.022615917, 0.016797323, 0.0038029142, -0.0027833164, 0.017979855, -0.016676383, -0.014136627, -0.011079514, -0.0137872435, -0.0112071745, -0.0074916063, 0.00433035, 0.014445698, 0.0019787247, -0.0091310255, -0.0077939583, -0.0077872393, 0.014136627, 0.013605832, 0.0060907095, -0.014217255, -0.0012404823, 0.00012062578, -0.0013799001, -0.022374036, -0.0049182563, 0.014660704, 0.016232934, 0.010226211, -0.004793956, 0.030853324, 0.0053583463, -0.0075587956, -0.0008365067, 0.01776485, 0.025558807, 0.016488252, 0.024618158, 0.016528567, -0.006705492, -0.007444574, 0.008868987, 0.031202707, 0.0032116482, 0.0037961951, 0.012765966, 0.002334828, 0.0052575623, 0.006547597, -0.0061444608, 0.002905937, 0.0072026923, -0.0052743596, 0.006167977, 0.0034232945, -0.008640544, 0.00803584, -0.01600449, -0.030235182, -0.014606953, 0.040931717, -0.0026254216, 0.01838299, 0.010542001, 0.023005614, 0.0066114264, -0.0031696549, 0.013048161, 0.0042497227, 0.0065408777, -0.0060974285, -0.024833163, -0.0059899255, -0.021460261, -0.016609194, 0.014029125, 0.010521843, 0.0069742487, -0.029912673, 0.008586792, 0.008378505, 0.014620391, -0.0025279971, -0.020089598, -0.020613676, -0.022414349, -0.03106833, 0.02585444, -0.019243013, 0.015843235, -0.026875718, -0.023959702, -0.0056203846, -0.034185912, -0.034562174, 0.013894746, 0.029832046, 0.016824199, -0.017872352, 0.0092183715, -0.006604708, 0.0025279971, -0.0060974285, 0.00026077844, -0.01198657, -0.004135501, -0.015413224, 0.0073572276, 0.011885786, -0.015574479, -0.008076153, -0.010058237, -0.023449063, 0.0106024705, -0.006020161, -0.0004442892, -0.010468092, -0.071811914, -0.0070212814, -0.0104143405, -0.00796865, 0.0064333747, -0.027346043, -0.00583539, 0.03526094, 0.027977623, -0.008499445, 0.02258904, 0.0077872393, -0.003759241, 0.02881077, -0.010636065, 0.013565519, -0.0046931724, -0.010817477, -0.037303496, 0.0039675278, 0.024712222, -0.000784435, -0.011811878, -0.0006429176, -0.017993294, -0.006070553, 0.020694302, -0.0033913797, 0.01230236, -0.0011573356, -0.0063393097, -0.0053146733, -0.011932818, -0.02585444, -0.023879075, -0.0037861168, -0.0046360614, -0.007982088, 0.0006298996, -0.008506165, -0.01066966, 0.019807404, -0.0051937327, 0.03055769, 0.00080123235, 0.019713338, 0.01988803, 0.0027816368, -0.006413218, -0.015910424, 0.02096306, 0.015601354, 0.004323631, -0.007955212, -0.0043639448, -0.023180306, 0.027708866, 0.020868994, -0.004148939, -0.016810762, -0.0005118984, 0.01763047, 0.011805159, -0.026136635, -0.011959694, -0.009796199, 0.03991044, -0.02190371, 0.03200898, -0.004172455, -0.006016801, -0.033863403, 0.009547599, -0.03125646, 0.016017927, 0.010508406, -0.015278845, 0.0115095265, 0.014029125, 0.020761492, -0.008176937, 0.0075050443, 0.025693186, -0.015574479, -0.010918261, 0.013746929, 0.0017905947, 0.014996651, 0.012886907, 0.016085116, 0.027413232, -0.021352759, -0.02447034, 0.009695415, 0.0006244405, -0.008748046, 0.02660696, -0.02347594, -0.008701013, 0.013202696, -0.010743568, 0.012161262, 0.012624868, -0.018638311, -0.035475947, -0.0016293403, -0.014338195, -0.0009918819, -0.0040951874, 0.0077402066, -0.022750296, -0.01776485, -0.025370678, 0.0347503, 0.030262059, 0.02272342, -0.013733492, -0.008230689, 0.031793974, -0.03182085, -0.0052642813, 0.018167986, 0.01581636, -0.013095194, 0.026418831, 0.016017927, -0.055148974, -0.0014151746, -0.001105264, -0.016394189, -0.056224, -0.017590158, 0.015493851, 0.0068801837, 0.006456891, -0.011832035, -0.016461378, 0.025330365, 0.00027127677, -0.034804054, -0.0019736856, -0.020788368, 0.0024927228, 0.0347503, -0.021930587, 0.015346034, -0.0262307, 0.018208299, 0.015587917, 0.007236287, -0.017200459, -0.015184781, -0.0025783891, -0.0026153433, -0.011099671, 0.0038129925, -0.006117585, -0.022615917, 0.011260926, -0.005580071, 0.009097431, 0.0021718938, -0.0030537534, 0.00602352, 0.0139753735, 0.005052635, 0.01367974, 0.0015453538, -0.019928345, -0.0048309104, -0.013948497, 0.018477056, 0.033057135, 0.014472574, -0.03483093, -0.017334837, -0.011213893, -0.050875735, -0.024900353, 0.00043379088, 0.002598546, 0.03389028, 0.016891388, -0.016232934, 0.038996667, -0.00835163, 0.020398669, -0.0026287811, -0.012006727, 0.004128782, -0.0067189294, -0.003708849, -0.009057117, -0.028461386, -0.013800681, 0.01939083, -0.004243004, -0.006416578, 0.0026892514, -0.025679749, -0.037276622, 0.014781645, 0.007054876, 0.030745821, 0.025142234, 0.0034636082, -0.033191513, -0.011254207, -0.006359467, 0.012443458, -0.013337075, 0.0038331493, 0.0062788394, -0.0025968663, 0.014553201, -0.013612551, -0.0375185, -0.013706616, 3.8738828E-05, 0.0023230698, 0.0060033635, -0.015023526, 0.025128797, 0.01224189, -0.027789492, -0.0036013462, -0.00025237977, -0.0054759276, -3.351591E-05, 0.006947373, -0.019713338, 0.00853976, -0.0023213902, -0.0020257572, 0.014808521, -0.01142218, -0.0041052657, 0.0021416587, -0.033352766, 0.020640552, 0.022562165, -0.0053247516, -0.017670784, 0.00583539, -0.0036483787, 0.012954096, -0.015722295, 0.0044479314, -0.009561037, 0.009849951, -0.019175824, 0.0070884707, -0.009708853, 0.01845018, -0.023556566, -0.015655106, 0.026284453, 0.2133932, -0.005687574, -0.024147833, 0.021823082, 0.011133266, 0.041442357, 0.022387473, 0.0053079543, -0.0036819733, -0.011973132, -0.0027967545, 0.0087278895, -0.02805825, -0.013021286, 0.0070951893, -0.030288935, -0.039507303, -0.0038936196, -0.023959702, -0.02240091, 0.01600449, 0.0123897055, 0.020291166, -0.02103025, 0.032465868, -0.022105278, -0.008801797, -0.010051519, 0.0149697745, 0.031793974, -0.033164635, -0.028138876, 0.004871224, -0.005059354, -0.0035677515, 0.023798449, 0.013458015, 0.01625981, -0.0018997773, 0.017146708, -0.014889148, -0.004437853, 0.0014504489, -0.0089294575, 0.025410991, 0.009661821, -0.0025599122, 0.0060907095, -0.005734606, -0.019659588, -0.028192628, -0.03018143, 0.004699891, -0.004071671, -0.019753652, 0.0041623767, 0.017227335, -0.01983428, 0.0019585679, -0.015225094, -0.014015687, 0.004293396, -0.025706625, 0.029697668, -0.018275488, 0.0346428, 0.0010951855, 0.006547597, 0.017334837, -4.6815976E-06, 0.0008192895, -0.022736857, 0.011267644, 0.0051702163, 0.0022894752, -0.02629789, 0.006362826, -0.0026758136, 0.009124306, 0.016044803, 0.007773801, -0.015413224, 0.009735729, -0.017496092, 0.017952979, -0.029697668, 0.007995526, -0.015749171, -0.0008306276, 0.02021054, 0.019753652, -0.005633822, -0.015708856, -0.013706616, -0.01914895, -0.0060604746, -0.014297882, 0.037384123, -0.0147682065, 0.002334828, 0.00602688, 0.0075587956, -0.003940652, 0.006161258, -0.0173214, 0.010172459, 0.010589032, 0.013075037, 0.010447935, -0.029912673, -0.011079514, -0.031014578, 0.01713327, -0.018302364, 0.0005795077, 0.0154401, -0.005976488, -0.005737966, 0.017039206, -0.022763733, 0.039265424, -0.008882425, -0.0018225096, 0.0108040385, 0.005227327, -0.027413232, 0.004864505, -0.012920502, 0.004988805, -0.018611435, -0.015292283, -0.0065408777, 0.013921622, -0.01737515, 0.013545361, -0.00013721314, 0.0009364508, -0.008391943, -0.012967533, 0.007424417, 0.014526325, -0.0023633835, 0.00034854448, 0.008203813, 0.036416598, -0.03802914, 0.005737966, 0.010044799, -0.022924988, 0.0071019083, 0.011952976, -0.009251966, -0.00796865, 0.006947373, 0.00065887504, -0.0048880214, -0.04173799, -0.023449063, 0.014163503, -0.017334837, -0.008714451, 0.0149563365, 0.032412115, -0.012107511, -0.01699889, 0.028273255, -0.17254211, 0.025370678, 0.015641667, -0.025330365, 0.0018628231, -0.008674138, 0.038566656, 0.0074983253, -0.020640552, -0.0011329795, 0.025558807, 0.00326372, -0.038942914, -0.0055632736, 4.7163736E-05, 0.00066055474, -0.010434497, 0.016327, 0.0044714473, 0.013316918, 0.0061343824, 0.016904827, 0.00828444, -0.011455774, 0.021621514, -0.0020223977, -0.0070078433, 0.0015369551, -0.00052365655, -0.0012933939, 0.0033359486, -0.010185897, 0.026593523, 0.0044848854, -0.007041438, -0.009930578, 0.0030201587, -0.009762605, -0.011771564, 0.025370678, -0.006070553, -0.0027631598, 0.025021294, 0.0050190403, 0.030611442, 0.009829794, -0.03402466, 0.009339312, 0.0077536446, -0.03144459, 0.00853304, -0.009346031, -0.01800673, -0.017025767, 0.014015687, -0.0041455794, 0.010125427, -0.012013446, 0.023126556, -0.021634953, -0.024322525, 0.0022575604, -0.02554537, -0.010568876, -0.010286681, -0.012812998, -0.0034232945, 0.007625985, 0.0008192895, 0.0006609747, -0.040770464, -0.004293396, 0.0027010096, -0.0051500592, 0.01167078, 0.0008402861, -0.015507289, 0.010058237, 0.0044277743, 0.0031360602, 0.010535281, 0.01800673, -0.038244147, 0.0022978738, 0.018490493, -0.008391943, -0.0077872393, 0.012819718, -0.0070884707, -0.006231807, 0.014606953, -0.021258693, -0.010192616, 0.0050694323, 0.025088482, 0.022414349, 0.028542012, -0.017872352, 0.0018930584, -0.0053953, -0.000803332, -0.00029143356, -0.008002245, 0.007995526, 0.034051534, 0.0002435612, 0.04727439, 0.0006303196, 0.02265623, -0.010333713, -0.03251962, 0.0051366217, 0.0017351635, 0.020008972, 0.010353871, 0.026768215, 0.0045419964, -0.01926989, 0.009648383, -0.008116467, 0.021419948, -0.020170227, -0.025867878, 0.023623755, -0.019753652, -0.027184788, -0.08358348, -0.025518494, 0.029079527, 0.0035509542, -0.009070555, 0.006510643, -0.0066886945, 0.00972901, 0.016300123, 0.033540897, 0.010454654, -0.02516911, -0.0070817517, -0.0079350555, 0.0022390832, -0.0011514565, 0.033057135, -0.014848834, -0.0034384122, 0.025115358, -0.010877946, -0.0072833197, -0.0029227342, 0.0025783891, -0.00269933, -0.006708851, -0.02598882, 0.0032536415, 0.024591282, 0.031148957, 0.0012194857, -0.0039104167, -0.0017250851, -0.010347151, -0.031014578, -0.0049720076, -0.028407633, -0.009964173, 0.015708856, -0.03665848, -0.0037021302, 0.0034904839, 0.013854433, -0.02792387, -0.016985454, 0.011193736, -0.0056606983, 0.010972012, 0.0051164646, -0.034992184, -0.014821959, -0.018342678, -0.013733492, -0.024282211, 0.0014865631, -0.03055769, -0.021634953, 0.0006693734, 0.017670784, -0.005879063, -0.011099671, 0.00533483, 0.0050996672, 0.030638319, -0.023690945, 0.008109747, -0.018987695, 0.016958578, 0.028353883, -0.006100788, -0.010891384, 0.015668543, -0.0032687592, 0.037894763, -0.0065341587, 0.001977045, -0.02472566, -0.0070951893, 0.026351642, -0.018409867, -0.015480413, -0.013935059, 0.018047044, -0.03948043, 0.010730131, 0.0037693195, -0.0004442892, -0.00033258702, -0.010058237, -0.01875925, 0.009829794, 0.026956344, -0.0074647306, 0.00081593, -0.033782776, -0.0030890277, -0.012349392, -0.004995524, -0.01104592, -0.016891388, -0.00085414393, -0.011133266, -0.07514451, 0.015050402, 0.015292283, -0.013216134, -0.0043269903, -0.0015831478, 0.009896983, -0.017200459, 0.033782776, -0.027251977, 0.014606953, -0.021245254, 0.020062724, -0.015574479, 0.0054658493, -0.019162387, -0.0073773847, 0.0053012352, 0.017711097, 0.02510192, -0.010716693, 0.0022323644, -0.008835392, 0.008365067, -0.012107511, 0.012356111, -0.00872117, -0.00077015726, 0.0043269903, -0.025827564, -0.005677495, 0.0052810786, 0.006809635, 0.015010089, -0.012087354, -0.018302364, 0.0021500573, 0.011832035, -0.0012278843, -0.0068869027, 0.007773801, -0.0050123213, 0.021514012, 0.0012194857, -0.021016812, -0.02128557, 0.0051735756, -0.017536405, 0.0058454685, 0.0289989, 0.001323629, 0.00997761, 0.012194857, -0.017496092, -0.012893626, -0.0289989, -0.012913782, 1.7794664E-05, -0.013699898, -0.026889155, 0.050983235, 0.023892513, 0.019699901, 0.014418823, 0.016152306, -0.0023146712, -0.025357239, -0.01631356, 0.012624868, 0.016837638, -0.013673021, -0.00395409, 0.041657362, -0.00847257, -0.0012287243, -0.02077493, -0.0018292286, -0.014042563, -0.030933952, 0.023610318, 0.011328115, 0.00071724574, -0.04052858, 0.0029092964, 0.008506165, 0.008042558, -0.018718937, -0.012913782, -0.0043941797, 0.0039104167, -0.022374036, -0.0024809646, 0.004525199, -0.017307961, -0.010347151, 0.016421063, -0.0025834283, -0.013908184, -0.003018479, 0.03190148, -0.0072900383, 0.012947377, -0.0025565526, -0.0123897055, 0.0009986009, 0.018786127, -0.010508406, -0.009655101, -0.032546494, -0.00884883, 0.0065811914, -0.004320272, -0.012309079, 0.010306838, -0.024443466, -0.00029836246, -0.012638306, -0.0034602487, -0.014230693, 0.004132142, 0.019753652, 0.010306838, 0.0032670794, -0.0045218393, 0.01135499, -0.024497217, 0.017993294, -0.0032872362, -0.011590153, 0.0041119847, 0.03628222, 0.019444581, 0.010743568, 0.0048342696, -0.008432256, 0.01945802, -0.00018865494, 0.029778296, -0.05377831, 0.07224193, 0.021097438, 0.0058656256, -0.01386787, -0.017751412, 0.00090705545, 0.010306838, 0.0121747, -0.047785025, -0.027628237, 0.00012251548, -0.0027715585, -0.0043269903, 0.012651744, -0.007323633, 0.026687589, 0.005936174, 0.027171351, -0.018866753, -0.012645025, 0.042087372, -0.012026884, 0.006759243, -0.0049552103, 0.014257568, -0.0040044817, 0.03257337, 0.012167981, -0.0003540036, -0.01386787, 0.030369561, -0.019377392, -0.015090715, -0.0045722313, -0.0030856684, -0.009809637, -0.008889143, 0.007827553, 0.012483771, 0.03679286, 0.0073169144, -0.0032956349, -7.611287E-07, 0.0046024667, 0.0038029142, 0.00093057175, -0.011952976, -0.009621507, -0.018275488]
+ },
+ {
+ "Id": 60,
+ "Type": "Ski/boarding",
+ "Brand": "WildRunner",
+ "Name": "SummitRider Snowboard Boots",
+ "Description": "Conquer the mountains in style with the SummitRider Snowboard Boots in matte black. These high-performance boots combine comfort, durability, and response to enhance your riding experience. Featuring a heat-moldable liner, dual-zone lacing system, and impact-resistant outsole, they provide a precise and snug fit, ensuring maximum control on any terrain. Get ready to take on the slopes like a pro!",
+ "Price": 249.00,
+ "Embedding": [-0.004432687, -0.020030163, -0.015019299, -0.038757768, -0.013138564, 0.01347085, -0.014607266, -0.047264274, -0.0038943847, -0.050002307, 0.001933901, 0.008214095, -0.01763771, -0.021797922, -0.0072969873, -0.016733892, 0.022050459, 0.011390743, -0.0041269846, -0.00034703055, 0.0029473715, 0.0018541524, 0.00072064396, -0.007828644, -0.0076292725, -0.038518522, 0.018222531, -0.020801065, -0.001716254, -0.013085399, 0.012068605, -0.0004693531, -0.008406821, -0.015099048, -0.014514226, 0.002194745, 0.00096445833, -8.680956E-05, -0.0050839665, -0.0057286, 0.020827647, -0.026795493, 0.0064695966, -0.0001886758, 0.014500935, 0.009742607, 0.012753113, -0.045483224, -0.0057153087, 0.015723744, 0.001035069, 0.017425045, -0.027353734, -0.0042466074, 0.0020286024, -0.0051504234, -0.00091046194, 0.005642206, 0.022329578, -0.025718888, -0.025904968, -0.006436368, -0.021492219, 0.02066815, 0.0063798795, -0.016202236, -0.044180665, -0.007562815, 0.003618588, 0.005678757, 0.0029789384, 0.012361016, 0.0151123395, -0.0034923195, -0.010300847, -0.025120776, -0.015949698, 0.0044061043, 0.005529229, -0.001704624, 0.028230967, -0.01379649, 0.004721775, 0.013464204, 0.014567391, 0.0031616956, 0.01347085, 0.006386525, -0.026263837, -0.014407895, 0.0011023568, 0.0013997522, 0.003253074, 0.019551672, -0.01150372, 0.006140634, 0.008845437, -0.0052368175, -0.01907318, -0.016255401, 0.035328582, 0.021226391, -0.0035454852, -0.021651715, -0.044340163, 0.0066523533, 0.0049676667, 0.011636634, 0.013743323, 0.0020535237, 0.0026549601, 0.0212131, 0.0059047113, -0.013650284, 0.014208524, 0.0066257706, 0.022821361, 0.006845079, 0.0027911973, -0.04045907, 0.023525806, 0.010134704, 0.018461777, -0.017983286, -0.0033029167, 0.0122214565, -0.013570535, -0.007961558, 0.025931552, 0.009576465, 0.022489075, 0.0056687887, -0.0050374465, 0.0030836083, -0.003801345, 0.006595865, -0.012367662, 0.018568108, -0.028576544, 0.003891062, -0.00070901396, 0.002902513, -0.018926976, 0.0055624573, 0.008366946, 0.019485215, -0.0019538382, -0.005233495, 0.03386653, -0.016600978, 0.021478927, -0.019511798, 0.03766787, 0.006117374, 0.004097079, 0.0043595843, 0.026768912, 0.023233395, -0.006685582, -0.0014188587, 0.008812209, -0.00427319, 0.02084094, -0.0010608211, 0.044765487, 0.022635281, 0.019564964, -0.026170798, 0.008599546, -0.00305038, 0.011138206, 0.012553742, -0.022582116, 0.03641848, 0.0269417, 0.0058282856, -0.015378168, 0.010579967, 2.9058747E-06, 0.014009152, -0.0046985154, -0.022675155, 0.008121055, 0.032431055, -0.019325718, -0.030623421, 0.0028925443, 0.0019770982, 0.008307135, 0.0013025587, -0.014195232, 0.018754188, 0.016880097, -0.003841219, -0.6435172, -0.0002458912, 0.008891957, -0.014155357, 0.017159218, -0.0033976182, 0.028417047, 0.0122214565, -0.0056222687, 0.011656571, -0.0026865273, 0.02450937, 0.0052899835, -0.020123202, -0.018767478, -0.019020015, 0.0020535237, 0.0018308925, 0.00032688575, -0.013823072, -0.020694735, 0.013504079, -0.027101196, 0.001661427, 0.0061605712, -0.009882168, -0.004728421, 0.009317283, -0.013058816, 0.002342612, -0.049231403, 0.0334412, 0.0031450812, 0.01201544, 0.047742765, -0.029267697, -0.012646782, 0.03166015, 0.012380954, 0.04968331, 0.0015791863, -0.017013012, 0.009662859, -0.0025120776, 0.0088255, 0.011929045, 0.028496794, -0.00598446, 0.007097616, -0.016162362, 0.02395113, 0.017717456, -0.0019837439, 0.0034491224, -0.016454773, -0.025679015, 0.034052607, -0.0007497189, 0.009436905, 0.002942387, -0.011443908, 0.0035355166, -0.018195948, -0.029666439, -0.029241115, 0.015989574, -0.030676587, -0.023419473, 0.022170082, -0.014407895, -2.6491973E-05, -0.0023741792, -0.0054195747, 0.022396035, 0.0024223605, 0.034531098, 0.023605553, -0.023020731, -0.0018358767, 0.020987146, -0.0057917344, 0.01136416, -0.01812949, -0.034717176, 0.017039595, -0.028390463, 0.005894743, 0.0026599446, 0.011184726, 0.0074697756, 0.014049026, 0.014102192, -0.029666439, -0.022382744, -0.011842651, 0.012686656, -0.011510366, 0.018142782, 0.035142504, -0.02395113, -0.0015060835, -0.0056255916, 0.0038079906, 0.017797206, 0.021106768, 0.013311353, -0.017212383, -0.005525906, 0.013344581, -0.018182656, 0.002299415, 0.0076957294, -0.0099286875, -0.012148354, 0.0011056797, -0.026237255, 0.017106052, -0.015351585, -0.0020850908, -0.027486647, 0.019006724, 0.0080346605, -0.0077156667, -0.019764336, -0.031979147, 0.026210671, 0.017717456, 0.023804925, -0.007994787, -0.02347264, 0.0034258624, 0.0024655575, 0.026715746, -0.014660431, 0.0014412879, 0.0080346605, 0.01588324, -0.013490787, 0.030357594, -0.012354371, -0.007768832, 0.010932189, -0.011789486, 0.005778443, -0.015976282, -0.011776194, -0.03088925, 2.0586118E-05, -0.012347725, -0.016813641, -0.0039841016, -0.015710453, -0.021704882, -0.012653427, 0.016122486, -0.022396035, 0.007303633, -0.009596402, 0.00016666189, -0.01018787, 0.009317283, -0.000591468, -0.009622985, -0.0034956422, -0.0064263996, -0.012666719, -0.017106052, 0.013550598, -0.017238965, -0.048247837, -0.015830075, -0.023339726, -0.0025070934, 0.012686656, 0.007981495, 0.001159676, -0.017890245, -0.01622882, -0.012686656, -0.005436189, 0.016215527, 0.0032431055, -0.04085781, -0.0033012554, 0.012547096, -0.007097616, 0.038624853, 0.01009483, -0.02329985, 0.0065360535, -0.023791634, 0.014394603, 0.0043595843, 0.004588861, 0.017916828, -0.029241115, 0.012746467, -0.0052866605, 0.017106052, 0.020216243, 0.009038162, -0.034770343, 0.0023376278, -0.011437263, 0.020973854, 0.0007904239, -0.0061339885, -0.029639857, 0.021000437, -0.0028343943, 0.023113772, -0.059492376, -0.022130206, -0.03463743, 0.004838075, -0.004462593, -0.0021415793, 0.027380316, -0.0053630862, -0.023313142, -0.009696088, -0.0045589553, 0.030570256, -0.021518802, -0.006266902, 0.0073567983, -0.01907318, 0.011676509, 0.016787058, 0.011078395, 0.0075096497, 0.009124557, 0.04085781, -0.0099286875, 0.013876238, -0.013942695, 0.00019417927, -0.02197071, 0.065234266, -0.009516654, 0.032271557, 0.015471208, 0.0019388852, -0.0011023568, 0.013583827, 0.01305217, 0.01943205, 0.02488153, 0.016002864, 0.001603277, -0.004708484, 0.00868594, 0.007164073, -0.007642564, 0.019883957, -0.012626844, 0.019564964, 0.0050739977, 0.024389748, 0.009961916, -0.0010159626, 0.018063033, -0.0031633568, -0.006984639, 0.02900187, -0.006984639, -0.014673723, -0.02892212, -0.020415613, -0.02545306, -0.00043238635, -0.00868594, 0.013158501, 0.012792988, 0.0028526701, 0.0023725177, 0.0032896253, 0.029241115, 0.021824505, 0.032324724, -0.016388316, -0.029799353, 0.034610845, 0.016082613, -0.0064463364, 0.009137848, -0.0033411295, 0.0028958672, -0.0072504673, 0.03548808, 0.017159218, -0.0077023753, -0.005050738, -0.0019239323, 0.016281985, -0.008420112, 0.0139161125, -0.0077887694, 0.0075893984, 0.012101834, 0.00873246, -0.013510724, -0.015710453, -0.029613273, 0.034318436, -0.020761192, -0.016082613, -0.014593975, -0.008805563, 0.0011447232, 0.014846511, -0.009908751, -0.009151139, -0.028044887, 0.0012768066, 0.00427319, -0.000115884526, -0.019405467, 0.036950134, 0.021146642, -0.018980142, -0.0051039034, 0.011862588, -0.011776194, 0.08155613, 0.026277129, 0.0037448562, 0.020056747, -0.0123277875, -0.011304349, -0.019883957, -0.009902105, -0.0031184985, -0.00074930355, 0.010553384, 0.012513868, -0.0037415335, -0.011849297, 0.010181224, -9.662236E-05, 0.0017062855, -0.011789486, -0.0034823508, -0.016122486, -0.017916828, 0.0020086651, 0.009729316, 0.015099048, 0.009370448, -0.0034690595, 0.012194874, 0.023353018, 0.0120220855, -0.032377888, -0.012739821, -0.018461777, 0.013012296, 0.02348593, -0.025200523, 0.008798917, -0.0066324165, -0.044632573, 0.03240447, -0.01887381, 0.012905965, 0.013331289, 0.011636634, -0.0072039473, 0.008931831, -0.019897249, 0.012899319, 0.012241393, 0.01652123, -0.025958134, 0.015059174, 0.0022927693, -0.029320862, 0.0017112697, -0.03859827, 0.012872736, -8.365544E-06, -0.00568208, 0.0003522225, -0.022568824, -0.028576544, -0.026263837, 0.020123202, -0.01042047, -0.007071033, -0.004678578, -0.013902821, 0.031394325, -0.009729316, 0.021452345, 0.015391459, -0.025107484, 0.00023010763, 0.013450912, 0.012115126, 0.0072637587, -0.021837795, -0.02892212, 0.03033101, -0.002774583, 0.020269409, -0.009284054, 0.021252973, -0.008307135, 0.0044094273, -0.013530661, 0.00082531385, -0.010845795, -0.007110907, 0.013650284, 0.02319352, -0.009981853, -0.005316566, -0.015484499, -0.0036451707, -0.00300386, 0.020109912, 0.00995527, 0.01446106, -0.0034059251, 0.010486927, -0.014142066, 0.012759759, 0.0016772104, 0.016321858, -0.014700306, 0.00849986, 0.019113056, 0.011217955, 0.0034790281, 0.0071973014, -0.0066091563, -0.025399895, 0.018634565, -0.020601694, 0.0015434657, 0.002879253, 0.04085781, 0.006436368, -0.014859803, -0.012985713, -0.03527542, 0.03729571, 0.0026317004, -0.016627561, 0.002194745, 0.014687014, -0.01604274, -0.028656293, 0.0051105493, 0.006097437, 0.0274069, 0.009622985, -0.0031018842, -0.016893389, -0.015697163, -0.022715028, -0.02403088, 0.010759401, 0.0064961794, 0.00967615, 0.009755899, 0.003661785, 0.0017444983, -0.012347725, -0.018528232, -0.015816785, 0.009343865, -0.017052887, 0.03756154, -0.006004397, 0.020123202, -0.012287914, -0.015856659, -0.015045882, -0.04601488, -0.019817501, -0.0053763776, 0.018475067, 0.036285564, -0.0070843245, -0.010619841, 0.007954912, 0.0019073181, -0.020761192, -0.008313781, -0.036551394, 0.00053871766, -0.028868955, -9.3714865E-05, -0.0009528283, 0.018302279, -0.0064164307, -0.006343328, 0.0046985154, -0.005934617, -0.0015476192, -0.023924548, -0.01859469, -0.042213537, 0.0087258145, -0.02769931, -0.013889529, 0.014859803, -0.04327685, -0.008001432, 0.04864658, -0.0008111917, -0.0010159626, 9.0859285E-05, 0.017810497, -0.022847943, 0.020149786, 0.013304707, 0.018754188, 0.01150372, -0.008958414, -0.029374028, 0.01850165, 0.023738468, -0.0033045781, 0.006187154, 0.03867802, 0.003884416, 0.009742607, 0.013862946, 0.0003140097, -0.023113772, 0.032431055, -0.017026303, 0.0064928564, -0.019711168, -0.024522662, -0.019086473, -0.008818855, -0.006233674, -0.01263349, 0.018807353, -0.045031317, 0.0041602133, 0.009018226, -0.023685303, 0.01793012, 0.019937124, 0.013583827, 0.020109912, -0.0071507813, -6.142088E-05, -0.02656954, -0.0074232556, -0.0046553183, 0.013444267, 0.02048207, -0.009875522, -0.0038113133, 0.015152214, -0.015045882, -0.023153646, -0.013311353, 0.014726888, 0.019418757, 0.016135778, -0.0027911973, -0.024230251, 0.009749253, 0.00919766, -0.039794497, 0.016600978, -0.020814357, -0.016295275, 0.008805563, 0.01961813, -5.186767E-05, 0.0037847306, 0.0017876953, -0.023499222, -0.006735425, -0.011882526, 0.018076325, -0.007569461, -0.024522662, 0.05042763, -0.016175652, 0.01069959, 0.0069713476, 0.010181224, -0.0012377631, 0.005525906, -0.008646065, 0.02873604, -0.009842293, 0.004721775, 0.021425761, -0.01774404, -0.016627561, -0.0006035133, -0.006845079, -0.009941978, 0.026742328, -0.0011796132, 0.012075251, -0.006353297, -0.027672727, -0.008479923, -0.019883957, -0.0137167405, -0.033467785, -0.016760474, -0.015032591, -0.025984718, -0.022396035, -0.009649567, 0.009151139, 0.031793065, 0.0017594511, -0.005147101, -0.009716025, 0.016880097, -0.03527542, 0.018541524, 0.013258187, 0.02648979, -0.0078087067, 0.01596299, 0.0024605733, -0.031793065, 0.0033909725, -0.011909109, -0.0127198845, -0.029214531, -0.0011854281, -0.015325002, 0.0024971247, -0.015989574, 0.0152186705, -0.0035155795, 0.010300847, 7.4868054E-05, 0.0052899835, -0.0038345733, -0.0014354729, 0.016188944, 0.007921684, -0.016853515, 0.0139161125, -0.0075362325, -0.0002649976, 0.009556528, -0.03559441, -0.017332006, 0.0072969873, 0.019844083, 0.0017112697, -0.03370703, -0.011284412, -0.0025868418, -0.0039973934, 0.011962274, -0.0024838333, -0.008586254, 0.023233395, 0.016135778, 0.014407895, 0.020322574, -0.033760194, -0.019498507, 0.027539814, -0.0131186275, -0.00901158, -0.024668867, 0.006180508, 0.07714338, -0.01729213, -0.0029722927, 0.0018940268, 0.012593616, -0.051916268, -0.005778443, 0.0016680727, 0.023512514, 0.029241115, 0.005432866, -0.017199092, -0.007436547, 0.013371164, 0.0085929, -0.01263349, -0.016667435, 0.019817501, 0.00278289, -0.006270225, -0.019764336, -0.021120058, 0.0012095188, 0.030012017, -0.0046486724, 0.015550956, 0.025944844, -0.03051709, -0.026981574, 0.0018790739, -0.0009387062, 0.045430057, 0.034026023, 0.019883957, -0.048726328, -0.014221814, -0.0013690158, -0.0049111783, 0.016853515, 0.005050738, -0.0069713476, 0.023459349, 0.017438337, -0.0062502883, -0.020136494, -0.02048207, 0.0053099203, 0.007071033, -0.01314521, 0.0024771877, 0.00054453267, 0.008147637, -0.028310714, -0.015630705, 0.028629709, 0.008486569, -0.012234748, -0.0057418915, -0.02629042, -0.012653427, 0.02139918, 0.012892673, 0.013178439, 0.00026665902, -0.027619561, 0.029533526, -0.008785626, 0.011762903, 0.0038378963, -0.02356568, -0.023140354, 8.774411E-05, -0.0042466074, 0.028895536, 0.0095232995, 0.0042399615, -0.017491503, 0.022821361, 0.009084683, -0.0018325539, -0.010287556, 0.016215527, -0.0087258145, -0.008014724, 0.02458912, 0.211812, -0.014846511, -0.014301563, 0.034983005, 0.0021349336, 0.009835647, 0.007064387, -0.0005196113, 0.008081181, -0.008772334, 0.01634844, 0.018421901, -0.004688547, -0.008506506, 0.040831227, -0.0073102787, -0.033361454, 0.003552131, -0.006266902, 0.01178284, -0.0036484937, -0.00040746495, 0.024084045, -0.03673747, 0.021226391, 0.02272832, -0.0003983271, 0.00043404778, -0.001829231, 0.002229635, -0.005323212, -0.033574115, 0.004502467, 0.0041668587, 0.013304707, -0.008214095, 0.030836085, -0.0010674668, -0.01588324, 0.03426527, -0.025373312, 0.021359304, 0.014235106, -0.0114572, 0.0007085986, 0.0025569361, -0.013550598, 0.0185814, -0.0011106639, 0.009802419, -0.013264833, -0.028124636, 0.021000437, 0.027646145, 0.0013698465, -0.014142066, 0.03737546, -0.01907318, 0.014540808, -0.011975565, -0.025851803, 0.015378168, -0.021279557, 0.0371628, 0.0059213256, 0.028417047, 0.022582116, -0.008559671, -0.011616698, 0.013092045, 0.009563173, 0.0028061501, -0.012440765, 0.026662579, -0.025479643, -0.025599265, 0.0014022443, -0.010380596, 0.017066177, 0.025067609, -0.006233674, -0.02094727, -0.009370448, 0.01661427, -0.008240677, -0.021625133, 0.012168291, 0.0026017947, 0.006190477, 0.0023376278, 0.0060808226, 0.0016689034, -0.009171077, -0.010978709, 0.00995527, 0.010785984, -0.045270562, 0.040033743, -0.0045290496, -0.004070496, -0.009357156, -0.00424993, 0.012334433, -0.005515937, 0.0015542649, -0.014580683, 0.014567391, 0.002591826, 0.007270404, -0.014793346, 0.008061243, -0.04216037, 0.012048668, 0.00014630941, -0.021412471, -0.0044426555, 0.025054319, -0.017385172, -0.012301205, -0.036179233, 0.031474072, -0.0032198455, 0.019285845, -0.009795773, -0.010526801, -0.005429543, 0.0030370886, 0.022090333, -0.008479923, -0.013849655, 0.020854231, -0.0011206325, 0.013942695, -0.014979425, -0.013025587, -0.022409327, 0.030809501, -0.0034923195, -0.023339726, 0.0011505382, -0.021997293, 0.011663217, 0.021372596, 0.01427498, 0.019950414, -0.036764055, 0.026250545, -0.010294202, -0.016454773, 0.020309282, -0.0028543314, -0.005047415, -0.013205022, -0.03511592, 0.033839945, 0.022116916, -0.036126066, -0.026503082, -0.0018425225, 0.00896506, -0.025599265, 0.016162362, 0.010526801, -0.04035274, -0.014607266, 0.01319173, -0.16864148, 0.024868239, 0.029320862, -0.006645708, 0.021226391, -0.009596402, 0.023153646, 0.015497791, -0.023711884, -0.0029158043, 0.017571252, 0.00022304656, -0.011862588, -0.02458912, 0.015617413, 0.013311353, -0.00029843382, 0.0064097852, 0.018807353, 0.02093398, 0.03426527, -0.027672727, -0.013510724, 0.00091378484, 0.012626844, -0.026343586, 0.0075362325, 0.020907396, 0.0020717995, -0.010108122, -0.018382028, -0.0067586848, 0.013244895, 0.015750328, 0.028204383, 0.0040605273, -5.0543724E-05, 0.022489075, -0.0008772334, 0.020402323, 0.016122486, 0.009961916, 0.028018303, -0.009377094, 0.03458426, 0.0053597633, -0.01933901, 0.0015941391, 0.006688905, -0.01878077, 0.015471208, -0.025173942, -0.01980421, -0.00040393442, 0.053085912, 0.0038810933, 0.01793012, 0.010147995, -0.00438949, -0.0035753907, 0.00901158, -0.015710453, -0.0015783556, 0.006094114, 0.00013291415, -0.0060409484, 0.020322574, 0.0015958006, -0.021532092, -0.022316286, 0.0019322395, 0.02629042, 0.0024888176, -0.01178284, 0.020708025, 0.022462493, 0.0018840581, -0.006519439, -0.0063832025, -0.03857169, 0.005439512, 0.03495642, -0.0030387498, 0.0030802856, -0.0070909704, 0.04516423, -0.015311711, -0.0025536132, 0.0076292725, -0.024961278, 0.015750328, -0.01379649, -0.023645429, -0.01699972, 0.010300847, -6.5574444E-05, 0.0013316337, -0.019485215, -0.0013432637, -0.009343865, 0.007596044, 0.001011809, -0.016747184, -0.0030836083, 0.022289705, -0.0007742249, 0.00854638, 0.019192804, 0.008028015, 0.015537664, 0.0009204305, -0.0023575649, -0.012400891, 0.0145541, 0.010260973, -0.0009129541, 0.0030836083, -0.02929428, 0.013411039, -0.02189096, 0.016627561, -0.01680035, -0.033361454, 0.004751681, -0.013743323, -0.01839532, -0.085384056, -0.013178439, 0.033201955, 0.003362728, -0.0076957294, -0.0074697756, -0.0057119858, 0.0059080343, -0.00059063727, 0.008586254, -0.0012577001, -0.025439769, 0.0016514583, 0.022316286, 0.017770622, -0.0012037038, 0.021359304, -0.012487285, -0.03445135, 0.010041664, -0.005024155, -0.018634565, -0.0003792207, 0.004941084, -0.026436625, -0.004721775, -0.00811441, -0.012932547, 0.014088901, 0.021492219, 0.0013067123, 0.007396673, 0.004223347, 0.0034258624, -0.009416968, -0.0047151297, -0.048247837, 0.015577539, 0.019126346, -0.0041037244, 0.012035376, 0.0152186705, -0.024097336, -0.026888534, -0.022595406, 0.0024190375, 0.0005221034, 0.006256934, 0.016002864, 0.013038878, 0.009636276, -0.0010358997, -0.030968998, -0.0025004474, 0.020269409, -0.012613554, 0.024203667, -0.018940266, -0.013171793, 0.018913684, -0.0051703607, 0.014992717, -0.007921684, 0.034212105, 0.0009486748, 0.0009810727, -0.007921684, 0.021758048, 0.01028091, -0.0041701817, -0.0066224476, 0.008539734, -0.021545384, 0.01820924, -0.011164789, -0.0069647017, -0.04008691, -0.03426527, 0.0011737981, -0.017611125, 0.00039064302, -0.022223247, 0.04572247, -0.031314574, 0.007768832, 0.035062753, 0.018701022, -0.028071469, 0.009935333, -0.008931831, 0.010314139, 0.029799353, 0.035302, -0.011742965, -0.018408611, -0.0075428784, 0.010440407, 0.00078959315, 0.012606908, 0.00039521194, -0.034238685, -0.0017129312, -0.065500095, 0.035993155, 0.011251183, -0.024934696, -0.0017195769, 0.00944355, 0.016880097, -0.01622882, 0.013337935, -0.0044426555, -0.00397081, -0.014819928, -0.0051304866, 0.015697163, -0.015364876, -0.015338293, 0.010573321, 0.00563556, 0.031314574, 0.001055006, -0.013583827, -0.021279557, -0.00610076, 0.015856659, -0.02948036, -0.004572247, -0.01859469, 0.016122486, 0.009689442, 0.01802316, 0.011683154, -0.009622985, 0.029639857, 0.044765487, -0.022582116, -0.03248422, 0.03522225, 0.021385888, -0.0042399615, -0.015590831, -0.0010608211, -0.004844721, -0.019405467, -0.015750328, -0.007024513, -0.010486927, 0.009310637, 0.0052634007, 0.008293843, -1.0039951E-05, -0.010812567, 0.025865095, 0.005735246, -0.03878435, -0.0012311174, -0.0071507813, 0.0071308445, -0.0024173763, -0.0124208275, -0.033122208, 0.025958134, -0.0031783096, 0.02929428, -0.0029274342, 0.035036173, 0.011191372, -0.021731464, 0.0038179592, -0.004927792, -0.0048148152, -0.025585975, -0.005522583, -0.0023559034, 0.009915396, -0.0055890405, -0.0026333616, 0.005353118, -0.012115126, -0.027566396, 0.013942695, -0.004728421, 0.0073567983, -0.03737546, 0.01446106, -0.018926976, -0.009716025, -0.037907116, -0.0038079906, -0.0041469214, 0.009589756, -0.023313142, -6.188815E-05, -0.0212131, -0.025213815, 0.015258545, 0.022223247, -0.0009669505, -0.0021316109, 0.0075362325, -0.017651, -0.013417684, -0.00431971, -0.021638425, -0.00976919, -0.013530661, 0.018514942, 0.009277408, -0.025904968, -0.03463743, 0.024044171, 0.001988728, 0.019764336, -0.0010566675, 0.002090075, 0.0032347983, -0.008273906, 0.00408711, -0.02534673, -0.033919692, 0.0093305735, 0.028656293, 0.021066893, 0.0052634007, -0.012786342, 0.0041136933, 0.004276513, -0.00986223, -0.002615086, -0.0021349336, 0.024429621, 0.005602332, -0.006190477, 0.010932189, -0.007529587, -0.011184726, -0.008406821, -0.00036676, 0.041575547, 0.0043795216, 0.062948145, 0.016880097, -0.024057463, 0.013032233, -0.0074564843, 0.027114488, 0.011065103, -0.015976282, -0.02056182, -0.017664291, 0.0069580562, -0.013298062, -0.021864379, 0.009317283, -0.032829795, 0.014341437, 0.011377452, 0.022010583, -0.020269409, -0.03128799, 0.035302, -0.015471208, 0.020455489, -0.00067910826, -0.0006575097, -0.011071749, 0.004220024, 0.022874527, -0.018794062, -0.010918898, 0.008818855, 0.0099286875, -0.0041103703, -0.014102192, -0.005974491, -0.010805921, -0.0119223995, 0.020455489, -0.0011289396, 0.019378884, 0.005436189, 0.011310995, -0.031075329, -0.028762624, 0.01187588, 0.009004934, -0.014766763, -0.034983005, -0.0023326434]
+ },
+ {
+ "Id": 61,
+ "Type": "Footwear",
+ "Brand": "WildRunner",
+ "Name": "Trailblaze Steel-Blue Hiking Shoes",
+ "Description": "Explore the great outdoors with the Trailblaze Steel-Blue Hiking Shoes by WildRunner. These rugged and durable shoes feature a steel-blue color, a waterproof membrane, and a high-traction rubber outsole for superior grip on any terrain. The breathable upper keeps your feet cool and comfortable, while the reinforced toe cap adds extra protection. Perfect for hiking, camping, and other outdoor adventures.",
+ "Price": 129.99,
+ "Embedding": [-0.0014816254, -0.023719346, -0.018810056, -0.01579511, -0.008177705, 0.012239876, -0.018730013, -0.0338581, 0.01747601, -0.028895447, -0.015875153, 0.0020144102, 0.01547494, -0.011005883, -0.011092597, -0.004275619, 0.014581128, 0.011512822, 0.008171035, 0.0031716956, -0.027294591, 0.0064334394, 0.00051194034, -0.017102476, -0.011152629, -0.015595003, 0.033911463, -0.014287638, 0.03308435, -0.027307931, -0.001909354, 0.0014391027, -0.0166489, -0.007970928, 0.015661705, -0.003029953, -0.0022278577, 0.0060332255, 0.011359406, -0.0062099863, 0.01723588, 0.0005819778, 0.0051194034, 0.019677186, 0.015741749, 0.014100871, 0.0044323695, -0.010692382, -0.01292024, 0.010465595, 5.1042913E-05, 0.0064067584, 0.0016283705, 0.0035752447, 0.013660636, 0.0060098795, 0.0033484567, 0.018556587, 0.029082214, 0.007857534, -0.015448258, -0.00014341, -0.032070477, 0.028762043, -0.009705189, -0.023119025, -0.028014977, -0.004942642, -0.00084336754, 0.031723626, -0.008411163, -0.013140358, 0.0138073815, -0.0018259762, 0.013820722, -0.0152481515, -0.023612622, -0.021104615, 0.019370355, 0.009291634, 0.002709782, -0.016408771, -0.014034169, -0.005072712, 0.0044657206, -0.0059465123, 0.010145424, -0.00017123738, -0.04076846, -0.024933329, 0.018263096, 0.0060732467, 0.008191045, 0.001894346, -0.015648365, -0.013620615, -0.007323915, 0.0020494289, -0.0064167636, -0.011973067, 0.00013277931, 0.0068503288, -0.006660227, -0.007770821, -0.04039493, 0.0021311392, -0.016995752, 0.011025894, 0.019450398, -0.004629141, -0.009311644, 0.009645157, 0.016181983, -0.027081143, -0.0038954157, -0.024359688, -0.011226001, 0.011679577, 0.010832458, -0.037246577, 0.037273258, -0.00516276, 0.0133804865, -0.0002411706, 0.0029449076, 0.021451468, -0.025200138, -0.0043023, 0.028948808, -0.00859126, 0.029615832, 0.01663556, 0.043196425, -0.031643584, -0.020677721, -0.00015810535, -0.026093949, 0.015061385, -0.02725457, 0.010298839, -0.0043656672, 0.026947739, -0.02066438, -0.005883145, -0.004935972, 0.012006419, 0.022185193, 0.010538967, 0.0028481893, -0.016808987, 0.018289777, -0.015901834, 0.02844187, -0.024226284, 0.0016550515, 0.010832458, 0.01666224, 0.02125136, -0.017275902, -0.020317528, 0.009431709, -0.0021578202, 0.014741214, -0.016288707, 0.027881572, 0.021704936, 0.02753472, 0.0079842685, -0.012446654, -0.0060398956, 0.004612466, 0.0281217, -0.021851681, 0.027774848, 0.016742283, -0.0017325929, 0.01953044, 0.025933864, -0.007864204, 0.009971998, -0.0147145325, -0.008704653, 0.0150880655, 0.0111859795, -0.018169714, -0.022465343, 0.020864487, -0.002147815, 0.009044835, -0.017609414, -0.00041688952, 0.005793097, -0.017782839, 0.0100387, -0.6565643, -0.01981059, 0.0021945066, -0.032470692, 0.034498442, 0.016582198, 0.025720416, 0.0010789101, -0.03305767, 0.008397822, -0.004705849, 0.012419973, -0.006053236, -0.018850077, -0.0086246105, -0.01520813, 0.02010408, -0.013887424, 0.032177202, 0.002898216, -0.03649951, -0.0027831546, -0.005679703, -0.027721487, -0.006086587, 0.02037089, -0.0025346885, -0.0067369347, -0.01548828, -0.0006912028, -0.031990435, 0.039434414, 0.0063233804, 0.0052361325, 0.054055564, -0.016422112, -0.008404493, 0.05144083, 0.039727904, 0.0390342, -0.025320202, -0.008077651, 2.2160284E-05, 0.0064067584, 0.017996287, 0.017435988, 0.035779126, -0.010412233, 0.011072586, 0.0014082529, 0.003089985, 0.01235994, 0.011259353, -0.013994148, 0.013073656, -0.0034101564, 0.044663876, 0.018516565, 0.01692905, 0.012466664, -0.036072616, 0.007397288, -0.008477866, -0.028201742, -0.025026713, 0.021558192, -0.035538998, -0.015368216, -0.00689702, 0.003758676, 0.0085712485, 0.0258138, 0.002811503, 0.02121134, 0.011532832, 0.018316459, 0.011065915, 0.0020044048, 0.0017409307, 0.021331403, 0.029162256, 0.014341, 0.0115661835, -0.036926407, 0.0235059, 0.0020727748, 0.003026618, -0.013127018, 0.031750306, -0.005506277, 0.019957336, 0.027961614, -0.052668154, -0.031910393, -0.005332851, 0.02982928, 0.0008125177, 0.015741749, 0.017596073, -0.014327659, -0.03276418, 0.0035685743, 0.009505081, -0.0033301136, 0.016715603, 0.037166536, 0.010132083, -0.01291357, 0.016195325, -0.0063033695, 0.0075973948, -0.006423434, -0.022852216, -0.029162256, -0.008911431, -0.016128622, 0.0075640436, 0.0048359185, 0.02325243, -0.029402385, 0.026894378, 0.009218262, -0.0019160243, -0.008111003, -0.023425857, 0.008504546, 0.010412233, -0.016782304, 0.006856999, -0.018209735, -0.0024112891, 0.010485605, 0.023439197, 0.0016817324, -0.003698644, 0.018423183, -0.014247617, 0.00034164096, 0.035218827, -0.012713463, -0.022732152, 0.013453859, 7.8114674E-05, -0.017982947, -0.015875153, -0.033804737, -0.038874116, 0.0065268227, -0.031696945, -0.013220401, 0.02956247, -0.0071971808, -0.0003818708, 0.008918101, 0.0012248214, -0.01834314, -0.006370072, -0.01750269, 0.0059865336, -0.0020777774, 0.018476544, 0.007910896, 0.010799106, -0.016715603, -0.008217727, -0.0048625995, 0.00043523268, 0.029669194, 0.003200044, -0.04426366, -0.010105402, -0.008050971, -0.020530976, 0.015021363, -0.0015524966, 0.0085178865, -0.026227353, -0.022331938, 0.009124878, 0.011679577, -0.005386213, 0.015728408, -0.026227353, 0.0033084352, 0.011986407, 0.015835132, 0.013367146, 0.03447176, 0.00030432935, 0.0148212565, -0.005009345, 0.006253343, -0.005566309, 0.015541642, -0.008644621, -0.028682, 0.0014132555, 0.004562439, 0.024919989, 0.014140893, 0.019557122, -0.019050185, 0.008664632, -0.021624893, 0.005679703, -0.025053393, -0.0035385583, -0.01751603, 0.020864487, 0.0066802376, 0.007684108, -0.025226818, -0.0292423, -0.011432778, -0.0058431234, -0.0024012837, -0.004629141, 0.026987761, 0.0075973948, -0.029775918, 0.01923695, -0.0043956833, -0.0012665103, -0.027121166, -0.006193311, 0.0229456, -0.016555516, 0.011686247, -0.016462134, 0.0058097723, 0.03956782, 0.026307397, 0.01491464, 0.0059831985, 0.0083044395, -0.010538967, 0.012780165, -0.033164397, 0.03962118, 0.015635025, 0.053281818, 0.030176131, -0.004162225, -0.022438662, 0.009898625, 0.033778057, 0.0060699116, -0.0029332347, -0.0066168704, 0.0040354906, -0.01149948, 0.03009609, -0.008577919, -0.0017375955, 0.013333795, -0.01262675, 0.018169714, 0.0072438726, 0.020504294, -0.0027981626, 0.020557657, 0.013073656, 0.008938111, -0.006656892, 0.018770033, -0.02929566, -0.012219866, 0.0039821286, -0.011546172, -0.009885284, 0.003044961, -0.0006928704, 0.0041222037, -0.0051694303, 0.0015074725, 0.016862348, 0.027961614, -0.010158764, -0.0031200012, 0.014087531, -0.012506686, -0.017342605, 0.02177164, 0.006623541, -0.0114728, -0.019703867, -0.018183054, 0.021144636, 0.004765881, 0.045517668, 0.011205991, 0.011179309, 0.0016950729, 0.00021761634, 0.010072051, 0.004699179, 0.014114212, -0.019276971, 0.028682, -0.027027782, -0.00294324, 0.004335651, -0.014287638, -0.018676652, 0.04597124, -0.022438662, 0.0036953087, 0.0006249174, -0.0014741214, -0.009845263, -0.006580184, -0.010352201, 0.02642746, -0.0043423213, 0.007910896, 0.001441604, -0.009284964, -0.00946506, 0.012600069, 0.0017809521, -0.01547494, -0.017115816, -0.019103546, 0.0012173174, 0.08836724, -0.00688368, -0.008484536, 0.004622471, 0.0065868543, -0.03906088, -0.04007476, -0.0040021394, -0.005332851, -0.009585124, 0.015821792, -0.022732152, -0.004479061, -0.007203851, 0.015288173, 0.0091048675, 0.009711859, -0.022185193, 0.0042589433, -0.033511247, 0.003226725, -0.013040304, 0.0082510775, 0.02097121, 0.016982412, 0.01638209, -0.004625806, -0.005769751, 0.026040588, -0.011999749, 0.0034084888, -0.009131548, -0.017449329, -0.0003947944, -0.0030349558, 0.013520561, -0.02010408, -0.0096384855, 0.025933864, -0.0042922944, 0.045144133, 0.016488815, 0.01001869, -0.009918636, -0.002811503, -0.022251895, -0.005996539, 0.029882642, 0.0011272692, -0.018423183, 0.031376775, 0.015114747, -0.011652896, -0.015835132, 0.0025763772, 0.015928514, 0.01836982, -0.008544568, 0.018143032, -0.039381053, -0.0061733, -0.026334077, 0.02299896, -0.007970928, -0.01580845, -0.008904761, -0.007257213, 0.009545103, -0.008137683, -0.0042622783, -0.024773244, -0.0035418933, -0.032790862, -0.00035081254, 0.01638209, -0.004138879, -0.026814334, -0.0037620112, 0.011659566, 0.005626341, 0.005346191, 0.009725199, 0.0151947895, -0.00070412643, 3.2647662E-05, -0.015955197, -0.018036308, -0.008157695, 0.011339395, 0.020584337, 0.0153548755, -0.007343926, 0.018996822, 0.013267092, 0.001792625, 0.015688388, 0.011319385, 0.02636076, 0.0029815938, -0.0013490545, 0.0072238618, -0.02844187, -0.018703332, -0.010298839, 0.0007424803, 0.011712928, 0.0033634647, -0.0024513104, 0.015154768, -0.0030182803, 0.017422646, -0.0072105215, 0.01632873, 0.0023462542, -0.020450933, 0.011806311, 0.0035152126, 0.0022745493, -0.013420507, -0.027454676, 0.023359153, -0.033511247, 0.042342637, 0.0046324763, -0.007917566, 0.004985999, 0.021278042, -0.030309536, -0.022398641, 0.005713054, 0.0172092, 0.032604095, 0.0012698455, 0.013120348, -0.017596073, -0.04186238, -0.036019254, 0.007403958, 0.009805242, -0.007910896, -0.012613409, 0.010072051, -0.00588648, 0.04276953, -0.01836982, -0.020837806, -0.024919989, -0.00021250943, -0.03839386, 0.03495202, -0.009551773, 0.0051227384, -0.01634207, 0.0027448006, -0.018223075, -0.012153164, -0.0046858382, -0.013820722, 0.015434918, 0.01918359, -0.0088914195, -0.016395431, 0.028895447, 0.018676652, -0.008377812, 0.010318849, -0.023706006, -0.0019443728, -0.032604095, 0.011212661, 0.017155837, 0.016862348, 0.0017642765, 0.004282289, -0.009818582, 0.012219866, -0.000581144, -0.00976522, -0.009992008, -0.04538426, 0.005786427, -0.020464273, 0.00063117075, 0.0115595125, -0.015328194, -0.009898625, 0.031243369, 0.0022195198, 0.000641593, 0.01550162, 0.033884782, -0.011199321, 0.03153686, -0.0033751377, 0.0038887456, -0.023105685, 0.0016917377, -0.032577414, -0.017302584, 0.02725457, -0.008097663, -0.0022928924, 0.008064311, -0.016902369, -0.038020324, 0.005833118, -0.019957336, -0.012573388, 0.005052701, 0.007697448, 0.0009304974, -0.016568858, -0.013687317, -0.03697977, -0.010185445, -0.0047725514, 0.0008450351, 0.016849007, -0.02782821, -0.010538967, -0.0054062232, -0.0043990184, 0.017102476, -0.005342856, 0.019984016, 0.013887424, -0.019770568, 0.0014107542, 0.0021561526, 0.0034018185, -0.01379404, 0.010078722, -0.011973067, -0.00833112, -0.025987227, 0.022798855, -0.017422646, -0.0037420003, -0.012693453, 0.02011742, 0.015048045, 0.011359406, -0.0026314068, -0.002324576, -0.0045257527, 0.02298562, -0.014861278, -0.00016717271, 0.006910361, -0.005376207, -0.0058397884, 0.017822862, -0.022772174, 0.016515495, -0.0006461788, -0.021411447, 0.010925841, 0.0039187614, 0.0071905106, -0.0021928388, -0.008204386, 0.040635057, -0.0050660414, 0.0024579808, 0.02722789, -0.0009555108, 0.023265772, 0.006963723, 0.010312179, 0.030176131, -0.020170784, 0.0022845545, 0.012419973, 0.018970141, 0.004682503, -0.0046591572, -0.009898625, -0.016155303, 0.008931441, -0.006116603, -0.0027814868, -0.01522147, -0.018143032, -0.022585407, -0.016168643, -0.0043856776, -0.027774848, -0.024826605, 0.0015616681, -0.030923197, -0.01923695, -0.0011080924, -0.002306233, 0.009445049, 0.004198911, -0.020024037, -0.01635541, 0.028228424, -0.026347417, 0.023492558, -0.00073789444, 0.03729994, -0.011879684, 0.0033934808, 0.008858069, -0.04791895, 0.0021561526, -0.020864487, -0.024252966, -0.025266841, -0.014954661, -0.012413302, 0.019650504, -0.011866343, 0.00602322, 0.0069303717, 0.008531228, -0.018169714, -0.028068338, 0.0029799263, -0.006683573, -0.0009421703, 0.03991467, -0.019143566, -0.008524557, 0.0049226317, 0.001962716, 0.00022949769, 0.0029715886, -0.027094483, 0.004195576, 0.015528301, 0.015074725, -0.037940282, 0.009865274, 0.013874084, -0.0093183145, -0.009578453, -0.0067902966, -0.0035985904, 0.03868735, 0.019597143, 0.015554982, 0.02381273, -0.026881037, -0.01177296, 0.004228927, -0.00041647264, -0.005883145, 0.003215052, 0.028308466, 0.0401548, -0.0023696, -0.023359153, -0.009324985, 0.01864997, -0.03503206, -0.029802598, 0.021478148, -0.002067772, 0.023665985, 0.0010847466, -0.0151414275, 0.03647283, -0.00057489064, 0.0036352768, 0.013967467, 0.002121134, -0.009951986, -0.0039988044, -0.010072051, 0.0032434005, -0.026787654, -0.009211591, 0.039087564, -0.008464525, 0.0075840545, -0.0037386653, -0.036579553, -0.03153686, -0.016262027, -0.0030966555, 0.043169744, 0.0035452286, 0.03732662, -0.051280748, -0.0072105215, -0.0075840545, -0.011045905, 0.0005052701, -0.0051961113, 0.002037756, 0.012973602, -0.022865556, -0.008204386, -0.025160117, -0.018303119, -0.011299374, 0.015154768, 0.0027147846, -0.027881572, 0.00021782478, 0.011979737, -0.027774848, 0.008084321, 0.0019477078, 0.010405563, 0.00832445, -0.013320454, -0.02207847, -0.0027964949, -0.01636875, 0.0016934052, 0.01061234, -0.0009238272, -0.009038165, -0.0048059025, -0.021598212, 0.014741214, -0.014581128, -0.021451468, -0.007710789, -0.0152481515, -0.008177705, 0.0070904572, -0.006486801, 0.010572318, -0.005472926, 0.015835132, -0.004419029, -0.017836202, -0.0069036908, 0.014754554, -0.007297234, -0.012306578, 0.04943976, 0.19701199, -0.0067235944, -0.0010355536, 0.03503206, 0.01893012, -0.010992543, 0.017449329, 0.005789762, 0.01547494, -0.011732939, 0.026734293, 0.00859126, -0.02463984, 0.0024579808, -0.00125317, -0.021037914, -0.043996852, -0.010145424, -0.02497335, -0.010258817, -0.011586194, -0.02211849, 0.022345278, -0.021851681, 0.009585124, 0.0011839663, 0.0055596386, -0.0064367745, 0.011259353, 0.0067536104, -0.01804965, -0.027121166, 0.0059998743, 0.016075261, 0.010258817, 0.006253343, 0.03100324, 0.025973884, 0.000667857, 0.0058931503, -0.020624358, -0.0026080608, -0.009111538, 0.008524557, -0.009885284, 0.010158764, -0.03044294, 2.9937879E-05, -0.00745732, 0.015968537, -0.025587011, -0.0122598875, -0.003014945, 0.007363937, -0.0045524337, -0.0077041183, 0.038020324, -0.009485071, -0.010985873, -0.0016258692, -0.03508542, 0.016875688, -0.025160117, 0.026987761, -0.0155149605, 0.0063267155, -0.007604065, -0.021718277, -0.0015016361, 0.012520026, 0.0036953087, 0.0014315987, -0.01205311, 0.017022433, -0.0056163357, -0.02379939, 0.0022578738, 0.014034169, -0.0060665766, 0.030896517, -0.007990939, -0.0038620646, -0.0046057957, 0.00859126, -0.008391152, -0.020157443, 0.009024825, -0.01175962, 0.0046324763, 0.0066935783, 0.0069036908, 0.007864204, 0.00016237848, 0.012399962, -0.005392883, 0.0138607435, -0.023946134, 0.024026178, -0.023065664, 0.015595003, -0.041008588, 0.005853129, -0.017742818, 0.0064968066, -0.010639021, 0.0147145325, 0.0011456124, 0.0051227384, -0.008204386, -0.011412768, -0.01632873, -0.018609948, -0.010972532, -0.006803637, 0.0012765158, -0.010652361, 0.009158229, -0.02838851, -0.0006582686, -0.03014945, 0.01379404, 0.0013448857, 0.0148746185, 0.0033601297, -0.0082510775, -0.01004537, 0.0024779914, 0.017329264, 0.022438662, -0.042796213, -0.0014857943, 0.012219866, 0.032203883, -0.01747601, 0.00086129375, 0.016208665, 0.0150880655, -0.017716138, -0.01146613, -0.006943712, -0.005282824, -0.022171853, -0.016808987, 0.028601957, 0.041088633, -0.041088633, 0.011052575, 0.0059365067, -0.024799924, 0.011205991, 0.022051789, -0.010272158, -0.012960262, -0.014114212, 0.009018154, -0.014727874, -0.035458956, -0.025160117, 0.008111003, 0.005079382, -0.013040304, 0.015635025, 0.022705471, -0.005713054, -0.01376736, 0.018236415, -0.16979744, 0.02411956, 0.0025480287, -0.003014945, 0.03444508, -0.0017576063, 0.0018609948, 0.0071905106, -0.0055496334, -0.0015141427, 0.014968001, 0.005139414, -0.03529887, 0.013553913, -0.012593399, 0.0148212565, 0.029402385, 0.012293238, 0.023425857, -0.0033367837, 0.0014307649, 0.0036552874, 0.0022745493, -0.012486675, -0.0023645975, -0.008471196, 0.008371142, -0.004675833, 0.008344461, -0.009411698, -0.012279898, -0.012266558, 0.0028248434, 0.0067602806, 0.02351924, -0.019970676, -0.017889563, 0.014687852, -0.016275367, 0.026867697, 0.0064734607, 0.0024312998, 0.022465343, -0.0145544475, 0.023972815, 0.00803096, -0.020264165, 0.00689035, -0.01692905, -0.016515495, 0.00092632853, -0.008204386, -0.014834597, 0.013227071, 0.014007488, 0.001426596, 0.005679703, 0.005286159, 0.0029115565, -0.012780165, -0.025733758, -0.018529905, 0.0006457619, 0.0047858916, -0.017275902, 0.03014945, 0.021171318, 0.016115282, -0.028228424, 0.011539502, -0.03671296, -0.01692905, -0.0149279805, -0.014541107, 0.012500016, 0.025000032, -0.0020244156, -0.02039757, -0.00487594, -0.014581128, -0.0019910643, 0.03295095, -0.037353303, 0.0059631877, 0.0073572663, 0.029589152, -0.014194255, 0.008657962, -0.028361829, -0.02498669, -0.016128622, -0.019837271, -0.016688922, -0.02439971, 0.010072051, 0.016155303, 0.023345813, -0.023332473, -0.012206526, -0.019423718, 0.013727338, 0.007290564, -0.0150880655, 0.032097157, 0.033457886, 0.02411956, 0.022612087, 0.011586194, 0.022331938, -0.0014799578, -0.016595539, 0.0055196173, -0.0007462323, -0.0054695904, 0.01576843, 0.00460246, 0.0028765379, -0.041435484, 0.011899695, -0.02122468, 0.028068338, -0.009838593, -0.02553365, 0.01404751, -0.012940251, -0.025747098, -0.094290406, 0.0047792215, 0.013220401, 0.0044623856, -0.030683069, -0.011732939, -0.0072505428, 0.023946134, 0.010825788, 0.0071371486, 0.02498669, 0.01667558, 0.012513356, -0.0044523804, 0.015915174, 0.019597143, 0.021878362, -0.0038020324, -0.053255137, 0.032497372, -0.0235059, -0.01522147, -0.019397035, -0.023612622, 0.004328981, -0.001837649, -0.039514456, -0.0036519524, 0.017249221, 0.025680395, -0.003253406, 0.012666771, 0.020490954, 0.0072105215, 0.0044857315, -0.0075973948, -0.008151024, -0.017929586, 0.022385301, -0.024266306, -0.03356461, -0.0024613158, 0.007997609, -0.044877324, 0.002321241, -0.013927446, -0.005369537, 0.0056196707, 0.0046658274, -0.0067936317, -0.0011464462, 0.008457854, 0.007290564, -0.020517634, 0.037806876, -0.017155837, -0.022892239, 0.00832445, -0.004912626, 4.7994406E-05, -0.0034585155, 0.0031366767, -0.0028298462, 0.02553365, -0.0016408772, -0.0047191894, -0.009358336, 0.023119025, 0.0081443535, -0.01089249, 0.01292024, 0.013874084, -0.0067169243, 0.048105717, 0.0046858382, 0.0023479217, -0.025200138, -0.022598747, 0.00062950316, -0.026907718, -0.005766416, -0.009324985, 0.030603027, -0.034605168, 0.0028498569, 0.026440801, -0.0018359815, -0.00918491, 0.011706258, -0.04050165, 0.023585942, 0.031670265, 0.0025797123, -0.0011522827, 0.009038165, -0.01001869, -0.011666236, -0.02010408, -0.009485071, -0.012386622, -0.010425573, -0.008224397, -0.07262549, 0.033191077, -0.0022512034, -0.035779126, 0.00011381084, 0.022051789, 0.0007720794, -0.010458925, 0.0023879432, -0.015528301, -0.0029265645, -0.00831778, 0.014154233, -0.016715603, 0.001513309, -0.00027181196, -0.010805776, -0.011812982, 0.019917315, 0.0024096214, -0.0011297707, 0.0057263947, -0.005536293, 0.00029119733, -0.014327659, 0.008477866, -0.009098197, 0.020824466, 0.00831778, -0.0009705188, 0.014887959, -0.004185571, 0.021611553, 0.027147846, -0.015888494, -0.010732404, 0.0048559294, 0.002351257, 0.014594468, -0.030069407, 0.008984803, -0.036232702, -0.015755089, -0.009011484, -0.016555516, -0.012660101, 0.018263096, 0.0027731492, 0.013980807, 0.029936003, -0.004562439, 0.03100324, 0.018983481, -0.028361829, -0.0122598875, -0.020184124, -0.012426643, -0.003758676, 0.002351257, -0.02726791, 0.03732662, 0.0123132495, -0.0034618506, 0.01005204, 0.009871944, 0.01806299, 0.00026097285, -0.008297769, 0.030603027, -0.0008004279, -0.020237485, 0.026067268, 0.024239624, 0.010232137, -0.010552308, -0.0039687883, -0.01001869, -0.014954661, -0.028842086, 0.022572067, 0.008191045, -0.011619545, -0.04450379, 0.024413051, -0.012740144, -0.0020127427, -0.014341, -0.0044390396, -0.018529905, -0.00019447897, -0.024252966, -0.011159299, -0.006516817, 0.008924771, 0.0033551268, 0.010392223, -0.0029482427, -0.007684108, 0.011025894, 0.024479752, -0.011839663, -0.003985464, 0.003385143, -0.012253217, -0.027908253, 0.013053645, 0.01464783, 0.0016783973, -0.009158229, 0.006169965, -0.0015258157, 0.005876475, -0.026240695, -0.0027564736, -0.014834597, -0.009064846, 0.0016358745, -0.012960262, -0.0048425887, 0.03529887, 0.012293238, 0.03839386, 0.004879275, -0.013740679, -0.015394896, 0.0038320485, 0.011232671, -0.007323915, 0.0005569644, 0.0042889593, 0.020637698, -0.011706258, -0.015675046, 0.02463984, -0.0086779725, 0.008551238, 0.01978391, 0.034178272, -0.018183054, 0.060405627, 0.018236415, -0.009124878, -0.008524557, 0.000924661, 0.00058656355, 0.026760973, 0.009831923, -0.0056363465, -0.032817543, 0.0017792846, -0.019650504, -0.023706006, 0.015688388, -0.050933894, 0.011432778, -8.593135E-05, 0.0050360253, -0.011379417, 0.0017776169, 0.025040053, -0.008811377, 0.03332448, 0.006937042, -0.012860208, -0.006626876, 0.026947739, -1.9528668E-05, 0.011352736, -0.0078775445, 0.021544851, 0.010872479, -0.006250008, -0.004539093, 0.0026814335, -0.0091048675, -0.0073839473, 0.023132367, 0.013100336, 0.019303653, 0.009578453, 0.0047792215, -0.000106827945, 0.0041488847, 0.010832458, 0.013300443, -0.02382607, -0.0032333953, 0.021718277]
+ },
+ {
+ "Id": 62,
+ "Type": "Ski/boarding",
+ "Brand": "Daybird",
+ "Name": "Shadow Black Snowboard",
+ "Description": "Conquer the slopes with the Daybird Shadow Black Snowboard. This sleek and stylish snowboard features a black colorway, a camber profile for maximum stability, and a medium-flex rating for responsive turns and tricks. Its lightweight construction ensures easy maneuverability, while the sintered base provides excellent speed and durability. Whether you're shredding on groomed runs or exploring the backcountry, this snowboard is designed to deliver peak performance.",
+ "Price": 379.00,
+ "Embedding": [-0.007056227, 0.004188212, -0.013917351, -0.026820166, -0.0020924802, -0.010789199, -0.01690893, -0.059415385, -0.0008714603, -0.04263652, 0.0046271943, 0.00897474, -0.01149157, -0.011855762, -0.019328209, 0.012785753, 0.01766333, -0.0073163644, -0.0011641149, -0.011452549, -0.014099447, 0.010795702, -0.008317893, -0.0049003386, -0.011602128, -0.0061587533, 0.01787144, -0.0025997483, 0.0005584825, 0.01820962, 0.039436832, -0.0043150294, 0.008454465, -0.019965546, -0.038708445, 0.00021949093, -0.007160282, -0.015517197, 0.012486596, 0.014385599, 0.015816355, -0.010333958, -0.0037492304, 0.015048949, 0.0034240587, -0.016726835, 0.0010438013, -0.016076492, 0.009807181, 0.020069601, 0.003154166, 0.012441072, -0.021916576, -0.0030338524, 0.024713054, 0.0010096583, 0.010568082, 0.016921937, 0.049061917, -0.022176715, -0.006340849, -0.025259342, -0.0077455915, 0.019835478, 0.005875854, -0.018066542, -0.025025219, -0.014567695, -0.005310055, 0.01487986, -0.0018437238, 0.007355385, 0.02464802, 0.0021835284, -0.017559275, -0.035716865, -0.016882917, 0.009410471, -0.019887505, -0.0072838473, 0.027158346, -0.02718436, -0.0027119324, 0.019809464, 0.01819661, 0.008369921, 0.012226458, 0.005996167, -0.028953293, 0.010997309, 0.019939533, 0.0055474304, -0.0026696601, 0.010997309, -0.022137694, -0.005989664, 0.001842098, 0.024413895, -0.020459807, -0.016492711, 0.026742125, 0.027418483, -0.0035411206, -0.013644207, -0.039592914, -0.012883306, -0.007407413, 0.0144896535, 0.018612832, -0.013735255, -0.026377933, 0.02107113, 0.02285307, -0.020082608, 0.021500356, -0.00048044126, 0.020173656, -0.0021445078, 0.024153758, -0.01794948, 0.03569085, 0.018417729, 0.023633484, -0.038500335, 0.0046011806, 0.005397851, -0.008617052, -0.014177489, 0.015166011, 0.00974865, 0.016804876, 0.01588139, -0.020420786, -0.01168017, -0.032283053, -0.010210393, -0.021383295, 0.022723002, -0.010821716, 0.0002550566, -0.014554688, 0.012636174, -0.021968603, -0.00564173, 0.012350024, 0.014151475, -0.0255585, -0.025116267, 0.0015104228, -0.016505718, 0.020251697, -0.0035281135, 0.037511814, 0.023737539, 0.012876802, -0.003142785, 0.020147642, 0.029681679, -0.014593708, 0.0029997095, 1.6055355E-05, -0.0046727182, 0.009169844, -0.0058140713, 0.026573036, 0.02718436, -0.009878718, -0.024921164, -0.006435149, -0.00393783, -0.0023428625, 0.025727589, -0.020316731, 0.033895902, 0.0037167133, 0.005768547, 0.016947951, -0.004263002, -0.018417729, -0.0016616277, 0.0054368717, -0.018144583, 0.01645369, 0.010112842, -0.0054823956, -0.0019510306, 0.011959817, -0.007843142, -0.01446364, 0.003453324, -0.016817883, 0.011654156, 0.008610548, -0.0017104035, -0.6497192, -0.02211168, 0.01043151, -0.01130297, 0.00868859, -0.00038837703, 0.018222626, -0.0029297976, 0.0014657117, -0.021435322, 0.005986412, 0.008226845, -0.0023867607, 0.0017640567, -0.011992334, -0.007784612, 0.01944527, 0.010301441, -0.028459033, -0.0047800248, -0.027210373, 0.010763185, -0.03246515, -0.0021412561, -0.0055149132, -0.0049100937, -0.009729139, -0.002775341, -0.01999156, 0.014892867, -0.026364926, 0.047579132, -0.0012031355, -0.010587593, 0.040035147, -0.020004567, -0.0006564405, 0.033635765, 0.010730668, 0.043312877, -0.012193941, 0.004575167, 0.0014982289, -0.017481234, -0.010281931, 0.009338933, 0.011250943, -0.0075244745, 0.014840839, -0.036471266, 0.029629651, -0.0028728924, 0.010828219, -0.014970908, -0.012278486, -0.0063733663, 0.05070078, -0.0010787573, -0.004584922, 0.010255917, 0.0022030387, 0.022553913, 0.0038858026, -0.023542436, -0.011517583, 0.021305254, -0.022371817, -0.025740596, 0.01866486, -0.010418504, 0.0063245906, 0.020082608, -0.009221871, 0.024973191, -0.0022420592, 0.034104016, 0.04651257, -0.03316752, -0.0018924996, 0.0008690215, 0.0074204197, 0.009638091, -0.023217263, -0.023100201, 0.01696096, -0.025181301, 0.0029232942, 0.008473976, 0.02131826, -0.0073163644, 0.01999156, 0.01554321, -0.009176347, -0.027054291, 0.0073358747, 0.011478563, -0.020251697, -0.020264704, 0.031398587, -0.025571506, -0.009950256, -0.0113354875, 0.019770443, 0.0038532855, 0.028823225, -0.0054271165, -0.010503048, -0.016297609, 0.01982247, -0.018625839, 0.019172126, -0.016557746, -0.015608245, -0.0060579497, -0.020121628, -0.023048174, 0.025779618, -0.025870666, 0.020602882, -0.028771197, -0.011933804, 0.0035378688, -0.020589875, -0.008070763, -0.010099835, 0.007934191, 0.00044060772, 0.012395548, -0.0055701924, -0.002614381, 0.0032614728, 0.004718242, 0.025272349, -0.009013761, 0.025818639, 0.030227967, 0.01408644, -0.0055799475, 0.023490408, -0.0009942127, -0.015348107, 0.008278873, -0.0026338913, 0.021708466, -0.01088675, -0.018170597, -0.023555443, -0.0044938736, -0.02684618, -0.0064058835, -0.015166011, -0.022228742, -0.0003863447, -0.00036927318, 0.017520254, -0.026612056, -0.019016044, -0.02830295, 0.0023168488, 0.011836252, -0.002003058, 0.006412387, -0.010977798, -0.010919267, -0.0021298751, -0.010353468, -0.03171075, 0.015113983, -0.0119273, -0.03985305, -0.02747051, 0.0014957901, 0.0020518338, -0.00061660697, 0.00959907, -0.008831665, -0.019939533, -0.010320951, -0.012512609, -0.008994251, 0.01953632, 0.027782675, -0.03462429, -0.008558521, 0.012740229, -0.007296854, 0.020329738, 0.019510306, -0.0070367167, 0.008434955, -0.0025200811, 0.02152637, 0.004305274, -0.0029574372, -0.018300667, -0.040087175, 0.023165235, -0.006197774, 0.0013730377, 0.027548552, 0.017012987, -0.01633663, 0.00013189779, -0.001658376, -0.0007015581, -0.0012649181, 0.007472447, -0.025415424, 0.016765855, 0.014112454, 0.029499581, -0.040451366, 0.017286131, -0.023958655, 0.0012120777, -0.0015104228, -0.014606715, 0.024257813, -0.011205419, -0.023308313, -0.0097746635, 0.0132800145, 0.015764328, -0.03303745, -3.9757328E-05, -0.0132344905, 0.0016250459, 0.010002283, 0.020967076, 0.0018973772, 0.013488124, 0.027652606, 0.019900512, -0.013319035, 0.002866389, 0.003928075, 0.005732778, -0.018300667, 0.055305213, -0.007342378, 0.012512609, 0.03004587, -0.003259847, -0.005996167, 0.02514228, 0.01811857, 0.024088724, 0.022540906, -0.013787283, 0.0053458237, -0.036731403, -0.0051637273, 0.01319547, 0.0047832765, 0.014827833, -0.018898983, 0.017650323, 0.015738314, 0.005251524, 0.015569224, -0.0021802767, 0.017338159, 0.005723023, 0.0030143422, 0.040295284, 0.006412387, -0.01508797, -0.032699272, 0.0048808283, -0.035066523, 0.0032744796, -0.0043150294, 0.0032387108, -0.0038272715, 0.00048775764, -0.012232961, -0.006044943, 0.027756661, 0.00594414, 0.03524862, -0.007322868, -0.022306783, 0.0070367167, 0.032803327, -0.012746733, -0.0036516788, -0.008903203, -0.008909706, 0.0050141485, 0.033765834, 0.020732952, 0.019393243, 0.0035736377, -0.0055897026, 0.008402438, -0.020472813, 0.011328984, 0.0022160455, 0.019029051, 0.0035313652, -0.0047377525, 0.004321533, -0.005056421, -0.03610707, 0.036471266, -0.004711739, -0.016089499, -0.01982247, -0.01169968, 0.014645736, -0.021409309, -0.039592914, -0.013488124, -0.038214184, 0.00076659245, 0.011270453, -0.03129453, -0.01592041, 0.034442194, 0.014138469, -0.02203364, 0.0040028645, 0.008129294, -0.018105563, 0.081266925, 0.04110171, -0.019042058, 0.025883673, -0.02152637, 0.017845426, -0.019549327, -0.0013169457, 0.022410838, -0.0083309, 0.030644186, 0.010704654, 0.010444517, -0.021474343, 0.013065401, -0.009137327, -0.011381011, -0.00063611724, -0.008987747, 0.00073204294, -0.011439542, -0.00414594, 0.0069846893, 0.021058124, 0.005098693, 0.015348107, -0.00040077418, -0.011250943, 0.01686991, -0.024517952, -0.019861491, -0.011784225, -0.0070497235, 0.012603657, -0.015972437, 0.016739842, 0.019133106, -0.012694705, -0.005388096, -0.018521784, 0.033011436, -0.0024924416, 0.0088706855, -0.012902816, 0.00041947156, -0.007979715, 0.0124996025, 0.005215755, 0.012441072, -0.0327513, 0.023542436, 0.006308332, -0.027756661, 0.011758211, -0.0005194619, 0.017572282, -3.914763E-05, 0.013013374, 0.0060124258, -0.027756661, -0.024257813, -0.02851106, 0.012460582, -0.007056227, -0.0009462498, -0.010776192, -0.00384353, 0.015725307, -0.0029086615, 0.024882143, -0.0044711116, -0.009820187, -0.010216896, 0.021708466, 0.009020264, 0.015153004, 0.0069391653, -0.01471077, 0.016947951, 0.0029395528, 0.015738314, -0.011686673, 0.016895924, -0.008181321, 0.003108642, -0.012493099, 0.030696213, -0.01169968, -0.01065913, 0.03267326, 0.022046646, 0.012467085, -0.007355385, -0.025012212, -0.017520254, 0.0021152422, 0.031060407, 0.014099447, 0.01612852, -0.0010161618, 0.008805651, 0.00033533337, 0.009325926, 0.008460969, 0.019419257, -0.013312532, 0.007797619, 0.02410173, 0.0068806345, -0.0015185521, 0.017221097, -0.025090253, -0.007641536, 0.01720809, 0.0026615309, 0.019380236, -0.0016762604, 0.022827057, -0.015790341, -0.0038988094, 0.005618968, -0.024322847, 0.020251697, 0.010899757, -0.00543362, 0.020550855, 0.0007820381, -0.029187417, -0.02019967, 0.017130049, 0.019484293, 0.027418483, -0.0010299815, -0.013410083, -0.008610548, -0.012421561, -0.009729139, -0.007381399, 0.006584728, 2.2584194E-05, -0.027054291, 0.014242523, 0.013826303, -0.010925771, -0.010730668, -0.019263174, -0.03360975, 0.02788673, -0.0008600793, 0.041335832, -0.051090986, 0.008012232, -0.002232304, -0.0012811767, -0.002429033, -0.026950235, -0.021552384, 0.0038662923, 0.030384049, 0.036445253, 0.008929216, -0.01641467, 0.015621251, 0.011517583, 0.0005674247, -0.015855376, -0.017260117, -0.019120099, -0.022163708, 0.011407025, 0.009013761, 0.001646182, -0.0060026706, -0.01020389, 0.0096055735, 0.0015754572, -0.0009999032, -0.022046646, -0.015296079, -0.019029051, 0.011003813, -0.0217735, -0.0104640275, 0.0108152125, -0.034468208, -0.0032322074, 0.037043568, -0.00021461336, 0.0033947933, 0.008890196, 0.019133106, -0.005101945, 0.023412367, 0.006874131, 0.005921378, -0.008734114, -0.01686991, -0.027730647, -0.0006194522, 0.026000734, -0.00080561306, 0.0021835284, 0.0033915415, 0.0046922285, -0.028459033, 0.014372592, 0.0021688957, 0.009280402, -0.00046662148, -0.014684756, -0.033349615, -0.043156795, -0.032777313, -0.017559275, 0.01953632, 0.01720809, -0.02975972, 0.019549327, -0.03025398, -0.015061956, -0.005443375, -0.0070627304, 0.027236387, 0.009586063, 0.026013741, 0.042792603, -0.016713828, -0.00087877666, -0.003846782, -0.0038012578, -0.007862654, 0.023386354, 0.023867607, -0.039046627, -0.013332042, -0.0031818056, -0.0015648891, -0.01103633, -0.015621251, 0.014034413, -0.009078795, 0.0037589855, -0.014177489, -0.010925771, 0.0053002997, 0.0069391653, -0.015074963, 0.02659905, -0.007869157, -0.0044060773, -0.0061067254, 0.011218426, 0.009982773, 0.011985831, 0.0025867412, -0.016596766, -0.012402051, 0.0048190453, 0.010711158, 0.008740617, -0.005192993, 0.048775762, -0.01820962, 0.0066920347, 0.012922326, 0.009898229, 0.014138469, 0.016804876, -0.01487986, 0.021981612, 0.012161423, -0.0005584825, -0.012597154, -0.023347333, -0.010496545, -0.0028989061, -0.017793398, -0.024960184, 0.01537412, -0.010568082, 0.022241749, 0.0017412947, -0.012063872, -0.006331094, -0.019276181, -0.036523294, -0.012408555, -0.014736784, -0.011381011, -0.015816355, -0.007940695, -0.010112842, -0.0006958676, 0.022254756, 0.017052008, -0.03553477, 0.0023396108, 0.023594463, -0.031580683, 0.012037858, 0.039124668, 0.011654156, -0.00078935444, 0.0055474304, 0.017403193, -0.020121628, 0.0014933513, 0.004253247, -0.007095248, -0.058582943, 0.008252859, 0.0047247456, 0.017299138, -0.017286131, 0.019939533, -0.014762798, 0.021890562, 0.001692519, -0.002843627, -0.010574586, -0.00725133, -0.008142301, -0.0028501304, -0.017741371, 0.021084137, -0.013865324, 0.010587593, 0.017403193, -0.030852297, -0.013358056, -0.0052677826, 0.017780391, -0.005966902, -0.033583738, -0.019055065, -0.0020989836, -0.0049328557, 0.009228375, -0.036835458, -0.0004239427, 0.01919814, 0.004350798, -0.00959907, 0.016050478, -0.023477402, -0.025272349, 0.016570752, -0.03360975, -0.00702371, -0.026625063, 0.010743675, 0.054628856, 0.013475117, -0.0009600696, -6.560594E-06, -0.0014909125, -0.06128837, 0.0032192005, 0.01450266, 0.03582092, 0.02692422, -0.0074594403, -0.011309474, 0.0187429, 0.014450633, 0.0054401234, -0.0060481946, -0.016648794, -0.0034565758, 0.0004422336, 0.0057815537, -0.018651852, -0.012213451, -0.018977024, 0.025519479, -0.014268537, 0.004077654, 0.029629651, -0.022879085, 0.004295519, -0.0005068615, -0.0074464334, 0.037095595, 0.020147642, 8.6272135E-05, -0.03176278, -0.006451408, 0.003259847, -0.01215492, -0.005153972, -0.011472059, -0.009221871, 0.015595238, 0.0016112261, -0.014411612, -0.027704634, -0.025779618, -0.0019315203, 0.00384353, -0.0016518725, 0.027782675, 0.034104016, 0.0040386333, -0.018872969, -0.022241749, 0.031398587, -0.0034045484, 0.0005446627, -0.0053165583, -0.042402398, 0.0028907768, -0.010997309, 0.023490408, -0.002765586, -0.008857679, -0.011179405, -0.010229903, -0.028589102, 0.011504577, -0.0060481946, -0.021461336, -0.01853479, 0.006763573, -0.018625839, 0.03017594, 0.009878718, -0.005553934, -0.041804083, 0.022449858, -0.0025200811, 0.013397076, -0.0120703755, 0.013358056, 0.016895924, 0.004123178, 0.018040529, 0.2033234, -0.0036289168, 0.011023323, 0.035378687, 0.0010998935, 0.0124996025, -0.001404742, 0.006230291, 0.01974443, -0.015113983, -0.00057514757, -0.0044060773, 0.0048645693, -0.0061229845, 0.03420807, -0.015296079, -0.01317596, -0.01383931, 0.00014195779, -0.015868383, 0.01616754, -0.0023054678, 0.0056384783, -0.013065401, 0.004210974, 0.028537074, -0.005020652, -0.0060026706, 0.0036321685, 0.0051799864, -0.005976657, -0.04060745, -0.008285376, 0.0038305232, 0.0032549694, -0.015686285, 0.033089478, -0.01188828, -0.01878192, 0.026481988, -0.018547798, -0.004685725, 0.025844652, -0.0061685084, 0.0217735, 0.018690873, -0.0049231006, 0.035560783, 0.012694705, 0.00016319558, -0.017091028, -0.03004587, 0.033141505, 0.00014785153, -0.01690893, -0.013657214, 0.026273878, -0.024413895, 0.027132332, -0.03267326, -0.016011458, 0.010743675, -0.015166011, 0.049530163, 0.0016795121, 0.035977002, -0.0010860737, -0.019692402, 0.0073033576, 0.0060059223, 0.010542069, 0.004019123, -0.009833194, 0.015634257, -0.014385599, -0.03262123, 0.022827057, -0.0016152908, 0.02489515, 0.022124687, -0.0036354202, 0.01298736, -0.018170597, 0.015816355, -0.02430984, -0.026820166, 0.004718242, -0.011231433, -0.01870388, -0.007784612, 0.009982773, 0.007589509, -0.0015949674, 0.006431897, 0.020433793, 0.024205785, 0.0022420592, 0.012473589, -0.0153351, -0.021149172, -0.013826303, -0.0030127163, 0.004367057, -0.003697203, -0.023841593, 0.003833775, 0.018690873, -0.019302195, 0.012297996, -0.018508777, 0.012382541, -0.04198618, 0.022007626, -0.008896699, -0.005953895, 0.01281827, 0.014788812, -0.0117191905, -0.009742146, -0.017182076, 0.015556217, -0.008441458, 0.018092556, -0.004110171, -0.007056227, -0.015868383, 0.020303724, 0.012688202, -0.0067570694, -0.018378709, 0.006519694, -0.0019965547, 0.011315977, -0.017897453, -0.0060514463, 0.0012949966, 0.03618511, 0.0017689344, -0.019913519, -0.011608631, -0.009898229, 0.0042792605, 0.018274654, 0.01086724, 0.036003016, -0.020576868, -0.008246356, -0.0306702, -0.009904732, -0.010425007, -0.026742125, 0.0069456687, -0.004812542, -0.014138469, 0.021955596, 0.033973947, -0.024127744, -0.013201973, -0.009534036, 0.017025994, -0.041621987, 0.011231433, 0.019016044, -0.027028278, -0.006731055, -0.0064579113, -0.16388656, 0.024257813, 0.029603638, -0.0021965352, 0.009182851, -0.014970908, 0.021149172, 0.013013374, -0.026481988, 0.006809097, 0.012857291, 0.025168294, -0.016271595, -0.024622006, 0.011049337, 0.025805632, -0.009423478, 0.02663807, 0.0011714313, 0.013006871, 0.03498848, -0.015777335, -0.0029395528, 0.0011185908, 0.022293776, -0.031268515, -0.0006885512, 0.010828219, -0.015113983, -0.021344274, -0.0090852985, -0.0047735213, 0.009117817, 0.008031743, 0.034520235, -0.008896699, 0.005466137, 0.019172126, -0.025987728, 0.024426902, 0.014242523, 0.0100348005, 0.024387881, -0.008942223, 0.017299138, 0.018066542, -0.021422315, 0.01217443, 0.006340849, -0.03176278, 0.037459787, 0.003911816, -0.0059018675, -0.011868769, 0.03889054, 0.010216896, 0.014190496, 0.017039001, 0.024140751, 0.004220729, -0.01088675, -0.008246356, -0.016596766, 0.007309861, -0.010795702, -0.0059018675, 0.0070172064, 0.0046109357, -0.029395526, -0.0028192392, 0.001923391, 0.041361846, -0.01724711, -0.007596012, 0.01662278, 0.0052547758, -0.020498827, 6.6863446E-05, 0.006054698, -0.019120099, 0.01342309, 0.031996902, -0.015777335, 0.011270453, 0.011094861, 0.0028647631, -0.013371062, -0.011667163, 0.0007934191, -0.018820941, -0.0053945994, -0.023009153, 0.013097919, -0.008805651, 0.021552384, -0.00028615116, 0.03373982, -0.014359585, 0.010470531, 0.0063603595, 0.013566166, -0.009703125, -0.03004587, 0.018638846, 0.013618194, 0.016947951, 0.013384069, 0.019770443, 0.030514117, 0.0031980642, -0.0121158995, 0.021292247, 0.0040809056, 0.017637316, 0.00019703376, 0.0333236, 0.006288822, -0.023919635, -0.005284041, -0.018599825, 0.026065769, -0.0024127744, -0.028485047, 0.013930358, -0.0132800145, -0.020954069, -0.092764996, -0.024869137, 0.015465169, -0.009638091, -0.0012852413, 0.014125461, 0.004754011, 0.004594677, 0.0062823184, 0.010743675, 0.0030062129, -0.028407006, -0.013787283, -0.00058652856, 0.025194308, -0.0005227136, 0.021721473, -0.008012232, -0.015816355, 0.010073821, -0.0020745958, -0.0043605533, -0.022827057, -0.014073433, -0.01762431, -0.0069131516, -0.018430736, -0.0058368333, 0.03511855, 0.019601354, -0.019913519, 0.00424024, 0.0031135196, 0.0022648212, -0.013488124, 0.016427677, -0.021227213, 0.013143443, 0.014892867, -0.02069393, 0.0123045, 0.0016648794, -0.005075931, -0.019913519, -0.021643432, 0.0033947933, -0.006031936, 0.011133881, 0.03777195, -0.0034240587, 0.0032549694, -0.016492711, -0.01512699, -0.008929216, 0.017676337, -0.030123912, -0.0019055065, -0.013904344, -0.01592041, 0.018300667, -0.019315202, 0.010665634, 0.021227213, 0.021409309, -0.001692519, -0.007589509, -0.012356527, 0.009007257, 0.031112434, -0.014450633, 0.00091698434, 0.02152637, -0.020433793, 0.015569224, 0.0016567501, -0.0058335816, -0.030332021, -0.014931887, 0.0038012578, -0.013826303, -0.016492711, -0.0166618, 0.046616625, -0.036731403, 0.017025994, 0.023932641, 0.010672137, -0.014281544, 0.0064904285, -0.025467452, 0.022540906, 0.018846955, 0.014307558, -0.035872947, -0.025610527, 0.008909706, 0.004490622, -0.014801819, -0.010067318, 0.020928055, -0.03303745, -0.013761269, -0.064982325, 0.02921343, 0.0006275815, -0.0095145255, -0.0034695826, 0.0030696215, 0.00089097064, -0.027782675, -0.004220729, -0.010210393, -0.0074659437, -0.023256285, -0.012369534, 0.011634646, -0.0032565952, -0.020004567, 0.013748262, -0.01612852, 0.032100957, 0.0016908932, -0.013358056, -0.0012258976, 0.0018762411, 0.011751708, -0.014008399, -0.0030127163, -0.038006075, 0.009416974, 0.0083959345, -0.008207335, 0.016271595, -0.007752095, 0.037147623, 0.034962468, -0.02231979, -0.032074943, 0.017962487, 0.007010703, 0.0046109357, -0.025987728, -0.008363417, -0.019029051, 0.018794928, -0.017806405, -0.0015559469, -0.0063961283, 0.0067765797, 0.0118102385, 0.039801024, 0.018300667, 0.02086302, 0.021604411, -0.0020437045, -0.037641883, -0.005862847, -0.03873446, 0.021344274, 0.008012232, -0.022879085, -0.024244806, 0.011504577, -0.0012576018, 0.0068806345, -0.012941836, 0.009020264, -0.009117817, -0.0045654117, 0.0042272327, -0.01065913, -0.018131576, -0.010236407, 0.0026566533, 0.018092556, 0.015556217, -0.011823245, 0.00025607276, 0.006470918, -0.0105095515, -0.030696213, 0.01815759, -0.003420807, 0.019289188, -0.025714582, -0.0018014516, 0.003362276, 0.015660271, -0.028901266, -0.0035443723, -0.00584984, 0.013006871, -0.006919655, -0.0040451367, -0.012031355, -0.007127765, 0.012636174, 0.00959907, -0.008766631, -0.012389044, -0.002776967, 0.022436852, 0.005033659, 0.0009763282, -0.012870298, -0.029395526, -0.006331094, 0.012369534, 0.0037069581, -0.0057522883, -0.022423845, 0.011992334, -0.0020892285, -0.002393264, -0.02360747, 0.0032078193, 0.0057067643, 0.0030842542, -0.013045891, -0.018235633, -0.015153004, 0.027366456, 0.015803348, 0.002682667, 0.022762023, -0.014931887, 0.018859962, -0.014398606, -0.0005190554, -0.008734114, 0.019614361, 0.01213541, 0.010841226, -0.016518725, -0.002383509, 0.015790341, -0.007992722, -0.003921571, 0.011654156, 0.04463958, 0.0070041995, 0.06862425, 0.023308313, -0.03137257, -0.010756682, -0.016362643, 0.022501886, 0.015907403, -0.009956759, -0.019666389, -0.016284602, 0.011784225, -0.015855376, -0.0067570694, 0.010997309, -0.021214206, 0.0019380237, -0.0041361847, 0.011387515, -0.030436076, -0.010730668, 0.019224154, -0.014866853, 0.040789545, -0.032881368, -0.0047247456, -0.017793398, -0.0066920347, 0.025207315, -0.02788673, -0.015296079, -0.012109396, 0.012694705, -0.011771218, -0.0005584825, 0.0030436076, -0.0007450498, -0.011374508, 0.0011063969, -0.017923467, 0.03574288, 0.011745204, 0.010529062, -0.026950235, -0.023620477, 0.016492711, -0.0034240587, 0.0006747314, -0.03977501, -0.024830116]
+ },
+ {
+ "Id": 63,
+ "Type": "Climbing",
+ "Brand": "Raptor Elite",
+ "Name": "Razor Climbing Harness",
+ "Description": "Reach new heights with the Raptor Elite Razor Climbing Harness. This lightweight and breathable harness is designed for maximum comfort and performance. With its adjustable waist and leg loops, it offers a secure and customized fit. The razor-shaped webbing adds a stylish touch to the blue color of the harness. Featuring durable construction and reinforced tie-in points, this harness is a must-have for climbers of all levels.",
+ "Price": 94.99,
+ "Embedding": [0.004991328, -0.00080739567, -9.0943504E-05, -0.050069574, 0.016526764, 0.026489034, -0.01709759, -0.04039272, 0.00023359686, -0.040854815, 0.013883298, -0.01496379, -0.002208552, -0.003761334, -0.0066664293, 0.0044612754, 0.016513174, -0.011722315, -0.01685295, -0.002436203, 0.0033111293, 0.0011034266, -0.005721849, -0.021011826, -0.008800231, -0.02719577, 0.035200924, -0.0056708823, 0.041724645, -0.028785927, 0.026665717, 0.01459683, -0.0034266536, -0.011144694, -0.03443982, 0.0058849417, 0.005881544, -0.017695598, -0.004563208, 0.005721849, 0.011110716, -0.014311418, 0.010940827, 0.009622492, -0.006972229, 0.016526764, 0.0068465113, -0.031042049, -0.008025538, 0.0028269468, -0.016948089, 0.0075022816, -0.014501693, 0.0028286455, 0.02057691, -0.003747743, 0.00085241615, 0.020821549, 0.054663364, 0.0032278837, -0.0069790245, 0.01241546, -0.010546685, -0.011396129, 0.001044815, -0.0060684215, -0.011735906, -0.013604681, -0.00071013445, 0.010376797, 0.030199401, 0.017845102, 0.024477553, -0.0064251875, -0.0023393664, 0.009615696, 0.0008558139, -0.011375742, -0.003853074, -0.0054874024, 0.02881311, -0.012959104, 0.000840524, 0.005473811, 0.033379715, -0.015806437, 0.0047840634, 0.012605736, -0.025306609, -0.00039477868, 0.009439012, 0.005266547, -0.00044638236, 0.018551838, -0.0321837, 0.0024294073, -0.0073188017, -0.0010456644, -0.019435259, -0.027127815, 0.0036594009, 0.015928756, -0.012938717, -0.012055296, -0.021365194, -0.031993426, -0.013930867, -0.0027165192, 0.015996713, -0.007155709, -0.023213582, 0.022275796, 0.019666307, -0.024803739, 0.012062092, -0.009622492, 0.043736126, 0.015126883, 0.018986752, -0.025483293, 0.015779255, 0.00848084, 0.010791325, -0.014800697, -0.0034708246, 0.0036424121, -0.020604093, 0.0029968354, 0.018524656, -0.016309308, 0.01696168, -0.009445807, 0.0057864063, 0.00017944486, -0.0065475074, 0.048438642, -0.0019214404, -0.017274275, -0.008508022, 0.006792147, -7.4804084E-05, -0.0015595775, -0.0062009348, 0.01484147, -0.001171382, 0.009534149, 0.0035336833, 0.007515873, 0.0049641454, 0.006972229, 0.014134733, -0.032020606, 0.028405378, 0.0294383, 0.023417447, 0.0005151872, 0.016744222, 0.021066189, -0.023295129, -0.0072168685, 0.0063096634, 0.006228117, 0.0027980655, -0.0066358494, 0.040338356, 0.0253202, 0.0105262995, -0.01658113, -0.010669005, 0.0032669583, 0.014759923, 0.01696168, -0.0029832441, 0.015820028, 0.010736961, 0.02158265, -0.030471222, 0.0134008145, -0.028704382, 0.009887517, -0.012408665, -0.014352191, 0.014229871, 0.036342572, -0.02682881, -0.014107551, 0.0029067944, 0.012259163, -0.009140008, -0.016064668, -0.004536026, 0.021039007, -0.0015536315, -0.0044612754, -0.63888997, -0.011300991, 0.008895368, -0.026978314, 0.023064079, -0.0012563263, 0.020875914, 0.020971052, 0.0069042738, 0.017967422, -0.0012733152, 0.020971052, 0.008052721, -0.036505666, -0.014433737, -0.025673568, -0.00070164003, 0.00057464826, 0.00835852, -0.012877557, -0.040311173, -0.0035812522, -0.032700162, -0.0014092261, -0.0063776188, -0.009391443, 0.01683936, -0.009479785, -0.014460919, 0.018239243, -0.018415926, 0.041099455, -0.0038564717, 0.0051917965, 0.04824837, -0.04476905, -0.0015306965, 0.02682881, 0.008861391, 0.032754526, -0.021229282, 0.012456234, 0.017179137, 0.0010804916, 3.2567516E-06, 0.001127211, 0.03566302, -0.01770919, -0.0011008782, -0.013427997, 0.020767186, -0.025225062, 0.009418625, 0.006853307, -0.003418159, -0.0057422356, 0.04289348, 0.0014754827, -0.003778323, 0.0025602216, -0.024083411, 0.0023784407, -0.028024826, -0.037457045, -0.024858104, 0.037973505, -0.02156906, -0.0030053298, -0.0058611576, -0.015670527, 0.02646185, 0.026720082, -0.0021677788, 0.0025415337, 0.008616751, 0.044904962, 0.006258697, -0.009554536, 0.013720205, 0.01409396, 0.024273686, 0.008487635, 0.003436847, -0.0017889272, 0.0072168685, -0.007835263, -0.00492677, -0.001627533, 0.016988862, 0.0027946678, 0.030525587, 0.01041757, -0.023920318, -0.0082973605, -0.016105441, 0.008820618, -0.0062620947, 0.0030376085, 0.01746455, -0.027331682, -0.028514106, -0.0076789656, -0.025958981, -0.021840882, 0.0294383, 0.009248736, 0.01734223, -0.0010541589, 0.02431446, -0.029900398, -0.008569182, -0.0019622135, -0.0094729895, -0.014107551, 0.0069348537, -0.023988273, 0.009771993, 0.004012769, 0.017804328, -0.05235288, 0.029329572, 0.010920441, 0.023349492, 0.0028932032, -0.003151434, 0.012694078, 0.0017371111, -0.016037486, 0.00040624617, -0.0039074384, -0.007903218, 0.0027674856, 0.018918797, 0.008073107, 0.011885408, 0.02881311, -0.0050388966, 0.012632918, 0.025428928, -0.023512585, -0.03215652, 0.0024820727, -0.014243462, -0.017777145, -0.024110593, -0.055832196, -0.023770817, -0.0023223774, 0.010390388, -0.018035376, 0.0051612165, -0.013040651, 0.013095015, 0.004719506, 0.009663265, -0.010444753, 0.013339655, -0.020821549, -0.009758403, -0.009534149, 0.009309896, 0.010390388, -0.022044748, -0.0063130613, -0.010750552, -0.0080663115, 0.0057354397, 0.01770919, -0.012551371, -0.043328393, -0.005015112, -0.014460919, -0.0092963055, 0.0104107745, 0.0030359097, 0.0063436413, -0.019842992, -0.017682008, 0.0059087262, 0.005473811, 0.0026502626, 0.024844512, -0.029492665, -0.012333914, -0.0069858204, 0.01832079, 0.010390388, 0.044578776, -0.00019250505, -0.006999411, -0.023526177, 0.037647318, -0.017627643, 0.025918208, -0.012299936, -0.039332613, -0.00047059148, 0.029628575, 0.013095015, 0.026611354, 0.0314226, -0.042377017, 0.020141995, 0.005120443, 0.0047942568, -0.001970708, -0.010505913, 0.009941882, 0.019543987, 0.0046379594, -0.0023393664, -0.035010647, -0.00026948584, -0.01758687, 0.01185143, 0.0245591, -0.0072304597, 0.027766597, -0.019367304, -0.015738482, 0.028459743, -0.006197537, 0.016485991, -0.013720205, -0.019611942, 0.0065237232, 0.0058611576, 0.037592955, -0.00904487, -0.020291498, -0.0015697709, 0.026475443, 0.0034130623, 0.020345861, 0.02170497, 0.015887983, 0.0016012003, -0.024341641, 0.03653285, -0.016621903, 0.022275796, -0.002239132, 0.021405967, -0.010376797, 0.027589912, 0.017940238, 0.028758746, 0.013006673, 0.0014432039, 0.005164614, -0.012646509, 0.020345861, 0.0036797875, 0.025741523, 0.014433737, 0.004257409, 0.031259507, 0.00841968, 0.004192851, 0.004508844, 0.0019418269, 0.0047942568, 0.026217213, 0.0010609544, 0.027943281, -0.023852363, -0.021039007, 9.171331E-06, -0.017124774, -0.02068564, 0.025755115, -0.012694078, 0.009887517, 0.003057995, 0.017301457, -0.005969886, -0.00967006, -0.0026468646, -0.0143385995, 0.020468181, -0.014352191, -0.040827632, 0.011253422, 0.017274275, 0.0028320432, -0.024042638, -0.023159217, 0.010947622, -0.0010652017, 0.069260195, 0.0051136473, 0.010023429, -0.01308822, -0.0011934675, 0.009839949, -0.008630342, 0.017872283, -0.026393896, 0.034602914, -0.014610422, -0.003761334, 0.0028218501, -0.01015934, -0.013353245, 0.041887738, 2.5549656E-05, -0.0092351455, -0.04528551, 0.013271699, 0.0052223764, 0.006448972, -0.018986752, 0.006048035, -0.013944458, -0.00012677939, -0.013509544, 0.004525833, -0.040338356, 0.030253766, -0.008147858, -0.0068023405, 0.0029934375, 0.0052461606, -0.015521024, 0.06996693, 0.008426475, -0.01520843, 0.019068299, -0.00015088233, -0.034847554, -0.0019520202, -0.006584883, 0.0003833112, 0.0040059737, 0.013115401, 0.0041588736, 0.010016633, -0.0040059737, -0.0028065601, 0.0047704726, -0.0046651415, -0.015276385, -0.005354889, -0.0029339765, 0.00642179, 0.0057660197, 0.013733796, 0.009017688, 0.005534971, 0.027861735, 0.01459683, 0.0037681297, 0.015915167, -0.012483416, 0.014039596, -0.0038904494, -0.0036458098, 0.01534434, -0.018103331, 0.00015672225, -0.029846033, -0.029411118, 0.026489034, -0.006781954, -0.00633005, 0.028378196, 0.022221431, -0.0135774985, 0.013360041, 0.0067106006, -0.0043389555, 0.02295535, -0.012694078, -0.015480251, 0.019312939, 0.017179137, -0.015480251, 0.009948677, -0.010451548, 0.04050145, 0.0072168685, -0.005477209, -0.012918331, -0.03356999, -0.010804917, -0.0080663115, 0.017940238, 0.0014355589, -0.01720632, -0.02121569, -0.011022374, 0.00626889, -0.015942348, -0.020114813, -0.01995172, -0.0007279728, 0.003988985, 0.019380894, 0.019272165, -0.003076683, -0.0022934964, -0.0050864653, 0.026026936, 0.0063402434, 0.00084562064, 0.0020845335, 0.0025602216, -0.007481895, 0.00090125913, -0.0067445785, 0.0075022816, -0.014800697, -0.013550317, -0.017260684, 0.022058338, 0.0005695516, 0.036233846, -0.000835852, -0.005062681, 0.0015782653, 0.005225774, 0.028160738, 0.010655414, -0.0011739304, 0.0024905673, -0.02968294, -0.023267945, 0.011362151, 0.03770168, 0.024912467, 0.026325941, 0.020223541, -0.020060448, -0.017383004, 0.026094893, 0.009636083, -0.0054398337, -0.011008782, -0.004012769, -0.0008706792, 0.0034232556, -0.0037341518, 0.025293019, -0.015194838, -0.003951609, -0.050586037, 0.026135666, 0.023553358, -0.00710814, 0.010825303, 0.009955473, -0.013523134, -0.021011826, 0.0015281482, 0.007923605, 0.0027980655, 0.006958638, -0.0059053283, -0.001165436, -0.021270055, -0.023281537, 0.0042743976, -0.01734223, -0.0049063833, -0.01191259, 0.024627054, 0.0097040385, 0.018728523, -0.02271071, -0.014556057, -0.019421667, 0.009758403, -0.037103675, 0.00797797, -0.024776557, 0.0011586404, -0.027100634, -0.014610422, 0.00779449, -0.008861391, 0.0010312239, -0.0018059161, 0.022493254, 0.027127815, 0.0135774985, -0.034467004, 0.026285168, 0.010696188, -0.015031746, 0.008684706, -0.018307198, 0.0065339166, -0.017940238, 0.042349834, 0.0046787327, 0.011919386, -0.002599296, -0.012456234, -0.0051272386, 0.017410185, 0.0032159917, -0.022697119, -0.02243889, -0.048302732, -0.011763088, -0.0038292895, 0.009038075, -0.0049437587, -0.043301214, -0.0198294, 0.04678053, 0.005242763, 0.009799176, -0.0038904494, 0.0108185075, -0.034738824, 0.02307767, -0.016621903, 0.0042166356, 0.012632918, -0.024042638, -0.027222952, 0.00044001153, 0.006931456, 0.003849676, -0.008956528, -0.010900054, -0.015629753, -0.020522546, 0.0043661376, 0.0099147, -0.011273809, 0.025061969, -0.009697243, -0.011919386, -0.012449439, -0.0024871693, -0.031341054, 0.0006659634, 0.013944458, -0.009710833, 0.021392375, -0.014950199, 0.007787694, 0.012558167, -0.0029509654, 0.015616162, -0.004359342, 0.0005614819, 0.031232323, 0.0039108363, -0.008385702, -0.041942105, -0.015901575, -0.008494431, -0.0015884587, 0.031205142, -0.0074683037, -0.0076857614, -0.00035124473, -0.0078012855, -0.012891148, -0.03329817, 0.0032907426, -0.0020811355, 0.019815808, -0.028405378, -0.031014867, -0.0040025758, 0.013665841, -0.0071625044, 0.01607826, 0.01215723, -0.003418159, 0.010573868, 0.044660322, -0.031721603, 0.005419447, 0.007434326, -0.0036763898, -0.029329572, -0.0019961912, -0.009173986, -0.03030813, 0.009799176, 0.027780188, 0.0028864078, -0.00654411, 0.009173986, 0.007481895, -0.0018789682, 0.0012639713, 0.010954418, 0.027386045, -0.0119941365, -0.0045156395, -0.012836784, 0.00773333, -0.015018154, -0.008018743, -0.00013633561, -0.009554536, 0.01172911, -0.0096089, 0.008385702, 0.0036695942, -0.006911069, -0.021745743, -0.0105262995, 0.017016044, -0.024749374, -0.017994603, 0.014569649, -0.032971982, -0.03242834, 0.019897355, 0.0021728755, 0.020889506, 0.0026621546, -0.008304155, -0.022466071, 0.024491144, -0.05947461, 0.026910357, 0.007644988, 0.029084932, -0.011015578, 0.008195427, 0.029601393, -0.0047568814, 0.031748787, -0.00848084, -0.029275207, -0.025727933, 0.014542466, -0.0122251855, 0.010084589, -0.00511025, 0.0013964844, -0.008426475, 0.019041117, -0.0046039815, -0.021011826, 0.0023512584, 0.0007135322, 0.010077793, 0.02631235, -0.034766007, -0.0040059737, -0.012741647, 0.016621903, -0.004111305, -0.010947622, -0.034657277, -0.021990383, -0.005813589, -0.015425887, -0.034113634, 0.00061202375, 0.013747388, -0.018062558, 0.0055859378, 0.0022306377, 0.001777035, 0.014297826, 0.010390388, -0.00094882795, -0.005453425, -0.016227761, -0.029519847, 0.025225062, 3.8410755E-05, -0.022615574, -0.027943281, 0.0029339765, 0.04775909, 0.013597885, -0.045747608, -0.0041418844, -0.00016139419, -0.030743046, 0.0041282936, -0.0035710589, 0.017763555, 0.020943869, 0.009602105, 0.031721603, 0.02182729, 0.01645881, 0.008956528, 0.022425298, -0.019421667, 0.0073255976, -0.014080369, -0.01770919, -0.020182768, -0.03117796, -0.03346126, 0.027046269, 0.0025024593, -0.0050354986, 0.017546097, -0.0013862911, -0.003241475, -0.023281537, 0.00015024525, 0.026801629, 0.03346126, 0.011763088, -0.038354054, -0.008841004, 0.0055315737, 0.017858692, -0.0006332598, 0.021310829, 0.00639121, 0.015942348, -0.006690214, -0.01533075, -0.020549728, -0.019543987, -0.017654825, 0.013699818, -0.0064387787, -0.011117511, 0.01609185, 0.015806437, -0.03356999, -0.0074683037, 0.017885875, -0.005235967, -0.015113292, 0.003509899, -0.044660322, 0.030036308, -0.022996124, 0.026923949, -0.0028490322, -0.013067833, -0.007148913, -0.01795383, -0.039577253, 0.035119377, 0.012891148, -0.014977381, -0.044904962, 0.020916687, -0.01558898, 0.0145152835, -0.00803913, 0.0065509053, -0.033107895, 0.013706614, -0.0326458, -0.022914577, -0.007869241, -0.011362151, -1.09299435E-05, 0.00471271, 0.04077327, 0.2002783, 0.020250725, -0.0033247203, 0.030579953, 0.012517394, -0.015425887, 0.0026043926, 0.0019537192, -0.0036560032, -0.006764965, 0.017179137, 0.022085521, -0.013835729, -0.0044578775, 0.023363084, -0.0008910658, -0.041045092, 0.004807848, -0.03166724, 0.0044001155, -0.001583362, 0.009330283, 0.0066188606, -0.014950199, 0.019041117, 0.0042166356, -0.010675801, -0.013135788, -0.021976791, 0.004196249, -0.004406911, -0.006183946, 0.013645454, -0.0064285854, -0.005134034, -0.007957583, 0.028486924, -0.00075515494, 0.0016258341, 0.030036308, 0.0009879023, 0.0063776188, 0.00037757747, -0.025401747, -0.0054024584, -0.008365315, -0.0050287032, -0.00517141, -0.0037545385, 0.017002454, -0.022058338, -0.013061037, 0.019965312, 0.01620058, -0.013373632, -0.017287865, 0.027603503, -0.0025908016, -0.01819847, 0.015031746, -0.014746333, 0.004291387, -0.0035642632, 0.029791668, -0.023757225, 0.025918208, -0.00040157422, 0.0013472168, 0.024368824, 0.02007404, 0.014773514, 0.0021270055, -0.013543521, 0.023526177, -0.025510475, -0.02818792, 0.021270055, -0.015738482, 0.018633384, 0.024110593, 0.012551371, 0.00026566334, 0.020971052, -0.01607826, -0.024219321, -0.011022374, 0.029329572, -0.006153366, 0.0041214977, -0.008569182, -0.0042030443, 0.0006001316, 0.0010940827, 0.00087237806, -0.0070537757, 0.04887356, -0.014257053, 0.02319999, -0.012707669, 0.003598241, -0.009561332, 0.020033266, 0.0036831854, 0.018905206, -0.029574212, 0.01682577, 0.0002652386, 0.00973122, 0.00067488255, -0.03044404, 0.008616751, -0.023376675, 0.016404446, -0.013067833, -0.0020947268, -0.016649084, -0.005806793, -0.003436847, -0.0055927336, -0.017002454, 0.023132036, -0.019149845, 0.024640646, -0.004597186, 0.019543987, -0.0061125928, -0.021351602, 0.0008235351, 0.0033977726, -0.022928169, -0.008270178, 0.012925127, 0.017124774, -0.018307198, -0.01885084, -0.017505324, 0.008902164, -0.04947157, 0.015154065, 0.0021168122, -0.007964378, -0.00017243695, 0.012850375, 0.029030567, 0.016948089, -0.0038428807, 0.013135788, -0.005541767, -0.010648618, 0.00210492, -0.011001987, -0.008290565, -0.011178671, 0.00048333313, -0.009038075, -0.013128993, -0.036505666, -0.026896767, -0.008834208, -0.0033637946, -0.01683936, 0.0129930815, 0.020658456, -0.019136254, -0.003971996, -0.019897355, -0.1734223, 0.0056776777, 0.027589912, -0.046671804, -0.00018772692, 0.010927236, 0.011192262, -0.008773048, -0.041452825, 0.0056946664, 0.02019636, -0.0068601025, -0.01621417, -0.027861735, 0.011110716, -0.0011204155, 0.018524656, -0.009771993, 0.037212405, -0.010594254, 0.018905206, -0.027087042, 0.023485404, 0.0076789656, 0.01546666, -0.017016044, -0.0068872846, -0.0058577596, 0.02818792, -0.020753594, -0.013448384, 0.009357465, 0.014026005, -0.0010983299, 0.013781365, 0.008310951, -0.0055485624, 0.01229314, -0.03566302, 0.032238066, 0.0041826577, 0.026122075, 0.038489968, -0.013713409, 0.021419557, 0.03144978, -0.0066154627, 0.0019537192, 0.021229282, -0.01534434, 0.022153476, -0.010240886, 0.012884353, -0.015018154, 0.023906726, 0.009683652, 0.0062179235, 5.6116336E-05, 0.022778666, -0.0104107745, 0.011837839, -0.021596242, 0.009146803, -0.0141619155, -0.028323831, -0.0028745155, -0.005422845, 0.008032334, -0.010030224, 0.023349492, 0.0026332736, 0.023838772, -0.024667827, -0.021786517, 0.011477675, 0.032102153, -0.0043661376, 0.0029917387, 0.036206663, -0.0002815904, 0.026244394, 0.03278171, -0.017614052, -0.00014047665, -0.0033569993, 0.0072848243, -0.029329572, 0.0013523134, 0.002419214, -0.019938128, 0.013625068, -0.030987686, -0.020386634, -0.019231392, -0.021650607, 0.017084, 0.015276385, -0.035445563, -0.0027657868, -0.05004239, 0.010458344, -0.0045292308, -0.018361563, 0.029981945, 0.02468142, 0.025537658, 0.013686228, -0.00617715, 0.0118174525, 0.00082863175, -0.0022799054, 0.015167656, -0.001777035, 0.0014372577, -0.0025160506, 0.015602571, 0.0120485015, -0.034847554, 0.008209018, -0.011844635, 0.017315049, -0.020495363, -0.011457289, -0.014800697, 0.0048554167, 0.012891148, -0.09492017, 0.0058203842, 0.0259318, 0.021936018, -0.019842992, -0.014868652, -0.01595594, 0.020441, 0.009500172, 0.020930279, 0.00904487, 0.0022289387, 0.021800108, 0.01720632, 0.009785584, -0.01215723, 0.023227172, -0.027657868, -0.0014126239, 0.03376027, 0.024300868, 0.0012087575, -0.011443698, -0.01302706, 0.00022319118, -0.041751828, -0.032102153, -0.012449439, 0.014746333, -0.00480445, -0.0005122142, 0.010336024, 0.025551248, -0.005463618, -0.01932653, 0.006364028, -0.038979247, 0.00088766805, 0.02930239, -0.025333792, -0.012945513, 0.0038190961, 0.014012413, -0.026516216, -0.013108606, -0.012829989, 0.0025126527, -0.015181247, 0.0019163437, -0.0247086, -0.017410185, -0.00841968, 0.0012656703, -0.0069926158, 0.005840771, -0.013203744, 0.001119566, 0.03144978, -6.630965E-05, -0.0013769473, -0.019761445, 0.009799176, -0.011837839, 0.0019673102, 0.019625533, 0.0038768584, 0.0015162559, 0.009710833, -0.011341765, 0.034956284, -0.019027526, 0.032564253, -0.019639125, 0.028840292, -0.009758403, 0.005599529, -0.030797409, 0.007094549, 0.0060140574, -0.010043816, -0.008705093, -0.018538246, 0.01746455, -0.029084932, 0.0074275304, 0.0022340354, 0.005229172, -0.022737892, 0.015670527, -0.030607134, 0.014542466, -0.0031616273, 0.010070997, 0.0092351455, -0.0033824826, -0.018035376, -0.0036933785, -0.0074750995, -0.019244984, 0.008385702, -0.026271576, -0.0035200922, -0.07007566, 0.028269466, -0.008426475, -0.038870517, -0.00016691558, -0.0058747483, 0.0041860556, -0.010261273, 0.01459683, -0.0157113, -0.016948089, 0.003253367, 0.010077793, -0.025184289, 0.0005398211, -0.019476032, -4.7462632E-05, -0.016282126, 0.018619793, -0.004661744, -0.0035370812, -0.0036254232, -0.019666307, 0.027766597, -0.026978314, 0.016540356, -0.012252367, 0.025972573, 0.018171286, -0.0035812522, -0.0021422955, -0.0306615, -0.006003864, 0.03482037, -0.010750552, -0.008324542, 0.0014347094, 0.014882243, 0.022887396, -0.023064079, -0.02544252, -0.01047873, 0.005208785, -0.017913057, -0.008385702, -0.012456234, 0.026760856, 0.0027589912, 0.007706148, 0.017124774, 0.032102153, 0.015289976, -0.0009887518, -0.026883176, -0.013781365, -0.024844512, 0.010968009, -0.01832079, -0.0078012855, -0.037457045, 0.039930623, -0.010261273, -0.0069246604, -0.0032652593, 0.011980546, 0.0013803451, -0.031857513, -0.0015162559, 0.0070537757, 0.000113719194, -0.038245328, -0.004872406, 0.011239831, -0.008032334, -0.0017167245, 0.0020165779, 0.0027674856, 0.02056332, -0.021351602, 0.018157696, -0.01047873, -0.013536725, -0.038082235, 0.0035268879, -0.010437957, 0.0011399527, 0.015616162, -0.0029679541, -0.0064659608, 0.0001385654, -0.014759923, 0.007570237, -0.0036390142, -0.005269945, -0.011552426, 0.00029093426, -0.0064625633, -0.014909426, 0.012952308, 0.03068868, 0.004107907, -0.016390854, -0.012177616, -0.021433149, -0.0042166356, -0.001681048, 0.01328529, -0.01534434, -0.009010892, 0.01447451, 0.017328639, -0.022873804, -0.0005559605, 0.013190153, -0.009194372, 0.005239365, 0.002390333, -0.030715862, -0.003057995, 0.013020264, 0.010798121, 0.014882243, 0.010030224, -0.0078284675, 0.00474329, 0.030036308, -0.013672636, -0.0022748087, 0.009907904, 0.0077129435, 0.01671704, -0.013176561, -0.023594132, -0.0033179247, 0.0082973605, -0.008059517, -0.005956295, 0.008331338, -0.004271, 0.07692557, 0.0006485498, -0.011681542, 0.018918797, -0.01696168, 0.020033266, 0.029139297, -0.01223198, -0.004586993, -0.02345822, 0.014528875, 0.007848854, 0.004780666, 0.018347971, -0.011919386, -0.006724192, 0.006870296, 0.013271699, -0.010859281, -0.03751141, 0.03204779, -0.035119377, 0.018347971, -0.017247094, -0.009248736, 0.027943281, 0.019516805, 0.03732113, -0.004583595, -0.030498406, 0.006870296, -0.0032669583, -0.020617682, -0.011069942, -0.0070130024, 0.0045462195, -0.022112703, 0.031585693, 0.004892792, 0.012422256, 0.010682597, 0.024776557, -0.013020264, 0.0073188017, 0.0012835085, 0.015792847, -0.006445574, -0.008983711, -0.003421557]
+ },
+ {
+ "Id": 64,
+ "Type": "Bags",
+ "Brand": "Green Equipment",
+ "Name": "EcoVenture Olive Green Backpack",
+ "Description": "Embark on your next adventure with the Green Equipment EcoVenture Olive Green Backpack. Made from recycled materials, this sustainable backpack is as eco-friendly as it is functional. It features a spacious main compartment, multiple pockets for organizing your gear, and adjustable padded shoulder straps for comfortable carrying. The olive green color adds a touch of nature to your outdoor excursions.",
+ "Price": 69.99,
+ "Embedding": [0.012184282, -0.019033356, 0.008196214, -0.01833978, -0.009630051, 0.004738332, -0.016085653, -0.041828033, 0.0026392608, -0.0072892285, 0.014805203, 0.009376629, 0.008983158, -0.0074026017, -0.0050017578, -0.008142862, 0.025395593, 0.014124964, -0.010523698, 0.008583017, -0.018299764, 0.027369618, -0.0063655707, -0.0036379453, -0.0003990986, -0.02068727, 0.008522996, -0.008769749, 0.03961392, 0.0040047406, 0.00902984, 0.0059020743, 0.0077493903, -0.014778527, -0.01509864, -0.002290805, -0.0059454227, -0.0005447748, 0.01576554, -0.0037113044, 0.023915071, 0.004058093, 0.013157958, 0.016325738, -0.018019667, 0.017152695, -0.034091983, -0.014951922, -0.0038046704, 0.021140764, 0.012284317, 0.014671823, -0.002290805, 0.030490717, -0.0033645157, 0.024048451, 0.006812394, 0.0042581633, 0.0122376345, -0.026329253, -0.014418401, -0.00340453, -0.026049156, -0.007942791, -0.0077693975, 0.00529186, -0.013171296, -0.030517392, 0.013391373, 0.016072316, 0.014885232, 0.0011178929, 0.019246764, 0.01900668, 0.008202883, -0.012524402, -0.0300639, 0.0008419626, 0.00052768545, 0.00896315, -0.0028860143, -0.04374871, -0.019846976, 0.0023541606, 0.01401826, 0.009676734, 0.00065397983, 0.029370323, -0.021647608, -0.013017909, -0.0036679558, -0.0023941747, 0.020007031, 0.00035512482, -0.044122174, -0.0017672878, 0.0006452268, 0.016285723, 0.02865007, -0.017192708, -0.013564767, 0.011130579, 0.008522996, -0.00808951, -0.053752225, -0.0054952647, 0.002349159, 0.0020107066, 0.03553249, 0.008743073, -0.02378169, 0.013151289, 0.011650762, -0.030037224, -0.009703411, -0.014725176, 0.0118641695, 0.012511063, -0.019833637, -0.022114439, 0.0116174165, -0.010723769, 0.009329946, -0.0370797, -0.00080695027, 0.016072316, -0.030437363, -0.0102436, 0.011417346, -0.016592499, -0.013711486, 0.032411393, 0.015618823, -0.0006910762, -0.023501594, 0.026636029, -0.0057186764, 0.02878345, -0.033958603, 0.0015897254, 0.00234249, 0.015552132, -0.016885934, -0.005028434, -0.0118641695, 0.0017055995, 0.004848371, 0.024955437, 0.009750093, 0.01685926, 0.027156211, -0.02244789, 0.035905953, 0.009229911, 0.00418147, 0.018686568, -0.0042214836, 0.0006681515, -0.028863478, -0.0007952795, -0.022394538, -0.026782745, 0.0020940693, -0.0045916135, 0.022261158, 0.026129182, 0.017872948, 0.008703059, 0.0014913575, -0.002065726, -0.025822408, 0.032811534, -0.011884177, 0.00808951, 0.016939286, 0.01597895, 0.013278, -0.003292824, -0.025755718, -0.036012657, -0.0025892432, 0.011804149, -0.01529871, 0.00754932, -0.008036158, -0.019380145, 0.00808951, 0.0065156235, 0.010236931, -0.014258345, 0.004294843, 0.0031577765, -0.012784493, 0.014898569, -0.64363956, -0.007889439, -0.003821343, -0.0072492147, 0.022768002, 0.016205696, 0.030570744, 0.012377684, -0.00024842063, -0.00694244, 0.0008482148, 0.02412848, 0.0015021947, -0.03153108, 0.030997561, -0.0195402, 0.010230262, -0.014791866, 0.03545246, 0.0031894543, -0.05343211, 0.00042973435, -0.021714298, -0.0067023556, 0.012977894, 0.024568634, 0.023755016, -0.019220088, 0.0004726661, 0.015485442, 0.0019373476, 0.043161836, -0.016872596, 0.0032594788, 0.05938087, -0.01523202, -0.020007031, 0.036572855, 0.007515975, 0.03579925, -0.01287119, -0.0020890676, -0.006882419, -0.040894374, -0.023955086, 0.027009493, 0.03934716, 0.0021174108, 0.013311345, -0.025382254, 0.04348195, -0.0064822785, -0.0019290113, -0.011357325, 0.013498077, -0.011023874, 0.03734646, 0.026409281, 0.025849085, 0.023008086, -0.001599729, 0.007696038, 0.00700913, -0.019900328, -0.028836802, 0.02083399, -0.03553249, -0.023701664, 0.00836294, -0.03275818, 0.0072358763, 0.03694632, 0.0070691514, -0.0043348568, 0.018819949, 0.012977894, -0.013858204, -0.005418571, -0.018579863, 0.023915071, 0.014591795, 0.00019183826, -0.012997902, 0.0060021095, 0.028810125, -0.012057571, 5.3664695E-05, -0.003497896, 0.028143225, 0.010083544, 0.019513525, 0.02682276, 0.010597058, -0.018433144, -0.017419456, 0.012177614, -0.026302578, 0.024515282, 0.0020623915, -0.018113032, -0.0015597148, -0.0019390148, 0.018113032, -0.0037713256, 0.00061229855, 0.019033356, 0.009556692, 0.008709728, 0.028409986, -0.011557396, -0.0072958977, -0.017712891, -0.0041647973, -0.019460173, -0.00923658, -0.029503703, 0.03513235, -0.020393834, 0.023821706, -0.034518797, 0.005101793, -0.000774022, 0.0023524936, -0.0012971226, -0.011370663, 0.028863478, -0.010970523, -0.030117251, -0.035292406, 0.00013233817, 0.0019290113, -0.00044057152, 0.008036158, -0.0007856928, 0.017606188, 0.037319783, -0.0009728419, -0.008209552, -0.0010528701, -0.033184998, -0.022834692, -0.008122855, -0.012477718, -0.051378056, -0.011624086, -0.01644578, -0.01408495, -0.01832644, -0.02998387, -0.010463677, 0.0042915083, -0.004374871, 0.0022941397, 0.0026809422, 0.01947351, -0.02514217, -0.010463677, -0.020327143, -0.0047550043, 0.005021765, 0.007976136, 0.016299061, -0.028089872, -0.0021224127, -0.02384838, 0.0016847588, -0.033665165, 0.0127644865, -0.0012612767, -0.03457215, 0.00055894646, -0.012104254, -0.009490002, 0.014338372, -0.014418401, -0.012431036, -0.01779292, -0.04140122, 0.03513235, 0.008549672, 0.0056119724, -0.0036246073, -0.0006627329, 0.015138654, 0.023741677, -0.008336263, 0.006779049, 0.046069525, 0.010610396, 0.0066756797, 0.009670066, 0.023648312, 0.01907337, -0.0003893035, -0.023381552, -0.014445077, -0.003687963, 0.021487553, 0.036626205, 0.014351711, 0.03081083, -0.034758884, 0.01677923, -0.013164626, 0.0052551804, -0.02170096, -0.00027030334, -0.0017372773, 0.021554243, 0.024008438, 0.0078027425, -0.009563361, -0.010750445, -0.012024226, 0.0020040376, 0.0060154474, 0.00983679, 0.020340482, 0.010937178, -0.03457215, 0.012457712, -0.0037179734, -0.012917873, -0.027796436, -0.04180136, 0.013351359, -0.029210266, 0.022808015, 0.00046683074, -0.040014062, 0.024928762, 0.018446483, 0.005802039, 0.014365049, 0.027476324, 0.018299764, 0.0005977101, 0.0035012306, 0.027849788, -0.013598112, 0.023581622, 0.03721308, 0.030143928, 0.00074734597, 0.02998387, -0.012911204, 0.014751852, -0.0012346006, 0.004948406, 0.005258515, 0.0036212727, -0.018593201, -0.0027876464, -0.0015613821, 0.025715705, -0.017832935, 0.008636368, 0.0012220962, 0.033958603, 0.021687623, 0.000116290874, -0.023394888, 0.006078803, 0.014058274, 0.02170096, -0.011203938, -0.026062494, -0.008629699, -0.026035817, -0.009796777, 0.024248522, -0.018446483, 0.006018782, -0.011404008, -0.0009119872, -0.01967358, 0.01314462, -0.0076827, -0.013644796, 0.02688945, -0.0029376992, -0.02176765, 0.02150089, 0.0160323, 0.0010228595, -0.014831879, -0.0116174165, 0.020273792, -0.023554945, 0.01415164, 0.013491408, 0.014458415, 0.0039447197, -0.0007315071, 0.018019667, -0.018446483, 0.010877157, -0.017019315, 0.026382606, -0.012504395, -0.012477718, -0.009416643, -0.019553538, -0.0010570382, 0.024208508, 0.013598112, -0.013017909, -0.013911556, 0.0067590424, -0.00592875, -0.007869433, -0.007015799, 0.013217979, -0.024955437, -0.0032494755, 0.012250972, -0.018859962, -0.01617902, 0.012711134, 0.0029276956, 0.008723066, -0.02668938, -0.027609704, 0.007996144, 0.08040159, 0.0011670769, -0.0029493698, 0.030890856, 0.021647608, -0.022808015, -0.014845218, -0.0049450714, 0.004271501, -0.021380847, -0.004044755, 0.0005964596, 0.02776976, -0.0134780705, -0.0056986697, 0.008009481, 0.0020773967, -0.016058978, -0.0015021947, -0.035479136, 0.0065056197, -0.019766947, -0.02527555, 0.024448592, 0.017739568, 0.015005274, 0.03345176, 0.018646553, 0.02851669, 0.0072892285, 0.01785961, 0.023474917, 0.0048083565, -0.0020490536, -0.028329957, -0.0058987397, 0.017646203, -0.0077493903, 0.020300468, 0.016832583, 0.028943505, 0.019220088, 0.01051703, -0.021527566, 0.013024578, 0.012230965, -0.029823815, 0.0016155678, 0.018019667, -0.03179784, 0.039533895, 0.006982454, -0.035612516, -0.01233767, 0.010617065, 0.016872596, 0.0071291723, 0.014605133, -0.028756773, -0.040600937, 0.0013521418, -0.02642262, 0.017619526, -0.024928762, -0.0027676395, -0.004501582, -0.019046694, 0.008116186, -0.00889646, -0.01867323, -0.038866993, -0.024475269, -0.012644444, -0.01657916, 0.0073025664, 0.013991584, 0.014765189, -0.00074484514, 0.011377332, 0.021954382, 0.027849788, 0.012224296, 0.0038980367, -0.013764838, 0.021047397, 0.007522644, 0.009496671, -0.019086707, 0.0039780647, 0.007822749, 0.03889367, -2.7092856E-05, 0.033958603, -0.002982715, -0.012837845, 0.010817135, 0.026876112, 0.02474203, 0.016339077, -0.025822408, 0.01947351, 0.014551781, 0.0010528701, -0.018459821, 0.018433144, -0.0015113645, -0.0332917, 0.002085733, 0.0017539498, 0.0063255564, 0.030090576, -0.027476324, -0.0114306845, -0.00674237, -0.01967358, 0.02055389, 0.010830473, -0.006639, 0.02002037, -0.027342943, -0.016299061, -0.05580628, 0.009516678, -0.0072225383, 0.025729043, 0.01139067, 0.0076893694, -0.0044315574, 0.0053218706, 0.017486146, -0.011484036, 0.032278012, -0.013338021, -0.008116186, -0.01825975, -0.012190951, -0.015258696, 0.009376629, -0.0011445689, -0.0021574248, -0.021220792, 0.0062855426, 0.012944549, 0.012864522, -0.00515848, -0.02384838, -0.014911908, -0.015485442, 0.001999036, 0.036012657, -0.026996154, 0.0021924372, -0.019793624, -0.0021290816, -0.012464381, -0.027049506, -0.03398528, -0.009670066, 0.014391725, 0.012310994, -0.003848019, -0.040520906, 0.026329253, -0.0028493349, -0.0073492494, -0.0053085326, -0.025328903, -0.019993694, -0.00011816653, 0.015858907, 0.0056586554, 0.008643038, -0.01805968, -0.019246764, -0.017286075, 0.007676031, -0.008889791, -0.014898569, -0.018219737, -0.022808015, -0.0092899315, -0.011550726, -0.009656727, 0.00040701806, -0.017192708, 0.002210777, 0.020994045, 0.039320488, 0.0036212727, 0.018619878, 0.022661299, -0.03510567, 0.006962447, -0.011777473, 0.001478853, 0.009936825, -0.015858907, -0.044095498, -0.039533895, 0.008109516, -0.0008969819, -0.028863478, 0.0038680262, -0.0077960733, -0.0039480543, 0.0033178327, -0.010863818, 0.0010445338, 0.016165681, -0.01139067, -0.015512118, -0.00072608853, -0.010630403, -0.03806671, -0.0154320905, 0.009583368, -0.016885934, 0.01637909, -0.0207673, -0.009736755, -0.00033699343, -0.00028989356, 0.030410688, -0.007922784, 0.009790108, -0.0025592328, -0.006355567, -0.016672526, 0.0027192892, -0.006192176, -0.0020990712, 0.013257993, 0.0120509025, -0.009870135, -0.024555298, 0.0068057254, 0.0073825945, -0.0017372773, 0.0020473863, 0.035825923, 0.021327496, 0.015472105, -0.023688326, -0.01153072, -0.010256939, 0.028409986, -0.0060287854, 0.011137248, -0.0044115507, -0.010370311, -0.016525809, 0.028570041, -0.019060032, 0.012684458, 0.012357676, -0.022727989, -0.0040247478, -0.0028493349, 0.009003164, 0.0089498125, 0.02223448, 0.017486146, 0.011610747, -0.019233426, 0.016885934, 0.009463326, 0.0049083917, 0.019593554, 0.017819596, 0.02110075, -0.007776066, 0.0038813641, 0.003424537, 0.0018756592, 0.031104265, 0.007409271, -0.013458063, -0.01111724, 0.0029893839, -0.018753259, 0.008102848, 0.012864522, -0.009950164, -0.026996154, -0.003114428, 0.01596561, -0.037586544, -0.046416312, 0.0003957641, -0.007662693, -0.012084248, 0.005812043, 0.015285372, 0.027983168, -0.031424377, -0.012150937, -0.015192006, 0.013491408, -0.028623393, 4.975707E-05, 0.017286075, 0.004388209, -0.003412866, 0.011577402, -0.0025859089, -0.010490353, -0.0045182547, -0.010497022, -0.015912259, -0.012784493, -0.020073721, 0.003681294, -0.014458415, 0.0046149553, 0.015138654, -0.0024858736, 0.0128045, -0.017486146, -0.034332067, 0.008009481, 0.0034478784, -0.026449297, 0.02790314, -0.02607583, -0.013204641, -0.011384001, -0.0050951242, 0.01206424, -0.0046583037, -0.028756773, -0.014831879, 0.018486498, 0.017179372, -0.028276606, 0.010210255, -0.0007169186, -0.008549672, -0.009556692, 0.014365049, -0.0038580226, 0.029370323, 0.013184634, 0.00047725107, 0.004985085, -0.014858555, 0.010677086, -0.010150234, -0.016845921, 0.0005797871, -0.021394186, 0.009490002, 0.04193474, 0.007442616, -0.025902437, -0.0007602672, 0.00032511426, -0.028223252, -0.016912611, -0.0008161202, 0.019046694, 0.018846624, 0.019246764, 0.008849777, 0.024435254, 0.0018273089, 0.02096737, -0.0005518606, -0.015325386, 0.0036046002, 0.006849074, -0.005008427, -0.022621283, -0.037453163, -0.011510712, 0.013698148, 0.026395943, -0.00808951, -0.005628645, -0.003411199, 0.00087030587, -0.02615586, 0.0018323107, 0.04428223, 0.011624086, 0.011003868, -0.012324331, -0.028009845, -0.008056165, 0.028810125, 0.006799056, 0.0036246073, 0.01907337, 0.0065889824, 0.010803797, -0.03342508, -0.03667956, 0.005068448, 0.006512289, 0.010136896, 0.008743073, -0.004261498, 0.0036279417, 0.0036646214, -0.020300468, 0.0021690957, 0.011897515, -0.0038980367, -0.012964557, -0.007022468, -0.023674987, 0.0072292075, -0.019060032, 0.021274144, -0.008616362, -0.014485091, 0.0044315574, 0.0005093457, -0.019313455, 0.00061229855, 0.019967018, -0.018753259, -0.020100398, 0.002612585, -0.0018223071, 0.0048650433, -0.02258127, -0.006855743, -0.028703421, 0.027689733, -0.030544069, -0.031851195, -0.03531908, 0.015578808, -0.017512823, -0.0056319796, 0.038866993, 0.204872, 0.015778879, 0.006092141, 0.01873992, -0.002230784, 0.0060354546, 0.013558098, -0.00026446796, 0.0051284693, 0.008076171, -0.006719028, 0.015818894, 0.015498781, -0.0028460003, -0.0002698865, -0.034385417, -0.046789777, 0.0058187116, -0.018699905, 0.016912611, -0.0019356803, -0.026182536, 0.031984575, -0.016485794, -0.0047883494, 0.00044849096, 0.000729423, 0.0036512832, 0.009296601, 0.019833637, 0.0036579522, -0.042041443, 0.00096450566, -0.0066823484, 0.010356973, 0.011657431, 0.02607583, -0.010650409, -0.0047016526, 0.00596543, 0.003372852, 0.019380145, 0.013451395, 0.0052185007, -0.016259048, -0.008502988, -0.011684107, 0.015245358, 0.0059954403, -0.020527214, -0.018299764, -0.00323447, 0.016339077, -0.0013979913, -0.009243249, 0.026462633, 0.034145333, -0.0033628487, 0.017432794, 0.01287119, 0.0048783813, 0.030570744, 0.001920675, 0.007422609, 0.008636368, 0.0072092004, -0.017846271, -0.019406822, 0.018366454, -0.017246062, 0.0015030282, -0.008216221, 0.013738162, 0.03153108, -0.024795381, -0.009930157, 0.0042915083, 0.0071491795, 0.0035479136, 0.027556352, 0.0071291723, -0.007582665, -0.017486146, -0.026769409, -0.017712891, -0.036439475, -0.0033978608, -0.0012679456, 0.014565119, -0.006915764, 0.017005976, -0.012397691, 0.0121442685, 0.00030656607, -0.00889646, 0.04142789, -0.019686919, 0.02244789, -0.020647258, 0.013524753, -0.031237645, 0.009843459, -0.014711837, -0.009349952, -0.020740623, 0.032411393, -0.019700257, 0.021074073, 0.01011022, -0.005458585, 0.00017568674, -0.029130237, -0.0072225383, -0.0061421585, -0.014458415, 0.008069503, 0.0057153422, -0.00022007735, 0.015352062, -0.010797128, 0.015258696, -0.025795734, 0.02547562, -0.015845569, 0.0031444384, 0.00444823, 0.0059954403, 0.024822058, 0.014044936, -0.019460173, 0.0013288003, 0.027209563, 0.03121097, -0.020940693, -0.0026325919, 0.000107120984, -0.005788701, -0.027983168, -0.0032978258, 0.011110571, -0.006168835, -0.0043782056, 0.014245006, -0.002027379, 0.04630961, -0.009083193, 0.005061779, -0.016685864, -0.004641631, -0.022021072, -0.0045115855, -0.013237986, -0.020073721, -0.0046249586, -0.019553538, -0.018153047, -0.055272758, -0.009736755, -0.0007802742, 0.0011529052, -0.020193763, 0.025995804, 0.015178668, -0.006548968, -0.0082362285, 0.008036158, -0.1690194, -0.0013054588, 0.009670066, -0.030303983, -0.0018856628, 0.011870839, -0.005251846, 0.004791684, -0.027556352, -0.01988699, 0.039400514, 0.020047046, -0.04905724, -0.027396295, -0.010083544, 0.0042448253, 0.0037913325, 0.02607583, 0.009996847, -0.004051424, 0.017779581, -0.016325738, 0.006132155, -0.0038113396, 0.0005618641, 0.006155497, 0.023661649, 0.022954734, -0.007876102, -0.004724994, 0.0022257823, -0.009656727, 0.02628924, -0.0041181142, 0.0011003867, -0.013751499, 0.012217627, -0.008162869, -0.011197269, 0.025302226, -0.009176559, 0.0080494955, 0.022421213, 0.024888746, -0.00451492, 0.010023523, 0.011797479, 0.004441561, 0.0073159044, 0.0059787678, 0.018619878, -0.0032528099, -0.024968775, -0.0020157085, 0.02608917, 0.0016489129, 0.01637909, 0.012777824, 0.024995452, -0.013538091, -0.0122376345, -0.031851195, -0.00592875, 0.0028993522, -0.012844514, -0.012137599, -0.016419103, 0.009256586, -0.011237282, 0.029103562, -0.032331362, -0.0050384374, -0.0026359265, -0.00086030236, 0.0005005926, -0.004838367, 0.0067357006, 0.0021607594, 0.0039680614, -0.015205344, -0.004731663, 0.018099695, -0.027422972, 0.03222466, 0.0142850205, 0.005511937, -0.014498429, -0.0045049167, -0.0003199041, -5.788493E-05, 0.005835384, -0.04927065, 0.00010029566, -0.012831177, 0.016285723, 0.0076693622, 0.027142873, -0.006632331, 0.004318184, -0.0020890676, -0.0057853665, 0.0021824336, -0.019420158, 0.020567229, 0.03673291, -0.0048083565, 0.0032694824, -0.011223945, 0.033531785, -0.0023124793, -0.0077493903, 0.008376277, 0.009209904, 0.011784142, -0.008709728, -0.0028543365, -0.0045982827, -0.033371728, 0.0011654096, -0.03174449, -0.0024441923, -0.014551781, -0.0054819267, 0.0017756241, 0.012097585, -0.0009453322, -0.10014186, -0.00057478534, 0.006679014, -0.00039388845, -0.00035595844, 0.0021040728, -0.0061054793, 0.027049506, 0.01503195, 0.0048683775, 0.0010320294, 0.0044982475, 0.00458161, 0.008863115, 0.03334505, -0.0048150257, 0.008256235, -0.02070061, -0.029637083, 0.017032653, -0.00046933163, -0.015725527, 0.0021924372, -0.0015180336, -0.0031844524, -0.0015038619, -0.03059742, 0.0064756093, 0.023608297, 0.011904184, 0.04374871, -0.007555989, 0.033745192, -0.019020017, -0.01219762, -0.01893999, -0.028223252, 0.0014688496, 0.015752204, -0.02547562, -0.007969468, -0.023741677, 0.017392779, -0.039133754, 0.013991584, 0.019993694, -0.017846271, -0.0012396023, -0.017152695, -0.022474565, -0.02675607, -0.020460524, 0.0117708035, -0.010763783, 0.012250972, -0.015272034, -0.0073492494, 0.017752906, 0.008943143, -0.0062555317, -0.012564416, 0.012944549, -0.012504395, 0.008102848, -0.02648931, -0.023301523, -0.0019623563, 0.0118575, 0.0067357006, -0.010950515, -0.005028434, 0.0110572195, -0.0055186064, 0.0155254565, -0.011737458, 0.0033028275, -0.013531422, 0.012464381, -0.0036046002, 0.007522644, -0.010697093, -0.029130237, 0.020820651, -0.015325386, -0.00091698894, 0.02554231, 0.007869433, -0.0009836791, -0.021687623, -0.024448592, -0.01516533, 0.000874474, 0.016192358, -0.01705933, -0.023461578, -0.0041881385, 0.012084248, -0.0050017578, 0.0020123739, -0.012997902, -0.019633567, 0.00072983984, -0.07602672, 0.021874355, -0.010957184, -0.0033978608, -0.0074492847, -0.0027076183, 0.01098386, -0.0043381914, 0.0049650786, -0.02156758, -0.0061154827, 0.010777121, 0.022261158, -0.008489651, -0.0019123388, -0.0020040376, 0.012691127, 0.019300116, 0.030437363, 0.005135138, -0.030437363, -0.01967358, 0.012117593, -0.0055886307, -0.047963522, 0.02190103, -0.007776066, 0.013638127, 0.01644578, -0.012417697, -0.014245006, -0.0020123739, 0.023421565, 0.029156914, -0.007475961, -0.026315916, 0.010963853, 0.016965963, 0.0072158696, -0.02891683, -0.0053218706, -0.019366806, 0.020793974, -0.008616362, -0.029423675, 0.003107759, 0.0058053737, -0.0024575305, 0.01644578, -0.00082570687, 0.015192006, 0.004895054, 0.013738162, -0.019406822, 0.008309587, -0.006582313, -0.00089614827, 0.014058274, 0.0032311357, -0.019993694, 0.029690435, -0.006112148, 0.02264796, 0.010570382, 0.00264593, -0.0030994227, 0.0023658315, -0.019340131, 0.0021740973, -0.002956039, -0.006502285, -0.008543002, 0.047776792, 0.015205344, -0.002752634, -0.0056219758, 0.006355567, 0.008409622, -0.011637423, 0.04428223, -0.021727636, -0.0041081104, -0.038040034, 0.017086005, 0.0060021095, 0.015312049, -0.018206399, 0.023701664, 0.01098386, 0.025195522, -0.0037246423, 0.012290986, -0.034278713, -0.023941748, 0.011083895, 0.011357325, 0.011350656, 0.0031627782, 0.011950867, 0.03153108, 0.016165681, 0.017339427, 0.0031294331, -0.04198809, -0.006395581, -0.006949109, -0.013671472, -0.016752554, -0.035372432, 0.011950867, 0.014978598, -0.026262563, -0.013224648, 0.0033345053, -0.03916043, -0.0017156029, -0.024155157, -0.033958603, -0.016392428, 0.035425782, 0.01805968, 0.023514932, -0.0014930248, -0.008649707, 0.017206047, 0.0018139709, 0.020567229, -0.010897163, 0.018579863, 0.0074359467, 0.0073159044, -0.020393834, 0.020753961, -0.025568986, -0.0140049225, -0.000588957, -0.007409271, 0.024621988, -0.0070024612, 0.05730014, 0.010597058, 0.0021424196, 0.014351711, 0.018113032, 0.016259048, 0.029210266, 0.014351711, 0.010416995, -0.01589892, 0.01267112, 0.0064622713, 0.00075484865, 0.027302928, -0.03033066, 0.008456306, 0.006789053, 0.029290294, -0.035239052, 0.017566174, 0.019166736, -0.027689733, 0.03081083, 0.0099101495, -0.028009845, 0.0025092151, 0.012977894, -0.0028610055, -0.007929454, -0.01671254, 0.034598827, 0.0041748006, -0.025195522, -0.0038280122, 0.009276594, -0.0024675338, -0.024248522, 0.00038430173, 0.011804149, 0.029583732, 0.0038746952, 0.013924894, -0.007582665, -0.037986685, 0.008296249, -0.0032944912, -0.008176207, -0.00694244, -0.04388209]
+ },
+ {
+ "Id": 65,
+ "Type": "Cycling",
+ "Brand": "Solstix",
+ "Name": "Sprint PRO Carbon Cycling Helmet",
+ "Description": "Stay safe while cycling with the Solstix Sprint PRO Carbon Cycling Helmet. This high-performance helmet is crafted from carbon fiber for optimal impact protection and durability. It features an aerodynamic design, adjustable fit system, and ventilation channels to keep you cool on long rides. The rainbow color with the Solstix emblem adds a touch of style to your cycling adventures.",
+ "Price": 179.99,
+ "Embedding": [0.024492316, -0.0023260394, -0.0148228975, -0.019538067, 0.015380749, 0.0027693317, -0.0011846032, -0.027786292, 0.02574084, -0.021556957, 0.03623375, -0.002372527, -0.025554888, -0.0004914402, -0.0020670372, 0.0029569424, 0.021902293, -0.021689778, -0.016788658, -0.0015897093, -0.0012169785, 0.004522578, -0.014105661, 0.01324232, -0.0059603723, -0.025395503, 0.022632811, -0.021809317, 0.022938302, -0.012498518, 0.023203945, 0.0029569424, -0.013209115, -0.017997336, -0.014809616, 0.02146398, 0.014610384, -0.0011779622, 0.013521246, -0.0018246376, 0.031027142, -0.013381783, 0.009729187, -0.0044528465, -0.02133116, 0.008367765, -0.018196568, -0.004818106, -0.00036691985, -0.003961406, -0.003157835, 0.022407016, -0.015128388, -0.0009280914, 0.0094502615, -0.03671191, 0.015646392, -0.0065813134, 0.034347683, -0.012246158, -0.013335295, 0.010067882, -0.015314338, 0.025129858, -0.007258704, -0.021610085, -0.0061928104, 0.013494682, -0.011236713, 0.02519627, 0.03084119, 0.012518442, 0.0036824807, 0.0015888792, -0.0016071422, -0.0058507943, -0.0029685642, -0.021530392, 0.017665282, 0.010399937, 0.013408347, -0.0055453046, -0.020520948, 0.014902591, 0.02451888, 0.02305784, -0.0033006184, 0.009383851, -0.000790704, -0.00019601572, -0.0061928104, 0.005309546, 0.0022280836, 0.007564194, -0.016509732, 0.013594298, 0.005033941, 0.031292785, -0.024014156, 0.0023160777, 0.0065016206, -0.009729187, 0.008354483, -0.0125250835, -0.039155826, -0.01820985, 0.00741809, 0.036632214, 0.015832342, -0.005874038, -0.011668383, 0.03506492, 0.022088243, -0.015487006, 0.014172072, -0.001391307, 0.032780387, 0.0024887458, -0.01605814, -0.0142916115, 0.013388424, 0.011017557, 0.024080567, -0.024014156, 0.015194799, 0.0031229693, -0.03580872, -0.0041340743, 0.04194508, -0.011542203, 0.012093413, -0.0031030462, 0.0030017695, 0.008068916, 0.0061097965, 0.012810649, -0.0025800609, 0.0014685096, -0.016496452, 0.0010658939, 0.00459895, 0.017811386, -0.00999483, 0.0008068916, -0.018541904, -0.013720478, -0.00447277, 0.008533792, 0.014517408, 0.007584117, 0.04088251, -0.033683576, 0.028716045, 0.025182988, 0.0058640763, -0.00594709, 0.017266817, 0.020202175, -0.02575412, -0.008327918, 0.01605814, -0.016576143, 0.027919114, -0.00022351395, 0.0025036884, 0.01905991, 0.008414253, -0.015739368, -0.016111268, -0.010944505, -0.016828505, 0.029114509, -0.030336468, -0.0027660113, -0.016097985, -0.010167498, -0.0028191397, 0.014384586, -0.013408347, -0.039580856, 0.0032773747, 0.0015017149, 0.0095963655, 0.017001173, 0.004363192, -0.0054722526, 0.031213092, -0.0028124987, -0.016097985, -0.023562564, 0.008009146, 0.026776848, 0.012186388, -0.010187422, -0.6473197, -0.028981688, -0.007657169, -0.039713677, 0.0062326565, 0.016775377, 0.014384586, -0.009417056, -0.025289245, 0.009569801, 0.012292645, 0.028636351, -0.013355219, -0.008547074, 0.0063721193, -0.035277434, -0.009835444, 0.0020421331, 0.012850496, -0.014384586, -0.021981986, -0.023323484, -0.013747042, 0.013906429, -0.002777633, 0.020640487, 0.016948044, 0.00741809, -0.031027142, 0.020467818, -0.048506472, 0.039926194, -0.010021395, -0.0011754717, 0.040191837, -0.032700695, 0.012266081, 0.025461914, 0.00520993, 0.033444494, -0.0066610067, -0.007086036, 0.01471664, -0.006235977, -0.008188455, 0.026391665, 0.015765931, -0.0129368305, 0.023456305, -0.0007579136, 0.01269111, -0.017798103, -0.017625434, 0.014769769, -0.008141968, -0.022420296, 0.033019464, 0.0006101495, 0.0026697156, 0.014384586, -0.018050464, 0.021596802, -0.033869524, -0.024572007, -0.009177977, 0.023934465, -0.046753228, -0.026683873, 0.009516672, -0.039155826, 0.01704102, 0.011980514, -0.0025667788, 0.018993499, 0.008427534, 0.020242022, 0.024173543, -0.0073848846, 0.015101823, 0.006747341, 0.030123955, 0.013049728, -0.00539588, -0.018236415, 0.009363928, -0.013853299, -0.00766381, 0.0039082775, 0.0074247313, 0.018050464, 0.011522279, 0.014796333, 0.011163661, -0.020574076, -0.00784976, 0.01870129, -0.0038551488, 0.0037289683, 0.016005011, -0.03230223, 0.0045690653, -0.015686238, 0.004947607, -4.0417217E-05, 0.040191837, -0.0026132662, 0.02531581, -0.022938302, 0.014450997, -0.024678266, -0.002702921, -0.016655836, -0.032647565, -0.011900821, -0.0034533632, -0.023801642, 0.03487897, 0.008188455, 0.009888573, -0.03708381, 0.018502058, -0.00735832, 0.019073192, 0.0011430965, -0.014504126, -0.004808144, 0.026365101, 0.027547214, -0.021623367, -0.032355357, 0.021224903, 0.015473724, 0.024412623, 0.00032333774, 0.022752352, 0.0022579683, 0.0022911737, -0.004774939, 0.01795749, -0.016655836, -0.036260314, -0.003219265, -0.035304, -0.03206315, -0.0073848846, -0.028450401, -0.046248503, -0.021955421, 0.008726384, -0.008759589, -0.0026398306, -0.001937536, -0.0027660113, -0.0180239, 0.0042702165, -0.008640049, 0.0008085519, -0.02416026, -0.022473427, -0.031213092, 0.02206168, 0.0033869524, -0.003665878, 0.002850685, -0.014105661, 0.0006939932, -0.012531724, 0.021663213, -0.017001173, -0.04776267, -0.0031179886, -0.008055634, -0.012053566, 0.02850353, -0.020149047, 0.0031827393, -0.017266817, -0.008228302, 0.016669119, -0.0059869364, 0.0036459547, -0.006647724, -0.034693018, -0.0005727934, 0.012465313, -0.0025302528, 0.031372476, 0.006651045, -0.0042336904, 0.0056548826, 0.022858609, 0.034267988, 0.012850496, 0.006272503, -0.015513571, -0.028237887, 0.005651562, 0.0058939615, 0.010572605, 0.00039825746, 0.02868948, -0.020640487, 0.019139603, -0.008593562, 0.03206315, -0.018953651, 0.0038518284, 0.00029075492, 0.020826437, -0.0025767402, 0.004635476, -0.00895218, -0.038597975, 0.010559322, -0.006352196, 0.010014754, 0.009191259, 0.005983616, 0.018754419, 0.013747042, 0.01066558, 0.004824747, 0.016469887, -0.012438749, -0.0056847674, 0.03328511, -0.0006333933, 0.024439186, 0.0077767083, -0.0356759, 0.00551542, 0.009324081, 0.01164846, -0.00072595343, 0.010313602, 0.033816397, 0.01888724, -0.02531581, 0.06274495, 0.0006230166, 0.042502932, 0.0067274175, 0.0026099458, 0.0030416162, 0.02005607, 0.001771509, 0.052225478, -0.0017316624, 0.018103592, 0.018528622, -0.028583223, 0.011010916, -0.013786889, -0.02065377, 0.02053423, 0.0074247313, 0.014211918, 0.03174438, -0.0014419452, 0.0239079, 0.0036193903, 0.016230807, 0.020348279, 0.004874555, 0.009556519, -0.007252063, -0.018475493, -0.012027002, -0.010479629, -0.008726384, 0.009344004, 0.0063787606, 0.00594709, -0.023283638, 0.029459845, -0.00815525, -0.008500586, 0.020693615, -0.020706898, 0.04194508, -0.006787187, -0.037907302, -0.010944505, 0.042768575, -0.00864669, -0.010519476, -0.014743205, 0.006846957, 0.0029519615, 0.020321716, 0.0138798645, 0.022539837, -0.013501322, 0.0069399322, 0.010572605, -0.015792497, 0.0029718848, -0.020149047, 0.029087944, -0.015380749, -0.03394922, 0.023270356, -0.006332273, -0.03806669, 0.042688884, 0.016855069, -0.014915873, -0.038040124, 0.004585668, -0.02016233, 0.012551648, -0.023615692, -0.016297217, 0.005166763, 0.012777444, -0.0064717354, 0.0015050354, -0.034427375, 0.01704102, -0.0051169544, -0.019538067, 0.004731772, 0.0024538804, -0.017572306, 0.06885475, -0.0095963655, 0.0015540135, 0.006179528, 0.008042352, -0.027414393, -0.0005794345, -0.010831607, 0.019604478, -0.012916907, -0.0041905236, 0.003941483, -0.021742906, -0.0065813134, -0.0025900225, 9.1574315E-05, 0.019538067, -0.011914103, -0.009835444, 0.028742608, 0.00071931235, -0.018648162, 0.023097688, 0.018156722, 0.0005719633, -0.014610384, 0.010280397, 0.029380152, 0.0006421097, -0.01342163, 0.0015797477, -0.0016727229, -0.0039680474, 0.00022185368, -0.017625434, 0.0055519454, -0.0072786273, -0.009124848, 0.02752065, 0.0008118724, 0.010532758, 0.006325632, -0.0064418507, 0.022725787, 0.013448194, 0.002659754, 0.0014477562, 0.0036559163, -0.0044229613, -0.024239954, 0.0117746405, -0.0019591195, -0.01024055, 0.011814487, -0.013268884, 0.0125250835, 0.009436979, -0.01581906, -0.013813453, -0.025541605, -0.0043797945, -0.0024870858, 0.01373376, 0.016881634, -0.0050970316, 0.003305599, 0.0076239635, -0.009211183, -0.010559322, -0.008467381, -0.0069133677, -0.009516672, -0.016642556, 0.011807846, 0.01956463, 0.0021268069, 0.032780387, -0.02206168, -0.004223729, 0.0048878375, 0.0128637785, -0.004339948, -0.017572306, -0.017984053, -0.007936095, -0.00019560066, 0.006199451, -0.008474022, -0.010565964, 0.016483169, 0.011947309, -0.014371304, -0.0003812397, -0.0130563695, -0.019896686, 0.014849463, 0.040005885, 0.027945679, -8.467381E-05, -0.0015274491, 0.010798401, -0.023947746, 0.0077767083, 0.005810948, 0.040988766, -0.006787187, 0.00539588, 0.023124252, 0.007577476, -0.008108763, 0.009483467, -0.000717237, 0.011814487, -0.011993797, -0.012100054, 0.009370568, -0.0030366352, -0.013162627, 0.008281431, -0.027361263, -0.0044528465, -0.03769479, 0.029141074, -0.0008089669, -0.010413218, -0.0012310909, 0.03028334, -0.0066776094, 0.016695684, 0.0023326804, 0.024625137, 0.036632214, -0.008208379, -0.015526853, -0.02783942, -0.016828505, -0.026750283, -0.00081062724, 0.010260474, -0.0019724017, -0.018608315, 0.012777444, 0.030177083, 0.005166763, -0.010625733, -0.017187124, -0.026285408, -0.009496749, -0.03556964, 0.012677828, -0.015805779, -0.00551542, -0.03450707, -0.0076173227, -0.00643853, -0.024731394, -0.024505597, -0.02065377, 0.024412623, 0.026126022, 0.034746148, 0.027680036, 0.0096694175, 0.0045458213, 9.38053E-05, -0.0046985666, -0.030123955, -0.01373376, -0.025581453, 0.0044794106, 0.002973545, -0.0050106975, -0.0032159446, -0.024107132, -0.007165729, 0.012538365, -0.006285785, -0.03360388, -0.004847991, -0.029220767, -0.021344442, -0.013707196, 0.0016536297, -0.009363928, -0.030336468, -0.002734466, 0.027255006, 0.0026315292, 0.0006043386, 0.006511582, 0.012604776, -0.015340902, 0.016961327, 0.0045657447, 0.017027738, -0.0035961466, -0.019870121, -0.01403925, -0.012345774, 0.044548385, 0.006425248, 0.0020670372, -0.009483467, -0.014570537, -0.03108027, 0.021344442, -0.0065879547, -0.026657308, 0.01636363, -0.0056814468, -0.01844893, -0.0144111505, -0.03708381, -0.048400216, -0.017851232, 0.019152883, -0.015912035, 0.010393295, 0.002845704, -0.007338397, 0.013813453, -0.015712803, 0.023190662, -0.008726384, 0.007338397, 0.016762095, -0.021928856, -0.004413, -0.030336468, -0.004847991, -0.010306961, 0.010499553, 0.027201878, -0.01654958, -0.009131489, 0.011469151, 0.00239079, -0.0075309887, -0.021955421, -0.009204541, 0.03126622, 0.035277434, 0.008480663, -0.028158193, -0.007630605, 0.030123955, 0.013381783, -0.0020919412, 0.009158053, -0.014185354, -0.003997932, 0.025621299, -0.033152286, 0.0024488994, 0.010160858, -0.00950339, 0.0058806795, -0.017173842, -0.002684658, -0.007936095, -0.0014419452, 0.03811982, 0.0038186228, 0.0074579366, 0.005083749, -0.006694212, 0.015965164, 0.017598871, -0.00087994355, 0.017519178, 0.006860239, -0.021942139, -0.006511582, -0.005492176, 0.025209552, -0.033205416, -0.014384586, -0.010306961, -0.00269794, -0.005223212, 0.000815193, 0.034533635, 0.0048778756, -0.02716203, -0.016695684, -0.0076970155, -0.031611558, 0.0046520787, 0.0026746963, -0.04340612, -0.037110373, -0.0058507943, 0.010559322, -0.0039049569, -0.00015056581, 0.0025999842, -0.007584117, 0.000104700826, -0.011841051, 0.013209115, 0.04887837, 0.017612154, -0.00010210666, 0.034055475, 0.01041986, -0.02526268, 0.011748076, -0.0036393136, -0.032594435, -0.017771538, 0.020308433, -0.0064684153, 0.014570537, -0.014809616, 0.009118208, 0.002611606, 0.006707494, 0.0023011353, -0.02575412, -0.0050140177, -0.008606844, -0.004359871, 0.02574084, -0.010858172, -0.005259738, -0.02212809, -0.010074523, 0.013853299, -0.01729338, -0.0070661125, -0.0079693, -0.031664684, 0.0026149265, -0.0231641, -0.008347842, -0.026285408, -0.0132024735, -0.013693914, -0.028583223, 0.013016523, 0.008812717, -0.008786153, -0.0034533632, -0.00032686582, -0.057538345, -0.02348287, -0.0002525687, 0.0003146213, 0.00017266817, -0.002495387, 0.0018213171, 0.044415563, 0.02114521, -0.042210724, -0.0010252172, -0.00020971296, -0.03304603, -0.0060799117, 0.002845704, -0.0020736782, 0.011050763, 0.025090013, -0.0047483747, 0.012558289, 0.015394031, 0.014358022, 0.0133950645, -0.023535999, 0.0058640763, 0.004486052, 0.0028374027, -0.027865985, -0.04229042, -0.014185354, 0.018847395, 0.00057237834, 0.033763267, 0.013282167, -0.004735092, 0.005830871, 0.0031395722, 0.0072387806, 0.03684473, 0.015925318, -0.01581906, -0.030070825, 0.0014261727, -0.010658938, 0.011409381, -0.014517408, 0.0038983158, -0.0063787606, 0.0051833657, 0.0055320226, -0.018196568, -0.04051061, -0.0017050981, -0.038226075, 0.0027195236, -0.012737597, -0.007497783, 0.032408487, 0.0054456885, -0.030681804, 0.004027817, 0.024797805, -0.0057478575, -0.039713677, 0.00064418506, -0.01636363, 0.004389756, 0.011070685, 0.014650229, 0.007956018, -0.008978745, -0.018170005, -0.0147033585, -0.019843556, 0.026511205, -0.017133994, -0.01348804, -0.025023602, 0.000894886, 0.0011414362, 0.019206014, -0.0021732945, -0.008015787, -0.03065524, 0.03211628, -0.01526121, -0.018780984, -0.021928856, 0.00034844934, 0.0097424695, 0.00447609, -0.0003918239, 0.20922069, 0.025674429, -0.003875072, 0.033550754, -0.0111703025, 0.011010916, 0.011601972, -0.00999483, -0.016708966, -0.002458861, 0.015008848, 0.009941702, -0.0030200325, -0.004286819, 0.040244963, 0.011781282, -0.016868351, 0.00046031008, -0.02053423, -0.018369237, -0.016151115, 0.0072387806, -0.008381047, -0.020215457, -0.009948343, 0.009290876, 0.0024140337, -0.032647565, 0.015115106, -0.0010235569, 0.005528702, -0.0049442863, -0.006229336, -0.004260255, 0.007570835, -0.013335295, 0.0059670135, -0.0029934682, -0.018355954, 0.028397271, -0.0026763566, 0.0040178555, 0.005070467, -0.015247927, 0.008978745, -0.008327918, -0.008440817, -0.008593562, -0.0050273, 0.0021467302, -0.02238045, -0.01912632, 0.028158193, 0.020879567, -0.00045076353, -0.015181516, 0.016536297, -0.024014156, -0.0040078936, 0.016283937, -0.02892856, 0.0225664, 0.013189191, 0.021981986, -0.01115702, 0.0073118326, -0.011914103, 0.0068270336, 0.014185354, 1.1511644E-05, 0.002336001, -0.026644027, 0.005917205, 0.013428271, -0.023429742, -0.018767701, -0.004326666, 0.0019209334, 0.0037621737, 0.012119977, 0.015686238, -0.013773607, -0.0012028662, 0.0046288352, 0.005432406, -0.009822162, 0.0023443024, -0.008347842, -0.0029934682, 0.02373523, 0.00741809, 0.0106124515, 0.0025750801, -0.012930189, -0.009901855, -0.014198636, -0.018860677, 0.028051935, 0.0044960133, 0.004622194, -0.036977552, 0.024957191, -0.010838248, 0.00043665123, -0.0183958, 0.01453069, -0.019724017, 0.021610085, -1.4644107E-05, -0.015845625, 0.013175909, -0.024691548, 0.012339133, -0.016961327, 0.0039514448, -0.002299475, -0.01066558, -0.014610384, 0.03134591, -0.005688088, 0.03495866, 0.003978009, 0.011535562, -0.002433957, 0.020149047, -0.016828505, -0.015752649, 0.018860677, -0.01073199, -0.030974012, 0.0019840237, 0.006289106, 0.017173842, -0.009881932, -0.013826735, 0.002930378, 0.026577616, -0.008713101, 0.006026783, -0.004824747, -0.0044428846, 0.0030980653, 0.0054158033, -0.00074089586, 0.008354483, -0.023137534, 0.003279035, -0.0030150518, -0.0059304875, 0.009981548, -0.010280397, -0.0011372855, 0.0035662616, -0.012139901, -0.0030731612, 0.0048645935, -0.023522718, -0.019391963, -0.020029508, 0.025129858, -0.021450698, 0.025554888, 0.006757302, -0.016987892, -0.022473427, -0.010439783, -0.16841787, 0.01391971, 0.008746306, -0.03286008, -0.010512834, 0.008699819, 0.019909967, -0.000999483, -0.02550176, 0.010506194, 0.01225944, -0.01797077, -0.031505298, -0.029566104, 0.014251765, -0.016629273, 0.00083968195, 0.03591498, 0.017054303, 0.007936095, 0.0055718687, -0.030628676, 0.008228302, -0.013169268, -0.003875072, -0.008620126, 0.010811684, 0.037190065, 0.0014361342, -0.008799436, 0.004970851, -0.024425905, 0.037668224, 0.016642556, -0.0013149345, -0.021809317, -0.0076970155, 0.02365554, 0.0014137207, 0.033816397, 0.00055577565, 0.013840018, 0.013594298, 0.009709264, -0.0042336904, 0.03825264, -0.009921778, -0.006418607, 0.020600641, -0.00024987076, 0.053633388, -0.011515639, -0.019670889, 0.0005474743, 0.004608912, -0.0056349593, 0.008228302, -0.01078512, 0.033258546, -0.012916907, 0.005615036, -0.053155232, 0.022221064, -0.01514167, -0.007491142, -0.013069652, 0.0073848846, 0.03174438, -0.025368938, 0.024386058, 0.008713101, 0.01244539, -0.012392261, -0.011050763, 0.008540433, -0.0012211292, -0.007245422, -0.012292645, -0.010180781, -0.02765347, 0.009755751, 0.045451574, 0.0035098125, -0.010625733, -0.020361561, -0.0026896386, -0.014504126, 0.010346808, -0.024505597, 0.009470184, -0.002714543, -0.023947746, -0.01244539, 0.027255006, 0.016602708, 0.01697461, 0.014623665, -0.018103592, 0.015367467, -0.010380013, 0.014424433, -0.012319209, -0.017505895, 0.016948044, 0.03323198, 0.0055851513, 0.031531863, 0.0066278013, 0.00747786, 0.009510031, -0.012119977, 0.007258704, 0.009961625, 0.014397869, 0.0078763245, 0.02305784, -0.0039946116, -0.025647864, 0.0068801623, -0.011176943, 0.03591498, -0.020122482, -0.01997638, -0.004396397, 0.0064551327, 0.006209413, -0.09573786, -0.028556658, 0.029512974, 0.033789832, 0.0076837335, 0.030602112, -0.0057544988, 0.03623375, -0.018382518, 0.03206315, 0.011482433, -0.021849165, 0.004173921, 0.028556658, 0.0063422346, 0.00082972035, 0.020441255, -0.00030548984, 0.00026771866, -0.014729923, -0.010997633, -0.015672956, -0.024107132, 0.0006238468, -0.007179011, -0.0041207923, -0.024558727, 0.009968266, 0.016164396, 0.012046925, -0.0014577177, -0.00337201, 0.0005590962, -0.008533792, 0.009124848, 0.0020338318, -0.021729624, 0.0051468397, 0.021796035, -0.028901994, 0.011601972, 0.010871453, 0.027998807, -0.014118943, -0.002365886, 0.0036625573, -0.0012352415, 0.024040721, 0.026962798, -0.009848727, -0.029831747, -0.01771841, 0.0064949794, 0.004359871, 0.00962293, -0.0029336985, 0.011688307, 0.018262979, -0.002367546, 0.016005011, -0.0017266816, 0.02617915, -0.014450997, -0.008082198, 0.014809616, -0.016921481, -0.03572903, -0.00802907, 0.03267413, -0.007677092, -0.021942139, 0.01931227, -0.018621597, 0.025966635, -0.0039946116, -0.014690076, 0.003426799, -0.013800171, -0.0043864357, -0.013972839, -0.009795598, -0.024439186, 0.020547511, -0.036100928, -0.015420595, 0.033842962, 0.0073251147, -0.009583083, 0.013448194, -0.012106695, 0.029725488, 0.037747916, 0.047497027, -0.010977711, -0.028105065, -0.0027909153, -0.013720478, 0.005389239, 0.008839282, 0.0071989344, -0.030044261, -0.015951881, -0.07703657, 0.010658938, 0.025793968, -0.0010393296, 0.012352415, 0.022194501, 0.007843119, 0.0024555405, 0.009118208, 0.0073848846, 0.0018296185, -0.00944362, -0.0013381783, 0.005787704, -0.037004117, -0.01747933, 0.014105661, 0.004210447, 0.01949822, 0.015805779, 0.0027361263, -0.008122045, -0.016469887, 0.0012593154, -0.028370708, 0.014809616, 0.009948343, 0.012671187, -0.009954983, -0.002224763, 0.021915575, -0.016204244, -0.002433957, 0.025886942, -0.02249999, -0.04420305, 0.006720776, 0.01182777, -0.003262432, -0.022885174, -0.020919412, -0.0070528304, -0.01814344, -0.008367765, -0.027440956, -0.0110972505, -0.0011455868, 0.0035396975, 0.020919412, 0.020374844, 0.001771509, 0.0128637785, -0.0037654943, -0.019073192, -0.0011721512, -0.016403476, -0.015287774, 0.0030980653, -0.00852051, -0.031664684, 0.034267988, 0.007006343, 0.004542501, 0.0033570677, 0.01912632, 0.00821502, -0.026790129, -0.025302527, -0.01446428, -0.006050027, -0.019272424, 0.014251765, 0.035755593, 0.0026033046, -0.017851232, -0.00089654623, 0.013494682, -0.01219967, -0.019577913, 0.006534826, -0.009463544, -0.023748513, -0.014225201, 0.019166166, 0.0062260157, 0.006398684, -0.011973873, 0.02323051, -0.014729923, 0.014889308, -0.029114509, -0.007630605, -0.015447159, -0.009762392, 0.025156423, -0.006853598, -0.029087944, 0.0127176745, 0.022194501, 0.0029868272, 0.0020056071, 0.015792497, -0.013434911, 0.013972839, -0.0030914242, 0.0014494164, 0.0044163205, -0.020401407, -0.010472989, -0.0049675303, 0.020308433, -0.008367765, -0.0057046907, 0.00747786, -0.01820985, -0.013932993, -0.0038119818, 0.0015614846, -0.015765931, -0.002746088, 0.028476965, 0.0064983, 0.009231105, 0.0037488914, 0.018103592, -0.0067406995, -0.020999106, -0.014437715, 0.016948044, 0.011409381, 0.012113336, 0.012046925, -0.00974911, -0.008772871, -0.0042536138, 0.003722327, 0.010678862, 0.044468693, -0.00907172, 0.07491142, 0.01183441, -0.00986865, 0.0096694175, -0.0009231106, -0.0046288352, 0.0037654943, 0.004512616, -0.01661599, -0.03525087, 0.012359056, -0.0020338318, -0.0138798645, -0.00037916435, -0.03764166, 0.01453069, 0.00049808127, 0.022871891, -0.015101823, -0.012093413, 0.03713694, -0.018422365, -0.0074247313, -0.015022131, 0.00055328524, -0.013527887, 0.030708369, 0.0065082614, 0.024771241, -0.017678564, -0.008925616, -0.0011480773, 0.001568956, -0.028636351, -0.008779512, 0.03219597, -0.020149047, 0.02906138, 0.008115403, 0.009695982, 0.0064684153, 0.033497624, 0.008141968, -0.029698925, -0.0004470279, -0.019365398, -5.4425753E-05, -0.0364197, -0.005794345]
+ },
+ {
+ "Id": 66,
+ "Type": "Navigation",
+ "Brand": "B&R",
+ "Name": "Compass Pro A-320 Professional Compass",
+ "Description": "Navigate with precision using the B&R Compass Pro A-320 Professional Compass. Designed for outdoor enthusiasts and professionals alike, this compass features a liquid-filled housing for accurate readings, a rotating bezel for easy navigation, and a lanyard for convenient carrying. The gunmetal color with white markings ensures clarity and visibility even in low-light conditions. Get ready to explore the wilderness with confidence.",
+ "Price": 59.99,
+ "Embedding": [-0.00052723655, 0.020050077, -0.015423136, -0.023738218, -0.023429755, 0.015490193, -0.0124659175, -0.008683897, -0.0058876146, -0.0329921, 0.0050594592, 0.01188252, -0.020868173, -0.005324335, -0.008321788, 0.022276374, 0.00980375, 0.016898392, -0.013223663, -0.0055623874, -0.026272977, 0.015449959, 0.018534586, -0.031087678, -0.019661145, -0.032965276, 0.021766739, -0.023738218, 0.019379506, -0.012278157, 0.019527031, 0.010890075, -0.025240298, -0.016710633, -0.0017636021, 0.017287323, -0.0024576432, -0.010501144, 0.005284101, -0.0011005749, 0.0093812905, 0.00068356347, 0.004529708, 0.0100920955, -0.02214226, -0.02281283, -0.0037216698, -0.012190984, -0.02245072, 0.015034205, 0.011272301, 0.00657495, -0.019527031, -0.001328569, 0.048790757, -0.008978947, 0.009917747, 0.0070544085, 0.0007418193, -0.026822846, 0.009367879, -0.009126473, -0.009555639, 0.019084455, -0.008234614, -0.027547061, -0.020063488, 0.005508742, 0.005113105, 0.008362022, 0.029236902, 0.02337611, 0.03411866, 0.02667532, 0.012331803, -0.0060016117, -0.035754852, -0.00064793933, 0.010688904, 0.01921857, 0.009669635, -0.012982258, -0.014283165, 0.005803793, 0.0013604212, -0.00069990865, -0.019594088, 0.009917747, -0.0050058137, -0.02507936, -0.007389694, 0.02470384, 0.007081231, -0.0046302937, -0.00038453063, -0.016536284, 0.0032824457, 0.03044393, -0.026152274, -0.010058567, 0.009361173, -0.02234343, 0.009957981, -0.010668787, -0.030229347, -0.0022112082, 0.015691364, -0.015195142, 0.01107113, -0.00891189, -0.015517016, 0.015061027, 0.035486624, -0.012667089, 0.0071147596, -0.022665305, 0.012760969, -0.025012303, 0.016978862, -0.025361, 0.004693998, 0.029585598, 0.027265422, -0.018615054, 0.011285712, 0.014953736, -0.03800797, -0.009180119, 0.010105507, -0.0047476436, -0.007832271, 0.03602308, 0.0021776797, 0.029236902, 0.00671577, 0.030336639, -0.0117014665, 0.021578979, -0.02556217, 0.011721583, 0.024247853, 0.01848094, -0.011406415, -0.009823867, -0.014430691, -0.010427381, 0.0053478046, 0.0068163555, 0.015785245, -0.015798656, 0.011319241, -0.032321528, 0.026286388, 0.017019095, -0.028244456, 0.008496136, -0.0067727687, 0.023818687, -0.01310296, -0.009019182, -0.0104877325, 0.014296576, 0.013263897, 0.010185976, 0.030524397, 0.0200769, -0.024462435, -0.006548127, -0.0023503518, -0.005082929, 0.009555639, 0.009455053, -0.016335113, 0.010762666, 0.00068398257, 0.014537983, 0.019728202, -0.0044492395, 0.0075908653, 0.014135639, 0.0043721236, -0.016147353, -0.00031998818, 0.026366858, -0.007912739, -0.008469313, 0.021927677, 0.012586621, 0.012056869, -0.03261658, 0.006789533, 0.031892363, 0.008784482, -0.0022045027, -0.6561941, -0.034360066, 0.0041508353, -0.031302262, 0.04769102, -0.0011022513, 0.024194207, 0.0044458867, -0.0135991825, 0.0006642845, 0.0018189242, -0.0068130028, -0.012003223, -0.020211015, -0.0029052494, -0.023550458, 0.014980559, -0.021216871, 0.0112924175, -0.0056093275, -0.024636783, 0.0024811132, -0.015892535, 0.0032908279, -0.0022480898, -0.004697351, 0.023335876, -0.023081059, -0.025186652, 0.02687649, -0.02167286, 0.027868936, 0.007912739, -0.00062488846, 0.03344809, -0.047074094, -0.010192681, 0.023899155, 0.023858922, 0.025575584, -0.021136403, -0.014940325, 0.023832098, -0.040368382, -0.023858922, 0.00029630863, 0.034440532, -0.0020737413, -0.0009069475, -0.046108473, 0.002844898, -0.005250572, 0.015892535, 0.019781848, -0.023590693, -0.018306592, 0.037551984, 0.008482724, -0.0036445542, -0.0071348767, -0.010963839, 0.022222728, -0.004067014, -0.036344957, -0.016804513, 0.002637021, -0.048415236, -2.7582477E-05, -0.0033880607, -0.0020553006, 0.005300865, 0.026541205, -0.010749255, 0.0122111, -0.008469313, 0.0112521835, 0.018789403, 0.0064978343, 0.00805356, 0.0089454185, 0.037444692, 0.006112256, -0.0047979364, -0.02648756, 0.01848094, -0.002546494, -0.017957894, -0.00055238296, 0.035862144, 0.00081390573, -0.0028733974, 0.007382988, -0.015235377, -0.01508785, -0.0049219923, 0.0049320506, -0.01923198, 0.0036646712, 0.018065186, -0.0048247594, -0.019942787, -0.009575756, 0.014913502, 0.0051231636, -0.00201339, -0.007014174, 0.0047107623, 0.02431491, 0.014859856, -0.026004748, -0.028244456, -0.01499397, -0.031999655, -0.01139971, -0.0010226209, -0.020398773, 0.037551984, 0.0005888453, 0.032375176, -0.027225189, 0.028512685, -0.0037920799, 0.018360239, 0.008784482, -0.021002289, -0.00065967435, 0.023684572, 0.009361173, -0.0044190637, -0.023791865, 0.02412715, -0.0007707377, 0.006018376, 0.0136260055, 0.0011726613, 0.02668873, -0.0016588253, -0.025535349, 0.006665477, -0.004502885, -0.02035854, -0.0124659175, -0.005760206, -0.015396314, -0.004087131, -0.037927505, -0.021914264, 0.012801203, -0.018172478, -0.006953823, 0.0089320075, -0.0061223144, -0.002675579, 0.009877513, 0.035567094, -0.012023341, -0.02149851, -0.0072891084, -0.0021776797, -0.022933533, 0.021190047, 0.007778625, -0.022611659, -0.0017485142, 0.019822083, -0.017931072, 0.01508785, 0.013377895, 0.006625243, -0.03838349, 0.017005684, 0.013123077, -0.008040148, 0.018829638, -0.015758421, -0.010286561, -0.041977752, -0.01818589, 0.01754214, -0.020090312, 0.01752873, 0.020251248, -0.044177227, -0.022772595, 0.012385448, -0.0036143784, 0.019097866, 0.01885646, -0.0072891084, 0.00617596, -0.0031550373, 0.024086915, -0.0076646283, 0.023443166, -0.01433681, 0.013612594, 0.00159093, 0.007711568, 0.0072689913, 0.0031801837, 0.001347848, -0.008033442, 0.02253119, -0.026849668, 0.011835581, -0.006336897, 0.007993208, 0.0015976357, 0.0055892104, 0.011507001, -0.0021726505, -0.03307257, -0.01715321, -0.023241995, -0.0009723281, 0.019647734, 0.021257104, 0.03175825, 0.034816053, -0.008804599, 0.0067861797, 0.009770221, 0.009495287, -0.005662973, -0.01451116, 0.016469227, 0.010139036, 0.018320004, 0.008737542, -0.017180033, 0.01451116, 0.0097366925, 0.008952125, 0.0023687924, -0.007496985, 0.017944483, -0.0046302937, -0.00615249, 0.008750954, 0.0032237708, 0.023429755, 0.004301714, 0.0039630756, -0.0101189185, 0.0054953303, 0.015302434, 0.023027413, 0.012009929, 0.02318835, 0.020586533, -0.02064018, -0.0015825479, -0.0012413948, 0.008362022, 0.0039060768, -0.014833033, 0.025803577, -0.0014794476, 0.035191573, 0.039161354, 0.01172829, 0.027359303, -0.022960356, -0.01074255, 0.004828112, 4.1098676E-05, -0.008623545, -0.015020793, 0.009139884, -5.815109E-05, 0.021511922, -0.020197602, 0.012955435, -0.008777776, 0.010239622, -0.0151817305, 0.021364396, -0.0135991825, -0.0065548327, 0.01235192, 0.00039605607, -0.04224598, 0.009387996, 0.028110342, 0.005341099, 0.0012682177, -0.0354598, 0.01705933, 0.011144892, 0.02800305, -0.020412186, 0.020425597, 0.016348524, 0.010527967, 0.033796784, -0.0050594592, 0.011359475, -0.014980559, 0.00079253124, -0.008543076, -0.013029197, -0.015409725, -0.008858245, -0.021096168, 0.029719712, 0.021914264, -0.009012477, -0.025790166, 0.008697308, 0.012854849, -0.008066971, -0.017971307, -0.011815463, -0.010474321, 0.0046537635, 0.00062405027, -0.007148288, 0.013485186, -0.010279856, 0.004345301, 0.0001841975, 0.0038390197, 0.008509547, 0.013639417, 0.07735708, -0.013518714, 0.00081683946, 0.0058507333, -0.02819081, -0.017796958, -0.027708, -0.006900177, 0.031811893, 0.026943548, 0.0060988446, -0.0051935734, 0.0050259307, -0.014779388, 0.009441641, 0.00047778193, 0.0126805, -0.046591282, 0.0040804255, 0.007818859, 0.015973004, 0.0048851105, 0.009629401, 0.00615249, 0.008690602, -0.008797893, -0.008529665, 0.015449959, 0.018816225, -0.016536284, -0.002358734, -0.0048415237, -0.0085363705, -0.020908408, -0.0049789906, -0.013800354, -0.01324378, 0.008375433, 0.015423136, -0.0031030679, 0.033421267, 0.007322637, 0.013123077, -0.008972242, 0.005924496, -0.0035238513, -0.011030896, -0.00037195743, -0.004647058, 0.00024077695, 0.0042078337, 0.013190134, 0.01460504, -0.012566503, 0.013961291, -0.00032355057, -0.0046101767, 0.011842286, -0.0037283755, -0.0416827, 0.009542228, -0.017314147, 0.0311145, 0.009542228, -0.023027413, -0.015074439, -0.04318478, 0.0004995755, -0.020143958, -0.0004752673, 0.0038725482, -0.021163225, -0.003099715, -0.000258589, 0.018132243, 0.010185976, 0.016804513, -0.020023255, 0.0023419696, 0.03213377, 0.037498336, -0.003738434, 0.0070275855, -0.015476782, -0.0077987425, 0.021847207, 0.005833969, -0.008254731, 0.00077953894, 0.008362022, -0.0027594003, 0.0026470795, 0.043533478, -0.008046853, 0.0036814355, -0.001939627, 0.01610712, 0.021337574, 0.020331716, 0.011238772, 0.023925979, -0.026702143, -0.016724044, -0.0020955347, 0.050695177, 0.014377045, -0.0059848474, 0.0069605284, -0.0011114717, 0.0038893125, -0.0239528, -0.021552157, -0.011004073, -0.008596722, -0.03245564, -0.017273912, -0.0032086829, 0.021806974, 0.02658144, -0.00577697, -0.03967099, -0.027573885, 0.026822846, 0.002429144, 0.00053226587, 0.013672945, -0.01677769, -0.012251334, -0.019741613, 0.0028650153, -0.0058239102, 0.025964515, -0.013330954, -0.007952973, -0.016348524, -0.042085044, -0.021739917, 0.015436548, 0.00024874, 0.0038189027, -0.021847207, 0.004251421, 0.034279596, 0.024006447, -0.015342668, -0.015637718, -0.02345658, 0.0023402933, -0.013813766, 0.009086239, -0.022705538, -0.017595787, -0.0017401321, -0.01998302, -0.03213377, -0.029451484, -0.015449959, -0.017864015, 0.03468194, 0.018360239, 0.013800354, 0.019299038, -0.0038524312, 0.019634323, -0.0024995538, -0.005227102, -0.025481703, -0.022182493, -0.036935057, 0.022745773, -0.0007745097, -0.009220353, -0.025629228, 0.003389737, -0.016844748, 0.027868936, -0.00010299554, -0.014980559, 0.0022480898, -0.037739743, -0.0060049645, -0.023711395, -0.00655148, 0.000787502, -0.03685459, -0.024368554, 0.024811132, 0.029827004, 0.0010829724, -0.0004063242, 0.030658513, -0.0041307183, 0.027761646, -0.0005599269, 0.029719712, -0.0035137928, 0.005180162, -0.032562934, -0.013263897, 0.013921057, -0.023604104, -0.011030896, 0.007785331, -0.019366095, -0.033716317, 0.013284015, -0.008308376, -0.005673032, -0.015275611, -0.0029773358, 0.00012918972, -0.024301497, -0.011158303, -0.009186825, 0.01371318, 0.0026420504, 0.007235463, 0.015007382, -0.0062866043, -0.012184277, 0.014779388, -0.01921857, 0.026782611, 0.0017250442, -0.00070368056, 0.029344194, -0.016415581, -0.0117014665, -0.017099565, 0.007852388, -0.0011307506, 0.0038859597, 0.039349113, -0.039831925, -0.00844249, 0.012358626, 0.00091197673, -0.010004922, -0.014269753, 0.020184191, -0.00072002574, 0.035862144, -0.015543839, -0.001253968, -0.022853063, 0.0072220513, -0.021136403, 0.013585771, 0.006732534, -0.0016462521, -0.030470753, 0.0244222, -0.024985481, -0.0038658427, 0.019781848, -0.0076579223, 0.015141496, 0.013773531, -0.0076780394, -0.0041508353, 0.027949406, 0.025749931, 0.010635259, 0.014162462, 0.0060753743, 0.024355143, 0.0024777604, 0.014859856, 0.015221965, 0.02609863, -0.0009689753, -0.023537047, 0.008375433, -0.0059882, 0.004174305, 0.002704078, -0.025468292, -0.01724709, 0.018910106, 0.0066319485, 0.009917747, 0.021377807, -0.029773358, -0.016428992, -0.0011123099, -0.02279942, -0.0314632, 0.0048046424, -0.003554027, -0.030282993, -0.014819622, 0.006065316, 0.017515318, 0.008254731, 0.020385362, -0.007691451, 0.009032593, 0.0077450965, -0.044150405, -0.008851539, 0.015315845, 0.028217634, -0.012828026, 0.025213474, 0.0076310993, -0.018078597, -0.005971436, 0.009656224, -0.022893298, -0.017193444, 0.0077316854, 0.0022598247, 0.019124689, 0.0012925259, 0.001371318, -0.0143636335, -0.00956905, -0.0015104614, -0.024623372, -0.012707323, -0.012787792, 0.009307527, 0.031034032, -0.0057266774, -0.019741613, -0.0073092254, -0.010943721, 0.011339358, -0.011929461, -0.008724131, -0.0014090376, -0.013699768, 0.008415667, -0.027077662, -0.03607673, 0.009548933, 0.0053310404, 0.027627531, -0.0057333834, 0.0124458, 0.035111103, 0.0029689537, 0.0020653591, 0.01050785, -0.02178015, -0.009830573, -0.0009924453, -0.028861381, -0.025320766, 0.010212799, -0.001151706, 0.0301757, 0.0050494005, -0.043748062, -0.0152085535, -0.012506152, -0.045089204, -0.029639244, 0.0011232067, 0.013465068, 0.0010393852, 0.02479772, 0.009984804, 0.038544428, 0.01508785, -0.015302434, 0.0048482292, -0.022946944, -0.014524571, -0.010635259, 0.0026051688, -0.039644167, -0.01235192, -0.021900853, -0.009823867, 0.004553178, -0.010474321, 0.017783547, -0.005884262, -0.011185126, 0.016911805, 0.0032539465, 0.037551984, 0.026447326, 0.0128347315, -0.031087678, -0.02290671, 0.012760969, 0.015879124, -0.0063234856, 0.007926151, 0.020935232, 0.0023738218, -0.0015180054, -0.012150749, -0.024717253, 0.0008750953, 0.005066165, 0.008469313, -0.00844249, -0.00013746708, 0.01932586, 0.017193444, -0.028968673, -0.009414819, 0.0043520066, -0.016482638, -0.0151817305, -0.01122536, -0.025280531, 0.009703164, -0.020143958, 0.0028029874, 0.009743399, -0.005803793, -0.022182493, -0.017408026, -0.038973596, 0.022021556, 0.03245564, -0.003922841, 0.0028733974, 0.010219504, -0.026272977, 0.00975681, -0.018145654, -0.00638719, -0.035218395, 0.0053545106, 0.0031365964, 0.0108967805, -0.034145482, 0.02215567, 0.013136488, 0.01903081, 0.013639417, 0.19280261, 0.0052103377, -0.011359475, 0.027386125, 0.005599269, 0.040824372, -0.006015023, -0.0021307399, 0.006521304, -0.008804599, 0.010963839, -0.016160764, -0.024180796, -0.0075841597, 0.012452506, -0.009770221, -0.03309939, -0.019620912, -0.017636022, -0.0022313255, 0.01752873, 0.002680608, 0.023684572, -0.013418129, 0.016724044, -0.0045263553, -0.0015322551, 0.008516254, 0.02470384, 0.015905946, -0.014752565, -0.024341732, 0.007087937, -0.0040770727, -0.015704775, 0.009817162, 0.011084541, 0.02149851, 0.005508742, 0.02525371, -0.010655375, 0.010045156, 0.02856633, -0.008797893, 0.01743485, 0.016656987, -0.013800354, -0.0027225188, -0.011178421, 0.020492654, -0.0320533, 0.012318391, 0.012372037, 0.008663779, -0.009468464, 0.000673924, -0.0005657944, -0.019540442, 0.020854762, -0.003741787, -0.017555552, 0.010970544, -0.00961599, 0.03081945, -0.0048716995, 0.017273912, -0.0059848474, -0.010387147, 0.010534673, 1.3025058E-05, 0.013726591, 0.005535565, 0.0026068452, 0.015248788, -0.009770221, -0.017756723, 0.015114673, 0.0021927676, 0.02686308, -0.0012078662, 0.012801203, -0.008804599, -0.00090778567, -0.014725742, 0.0057970877, -0.02318835, 0.0020955347, -0.004046897, -0.004828112, -0.0008126484, 0.020760883, -0.012217806, -0.0033997956, -0.025682874, -0.009937864, 0.015865713, -0.020720648, 0.024811132, -0.012714028, 0.0016957067, -0.00928741, 0.03374314, -0.011446649, -0.02309447, -0.028351748, 0.007859094, 0.008482724, 0.026782611, 0.027734822, -0.0020066842, -0.004093837, -0.030953564, 0.0047074095, -0.026889903, 0.008549782, 0.012982258, 0.021981321, -0.017957894, 0.011339358, 0.00636372, 0.026997194, -0.031516843, 0.004647058, 0.0089856535, -0.011748406, -0.009119768, -0.014564805, 0.008670485, 0.0013864058, -0.020559711, 0.009837278, 0.00970987, 0.028512685, -0.021257104, -0.00027011443, 0.00891189, -0.001026812, -0.02506595, -0.018346826, -0.02998794, 0.02318835, 0.0085631935, 0.0044961795, 0.009160002, 0.030765804, 0.010695609, 0.016603341, 0.021605803, 0.0012128955, 0.0022447368, 0.0075305137, -0.009589167, 0.0034903227, 0.00336962, -0.0055623874, 0.00033444737, -0.043909, -0.009978099, 0.015141496, -0.015423136, -0.024998892, 0.019647734, 0.035513446, -0.027305657, -0.0060921386, 0.02621933, -0.17112975, 0.02733248, 0.01343154, -0.028029874, 0.015302434, 0.0024626725, 0.018977163, 0.019366095, -0.00029316533, 0.0004157541, 0.011627704, -0.007932857, -0.014578217, -0.017448261, -0.0011391328, -0.008281553, -0.029934296, 0.011419826, 0.015825478, 0.007295814, 0.011822169, 0.015449959, 0.008402256, 0.013579066, -0.0050594592, 0.008046853, -0.015959593, 0.00014081995, -0.007483574, -0.01884305, 0.025012303, -0.021190047, 0.03572803, 0.0017535435, 0.009890924, -0.01172829, -0.014296576, 0.01621441, -0.022745773, 0.01999643, -0.013679652, 0.024060093, 0.028941851, 0.004318478, 0.002440879, 0.038115263, 0.008898479, -0.007295814, 0.016898392, -0.033716317, 0.008308376, -0.016482638, 0.005196926, -0.005971436, 0.018132243, 0.005247219, 0.0021022405, 0.008999065, 0.009408113, -0.0066118315, -0.02470384, -0.026903315, -0.012365332, -0.006460953, -0.0020318306, 0.00057375745, 0.024663607, 0.03647907, 0.004160894, 0.0248916, -0.014658685, -0.0059144376, -0.0012481005, -0.010876664, 0.015369491, -0.004046897, 0.0071818167, 0.015905946, 0.02656803, 0.0035976141, 0.0034769115, 0.012479329, -0.028405393, -0.011822169, -0.00617596, -0.0032086829, -0.028271278, -0.009703164, 0.00650454, -0.010172565, 0.010467616, -0.038893126, -0.015074439, -0.008952125, 0.02356387, 0.025186652, -0.0018155713, -0.021753328, -0.0011198538, -0.014551394, 0.02431491, -0.017984718, -0.012284863, 0.012747557, 0.026514383, 0.013344365, 0.024261264, 0.0059647304, 0.021176636, 0.0035439685, -0.02129734, 0.010702316, -0.001265703, 0.0066353013, 9.4456234E-05, 0.012378743, 0.0064978343, -0.022236139, 0.005002461, 0.0022967062, 0.0019312449, -0.0042883023, -0.017206855, 0.013518714, -0.0034802642, 0.013827177, -0.09447006, -0.0068733543, 0.018735757, 0.021659447, 0.0013168341, 0.032401998, 0.013719886, 0.012311686, -0.0143904565, 0.036827765, -0.004432475, -0.02412715, 0.0005833969, -0.0019044221, 0.019352684, 0.0015205201, 0.0535384, -0.03288481, 0.0013797001, 0.012164161, 0.0025800224, -0.0024660253, -0.001787072, 0.0023101175, -0.0097232815, -0.0018658641, -0.025347589, -0.008073676, 0.0311145, 0.0062866043, -0.028915027, -0.00615249, 0.018172478, 0.00024266294, -0.025951102, -0.0026420504, -0.011346064, -0.0053980974, 0.012258041, -0.01097725, 0.0055690934, -0.00012740852, -0.00924047, -0.046591282, -0.024864778, 0.012988963, -0.013867411, 0.0039664283, 0.0020368597, -0.008683897, -0.023523636, -0.011600881, -0.015490193, -0.0003157971, -0.010004922, -0.014014937, -0.00634025, 0.011748406, -0.004154188, -0.0061591957, -0.036800943, 0.006108903, -0.015463371, 0.0060552573, 8.021969E-07, 0.0073092254, -0.009978099, 0.018735757, 0.03183872, -0.009911042, -0.008207791, 0.018977163, -0.026822846, 0.02035854, -0.034896523, -0.01980867, -0.017890837, -0.00019980925, 0.0019781848, -0.005019225, -0.018239535, -0.020251248, 0.020143958, -0.026125452, 0.00631678, 0.025293943, 0.004643705, -0.0040133684, 0.027600707, -0.047100917, 0.018212711, 0.028244456, 0.013458363, -0.0021072698, -0.013465068, -0.020707237, 0.015168319, -0.014229519, -0.01904422, -0.018789403, -0.017461672, -0.0034936757, -0.07247533, 0.008549782, 0.015517016, -0.0027594003, 0.0074031055, -0.0035640856, -0.0077249794, -0.020573122, 0.028137164, -0.02253119, 0.0007778625, 0.008462608, -0.0010955456, -0.0074902796, 0.0035171455, -0.01032009, 0.005689796, 0.0041407766, 0.027949406, -0.004858288, -0.030041587, -0.010259738, 0.0009211971, 0.0060619633, -0.037364222, -0.014350222, -0.016938627, -0.021552157, 0.012090398, 0.0064475415, 0.013444952, 0.012921906, 0.0025431411, 0.031704605, 0.0011575734, -0.022920122, 0.0002816399, 0.023671161, 0.002695696, -0.02648756, 0.0046805865, 0.0046302937, 0.041226715, -0.0015230346, 0.007986502, 0.00022694642, -0.004231304, -0.0038960183, 0.030390283, 0.0041005425, 0.016174177, 0.023309052, 0.021230282, -0.022209316, -0.040502496, -0.017019095, 0.006829767, 0.0040837782, -0.007154994, -0.03591579, 0.054799072, 0.013485186, 0.017488495, -0.010266444, 0.0026118746, 0.0136193, -0.029371016, 0.00027849656, -0.003096362, 0.01003845, -0.015677953, 0.011902638, 0.008368728, -0.023362698, 0.003624437, -0.03959052, -0.0024123797, 0.02253119, -0.02837857, -0.0032975336, -0.0023805276, 0.010065272, -0.015637718, 0.00091700605, 0.007999914, -0.020760883, -0.031999655, -0.0010083714, -0.0026671968, 0.0066017727, -0.0077249794, -0.0027694588, -0.012030046, -0.002660491, 0.0050963406, -0.004580001, -0.0057065603, -0.004345301, 0.021766739, -0.0041005425, -0.00075103965, -0.01041397, -0.017662844, -0.04240692, 0.010373736, 0.011641115, -0.025790166, -0.031221792, -0.0062430175, -0.013639417, 0.0029337488, -0.0200769, 0.0008218688, 0.004251421, 0.0028314865, -0.0022749125, -0.019084455, -0.025428057, -0.019634323, 0.008335199, 0.02064018, 0.013538831, 0.00037908225, 0.0025045832, 0.0029538658, -0.02234343, 0.0011332652, -0.0009882542, 0.015356079, 0.0072689913, 0.02675579, 0.00638719, -0.01848094, -0.0005859115, -0.01970138, 0.011413121, -0.007564042, 0.0058507333, -0.045303784, 0.08679873, 0.021565568, -0.018454118, 0.021069346, -0.021565568, 0.022705538, 0.018682111, 0.0030393638, -0.0022950298, -0.042004578, 0.013699768, 0.0064743645, 0.0064274245, 0.019111278, -0.007765214, 0.021042522, 0.0017334264, 0.015449959, -0.031999655, -0.00036315617, 0.03835667, -0.034252774, 0.005978142, 0.018883282, -0.0059546717, -0.0030343344, 0.0054819193, 0.014430691, -0.014537983, -0.0041675996, 0.0057970877, -0.014900091, -0.02969289, -0.0055858577, 0.0032723872, -0.025213474, -0.0031131266, -0.030578043, 0.005391392, 0.033287153, 0.009783633, 0.028861381, 0.004432475, -0.0038222554, 0.02224955, -0.013330954, -0.0038759012, -0.035593916, -0.011688055]
+ },
+ {
+ "Id": 67,
+ "Type": "Bags",
+ "Brand": "Quester",
+ "Name": "Venture 2.0 40L Waterproof Duffel Bag",
+ "Description": "Pack your gear in the Quester Venture 2.0 40L Waterproof Duffel Bag. This versatile duffel bag is made from waterproof nylon material and features taped seams to keep your belongings safe from the elements. It offers a spacious main compartment, external zippered pockets, and adjustable shoulder straps for easy carrying. The vibrant orange color adds a pop of excitement to your outdoor adventures.",
+ "Price": 79.99,
+ "Embedding": [0.014791111, -0.0058136364, -0.0036778797, -0.0067488593, -0.01973917, 0.0145523315, -0.0054587824, -0.047278497, 0.0018372816, -0.018651392, -0.007992507, 0.025867864, 0.012933932, 0.019182015, 0.010035405, -0.019089157, 0.02309536, 0.0041023777, 0.00066576584, -0.030006722, -0.00015535227, -0.00074784656, -0.004576622, 0.008854769, -0.027671982, -0.030351628, 0.02147696, -0.003900078, 0.025337242, -0.001925166, 0.021078993, 0.01404824, -0.027512794, -0.011136447, 0.011116548, -0.010466536, -0.0036977779, 0.0073955557, 0.028441384, -0.021848395, 0.029476099, 0.022564737, 0.010798175, 0.0161442, -0.022989234, -0.008363943, -0.027114827, -0.0238117, 0.010632356, 0.01869119, 0.0039232927, 0.0086624175, -0.01617073, 0.008828238, -0.014180896, 0.009093549, 0.007083815, 0.0022020848, 0.018876908, -0.022272894, -0.021967785, -0.013902319, -0.012761479, -0.0061320104, 0.0017377898, -0.016674822, -0.009199673, 0.0041687055, 0.026279096, 0.025735209, 0.005153674, 0.01416763, 0.02264433, 0.019089157, 0.00427483, -0.0145523315, -0.0270485, 0.0041554403, -0.009498149, 0.0005480339, -0.0023795117, -0.0139686465, -0.026703594, -0.013252306, 0.025642348, 0.02509846, 0.0053228103, 0.027154624, -0.04271514, -0.030484283, 0.0017676373, -0.0061651743, 0.0020196831, 0.0069843233, -0.015401328, -0.009438454, 0.009060385, 0.024183135, 0.017629944, -0.022180036, -0.009617539, 0.0002663478, 0.003969722, -0.015653374, -0.03393333, -0.010605824, 0.0020080758, -0.015268672, 0.0038304336, -0.012343614, -0.033853736, 0.016887072, 0.027114827, -0.030723063, -0.0024806617, -0.014897237, 0.024833148, 0.0030991691, 0.00067571504, -0.04045999, 0.026517877, -0.0057439925, 0.041760016, -0.012774745, 0.007879749, 0.01869119, -0.028998539, -0.0073358607, 0.039080374, 0.012569129, 0.0009932596, 0.053513315, 0.021251446, -0.03133328, -0.0040062023, 0.020296324, -0.0027725045, 0.016077872, -0.001021449, 0.008417005, 0.011189509, 0.03738238, -0.038257908, -0.012323716, -0.008350677, 0.009199673, 0.00783332, 0.034941513, 0.029423038, -0.005014386, 0.023851497, -0.012403309, 0.011766561, 0.019553453, -0.01599828, 0.01845241, 0.012264021, 0.017590147, -0.012900768, -9.3986055E-06, -0.03133328, 0.009080283, 0.0123369815, -0.00714351, 0.015441125, 0.005671032, 0.0339068, -0.0014990096, -0.009796624, -0.0056013875, -0.020336121, 0.034968045, -0.020508572, 0.020893274, 0.031067967, 0.026080113, 0.022790251, -0.006264666, -0.029529162, -0.010287451, 0.00018665074, -0.00034262484, -0.0015902104, 0.018293222, -0.021981051, -0.022591267, -0.0011300609, -0.0004186946, 0.011474719, -0.018014645, 0.021331038, 0.012409942, -0.022034114, 0.014618659, -0.6418414, -0.0048485664, -0.006559825, -0.020760618, 0.005611337, 0.0017543718, 0.003250065, 0.018677924, -0.0013356772, 0.0129803615, 0.00997571, 0.044864163, -0.019394265, -0.022180036, -0.0024624215, -0.009120081, 0.00866905, -0.003926609, 0.020574901, -0.008297615, -0.03443742, 0.02497907, -0.013849257, -0.0053825057, 0.002624925, 0.010692051, 0.003992937, -0.026265832, 0.010426739, 0.00589323, -0.017391164, 0.03321699, 0.0005940489, 0.0128079085, 0.051921446, -0.017537085, 0.019473858, 0.030616939, 0.015825827, 0.033376176, 0.010108365, -0.018253425, 0.006254717, -0.014910502, -0.034225173, 0.007826687, 0.03785994, -0.0031024856, -0.001983203, -0.009212939, 0.0017941685, -0.015202344, 0.013663539, -0.027433202, 0.020826947, -0.0019566717, 0.027128093, -0.004132225, 0.021185117, -0.0119854435, -0.015507453, 0.018837111, -0.0013373354, -0.016966665, -0.021450428, 0.020017747, -0.043325357, -0.01150125, 0.019195281, -0.02485968, -0.014631925, 0.03019244, 0.016382981, 0.00916651, 0.030988375, 0.023254545, 0.013756397, -0.006307779, -0.007674133, 0.012914034, 0.016688088, -0.020468777, 0.0050773975, -0.008304248, 0.036957882, -0.019036094, 0.013716601, 0.009027221, 0.016104404, -0.008178225, -0.0023463478, 0.024687229, -0.010837971, -0.009730296, -0.022538206, 0.02507193, -0.009776726, 0.023599451, 0.017497288, -0.015746232, -0.0012295527, -0.0027658716, -0.0037939535, -0.016741151, 0.019075891, 0.019195281, 0.011620641, 0.027061766, 0.00427483, -0.024647431, -0.0033794043, -0.026252566, -0.035684388, -0.038417093, -0.0045268764, -0.033349644, 0.02695564, -0.020893274, 0.024886211, -0.043564137, -0.0068118707, -0.0025652298, 0.013862521, 0.0048286677, -0.031067967, 0.020601433, 0.0035850205, 0.0063807396, -0.02833526, -0.016130935, 0.013219141, -0.0058136364, 0.0123966765, 0.008688949, -0.0028653634, 0.027300546, 0.01892997, -0.014061505, 0.014141099, -0.033535365, -0.017059524, -0.01247627, 0.006410587, -0.04483763, 0.0005310374, -0.030404689, -0.018943235, -0.01716565, -0.021768803, -0.01671462, -0.0064537004, -0.011481352, -0.0051205102, -0.016436042, 0.009783358, -0.025894394, -0.0025602551, -0.011700233, -0.0041852877, -0.018863643, 0.019566717, -0.01207167, -0.031916965, 0.00904712, -0.022511674, -0.0094782505, 0.0027227586, 0.02021673, -0.006350892, -0.043113105, 0.009312431, -0.017802397, -0.009823156, 0.028706696, 0.0053393925, 0.016223794, -0.011952279, -0.013305368, 0.016197262, 0.0019732537, -0.001908584, -0.001764321, -0.01057266, 0.0122772865, 0.018850377, -0.0146717215, 0.00039112708, 0.035153765, -0.0036380829, 0.0005016044, 0.017351367, -0.00395314, 0.011594109, -0.010015506, -0.018585065, -0.018784048, 0.014114568, 0.0016117669, 0.0339068, 0.0063807396, 0.03231493, -0.039664056, 0.0063608414, -0.022869844, -0.010307348, -0.031227155, -0.0020462144, -0.004178655, 0.056723583, 0.03090878, 0.0011250862, -0.0181473, -0.015335, -0.014127833, -0.012350246, 0.0262393, 0.038443625, 0.006443751, -0.020150403, 0.014220692, -0.0038967615, -0.003124042, 0.0060093035, -0.011328798, -0.023400467, 0.0023330823, -0.021821864, 0.015945217, -0.0028156175, -0.012927299, 0.015082954, 0.015892154, 0.016926868, 0.02857404, 0.019407531, 0.017576883, -0.003090878, -0.008775176, 0.04436007, 0.0070108543, 0.029661817, 0.008463434, 0.033641487, -0.0072562676, 0.010380309, 0.004172022, 0.024594368, 0.0025204585, 0.009033854, -0.0056544496, 0.016515637, -0.01902283, -0.01623706, -0.014605394, -4.184355E-05, -0.033163927, 0.018399347, 0.010168061, 0.02812301, 0.0062679825, -0.01797485, 0.011070119, 0.0043312088, -0.0028073264, 0.04343148, -0.020561635, -0.02566888, -0.02135757, -0.021516757, -0.0053327596, 0.013550781, -0.034278236, 0.009518047, -0.014340082, 0.004231717, 0.0058036875, 0.0086624175, -0.003740891, -0.006503446, 0.03319046, -0.0024309158, -0.008994057, 0.0054853135, 0.02090654, 0.020336121, -0.006990956, -0.009438454, 0.035100702, 0.005511845, 0.029316911, 0.025682146, 0.00026987147, -0.008635887, -0.009219572, -0.0005007753, 0.029635286, 0.024846414, -0.029343443, 0.009146611, -0.014114568, -0.0062679825, -0.0026497978, -0.016077872, -0.026066847, 0.015746232, -0.005545009, -0.017550351, -0.0012104834, 0.021994317, 0.013431391, 0.0024143339, -0.022418816, 0.00814506, -0.012456371, -0.006805238, -0.008987425, -0.010426739, -0.00952468, 0.024063746, 0.020243261, -0.00023691481, -0.010267552, -0.014698253, -0.0016150833, 0.0859609, 0.014698253, -0.025178054, 0.01497683, 0.013292102, -0.023400467, -0.027380139, -0.0054057203, 0.021755537, -0.010380309, 0.010725214, -0.012648722, 0.005734043, -0.018717721, 0.008980792, -0.0026464814, -0.008304248, -0.017484022, -0.0088945655, -0.023148421, -0.010930831, -0.002828883, -0.009100182, 0.03576398, 0.009120081, -0.0026895946, 0.0145258, 0.024554573, 0.029396506, 0.011315532, 0.016900338, 0.015560515, 0.01335843, 0.028653633, -0.01219106, -0.0025386987, 0.0006367474, -0.015600312, 0.026902579, 0.014499269, -0.002600052, 0.042635545, 0.0056146528, -0.0015968431, 0.016940134, 0.004079163, -0.009113448, 0.0031091182, 0.02812301, -0.018279957, 0.023426998, 0.0048154024, -0.024408652, -0.020641228, 0.009120081, 0.005899863, -0.0059927218, -0.0045865714, -0.02671686, -0.04971936, 0.0102343885, -0.018863643, 0.035498668, -0.005564907, -0.01114308, -0.015003361, -0.021583084, 0.019009564, -0.025841333, -0.008735378, -0.023758639, -0.003578388, -0.0021689208, 0.008529762, 0.027247483, 0.014061505, 0.008728745, 0.0055416925, 0.028680164, 0.0057008793, 0.019235078, 0.008556293, -0.0025901028, -0.0140880365, 0.008151693, 0.008509864, 0.0021307825, -0.0101216305, 0.005412353, 0.003966406, 0.009418556, -0.008529762, 0.021423897, -0.0039962535, -0.005800371, 0.009856319, 0.016966665, 0.014366614, 0.015759498, -0.020601433, 0.015520718, -0.017152384, 0.0029283748, 0.009988975, 0.012257388, -0.014738049, 0.014127833, 0.005080714, 0.0043013613, 0.021291241, 0.011043588, -0.023718841, 7.394519E-05, -0.008702215, -0.007766992, 0.014539066, -0.0026829618, 0.00092941907, 0.019248344, -0.021742271, -0.024077011, -0.03950487, 0.014393144, -0.016223794, -0.004228401, 0.014883971, 0.0028935526, -0.019354468, -0.016860541, 0.007614438, 0.012137998, 0.009279267, -0.00802567, -0.0074419854, -0.015693171, -0.042396765, -0.0070042214, 0.0029184257, 0.012436473, -0.020256527, -0.015825827, -0.0015727993, 1.6983558E-05, 0.0012361854, -0.007853218, -0.017802397, -0.021450428, 0.00037102145, -0.004609786, 0.030802656, -0.01640951, 0.01707279, -0.021185117, -0.016780948, -0.0010421764, -0.054654155, -0.026438283, -0.0054090368, 0.010539496, 0.0060159364, -0.0037442076, -0.017935053, 0.0102940835, 0.023135155, 0.007660867, -0.0024856364, 0.0029814371, -0.014870705, -0.019725904, -0.0049845385, 0.0018588381, -0.0018223579, -0.015626842, -0.031412873, 0.018465675, 0.019659577, 0.017510554, -0.00904712, -0.02276372, -0.041468177, -0.0005401575, -0.01114308, -0.020243261, -0.00778689, -0.040327337, 0.003817168, 0.017550351, 0.016661556, -0.008722113, 0.012701784, 0.033508833, -0.009179776, -0.012502801, 0.009464985, 0.004838617, 0.00866905, 0.0024375487, -0.032367993, -0.016701354, -0.0005339392, -0.012535965, -0.012297184, 0.016436042, -0.016515637, -0.0017925103, 0.0068848315, -0.015109486, -0.013338531, 0.025602553, -0.01629012, -0.032208808, -0.010652253, -0.020694291, -0.03923956, 0.023413733, 0.0060988464, -0.014180896, 0.017696273, -0.025947457, -0.008085365, -0.007581274, -0.00330976, 0.032421056, -0.01623706, 0.005511845, 0.041680425, 0.0031522315, -0.009464985, -0.016555432, -0.0028239083, -0.013245673, 0.020986134, 0.017139118, -0.006805238, -0.015719702, 0.023281077, -0.008795073, 0.0003859452, -0.023466796, 0.019752435, 0.03255371, 0.026942374, -0.0034092518, -0.020004481, -0.010433372, 0.0034424157, -0.02426273, 0.013995177, -0.020229995, -0.0018886857, 0.004712594, 0.017789131, -0.023413733, 0.013835991, 0.034702733, -0.01826669, 0.012011975, -0.0042184517, 0.004954691, -0.021463694, -0.004162073, 0.01004867, -0.011050221, -0.002862047, 0.005495263, 0.0146717215, -0.010851237, 0.030378157, 0.00802567, 0.019274876, -0.040725302, 0.0020926439, 0.003182079, -0.012986994, -0.0060391515, 0.00391666, -0.021516757, -0.013099751, 0.010526231, -0.0044870796, 0.014539066, -0.009922647, 0.011156346, -0.009133345, -0.004702645, 0.0058434843, -0.008960893, -0.02692911, -0.0021142005, -0.01629012, -0.027990354, 0.006493497, 0.0032218755, 0.025244381, -0.028627103, -0.006181756, -0.0012196035, 0.0021987683, -0.027778106, -0.015480922, 0.014446207, 0.009120081, -0.038417093, 0.009763461, -0.00049994624, -0.022989234, 0.00024624215, -0.01557378, -0.0031870534, -0.028865883, -0.012423207, -0.0064802314, -0.017125852, 0.0031688134, 0.015494187, -0.018744253, 0.011992076, 0.009783358, -0.020495307, 0.012887502, 0.021185117, 0.0013008551, 0.019526921, -0.04250289, -0.010771643, 0.008940995, 0.014340082, -0.0022833364, -0.022511674, -0.022511674, -0.004891679, 0.0068251365, 0.024488244, -0.015388062, -0.0009783359, 9.6849035E-05, -0.011607375, -0.022020848, 0.013232407, 0.023904558, 0.028600572, 0.0045600403, 0.0068980968, 0.0013895686, -0.015799295, -0.015122751, 0.005611337, -0.008649153, 0.0033959863, -0.011879319, 0.0005766378, 0.054123532, -0.011965545, -0.019221812, -0.007820054, 0.022458611, -0.021941254, 0.0017460808, 0.0056445007, 0.0041355416, 0.03281902, 0.020840213, -0.0010322273, 0.04945405, 0.007886382, 0.021065727, 0.023745373, -0.011448188, -0.0030328413, -0.0026663798, 0.0036513484, -0.023373937, -0.021848395, -0.0230025, -0.013928849, 0.025350507, 0.020747352, -0.011368594, -0.009093549, -0.026624002, -0.026451549, 0.014313552, 0.027804637, 0.024965804, -9.353264E-06, -0.018492207, -0.011487985, -0.026080113, 0.025576022, 0.012011975, 0.00025847135, 0.02485968, 0.0075945393, -0.0008597748, -0.02030959, -0.023586186, 0.002026316, -0.021729006, 0.009067018, 0.01219106, -0.0026033684, -0.00957111, 0.019301405, -0.017364632, 0.0009086916, 0.020747352, -0.018080974, -0.02692911, 0.0032102682, -0.02297597, 0.01150125, -0.024315791, 0.016568698, -0.0006466966, -0.015746232, 0.0016872148, -0.021848395, -0.018956501, 0.020349385, 0.003250065, -0.025045399, -0.009703766, -0.012635456, -0.008602723, 0.018160567, -0.013093119, -0.0021490224, -0.017271774, -0.003538591, -0.009398657, -0.016197262, -0.023108626, 0.0005090663, 0.004603153, 0.01404824, 0.012933932, 0.21065727, 0.019036094, 0.007236369, 0.028892415, 0.015109486, 0.0318639, 0.022776986, -0.014963564, 0.010539496, -0.013278836, -0.0037607895, 0.015719702, -0.009305798, -0.002255147, 0.017722802, 0.00020779273, -0.054972526, -0.0051238267, -0.021821864, 0.010479801, 0.004745758, -0.019805498, 0.026425017, -0.008901198, 0.029369975, -0.009007323, 0.010022139, -0.0046993284, 2.296861E-05, 0.008755277, 0.0061519085, -0.0419988, 0.0072496347, -0.010599191, 0.015069689, -0.0035186927, 0.021397367, -0.014724784, -0.01704626, 0.008649153, 0.013544148, 0.013623741, 0.011746664, 0.0028255666, -0.019885091, 0.007229736, -0.020641228, 0.0238117, 0.011686969, -0.015945217, -0.008582825, -0.009889483, 0.004205186, 0.006632786, -0.008828238, -0.004603153, 0.030165909, -0.012011975, 0.0011109916, 0.016581964, -0.0140880365, 0.013345164, -0.012177794, 0.019579982, -0.0055085286, 0.015228876, -0.006652684, 0.008244553, 0.012343614, -0.015772764, -0.009849686, -0.010944096, -0.018173832, 0.028388321, -0.005150358, -0.009212939, -0.002658089, 0.009591008, 0.0017145751, 0.009889483, 0.020654494, -0.018412612, 0.0165289, -0.014950299, -0.009823156, -0.02297597, -0.009179776, -0.007123612, 0.03273943, -0.013676804, 0.010871136, -0.024687229, -0.0013837649, -0.012754846, -0.0072761658, 0.026915845, 0.004195237, 0.015348266, -0.0064868643, 0.015082954, -0.027804637, 0.008887933, -0.014857439, -0.026624002, -0.023745373, 0.002026316, 0.0003656323, 0.036347665, -0.00084899657, -0.022312691, 0.0070108543, -0.026968906, -0.00444065, -0.020031013, 0.001097726, 0.025629083, 0.0038204845, -0.0016366398, 0.005034284, -0.008562926, 0.010751746, -0.025934191, 0.017669741, -0.018200364, -0.021662679, -0.020349385, 0.01640951, 0.012436473, -0.003182079, -0.041653894, 0.0014293652, 0.015613577, 0.025390303, -0.021132056, 0.01812077, -0.001908584, -0.009962444, -0.028467916, -0.026822984, 0.018969767, -0.0017676373, -0.012947197, 0.0017692955, 0.01985856, 0.04802137, -0.028467916, -0.009385391, -0.016608495, 0.005969507, 0.007269533, -0.0044937124, -0.016767683, -0.0230025, -0.016515637, 0.0025718627, -0.028972007, -0.04971936, -0.014578863, 0.0046230517, 0.0034324664, -0.0038138516, 0.011322165, 0.015189079, -0.003260014, -0.0062613497, 0.013610476, -0.1679952, 0.01821363, 0.02554949, -0.008775176, 0.0037276256, 0.009823156, 0.021105524, 0.01109665, -0.03250065, -0.0024856364, 0.01850547, -0.007554743, -0.038072187, -0.015228876, -0.016077872, -0.012728316, -8.627803E-05, 0.020110605, -0.012522699, 0.009882851, 0.04064571, 0.01659523, 0.009458352, -0.0034722632, 0.013703335, 0.010532863, 0.02495254, 0.030165909, -0.019964684, -0.033349644, -0.0022816781, -0.025124991, 0.040513054, 0.008708848, 0.023480061, -0.022471877, 0.0029615387, 0.004198553, -0.002203743, 0.024342323, -0.02333414, 0.025204586, 0.027194422, 0.0089542605, -0.008536395, 0.032394525, -0.009120081, 0.008868034, -0.012065037, -0.014247224, 0.012390044, -0.010068568, -0.019871825, -0.010711948, 0.014101302, 0.0012403309, 0.009816523, 0.0032799125, 0.025469897, -0.005820269, -0.023519857, -0.015162548, 0.00016074142, 0.0050508664, -0.041282456, -0.026040316, -0.010731847, -0.0010430055, 0.0015844067, 0.00403605, -0.0031538894, -0.00811853, -0.0043610567, 0.0026448232, 0.010347146, 0.0030046517, -0.0011375227, -0.002837174, -0.0016225452, -0.017988114, -0.011899217, 0.043643728, -0.030404689, 0.022272894, 0.0047888714, 0.011607375, -0.041308988, 0.0008336582, 0.010957362, 0.0034822123, -0.0025154839, -0.032845553, 0.0068781986, -0.0030278666, 0.0106456205, 0.0016979931, 0.018014645, 0.012986994, -0.009955811, 0.0008597748, 0.00046636772, -0.0047258595, -0.012011975, 0.008907831, 0.0063873725, -5.236273E-05, 0.0339068, 0.013690069, 0.031678185, -0.014883971, 0.011978811, 0.011030322, 0.0028885782, 7.9489786E-05, 0.019566717, 0.0061253775, -0.0060723154, -0.031227155, 0.003992937, -0.013537515, 0.021994317, -0.024806619, 3.5988043E-05, -0.003850332, 0.0003998326, 0.0009144953, -0.08861402, -0.00063633284, 0.020442246, 0.022219831, -0.0133849615, 0.008058835, -0.018585065, 0.04619072, 0.009849686, 0.030961843, -0.0004332038, 0.008821605, -0.0060656825, -0.0029482732, 0.03088225, -0.011454821, 0.024488244, -0.024713758, -0.025390303, 0.017709538, -0.015441125, 0.000498288, 0.014074771, -0.0050773975, -0.023466796, -0.01721871, -0.036719102, 0.0034291502, 0.021981051, 0.016926868, 0.022299426, 0.0023032348, -0.0030527397, -0.012907401, -0.0065730903, 0.00081085804, -0.023015765, 0.009750195, 0.04879077, -0.030298565, -0.004629684, -0.00601262, -0.01271505, -0.035870105, -0.005007753, 0.0068715657, -0.0059297103, -0.010168061, 0.009067018, -0.015228876, 0.0028819453, -0.019473858, 0.0038967615, -0.018850377, 0.0082511855, -0.009464985, -0.017789131, 0.022100441, 0.0145258, -0.011554313, -0.012084935, 0.013583945, 0.0014111252, 0.02159635, -0.02276372, -0.019460592, -0.0030013355, 0.012350246, 0.004593204, -0.01509622, -0.0011640539, -0.0027045184, 0.0017610046, 0.0270485, -0.016621761, 0.009146611, -0.02207391, 0.00012965023, 0.007965975, 0.009789991, -0.007813421, -0.018200364, 0.016396247, -0.012237489, 0.024594368, 0.035604794, -0.011249204, -0.012847706, -0.011090018, -0.011640538, 0.004354424, 0.024448447, 0.03701094, -0.01509622, -0.001824016, 0.008436903, 0.0074154544, -0.023387201, -0.00134231, 5.2181367E-05, -0.007660867, -0.0145523315, -0.07879749, 0.020521838, 0.02369231, -0.019420797, -0.006443751, 0.008629254, 0.0021888192, 0.004550091, 0.017656475, -0.0075083133, -0.026862781, 0.0169534, 0.0053725564, -0.018890174, -0.008702215, -0.016396247, -0.0006292855, 0.013424758, 0.015706437, 0.014393144, -0.03088225, -0.010891034, -0.0032102682, -0.009159877, -0.032659836, 0.031067967, -0.011680336, 0.005581489, 0.018518737, -0.0015263698, -0.0033711132, 0.013046689, 0.031678185, 0.033800676, -0.005624602, -0.03788647, 0.009206306, 0.025323976, -0.010658886, -0.030749595, -0.010101733, -0.034994576, 0.031174092, 0.0075945393, -0.034251705, -0.009451719, -0.0019268242, -0.0026912529, 0.005611337, 0.0036413993, 0.017417695, 0.020614697, 0.016038075, -0.03114756, -0.020375917, -0.008184858, -0.012933932, -0.0063475757, 0.0078067887, -0.0057439925, 0.028653633, -0.0063542086, 0.024448447, 0.0058766482, 0.0018041177, -0.016794212, -0.003936558, -0.007853218, 0.01311965, 0.007680766, 0.009392024, -0.0057804724, 0.05996038, -0.0041255928, -0.01021449, -0.0029001855, 0.007216471, -0.015839092, -0.03650685, 0.025045399, -0.004676114, -0.0043046777, -0.038682405, 0.0015412936, -0.0047988202, 0.0050773975, -0.0067355935, 0.020031013, -0.0011681993, 0.015626842, -0.037966065, -0.0004891679, -0.015016627, -0.0322884, -0.0104134735, 0.021782069, 0.025045399, 0.004516927, 0.0013240698, 2.5546587E-05, -0.0011764903, 0.018372815, -0.008038936, -0.022458611, -0.01659523, -0.0049082614, -0.007150143, -0.019633045, -0.025350507, 0.022989234, 0.0037773715, -0.0151360165, -0.0035253256, 0.010128263, -0.017364632, -0.0015669956, -0.0122772865, -0.0024955855, -0.03319046, 0.037329316, 0.009113448, 0.051496945, 0.01892997, -0.010731847, 0.009916014, 0.0024773455, -0.00067571504, 0.00046222223, 0.006592989, 0.010725214, 0.014247224, 0.010313981, 0.025377037, 0.005269748, -0.0050641317, -0.0038370665, -0.004195237, 0.028388321, -0.010473168, 0.052399006, 0.01788199, -0.018279957, 0.0290516, 0.0034225173, 0.010207857, 0.017749334, 0.018717721, -0.010320614, -0.022272894, 0.009352228, 0.014021709, 0.0066924808, 0.018585065, -0.03669257, -0.005435568, 0.014127833, 0.0011085042, -0.02111879, 0.013663539, 0.024315791, -0.004473814, -0.0009916015, 0.0061519085, -0.014220692, -0.015772764, 0.010672152, 0.0029283748, -0.028176073, -0.030218972, 0.014194161, -0.016197262, -0.0060059875, -0.026425017, 0.007103713, -0.004921527, -0.024939274, 0.0005463757, -0.010002241, 0.031280216, 0.01647584, 0.007700664, -0.001983203, -0.03409252, 0.014804377, -0.0068781986, -0.02833526, -0.009591008, -0.0117532965]
+ },
+ {
+ "Id": 68,
+ "Type": "Jackets",
+ "Brand": "Grolltex",
+ "Name": "Mens Horizon 80s Softshell Jacket",
+ "Description": "Stay protected from the elements in the Grolltex Mens Horizon 80s Softshell Jacket. Made from a water-resistant and breathable fabric in retro 1980s style, this jacket keeps you dry and comfortable in any weather. It features multiple colors, a detachable hood, adjustable cuffs, and multiple pockets for storing your essentials. Whether you're hiking, skiing, or exploring the city, this jacket combines style and functionality.",
+ "Price": 169.99,
+ "Embedding": [-0.0023728122, -0.02418569, -0.0010140013, -0.018080436, 0.00538295, 0.0014691172, -0.009223245, -0.040631957, 0.0046214275, -0.02180634, 0.0024496182, -0.0039612236, 0.0030297479, 0.004497231, -0.009550079, 0.0018139266, 0.030277869, -0.0021734436, -0.004860016, -0.019688457, 0.0019675384, -0.0005278363, 0.0063013523, -0.003912199, -0.021871706, -0.033520058, 0.034670513, -0.013236762, 0.035350326, 0.0005110861, 0.012478508, 0.018982498, -0.011824841, -0.009537006, -0.0033418739, 0.0063013523, -0.01188367, -0.0019364893, -0.0010450506, 0.00090451207, 0.02070818, -0.0034873148, 0.012400068, 0.019178597, 0.00717073, -0.00030129976, 0.0069158, -0.022799915, 0.008295038, 0.0030297479, -0.00020243258, 0.01746599, -0.011766011, -0.00373244, 0.004948261, -0.0002953759, 0.009831156, 0.006732773, 0.01981919, -0.03255263, -0.01664237, -0.015178154, -0.01587104, 0.0118705975, -0.0034382897, -0.01630246, -0.026159763, -0.029624201, -0.0071641933, 0.009412808, 0.008478064, -0.005454853, 0.011269224, 0.01591026, 0.004778308, -0.017439842, 0.005412365, -0.019649237, 0.014720587, 0.006275206, 0.023924222, -0.030617775, 0.009569689, 0.011014294, 0.016040994, 0.008961778, -0.017884336, 0.026538892, -0.018302683, -0.025244629, 0.004716209, -0.009543542, 0.011426104, 0.0056836368, -0.032291163, 0.011916354, 0.012576559, -0.0017567308, -0.0074256603, -0.0074975635, -0.0038174167, -0.0138708195, 0.0017828775, -0.002962747, -0.033467766, -0.008752605, 0.019008644, 0.011582984, -0.0015336669, -0.008889874, -0.00701385, 0.01066785, 0.008765678, -0.047926884, 0.002263323, -0.0024054956, 0.03278795, 0.024447156, 0.016851543, -0.037442062, 0.004147519, 0.021871706, 0.013132175, -0.021074234, 0.011269224, 0.008380014, -0.041703973, -0.004301131, 0.01828961, 0.004029859, 0.021244187, 0.0069288732, 0.0028794042, -0.015714161, -0.031271443, 0.030696215, -0.010968537, 0.017910482, -0.0018008533, -0.0043305457, 0.018106584, 0.020433638, -0.007530247, -0.0013302129, -0.0046508424, -0.00015728868, -0.012177821, 0.03848793, 0.02121804, 0.004487426, 0.030408602, -0.03318015, 0.019897632, 0.0047750394, -0.0215318, -0.022564594, 0.0024153006, 0.029754935, -0.026434304, -0.014236873, 0.0027862568, 0.0018253658, 0.03184667, -0.00052293384, 0.008563041, 0.012400068, 0.0035886334, -0.0013620792, 0.021035012, 0.040971864, -0.015269667, 0.0505677, -0.014642146, 0.000962525, 0.0071903397, 0.045181483, -0.015531134, 0.0007120888, -0.023348995, -0.0093605155, 0.0070922896, -0.0052816314, 0.020420566, 0.020459786, -0.018106584, 0.009687349, 0.02294372, -0.016210949, 0.0006381427, -0.027035678, -0.008942168, 0.01797585, 0.0025509365, 0.009340906, -0.6576416, -0.0060170074, -0.030120987, -0.033781525, 0.027297145, 0.0068177497, 0.009170951, 0.029179707, -0.0284476, 0.012916465, 0.008000887, 0.046907164, 0.01587104, -0.016864616, -0.009550079, -0.02247308, -0.006451696, 0.011596058, 0.010877023, 0.011419567, -0.028813653, 0.009909595, -0.019845339, -0.0020181977, 0.010046866, 0.013086419, 0.018276537, -0.024473302, 0.010092623, 0.035454914, -0.02453867, 0.038174167, -0.010772437, 0.02098272, 0.050358526, -0.04716863, -0.009425882, 0.038514074, 0.031715937, 0.054698877, -0.008491138, 0.0052685584, 0.009203635, 0.013766233, 0.005092068, 0.0143676065, 0.030487042, -0.018943278, 0.012295482, -0.001564716, 0.003225848, -0.0021620046, 0.016093288, -0.0048044543, -0.0046312325, -0.016929982, 0.031715937, 0.008536895, -0.0030640652, -0.0054287068, -0.026277425, 0.017400622, -0.019949924, -0.016119435, -0.016040994, 0.029911814, -0.033049416, -0.014681367, 0.015544208, -0.03260492, -0.0025672782, 0.017008422, -0.009438955, 0.012766122, 0.01084434, 0.010216819, 0.00046696357, -0.011968648, 0.012452361, 0.00025145762, 0.016982276, 0.004418791, -0.008680701, 0.0027617442, 0.034461338, -0.027166411, -0.00021959135, 0.003470973, 0.010497896, -0.0032895806, 0.011190783, 0.01789741, -0.0073014633, -0.022290055, -0.024447156, 0.010144916, 0.0042684474, 0.054803465, 0.019440064, -0.021675607, -0.016746955, -0.01090317, 0.011935964, 0.013504766, 0.023715049, 0.0076021506, 0.00724917, -0.0076413704, 0.017165303, -0.04654111, 0.01801507, -0.022891428, -0.013439399, -0.036605366, 0.0059810556, -0.029022826, 0.034461338, 0.00028802213, 0.02528385, -0.028343013, 0.0047848444, -0.010733216, 0.01797585, -0.0036311217, -0.0151127875, 0.027532466, 0.0036899517, -0.0012885416, -0.02899668, -0.01147186, 0.032944832, 0.011386883, 0.04400488, 0.0023450314, 0.006647796, 0.029205853, 0.0038468319, -0.008791825, 0.027087972, -0.027767785, -0.045861296, -0.0012566753, -0.016577002, -0.03681454, -0.011713717, -0.041913144, -0.0288398, -0.024682475, -0.0069027264, -0.011099271, -0.0032928488, -0.0088702645, 0.029990254, 0.015701087, 0.016367828, -0.011896744, 0.0138316, -0.018551078, -0.01090317, -0.011190783, 0.024434082, 0.012772659, -0.00043959124, 0.0073995134, -0.016746955, -0.009425882, 0.011766011, 0.016916908, -0.0083734775, -0.045782857, -0.010792047, -0.0075237104, -0.012458898, 0.010772437, -0.016433194, 0.008817972, 0.008641481, -0.015465767, 0.013883892, -0.021322627, 0.005886274, -0.009419345, -0.029205853, 0.004042932, 0.024277203, 0.0029692836, 0.027166411, 0.023558168, 0.008177377, 0.01127576, -0.0020574178, 0.013635499, -0.019649237, 0.011073124, -0.020734325, -0.040553518, 0.015008201, 0.007974741, 0.026983384, 0.0138708195, 0.034016844, -0.020538226, 0.013262909, -0.014838247, 0.026878798, -0.023244409, -0.0032895806, -0.0049449927, 0.0014568609, 0.013648572, -0.0034513632, -0.020041438, -0.0057849553, -0.017361403, 0.0042880573, -0.0073602935, -0.0025035457, 0.029441174, -0.03174208, 0.0038729785, 0.012190894, 0.0055757817, 0.010811657, -0.020472858, -0.022159321, 0.010811657, -0.017139155, 0.012203968, -0.013583206, -0.03129759, 0.008203524, 0.009896522, 0.022812987, 0.008059718, 0.007628297, 0.007530247, -0.0037357085, -0.028813653, 0.037363622, 0.008066254, 0.032003548, 0.0076152235, 0.01789741, -0.03270951, 0.025179263, -0.011805231, 0.023009088, -0.018577224, 0.0043599606, -0.011811768, 0.006791603, -0.0033091905, -0.024996236, -0.010458676, 0.027767785, -0.0056901737, 0.009223245, -0.0061379354, -0.0025868881, 0.022969868, -0.020002218, -0.0035134617, 0.014393753, -0.009504322, 0.022812987, -0.02255152, -0.03684069, -0.013570133, -0.036788393, -0.006598771, 0.013328276, -0.008170841, -0.0098573025, -0.023061382, 0.009445492, -0.01426302, 0.026290497, 0.016916908, 0.0071445834, 0.02149258, -0.02489165, -0.012001331, -0.008020497, 0.012641925, 0.0151127875, -0.019766899, -0.017126082, 0.024904722, -0.0007631565, 0.023061382, 0.020616665, 0.010144916, -0.0054254383, -0.0040167854, 0.004333814, -0.007974741, 0.016812323, -0.031062268, 0.008203524, -0.012962222, -0.009654665, -0.0072426335, -0.0029790886, -0.023715049, 0.027532466, 0.0016701198, -0.029179707, -0.0043697655, 0.022342347, 0.0002326647, 0.029336587, -0.036291607, 0.0032046037, 0.0043109357, 0.0022110296, 0.002876136, -0.020695105, -0.025571464, 0.014759807, 0.0055725137, -0.0022976405, -0.025806785, -0.034775097, -0.0077198106, 0.07959053, 0.03239575, -0.010837804, 0.011243077, 0.009438955, -0.017400622, -0.015217374, -0.023715049, 0.0061444724, 0.0034611681, 0.012452361, 0.0016962666, -0.016786175, -0.015413474, 3.0895993E-05, -0.009778862, -0.00023899709, -0.002398959, -0.01766209, -0.0009952084, -0.011681034, -0.01098161, -0.000361764, 0.039481502, -0.010027256, 0.017439842, -0.011511081, 0.0083604045, 0.024852429, -0.012498118, 0.0007104546, -0.016498562, -0.01766209, -0.0059516407, -0.0019168792, -0.0148643935, 0.008000887, -0.0073341466, 0.035115007, -0.006213107, 0.011955574, -0.0007366013, -0.005131288, 0.004964603, 0.02106116, -0.020825839, 0.0058437856, 0.031637497, -0.0001621912, -0.0024561547, 0.003080407, 0.0050463113, -0.0105698, -0.0053241197, -0.0036540001, 0.008125084, 0.016707735, -0.011027367, -0.00065366726, -0.032944832, -0.0103736995, -0.014145359, 0.0101122325, -0.007536784, -0.0077982503, -0.0280554, 0.009367052, 0.009223245, -0.014524487, -0.0018024875, 0.0017207791, -0.026094398, -0.0144199, 0.017570576, 0.022342347, 0.015805675, 0.008634944, -0.01123654, 0.0038893202, 0.005464658, 0.019060938, -0.005830712, 0.009537006, -0.01457678, 0.01797585, -0.0078701535, 0.0066412594, 0.009543542, 0.0066935527, 0.008229671, 0.012439288, -0.013962333, 0.0051247515, 0.0008350599, -0.008027034, 0.0031523104, 0.019962998, 0.046567257, 0.01883869, -0.014903613, 0.004967871, -0.019753825, 0.007942057, -0.0063699875, 0.02110038, 0.0026440842, -0.0029366002, 0.009935742, 0.003033016, 0.018145803, -0.00011571954, -0.0015377522, 0.0148643935, -0.020682033, -0.03231731, -0.0108574135, 0.015217374, 0.013060272, 0.008896411, -0.007830934, 0.00020917352, -0.058516294, 0.040971864, 0.0076152235, -0.0066053076, -0.005605197, 0.027872372, -0.011589521, -0.03310171, -0.013027589, 0.008327721, 0.035350326, -0.008040108, -0.022708401, -0.012426214, -0.010772437, -0.026538892, 0.015714161, -0.0032601655, -0.03145447, -0.015021274, -0.0005315132, 0.02239464, 0.025336143, -0.015256594, -0.025767563, -0.0045822076, -0.007844008, -0.01825039, 0.012432751, -0.019479284, -0.0033059223, 0.0020753937, -0.0051149465, -0.01887791, -0.04021361, -0.030277869, -0.030382454, 0.018590298, 0.012471971, 0.01430224, 0.008706848, 0.0066608693, 0.017570576, -0.026957238, 0.0032961173, -0.00031049195, 0.02200244, -0.009850766, 0.023205187, 0.012393531, 0.008301575, -0.0039318088, -0.008576115, -0.009661202, 0.0011104173, 0.022185467, -0.015138934, -0.010752827, -0.032421898, -0.0061150575, -0.00062588643, -0.011922891, -0.0055496353, -0.021204967, -0.009648128, 0.03310171, 0.01123654, -0.01398848, 0.011386883, 0.012543875, 0.00373244, 0.005235875, 0.009040218, -0.0037651234, -0.0020443443, -9.314759E-05, -0.0215318, -0.017649015, 0.026538892, -0.013910039, 0.0021734436, 0.0053502666, -0.026094398, 0.010576337, 0.0056705633, -0.0046573794, -0.009556616, 0.0068635065, 0.0045527923, -0.014942834, -0.019923778, 0.010935853, -0.045076896, 0.006461501, 0.009197098, 0.0060268124, 0.023309775, -0.014629073, -0.009157878, 0.0056672953, -0.0037062934, 0.04661955, -0.0007002411, 0.035481058, 0.022616887, -0.03514115, -0.014184579, -0.028369159, 0.0017403892, -0.020093732, 0.017962776, 0.0111123435, 0.008961778, -0.033310883, -0.01828961, 0.013543986, -0.0026669626, -0.019165523, 0.009700422, 0.03974297, 0.0027650124, -0.01840727, -0.0144199, -0.02563683, 0.0034775098, -0.0008473162, 0.001029526, 0.0016660345, 0.00081667554, -0.007837471, 0.0363439, -0.04209617, -0.008157767, 0.017962776, -0.0093735885, 0.02595059, -0.032029696, 0.011314981, -0.015073568, 0.01664237, 0.025270777, -0.0027731834, 0.0088702645, 0.0143545335, -0.008347331, 0.006451696, 0.009510859, 0.009706959, 0.01754443, -0.024865502, -0.020263685, 0.0103606265, -0.004219422, 0.027480172, -0.0045495243, 0.0022241028, -0.008484601, 0.032448042, 0.000709229, 0.013491692, -0.0075563937, 0.004889431, -0.014759807, -0.0040658102, -0.004974408, -0.008223134, -0.016067142, -0.026826505, -0.025022384, -0.031872816, 0.0011790523, 0.0036572684, -0.0016447903, -0.013740086, 0.0002565644, 0.011681034, 0.005713052, -0.024813209, 0.01856415, 0.0144199, 0.013321739, -0.0066053076, 0.014759807, 0.021361846, -0.025819857, 0.003168652, -0.011896744, -0.022146247, -0.03963838, 0.008713385, -0.01094239, 0.013883892, -0.0138577465, -0.00030926632, -0.010517506, 0.0088702645, -0.014851321, -0.030199427, 0.0011422836, 0.01102083, -0.00054376945, 0.028421452, -0.02985952, 0.009438955, -0.013079882, 0.004131177, -0.0008701946, -0.032657217, -0.012223578, -0.00137025, 0.0055430983, 0.01981919, -0.022028588, -0.008765678, -0.014942834, 0.00017557094, -0.012511192, 0.0070203864, 0.025192337, 0.00068471645, 0.026277425, 0.028003106, 0.009903059, -0.006190229, -0.026408158, -0.0015835089, 0.010177599, 0.006706626, -0.030722361, 0.022773767, 0.048711285, 0.0055561718, -0.018904058, -0.00041957267, 0.011720254, -0.053286955, 0.0031653838, 0.010301796, 0.008229671, 0.020851986, 0.020015292, 0.008994462, 0.022891428, 0.02626435, 0.017256815, 0.01715223, -0.022773767, -0.01121693, 0.0009535371, 0.023976516, -0.01703457, -0.033938404, -0.024120321, 0.02200244, 0.0083604045, 0.010210283, 0.008798362, 0.0013547254, -0.011347664, -0.016485488, 0.0025623757, -0.0061281305, 0.026499672, -0.001058941, -0.03856637, -0.009138268, -0.0012386994, 0.0064157443, -0.005157435, 0.007968204, 0.010393309, 0.008634944, -0.027950812, 0.00059524574, -0.041834705, -0.012413141, -0.02457789, 0.021466432, 0.0315852, 0.0093735885, 0.01398848, 0.0107659, -0.02110038, -0.0044580107, 0.0213357, 0.0067785294, -0.022250833, 0.024198763, -0.022917574, 0.013504766, 0.0043795705, 0.03443519, 0.0016447903, -0.019021718, -0.035925552, -0.016459342, -0.0049090413, 0.018538004, 0.018394196, -0.02196322, -0.005771882, 0.006745846, -0.0016186435, 0.02282606, 0.0038206852, -0.0065137944, -0.038043436, 0.012681145, -0.019897632, -0.0043501556, -0.0058928104, 0.0034905833, -0.003033016, 0.009556616, 0.023924222, 0.1927534, 0.001817195, -0.013073346, -0.011563374, 0.008471528, 0.01449834, 0.006190229, 0.0011022465, -0.007850544, 0.004706404, -0.0019381235, 0.009432418, 0.004536451, 0.008327721, 0.017217595, -0.019413918, -0.020472858, -0.0022371763, -0.015544208, -0.018551078, -0.01080512, 0.00075049174, 0.005451585, -0.019047864, 0.017361403, -0.010412919, -0.025545318, 0.0064974525, -0.012942612, 0.016210949, -0.016733883, -0.021074234, 0.012602705, -0.005481, 0.005516952, -0.007844008, 0.012079771, -0.016851543, -0.018812545, 0.008641481, -0.0023466656, 0.016040994, 0.029964108, -0.0003989413, 0.009445492, 0.01092278, -0.018354977, 0.0030902121, -0.008072791, -0.009720032, -0.023832709, -0.018904058, 0.014315313, 0.014563707, 0.007909374, -0.016825395, 0.019217817, -0.0071119, -0.01813273, -0.002526424, -0.012053625, 0.013426325, -0.017178375, 0.019845339, -0.02907512, 0.029127413, -0.0044482057, -0.015844895, 0.01836805, 0.0060300804, 0.00339907, 0.014197653, -0.0205513, 0.019557724, 0.01489054, -0.022721475, -0.0034252165, 0.009889985, 0.0013514571, 0.03406914, 0.008295038, -0.0038239534, -0.010445603, -0.0004963786, 0.00067123456, -0.049338806, 0.010138379, -0.012132064, -0.01899557, 0.01453756, 0.007569467, 0.008713385, 0.015178154, -0.0010409651, 0.000903695, 0.022146247, -0.015753381, 0.030225575, -0.019675385, 0.00268167, -0.011785621, -0.0068635065, -0.014589854, -0.001564716, 0.0021129795, -0.0047096726, 0.0036376584, 0.015504988, 0.022616887, -0.011831378, -0.017165303, -0.037337475, 0.01090317, -0.019008644, 0.0075171734, 0.014903613, 0.019884558, -0.008497674, 0.0005119032, -0.0105698, 0.029571908, -0.0039514187, 0.030460894, 0.0036474634, -0.010190672, -0.025571464, -0.0012395165, -0.007706737, -0.006376524, -0.03950765, 0.011798694, -0.0073406836, 0.0072557065, -0.031088416, 0.012681145, -0.003119627, 0.016655441, -0.007765567, -0.015557281, 0.0035722917, -0.011916354, -0.014328387, -0.00035543158, 0.007105363, 0.024486376, -0.013478619, 0.019976072, -0.0036115116, -0.0071838032, -0.00793552, 0.009308222, -0.017988924, -0.011635277, -0.008295038, 0.01879947, -0.014563707, -0.043664973, -0.020655885, -0.0009894888, 0.008275428, -0.021283407, 0.0060627637, 0.017165303, -0.015635721, 0.0116287405, 0.008857192, -0.16545627, 0.015452694, 0.01080512, -0.026002884, 0.016707735, 0.009667739, 0.0045527923, 0.009262465, -0.030173281, 0.0023335922, 0.01797585, 0.024669403, -0.02121804, -0.032421898, 0.006075837, 0.009347442, -0.007687127, 0.02208088, 0.032892536, 0.016367828, 0.019675385, -0.012066698, 0.020904278, 0.010308333, -0.0017354866, 0.010412919, 0.004761966, 0.013583206, -0.0006483562, -0.009380125, 0.0047194776, -0.0050070914, 0.019139377, 0.008693774, -0.0067654564, -0.019976072, 0.0056999787, 0.0012958953, -0.027270999, 0.028499892, 0.014485267, 0.008948705, 0.00699424, 0.006209839, -0.0007394611, 0.010236429, 0.018786397, -0.020734325, -0.0019234159, -0.027715493, 0.009876912, -0.013007979, -0.006082374, -0.009249392, 0.01750521, 0.0048175277, 0.012197431, 0.0049090413, 0.03775582, 0.008759141, -0.013779306, -0.03406914, 0.019740751, -0.0019544652, -0.007837471, -0.0157926, 0.015753381, -0.0029235268, -0.012164748, 0.0032405555, -0.013517839, -0.0034579, -0.009007535, -0.0063961344, 0.031951256, 0.0014217263, -0.03848793, -0.0027519392, 0.016367828, -0.025309997, 0.005445048, 0.030382454, -0.020891206, 0.0074060503, -0.0052685584, 0.0005711418, -0.043717265, -0.009040218, 0.0051835813, 0.0062817424, -0.015060494, -0.0028548918, -0.021440286, 0.0064288178, 0.013452472, -0.0004636952, 0.017387548, -0.02247308, -0.0061444724, -0.014838247, -0.0012517729, -0.01068746, -0.0034644366, 0.010752827, 0.004618159, 0.01496898, 0.011046977, 0.015805675, 0.0029692836, -0.01981919, -0.0156095745, 0.021832487, 0.009772326, 0.013661646, 0.010073013, 0.015439621, 0.020512078, -0.03166364, 0.016916908, -0.020485932, 0.013164858, -0.009602373, -0.012197431, -0.0061379354, -0.0058535906, -0.014393753, -0.088951044, 0.004451474, 0.016929982, 0.006745846, 0.019557724, 0.020237539, 0.0013342983, 0.020891206, -0.0048436746, -0.0029660151, -0.010955463, -0.009955352, -0.022133173, -0.021322627, 0.0276632, -0.019806119, 0.005948372, -0.029362734, -0.015805675, 0.012550412, -0.012086308, -0.005673832, -0.032369602, -0.024081102, -0.02852604, -0.011602594, -0.014393753, 0.016550856, 0.026395084, 0.021244187, 0.010452139, 0.009739642, 0.0028499893, -0.008569578, -0.011916354, -0.040945716, -0.017649015, 0.011328054, 0.020093732, -0.0126092415, 0.0008718287, 0.01068746, 0.019531578, -0.044501666, 0.023322849, -0.013243299, -0.010256039, -0.0020672227, 0.019596945, 0.0049286513, -0.02758476, 0.0041932757, -0.0034677049, -0.023244409, 0.025257703, 0.0017420233, -0.033859964, 0.0016112898, -0.012471971, 0.009033682, -0.006464769, 0.012700755, 0.00092657335, 5.847258E-05, 0.004255374, 0.01068746, -0.008752605, 0.0018743909, 0.012844562, -0.022982942, -0.010092623, 0.026669625, -0.016354755, 0.022211613, -0.0020002217, -0.012197431, -0.051953476, -0.0020280026, -0.00061240455, -0.011426104, -0.009334369, -0.021087306, 0.00090124377, -0.0041605923, 0.018904058, 0.011131953, 0.007471417, -0.027506318, 0.013413252, -0.033938404, 0.013171395, 0.024159541, 0.023466654, 0.018185023, -0.0034905833, -0.007321073, -0.008883338, -0.02059052, 0.0011381981, -0.0103606265, -0.02367583, 0.010406383, -0.07854466, 0.02227698, 0.037023716, -0.009752716, 0.0075563937, 0.0043501556, -0.0006867592, 0.0058045653, 0.019191671, -0.029101267, -0.012805342, 0.0013465546, 0.0053698765, -0.023048308, -0.0123673845, -0.010890096, 0.01469444, 0.0048371376, 0.04337736, 0.001584326, -0.01090317, 0.0045920126, -0.013478619, 0.0024332765, -0.026120543, 0.023701975, -0.027401732, 0.02149258, 0.0008530358, -0.026395084, -3.0308713E-05, 0.0019953193, -0.004889431, 0.04727322, -0.0044057174, -0.030931534, 0.013204079, 0.010242966, 0.022656107, -0.03676225, -0.03286639, -0.036709953, 0.006830823, -0.0126223145, -0.022643033, 0.0011153198, 0.01715223, 0.000529879, 0.012504655, 0.0033925332, 0.038383342, 0.016943056, -0.0066935527, -0.016655441, 0.0048730895, -0.028029252, -0.001147186, -0.0027535735, 0.005820907, -0.009733106, 0.05326081, 0.018028144, 0.014446046, -0.010216819, 0.02504853, -0.005075726, -0.010282186, 0.0093735885, 0.00758254, 0.02414647, -0.028709067, 0.007857081, 0.026617331, 0.01860337, -0.002487204, -0.026146691, -0.009255929, -0.003742245, -0.004984213, 0.039690677, 0.004758698, -0.0042782524, -0.038827837, 0.011975184, -0.00355595, 0.0209435, -0.014328387, 0.010674386, -0.015034347, 0.019583872, -0.02457789, -0.008458454, -0.01938777, -0.0056901737, 0.012445825, 0.015217374, 0.0010728315, 0.008177377, 0.0024414472, 0.017282963, -0.004471084, 0.021296479, -0.028761359, -0.001380055, 0.0018825617, 0.013504766, 0.003957955, -0.031088416, -0.012936075, 0.0024087639, 0.008491138, -0.018001996, -0.0059516407, -0.0017763408, -0.014511413, 0.009242855, -0.0010695631, -0.022721475, -0.0056869052, 0.024198763, 0.019623091, 0.0144199, 0.01762287, -0.013269446, 0.010282186, -0.0046475744, 0.018041216, -0.008027034, 0.0067850663, 0.02062974, 0.03691913, -0.015348108, 0.009844229, -0.009334369, -0.034696657, 0.0074256603, 0.0012811879, 0.03864481, 0.003957955, 0.06520984, -0.0001765923, -0.009595836, 0.013269446, -0.0036899517, 0.0101187695, 0.01035409, 0.010073013, -0.020512078, -0.034330606, 0.017439842, 0.009824619, -0.010157989, 0.0033467764, -0.04123333, -0.00067858835, 0.016982276, 0.0011324786, -0.021270333, 0.0028728677, 0.036213167, -0.0284476, 0.00524568, -0.004225959, -0.009661202, -0.0077590304, 0.023741195, -0.0007263878, 0.0043664975, -0.015661867, 0.019322405, -0.010216819, -0.012001331, -0.010948927, -0.0038599053, -0.0029611127, -0.016276315, 0.0054940735, -0.014315313, 0.011203857, 0.011988258, 0.029571908, 0.0138708195, -0.012230115, 0.025963664, -0.012249725, -0.001234614, -0.0037945386, 0.012543875]
+ },
+ {
+ "Id": 69,
+ "Type": "Navigation",
+ "Brand": "Gravitator",
+ "Name": "Expedition 200 GPS Navigator",
+ "Description": "Navigate with confidence using the Gravitator Expedition 200 GPS Navigator. This rugged and reliable navigator features a built-in GPS antenna for accurate positioning, preloaded maps, and a user-friendly interface with intuitive controls. The black color with the Gravitator logo complements the sleek design. With its long battery life and durable construction, this navigator is your ultimate outdoor companion.",
+ "Price": 299.00,
+ "Embedding": [0.0050927037, 0.010533102, -0.01347828, 0.0012407926, -0.007806085, 0.010662635, -0.028115543, -0.019852681, -0.0058971737, -0.005177923, 0.005474486, 0.017125664, -0.026206631, 0.002476472, 0.005072251, 0.018980036, 0.01885732, -0.00045847968, -0.011685266, -0.012039779, -0.005044981, 0.0006118744, 0.025920294, -0.020139018, 0.00016788197, 0.004820002, 0.01805285, -0.021229824, 0.024529515, 0.00366102, 0.019511804, 0.010778533, -0.024720406, -0.028251892, -0.0073697628, 0.011780712, -0.012332933, -0.013710076, 0.0015177552, 0.018284647, 0.015543995, -0.009251405, -0.009667275, 0.014603174, -0.023697775, 0.014207757, -0.011139863, -0.023615964, -0.006677782, -0.0017725609, -0.004837046, 0.019061847, -0.007662917, -0.010942155, 0.018693699, -0.021788863, 0.005709691, -0.005460851, 0.013185126, -0.040250767, -0.010089962, -0.005856268, -0.018148296, 0.020084478, -0.027583774, -0.009142323, -0.01467135, -0.015884873, -0.003943948, -0.003793962, 0.016934773, 0.032042447, 0.027801935, 0.022975115, 0.011283032, -0.008719636, -0.016880233, 0.016716613, -0.0023759133, 0.0059244437, 0.0071311486, -0.017125664, -0.01644391, 0.041914247, 0.014071406, 0.011051235, -0.004697286, 0.007512931, -0.017807418, -0.015012227, 0.0106285475, 0.02193885, 0.0038928164, 0.01469862, -0.0048336373, 0.0045575267, 0.0032332193, 0.022375172, -0.0049631703, -0.023152372, -0.0055903844, 0.007342492, -0.00045379263, -0.004608658, -0.033160523, 0.007274317, 0.01797104, -0.01278289, 0.004837046, -0.004015532, -0.0155712655, 0.028061002, 0.033215065, 0.00025906658, -0.008910527, -0.02698383, 0.004595023, 0.0054165367, 0.0038348672, -0.03130615, 0.020139018, -0.0016481407, 0.03438768, -0.008631008, -0.0117466245, 0.014984957, -0.021761592, 0.010001333, 0.027147451, 0.0025241948, -0.014834971, 0.02287967, -0.00012505928, 0.020629881, -0.028388243, 0.0314425, -0.016907504, 0.016825693, -0.025211269, 0.003020171, 0.01461681, 0.008296948, -0.0052631423, 0.0155849, -0.007983341, 0.011889793, 0.0014896329, 0.0041177953, 0.027924651, -0.0033712743, 0.014862241, -0.0029622219, 0.024270449, 0.007942436, -0.010389933, 0.002401479, -0.010826256, 0.018570984, -0.0060164807, -0.02140708, -0.0120602315, 0.018816415, 0.013321476, 0.0045745703, 0.023084195, 0.033215065, -0.012435196, -0.028251892, -0.0121624945, -0.004012123, -0.006633468, 0.019375453, 0.0002007979, 0.007601559, 0.02615209, 0.018134661, 0.017657433, 0.017371096, -0.014971321, 0.017098395, -0.009183229, 0.01101033, -0.008699183, -0.018161932, -0.015134943, -0.037796453, 0.020193558, 0.012687445, 0.018707335, -0.03277874, 0.0060607945, 0.0066164243, 0.0050961124, 0.021148015, -0.64750284, -0.019620884, 0.008712818, -0.04079617, 0.0197436, 0.0037905532, 0.018189201, 0.02712018, -0.0076424642, 0.009864983, -0.015107673, 0.007915166, -0.01236702, -0.029015457, -0.024638595, -0.0052597336, 0.010669453, -0.015407644, 0.026697494, 0.002210588, -0.020534435, 0.008740089, -0.02110711, 0.010369481, 0.00072734646, 0.023179641, -0.0019055029, -0.03108799, -0.0311698, 0.0239023, -0.007846991, 0.03782372, -0.008842352, 0.0049495352, 0.040114414, -0.056885567, -0.017507447, 0.047341008, -0.00075546885, 0.03452403, -0.032069717, -0.016239384, 0.0012501667, -0.012503372, -0.008310583, 0.0009263335, 0.022456983, -0.01186934, 0.0005036459, -0.03307871, 0.028442783, 0.013744164, 0.0038757725, 0.032042447, -0.008719636, -0.015230388, 0.039896253, 0.023465978, -0.010839892, -0.01098306, 0.006981163, 0.011269396, -0.0045268475, -0.010239948, -0.04273235, 0.029642671, -0.049549893, 0.011555733, -0.0017504038, -0.016798424, 0.03640567, 0.026833843, 0.016812058, 0.01705749, 0.0308971, 0.022784224, 0.013382834, -0.0013183422, -0.014044136, 0.013819157, 0.024693135, -0.028333703, -0.027774666, -0.0038757725, 0.029179078, -0.0131783085, -0.013430557, -0.003153113, 0.016048493, 0.0032553761, -0.010989877, 0.005893765, -0.005293821, -0.010512649, -0.0022787633, -0.01028767, -0.021666147, 0.0069368486, 0.020070843, -0.018380092, -0.011944333, 0.013757799, 0.021011664, -0.010130867, 0.0042916425, 0.024365894, 0.0014137877, 0.014494094, 0.0021765002, -0.03621478, -0.02105257, -0.006497117, -0.024693135, -0.0026861115, -0.012578364, -0.028988188, 0.0021509344, -0.00773791, 0.008201502, -0.027161086, 0.044941235, -0.0205208, 0.0024560194, -0.00859692, -0.017016584, 0.0005769345, 0.0036064796, -0.025893023, -0.030215345, 0.013260119, 0.0017427341, 0.011835252, 0.006759593, 0.027270166, -0.0021424126, 0.036487482, 0.003974627, -0.016130304, 0.010744446, -0.008440116, -0.027829206, 0.012707897, -0.001941295, -0.012626087, -0.004649563, -0.018366458, 0.0005701169, -0.004073481, -0.019157292, -0.019511804, 0.00061315263, -0.012360203, -0.009687726, 0.010335393, 0.031687934, -0.015653076, -0.00693344, -0.010635365, 0.013246483, -0.01239429, 0.048377275, 0.008685548, -0.0120056905, -0.004775688, 0.009755902, -0.018734604, -0.018584618, 0.03926904, -0.0044314023, -0.03449676, 0.003974627, 0.008944615, -0.015939413, 0.02293421, -0.0015186074, 0.0029298386, -0.008794629, -0.027433788, 0.010587642, -0.009258222, 0.009537741, 0.012428379, -0.031142531, 0.0023554605, 0.01966179, 0.003988262, 0.0029076815, 0.01467135, -0.022566063, 0.013341929, -0.014030501, -0.0017589257, -0.003599662, 0.0012714715, -0.017384732, 0.006636877, -0.0006186919, 0.005150653, 0.013716894, 0.021202555, 0.010069509, -0.017548352, 0.019198198, -0.02118892, 0.02282513, 0.0011265988, -0.0040564374, -0.022225186, 0.0015330947, 0.0120056905, -0.008112875, -0.030242614, -0.0042711897, -0.018011944, 0.020725327, 0.0030491455, 0.002007766, 0.019239103, 0.0018765284, -0.009285492, 0.017316556, 0.02212974, 0.0067152786, -0.0163621, -0.02132527, 0.014848606, -0.007799268, 0.007962889, 0.005754005, -0.031906094, 0.032396957, 0.014194122, -0.0017103507, 0.015012227, 0.03433314, 0.019170927, -0.010669453, -0.0016711499, 0.03378774, 0.0036064796, 0.025811212, -0.006974345, 0.026779303, -0.009230952, -0.011071688, 0.018707335, 0.025933929, 0.011242126, 0.009837713, 0.018789144, -0.010096779, 0.0024560194, -0.0018271012, 0.00016457972, -0.0036235235, -0.014712255, 0.030378966, -0.0020912809, 0.028279163, 0.044832155, 0.010635365, 0.012898789, -0.00737658, 0.007662917, 0.010001333, -0.020848043, -0.0057778666, -0.026220266, 0.0046325196, 0.010369481, 0.028688215, -0.040496197, 0.020711692, 0.001724838, 0.0045166216, -0.013205579, 0.001821988, -0.010328576, 0.0058971737, -0.00044228803, 0.015953047, -0.024052287, 0.024802217, 0.013055593, 0.0009263335, -0.012796526, -0.017643798, 0.0062823645, 0.0038110057, 0.02357506, -0.031851556, 0.01866643, -0.013989596, -0.020984393, 0.011937516, -0.012244305, 0.024352258, 0.001896981, 0.021897944, -0.011821617, -0.002254902, -0.018652795, -0.0072265943, -0.025756672, 0.036951076, -0.00278667, -0.0011802869, -0.03286055, 0.031715203, 0.009142323, -0.014794066, 0.0053892666, 0.023479614, -0.03913269, -0.02360233, 0.0005726735, -0.010744446, -0.012994234, 0.029642671, 0.00937412, -0.0128919715, -0.008194685, 0.003386614, -0.008446935, 0.058085456, 0.004093934, -0.0012535754, 0.022743318, -0.001401857, -0.015803061, -0.01877551, -0.009190046, 0.012442013, 0.014357743, 0.01542128, 0.017371096, -0.00033192907, -0.05017711, 0.0045609353, 0.0076083764, 0.0131783085, -0.02110711, 0.004087116, -0.0008066004, 0.009674092, 0.0055699316, 0.012176129, -0.0031156165, 0.012564729, -0.00037517783, 0.012796526, 0.022252455, 0.011351207, -0.01555763, -8.926719E-05, -0.019034576, 0.009755902, -0.004816593, -0.013376017, -0.004523439, -0.009517288, 0.0038791813, -0.004329139, 0.011623909, 0.0197436, 0.0017086464, 0.01231248, -0.023438709, 0.0035451218, 0.011610273, -0.009183229, 0.010280853, -0.014507729, -0.017739244, 0.0062414594, -0.004622293, 0.009912706, -0.015898507, -0.020752598, 0.008787811, -0.0032127665, -0.005842633, -0.0042711897, -0.028770026, 0.0057915016, -0.018898226, 0.0386691, 0.0031019815, -0.0039644004, -0.014875876, -0.04562299, 0.0010141094, -0.034060437, 2.0931984E-05, -0.009387755, -0.02293421, 0.0034155883, 0.0036098883, 0.018230107, 0.016839327, 0.009626369, -0.00048319326, -0.0075742886, 0.019429995, 0.032506038, 0.0047995495, 0.0005824737, -0.018761875, 7.9626756E-05, 0.0144531885, -0.00029549783, 0.002917908, 0.0038178232, -0.036596563, 0.013314659, -0.006251686, 0.021011664, -0.0026025965, 0.000526229, 0.011269396, 0.01278289, 0.013539637, 0.014916781, 0.014494094, 0.0006327531, -0.019266373, -0.0037223778, 0.014425918, 0.041968785, 0.01689387, 0.01153528, 0.010642183, 0.005235872, -0.008665095, -0.020602612, -0.030160805, -0.014916781, -0.014030501, -0.007410668, 0.014875876, 0.028906377, 0.022225186, -0.00068558904, -0.01109214, -0.048459087, -0.01638937, 0.023247818, 0.027215626, 0.013232849, 0.019470898, -0.019361818, 0.009551376, -0.017848324, 0.0075061135, -0.0008760541, 0.012666993, 0.009053695, -0.0076356465, -0.0023452344, -0.026915655, -0.031578854, 0.008699183, -0.0021168466, -0.012639723, -0.022497887, 0.005280186, 0.020234464, -0.0018594845, -0.011337572, -0.01386688, -0.019811776, -0.003289464, -0.01722111, 0.015871238, 0.0035348954, -0.005699465, -0.02537489, -0.028579134, -0.010683088, -0.03755102, -0.008971885, 0.02462496, 0.040223498, 0.019675426, -0.00862419, 0.009565011, 0.019852681, 0.0070697907, 0.002706564, 0.0056108367, -0.013730529, -0.0110444175, -0.016716613, 0.019061847, 0.0076970044, -0.0037632831, -0.008999155, -0.00978999, -0.028797297, -0.0068823085, -0.010117232, -0.0069573014, 0.005191558, -0.05590384, 0.019948127, -0.0071584187, -0.00942866, 0.005440398, -0.028115543, -0.0062994086, 0.028115543, 0.025497606, -0.0048847687, 0.007390215, 0.022525158, -0.022225186, 0.027706489, 0.016798424, -0.0023639826, 0.004615476, 0.00942866, -0.0355603, -0.0032178797, 0.0071584187, -0.015680347, 0.00047680183, -0.003899634, -0.0011623908, -0.013069227, -0.008971885, 0.007301587, -0.0031275472, -3.198386E-05, -0.010935337, -0.019729966, -0.026888385, -0.013798704, -0.02457042, 0.011358025, 0.004942718, -0.0007512079, 0.011276214, -0.021393446, -0.01542128, 0.0070561557, -0.005454033, 0.025743037, -0.008065152, 0.017671067, 0.021788863, -0.010942155, -0.026083915, -0.020125384, -0.0066880086, 0.015639441, 0.00732204, 0.012176129, -0.015353104, -0.038150962, 0.020016303, 0.010642183, -0.0009800217, -0.019198198, 0.014357743, -0.0044791247, 0.017207475, -0.019130021, -0.016675707, -0.016593896, 0.02110711, 0.0031599307, 0.015353104, -0.0052222367, 0.009346849, -0.040332578, 0.028142812, -0.0081060575, 0.004595023, 0.01192388, -0.018039215, 0.0037496479, 0.003330369, 0.013048775, 0.014425918, 0.02451588, 0.0083378535, 0.016839327, 0.015025862, 0.020916218, 0.016921138, 0.0014734413, 0.0121624945, 0.026302075, 0.02196612, -0.006783454, -0.02950632, 0.031551585, -0.0025105597, 0.020779867, -0.0038723636, -0.031606123, -0.00091695937, 0.010601277, -0.015230388, 0.00637781, -0.006912987, -0.025879389, -0.01727565, -0.0013762913, -0.017207475, -0.033815008, 0.01400323, -0.007819721, -0.02307056, -0.030406237, -0.00083387055, 0.0064664385, 0.015175848, 0.0064153066, -0.007383398, 0.0013098202, -0.0022872852, -0.027651949, 0.0051745144, 0.050967943, 0.01622575, -0.005147244, 0.020043572, 0.010826256, -0.01971633, -0.0044450373, -0.007260682, -0.015993953, -0.039678093, 0.0029400648, 0.012844249, 0.036923807, 0.01783469, -0.009094601, 0.0057778666, 0.023984112, -0.0015279815, -0.02923362, -0.0054097194, 0.01345101, 0.010192225, 0.024556786, -0.0042916425, 0.009005972, -0.019375453, 0.0009220725, 0.0231251, -0.017548352, -0.018475538, -0.02354779, 0.006173284, 0.011801165, -0.040468927, -0.01700295, 0.0007345901, 0.0005010893, 0.023234183, -0.01195115, 0.027092911, 0.031687934, -0.004509804, 0.007383398, 0.0069538928, -0.01855735, -0.018489173, -0.01542128, -0.0246795, -0.017452907, 0.011412565, 0.0152849285, 0.03411498, 0.00020644368, -0.036432944, -0.009183229, -0.019648155, -0.044613995, -0.017016584, -0.016566627, 0.0053313174, 0.02717472, 0.018093755, -0.010335393, 0.015094037, -0.005754005, 0.0071311486, 0.02110711, -0.012435196, -0.009142323, -0.009115053, -0.0026332755, -0.033624116, -0.022525158, -0.021488892, 0.008842352, -0.0005364553, 0.008031064, 0.0072947694, -0.011385295, -0.0071925065, 0.0032536718, -0.0035314865, 0.055194817, 0.024911297, 0.015653076, -0.022088835, -0.020561706, -0.012857883, 0.014207757, -0.003599662, 0.0028752983, 0.01239429, -0.006786863, 0.010580825, -0.011985239, -0.03264239, -0.014916781, 0.012496554, -0.0065959715, -0.009619552, 0.0058699036, 0.020588975, 0.022756955, -0.027420152, -0.010253583, 0.010723993, -0.004697286, 0.0021696826, -0.0052495073, -0.03269693, -0.002923021, -0.011576186, 0.009946793, -0.009544559, -0.01553036, -0.02293421, 0.0071311486, -0.023084195, 0.01275562, 0.025211269, 0.0025889615, -0.025061283, 0.01555763, -0.0020094705, 0.0023333037, -0.006115335, 0.011583003, -0.021829769, 0.0062107807, 0.0006417011, 0.015803061, -0.025279446, 0.008426482, 0.014916781, 0.019170927, 0.022306997, 0.19852681, 0.007833355, -0.009721815, 0.018570984, -0.0007733649, 0.03907815, 0.0022497887, 0.009108236, 0.004295051, -0.013103316, 0.0027713308, 0.011603456, -0.0293427, -0.012748803, 0.009278675, -0.017439272, -0.043114133, -0.037196506, -0.014834971, -0.008801446, 0.016143939, 0.00776518, 0.023179641, -0.030160805, 0.01711203, -0.020098113, 7.201028E-05, 0.0050790687, 0.0022583108, 0.015939413, -0.005447216, -0.048404545, 0.020834407, 0.009728632, -0.005754005, 0.0155849, 0.013164673, 0.012632905, -0.0056449245, 0.017371096, -0.0039916704, 0.000119413504, -0.003943948, -0.029151808, 0.014316837, 0.019798141, 0.00084580126, 0.00779245, -0.0005552035, -0.002556578, -0.022347901, -0.024747677, 0.008719636, 0.009646822, -0.029588131, -0.00081597455, 0.006633468, -0.03577846, 0.017180204, -0.011153499, -0.0277883, 0.01339647, -0.012407926, 0.030406237, 0.00031978532, 0.030406237, 0.0016225749, -0.0031684525, 0.010751263, -0.0051540616, 0.005580158, -0.008508292, 0.005327909, 0.016771153, -0.0064016716, -0.01866643, 0.010655818, -0.014262297, 0.01872097, 0.0026997465, 0.028579134, 0.013369199, -0.0035792093, -0.0371147, -0.010110415, -0.027474694, -0.0066436944, 0.0042507374, -0.007881078, 0.0058051366, 0.0039609917, -0.019130021, -0.022538792, -0.013001052, -0.007690187, 0.031906094, -0.023002386, 0.028251892, -0.021761592, 0.004121204, 0.0038007796, 0.033951357, 0.00068686734, -0.015871238, -0.022552429, 0.01233975, 0.004421176, 0.012489736, -0.0045575267, -0.011098958, 0.0075606536, -0.012039779, 0.017357461, -0.012803343, -0.017357461, 0.038723636, -0.004612067, 0.0021747958, 0.020602612, -0.019852681, 0.028879106, -0.041723356, 0.012544277, 0.023411438, -0.009626369, -0.0085219275, -0.0054369895, 0.013069227, 0.0012007395, -0.023875032, -0.008433299, -0.011364842, 0.034987625, -0.041014332, 0.013785069, -0.013669171, -0.004387088, -0.016784787, -0.047640983, -0.005876721, 0.015407644, 0.0082083205, 0.029669942, 0.008665095, 0.013246483, -0.0074447556, 0.022361537, -0.0013430557, -0.004032576, -0.011971603, 0.01308968, -0.01689387, 0.022893306, 0.014916781, 0.018093755, -0.0071720537, -0.04614112, -0.046550173, 0.019089118, -0.027161086, -0.016034858, 0.008228773, 0.034578573, -0.03258785, -0.017466541, 0.021693418, -0.17431091, 0.019825412, 0.0043700445, -0.019948127, 0.007001615, -0.01139893, 0.03566938, 0.01319876, -0.011153499, 0.0010405272, 0.018843684, -0.001799831, -0.04739555, -0.018570984, 0.013819157, 0.017630164, -0.02776103, -0.009087783, 0.010403569, 0.0071311486, 0.007887896, 0.011917063, 0.009026425, -0.008753723, -0.003940539, -0.012489736, -0.026820209, 0.013301024, -0.007744727, -0.0040973425, 0.012626087, -0.028388243, 0.039896253, 0.008276496, 0.011555733, -0.013675989, -0.011214856, 0.007410668, -0.02776103, 0.014085041, -0.012592, -0.003988262, 0.01724838, 0.00657211, 0.015025862, 0.009967246, -0.0076220115, 0.0065755188, 0.0034854682, -0.038287316, 0.028551865, -0.01966179, -0.011419382, -0.0034121796, 0.029151808, 0.0026349798, -0.0040632547, -0.005341544, 0.031769745, -0.024924932, -0.020698057, -0.016730247, -0.005621063, -0.02290694, -0.0012067049, -0.023138737, -0.0029417693, 0.022511523, 0.0049733967, 0.006067612, -0.022634238, 0.014971321, 0.007035703, -0.007717457, 0.013607813, 0.019879952, -0.0022651283, 0.012578364, 0.014684984, -0.004342774, -0.015203118, 0.012680627, -0.019484535, -0.014766796, -0.0023997747, -0.02135254, -0.00067195395, 0.0016967157, -0.0005513687, -0.0003881738, 0.028770026, -0.030733477, -0.0035758007, -0.007806085, 0.0155849, 0.014235027, 0.024243178, -0.008024246, 0.005648333, -0.011957969, 0.011289849, -0.012101136, -0.0025685087, 0.0035758007, 0.04575934, 0.00049384567, 0.020398084, 0.009933158, 0.04897722, -0.0035826182, -0.019061847, 0.010546737, 0.0014964504, 0.01059446, -0.0005905696, 0.00051174173, -0.007465208, -0.0065414314, 0.011576186, 0.01893913, 0.0071516014, -0.02684748, -0.025797578, 0.012380656, -0.0043768617, -0.0084673865, -0.104826525, -0.02049353, 0.035696648, 0.00346672, 0.0033116208, 0.009060513, 0.004550709, 0.0026452062, -0.009190046, 0.030406237, -0.0018850503, -0.0135941785, 0.015148577, 0.0071584187, 0.032506038, 0.004649563, 0.02271605, -0.0262339, -0.0016524016, 0.004540483, -0.012455649, -0.004407541, -0.009694545, 0.00049682835, -0.009496836, 0.007287952, -0.018175567, -0.0032315147, 0.0296154, 0.007587924, -0.009578646, 0.001158982, 0.02116165, -0.021475255, -0.04295051, -0.005143835, -0.032315146, 0.00045166214, 0.014712255, -0.03588754, 0.017302921, 0.0027662176, -0.007806085, -0.018543713, -0.030406237, -0.00021081117, 0.0043632267, 0.019048212, 0.00018737587, -0.015407644, -0.045241207, -0.01700295, -0.01478043, -0.007342492, -0.014521364, -0.012380656, -0.0011291554, 0.0043052775, 0.009933158, -0.0022889897, -0.037387397, 0.0014453188, 0.005327909, 0.01872097, -0.019075481, 0.0128919715, -0.014862241, 0.006633468, 0.01111941, -0.00016894721, -0.011392112, 0.01805285, -0.016784787, 0.017289286, -0.030406237, 0.013280571, -0.02945178, 0.009599099, 0.023056926, 0.0019140248, -0.027815571, -0.019061847, 0.015803061, -0.00030700242, 0.017480178, 0.022143375, -0.00094167294, 0.0022804677, 0.01195115, -0.018325552, 0.02124346, 0.008549198, 0.0038485022, -0.01561217, -0.02127073, 0.0091968635, 0.0067459573, -0.006994798, -0.01638937, -0.020316275, -0.0032229929, 0.012585182, -0.07799268, 0.014575904, 0.008917345, -0.0071720537, -0.009135506, -0.017643798, -0.0018952766, -0.030815288, 0.021775229, -0.029997183, -4.3062362E-05, -0.010171772, -0.00048532375, -0.015912142, 0.004905221, -0.0026775894, 0.017766513, 0.016552992, 0.010492196, 0.020302638, -0.024706772, 0.016130304, 0.006902761, 0.013226031, -0.026615683, -0.0062005543, -0.01233975, -0.014657714, 0.013096497, -0.013621449, -0.006780045, 0.011269396, 0.0048609073, 0.01850281, -0.023615964, -0.025034012, 0.016471181, 0.0130215045, 0.00732204, 0.00732204, 0.013157856, -0.004554118, 0.03084256, -0.025579417, -0.009530923, -0.003122434, 0.010962607, 0.011685266, 0.015693981, 0.030269885, 0.0019429994, 0.0103422105, 0.016812058, -0.0110444175, -0.024011381, -0.02196612, 0.0017077941, 0.0035008076, -0.0016864893, -0.009155959, 0.04914084, 0.025852118, 0.021693418, -0.0036201146, 0.013819157, -0.0029571087, -0.044014048, -0.0011879567, 0.027651949, -0.004315504, 0.0016302447, -0.008876439, 0.022088835, -0.02301602, 0.010001333, -0.028988188, 0.011583003, 0.0028821158, -0.0058971737, 0.026656589, 0.005955123, 0.011548916, -0.039459933, -0.002945178, 0.015748521, 0.014875876, -0.03768737, -0.013376017, 0.0018645977, 0.009333215, -0.011944333, 0.007362945, -0.0043530003, -0.012557912, -0.0034769464, 0.014889511, -0.0053347265, 0.010812622, 0.006169875, 0.03466038, -0.012939694, 0.0060267067, -0.0053926753, -0.014821336, 0.02049353, 0.021952484, -0.021597972, -0.016430276, -0.017916499, -0.0019106161, 0.0027798526, 0.006452803, -0.004018941, 0.0045438916, -0.013873697, -0.00640508, -0.020629881, -0.019989032, -0.028988188, 0.008542379, 0.028033732, 0.008890075, 0.004220058, -0.021843404, 0.033051442, -0.027747395, 0.004284825, -0.007976524, -0.00018737587, -0.005341544, 0.025279446, -0.0041825618, 0.0340059, 0.004462081, -0.014794066, 0.022034295, 0.00041672224, 0.0010175181, -0.02612482, 0.08644643, -0.0014274227, -0.009987699, 0.026697494, -0.027870111, -0.0034701286, 0.0110444175, 0.011433017, -0.04095979, -0.03744194, 0.004356409, 0.0043768617, 0.01392142, 0.003258785, -0.008610555, 0.007097061, 0.0019651563, 0.0355603, -0.04395951, 0.011726172, 0.03307871, -0.02451588, 0.005668786, -0.010683088, -0.011712536, -0.0074311206, 0.018161932, 0.01855735, 0.002931543, -0.035505757, 0.013232849, -0.002007766, -0.033705927, -0.0033269604, -0.023970477, -0.029588131, -0.012885154, -0.02032991, 0.009319579, 0.033924088, 0.022007024, 0.014316837, 0.0017759696, -0.02271605, 0.013573726, -0.009326397, -0.02722926, -0.006173284, -0.0029911965]
+ },
+ {
+ "Id": 70,
+ "Type": "Trekking",
+ "Brand": "WildRunner",
+ "Name": "GripTrek Hiking Poles",
+ "Description": "The GripTrek hiking poles by WildRunner are a must-have for adventurers. With their durable aluminum construction and anti-slip handles, these poles provide stability and support on any terrain. Available in sleek yellow, these hiking poles are perfect for tackling steep inclines and rough trails.",
+ "Price": 79.99,
+ "Embedding": [-0.00313332, -0.021415962, -0.0018747203, -0.025316961, -0.0047115115, 0.031840593, -0.018173914, -0.017053695, 0.034318253, -0.02743879, -0.014088408, -0.00047073932, 0.0104114525, -0.0021646596, -0.007327554, -0.015748968, 0.025000663, 0.0035682286, -0.010740928, -0.0071891737, -0.007294606, 0.019821296, 0.00017997644, 0.00071949395, 0.0054495386, -0.023458716, 0.037244003, -0.008454363, 0.030021884, -0.013521709, 0.019834476, -0.01754132, 0.004049264, -0.027676012, -8.308981E-05, -0.0067542647, 0.01406205, 0.006853108, -0.0011638751, 0.00709692, 0.010266483, 0.0059338687, -0.01518227, -0.014602391, 0.00222726, 0.02048025, 0.01225652, 0.004527005, -0.013811648, 0.013436045, -0.014523317, 0.005726299, 0.004013022, -0.007011256, 0.002848323, -0.011808432, 0.017159127, 0.016500175, 0.008704765, -0.0076240823, -0.02115238, 0.010253304, -0.026832553, 0.0039833686, -0.0023936455, -0.017369993, -0.010431221, -0.021205097, -0.0013936849, 0.0183716, 0.009343949, 0.003362306, 0.017488604, 0.011630515, 0.0037922726, -0.027359715, -0.010609138, 0.011946812, -0.0036934298, 0.0236564, 0.007874484, -0.01990037, -0.024882052, 0.022325316, 0.0027297114, -0.008790429, 0.009594351, -0.00045179442, -0.024552576, -0.026951164, -0.0091858, 0.0019439104, 0.007116689, 0.018397959, -0.008704765, -0.009231927, -0.008968346, 0.006991488, -0.019702684, -0.005011335, -0.0013887427, 0.01518227, 0.00023125121, -0.0063292403, -0.03898364, 0.004230476, 0.007294606, 0.00072608347, 0.01072116, -0.018490212, -0.030549046, 0.00295705, 0.011920454, -0.010477347, -0.012170856, -0.0148132555, -0.0027231218, 0.014325631, 0.025554184, -0.020915158, 0.03547801, -0.0074988813, 0.01615752, -0.0064149043, -0.0059141, 0.03761302, -0.0347927, 0.010905666, 0.026832553, -0.010595959, 0.010872719, 0.00045302996, 0.031076208, -0.022588897, -0.012098371, 0.02936293, 0.0036440082, -0.009139674, -0.025527826, 0.00039228276, 0.011050636, 0.0010946852, 0.0071035097, -0.003396901, 0.010306019, 0.0211392, 0.0100622075, -0.00085252, 0.013943438, -0.024183562, 0.013930259, -0.008797018, 0.017567677, 0.023023807, 0.00012231809, -0.008441184, -0.004609374, 0.015617178, -0.042963713, -0.02171908, 0.0014505195, -0.021402782, -0.0034133748, 0.004480878, 0.0039833686, 0.02282612, -0.003426554, 0.01406205, 0.0053638746, 0.0017313982, 0.022575717, -0.00035418707, 0.00039290052, 0.024302173, -0.0060590697, 0.010220356, -0.00274948, 0.015959833, -0.015709432, 0.018015767, 0.0042897817, 0.010306019, 0.0029965872, 0.012006118, -0.011821611, -0.022931553, 0.013903901, 0.015116374, 0.013185643, -0.029099349, -0.0009818395, -0.005558266, -0.006388546, 0.008843144, -0.66085047, -0.012955009, -0.003897705, -0.030522687, 0.03218325, 0.015353597, 0.021534573, 0.02799231, -0.029758302, 0.0031876834, 0.0076240823, 0.02521153, 0.013521709, -0.014075229, -0.0023162186, -0.011076994, 0.020849261, -0.020071698, 0.013403097, 0.0028845654, -0.036400545, 0.028993918, -0.01531406, -0.016684681, 0.008421415, 0.009495508, -0.0072682477, -0.024341712, -0.03690135, 0.03853555, -0.02381455, 0.036532335, 0.0011366933, 0.01029943, 0.056564495, -0.035530727, -0.01085954, 0.057407957, 0.019689506, 0.0481299, -0.023695938, -0.014773719, -0.014101587, -0.014589212, 0.007736104, 0.0043490874, 0.022351675, -0.009357128, 0.019623611, -0.009673425, 0.011393292, 0.008665227, 0.005861384, -0.01614434, 0.015485387, 0.0064939787, 0.022944732, 0.009416434, 0.0105696, 0.02256254, -0.01796305, 0.002512257, 0.0041514016, -0.026806194, -0.033527512, 0.014523317, -0.045704957, -0.009396665, 0.018595643, -0.013996155, 0.010826592, 0.023893625, -0.012487153, -0.004612669, -0.005805373, 0.015366776, -0.0061875656, -0.016394742, 0.014325631, 0.0132581275, 0.008368699, 0.025975915, 0.0017692879, -0.0076899775, 0.040696915, -0.0061414386, -0.00068242784, 0.014721002, 0.034898132, 0.015696252, 0.013930259, 0.0328422, -0.0044083935, -0.0077097462, -0.014681465, 0.020941516, -0.011946812, 0.0040163165, 2.0386347E-05, -0.009726142, -0.019992623, -0.015432672, 0.0010691507, 0.0032782895, -0.0038944103, 0.020493427, 0.010180819, 0.012862756, 0.0075252396, 0.0046983324, -0.0076043135, -0.019676326, -0.020256205, -0.015551283, -0.000663483, -0.02199584, 0.0045171203, 0.00046044317, 0.008836555, -0.040617842, 0.04538866, 0.0007590311, -3.0785446E-05, 0.00570653, -0.0105827795, 0.001968621, 0.0091989795, -0.008757481, -0.007900842, -0.0130011365, -0.015300881, 0.0057427725, 0.02129735, -0.0030707193, 0.0025913313, 0.023537789, -0.0007738575, 0.009021062, 0.03186695, -0.023300566, -0.022892015, -0.02381455, -0.00018049125, -0.037481226, -0.001968621, -0.06821478, -0.026713941, -0.011175837, -0.007070562, -0.032104176, 0.0029455184, -0.0041645807, 0.0030707193, 0.009759089, 0.005307864, -0.010108334, 0.004306256, -0.009080368, 0.010371915, -0.01281004, 0.0161707, 0.0012701312, -0.009969953, 0.0043227295, -0.018766971, 0.0028565598, 0.024750262, 0.031656086, -0.008243497, -0.041856673, -0.013653499, -0.008803608, -0.022944732, 0.0049322606, -0.0068135704, 0.021165559, -0.013291075, -0.020901978, -0.012216982, 0.004896018, -0.012216982, -0.015999371, -0.03658505, -0.0022173757, 0.02480298, 0.0016885662, -0.0016136103, 0.031946026, -0.0069321822, 0.01588076, -0.01851657, 0.025040202, -0.0028944495, 0.0060920175, -0.029310215, -0.0030278875, -0.016473817, 0.014312452, -0.0005605216, 0.024486681, 0.0069848984, -0.025857303, 0.025277425, -0.035029925, 0.041092288, -0.00028685032, -0.0072023524, -0.035135355, 0.03589974, 0.0022651497, -0.0051002936, -0.022443928, -0.008118297, -0.004622553, -0.018898763, 0.022443928, -0.0111033525, 0.02659533, -0.0074066278, -0.020836083, 0.017976228, 0.018635182, 0.016447458, -0.020822905, -0.0001345705, 0.014562854, -0.011801843, 0.023550969, 0.0003692194, -0.0024249458, 0.02770237, 0.022549361, 0.0072682477, 0.0161707, 0.00794038, 0.004863071, 0.011452598, -0.03505628, 0.05761882, 0.0045302995, 0.028308606, 0.015353597, 0.0023705822, -0.009712962, 0.01628931, 0.02754422, 0.01627613, -0.006319356, 0.003279937, 0.019320492, -0.003232163, 0.019267775, 0.008322572, -0.00013498233, 0.009937006, -0.009337359, 0.048788857, 0.015498566, 0.028229533, 0.016197056, 0.014141124, 0.013732574, 0.023485074, -0.023155596, 0.010391683, -0.03466091, -0.0065664635, -0.00063053536, -0.007083741, 0.007432986, -0.0020839379, -0.013877543, 0.0019818002, 0.017066874, -0.014075229, 0.012447616, 0.020757008, 0.0054264753, -0.00821714, 0.0077888207, -0.008052401, -0.024328532, 0.012460795, 0.016460638, -0.019109627, -0.017752185, -0.026371285, -0.0055912132, -0.011775484, 0.022061735, -0.010207177, 0.007979916, -0.008105118, 0.01573579, 0.017053695, 0.0005757599, 0.022074914, -0.013548067, 0.041250437, -0.0070178458, -0.017014157, 0.0023277502, -0.035952456, -0.017488604, 0.039326295, 1.6924272E-05, -0.026924806, -0.010820002, 0.009653657, 0.006497273, -0.0011366933, -0.0042700134, 0.014576033, -0.008935398, -0.014022512, -0.008105118, 0.0033804271, -0.012210393, 0.047260083, -0.028624903, -0.017277738, -0.011235143, -0.014180661, -0.0035385757, 0.079390615, -0.0034067852, 0.0023771718, 0.03495085, 0.0037889779, -0.011498724, -0.038166538, -0.022167169, 0.009264874, 3.500686E-05, 0.015432672, -0.011927043, 0.0035879973, -0.02645036, 0.0121379085, 0.018898763, 0.009403255, -0.031577013, 0.007360501, -0.0010024317, 0.015485387, -0.0089419875, 0.009567993, 0.024578935, 0.025092917, 0.02185087, 0.015683074, 0.02659533, 0.0055088443, -0.016052088, -0.020664755, -0.031919666, 0.00039475382, -0.0058086677, -0.022984268, -0.008408236, -0.0011836437, 0.019030552, 0.010147871, 0.004971798, 0.024816157, 0.012322415, 0.0053671696, -0.031919666, -0.006055775, 0.0013969797, 0.00031176698, 0.011254911, 0.0034990388, -0.01490551, 0.016948262, 0.0071759946, -0.003993253, 0.00025719748, 0.014444242, -0.00068695814, 0.0038449888, 0.00072690716, -0.008454363, -0.046258476, -0.0035879973, -0.016776934, 0.01419384, -0.009363717, 0.014233378, -0.026753478, -0.00890904, -0.0036110606, -0.019926729, -0.0071100993, -0.02102059, -0.0051167673, -0.0070771514, -0.018595643, 0.0339756, 0.0018813099, 0.018819688, -0.0017281034, 0.01920188, 0.006375367, 0.012131318, -0.0025073148, 0.0046291426, -0.0001995391, 0.016223414, 0.012368541, 0.0065730526, 0.022602076, 0.0049619135, 0.0047807014, 0.003742851, -0.013851185, 0.0072616586, 0.014786898, -0.020150773, -0.016065266, 0.019847654, 0.017620394, 0.006694959, 0.017501783, 0.0032173365, -0.030997133, -0.002831849, -0.01866154, 0.026608508, 0.008421415, -0.0015510098, -0.008203961, 0.009442791, 0.0014126297, 0.004200823, -0.015630357, 0.02978466, -0.011815021, -0.017225023, 0.027412431, -0.002789017, -0.013159284, 0.006484094, -0.030338181, -0.01531406, -0.044202544, 0.045678597, -0.0012347125, -0.019188702, 0.03326393, 0.016895546, -0.021468678, -0.01406205, -0.010780466, -0.0035023333, 0.024934769, 0.009166031, 0.02506656, -0.0102335345, -0.004550068, -0.03452912, -0.01016105, -0.0043424983, 0.013040673, -0.007182584, -0.015577641, 0.013534888, 0.03761302, -0.026120884, -0.018608823, -0.015999371, 0.025303783, -0.012236751, 0.02228578, -0.027623296, -0.013982976, -0.0037066087, -0.00035665813, -0.008882682, -0.01825299, 0.011808432, 0.0056999405, 0.024947949, 0.021653185, 0.0003119729, -0.010101744, 0.021969482, 0.021600468, 0.0038252203, 0.0065961163, -0.031155283, -0.01559082, -0.061150808, 0.021692721, 0.007973327, 0.0016490291, 0.0018104725, 0.011333986, -0.003950421, -0.00536058, -0.016197056, -0.028361322, 0.0018434201, -0.04578403, -0.015775327, -0.009429612, 0.009653657, 0.007129868, -0.030390898, -0.01559082, 0.034555476, 0.018872404, -0.018911941, -0.0032305154, 0.030654479, -0.025040202, 0.02019031, 0.0008994704, 0.005683467, 0.0068003917, -0.00028870362, -0.028176816, 0.0026209843, 0.009706372, -0.011927043, -0.0070507936, 0.0062897033, -0.016394742, -0.015379955, 0.020836083, -0.023221493, -0.01002267, -0.011571209, -0.020651577, 0.0070178458, -0.01740953, 0.0038878208, -0.006177681, -0.009126495, 0.015379955, -0.005110178, 0.006698254, -0.019135986, -0.0169878, 0.004230476, -0.011011099, 0.023788191, -0.0038351044, 0.0040855063, 0.021310529, -0.017027337, -0.018925121, 0.004388625, 0.0042963712, -0.00577572, -0.0025501468, -0.0025023727, -0.012585996, -0.030549046, 0.0030888405, 0.0077097462, -0.014417884, -0.022074914, 0.016249772, 0.02228578, 0.042700134, 0.0054594227, -0.0055516763, -0.013666678, 0.017607216, -0.01057619, 0.012546458, -0.00022342613, -0.010095155, -0.017989408, 0.051767323, -0.0328422, 0.009706372, -0.017897155, -0.020414354, 0.0034660911, -0.016908726, 0.0020757008, 0.0070046666, -0.001976858, 0.045046005, 0.011867737, -0.013455814, 0.03355387, -0.015630357, 0.010338968, -0.00028973326, 0.016921904, 0.031946026, -0.003181094, -0.005917395, 0.01573579, 0.007545008, -0.004816944, -0.007696567, -0.01821345, -0.007993096, 0.010497116, 0.0074791126, 0.020137593, -0.0019307313, -0.025910018, -0.013034084, 0.0016729161, 0.010707981, -0.023906803, -0.0236564, 0.0049454398, -0.03218325, -0.021060128, 0.00640502, 0.0021498331, -0.0036967245, 0.016697861, -0.021468678, -0.01114289, 0.029494721, -0.035135355, 0.0026769952, 0.0058943317, 0.0359261, -0.01726456, 0.0075845453, 0.0016029023, -0.023063343, 0.007643851, -0.005759246, -0.03326393, -0.0154194925, 0.0019010784, 0.0015608941, 0.002706648, -0.003996548, -0.0031794466, 0.013719395, 0.030417254, -0.012144498, -0.01238831, 0.0068003917, -0.010945204, 0.0042238864, 0.03036454, -0.022588897, -0.004187644, 0.012724376, -0.004411688, 0.0072353003, -0.0056307507, -0.009680015, -0.0066158846, 0.00060294167, -0.008243497, -0.030285465, 0.020005804, -0.014773719, -0.010925435, 0.009515276, -0.014154303, 0.01267166, 0.024710724, 0.014589212, 0.012618943, 0.012612354, -0.014668287, 0.0011465776, -0.0027445378, -0.019676326, -0.023287388, -0.006276524, 0.026107704, 0.042621057, 0.007729515, -0.027965952, 0.014602391, 0.014101587, -0.04288464, -0.01643428, 0.009482329, 0.0009694841, 0.01349535, 0.010978151, -0.0013236712, 0.014233378, 0.021679543, 0.0003881643, -0.0027395957, -0.026977522, -0.013126337, -0.0055912132, -0.004230476, -0.021310529, -0.027939593, -0.0036242397, 0.041803956, 0.00410857, 0.010306019, 0.015432672, -0.029415647, -0.0050607566, -0.017014157, 0.011478956, 0.035847023, 0.019887192, 0.012447616, -0.043543592, -0.003396901, -0.003103667, 0.005064051, 9.822513E-05, 4.5920762E-05, -0.010029259, -0.0008566385, 0.020229846, -0.017290918, -0.046785638, -0.025013844, -0.008731123, 0.01433881, -0.009258285, -0.01476054, -0.00334089, 0.012151087, -0.01907009, 0.00022054322, 0.00932418, 0.015920296, 0.015551283, -0.00015104431, -0.023906803, -0.00014538143, -0.013824827, 0.021956302, 0.010240125, -0.012164266, 0.0035155124, 0.009680015, -0.013007726, 0.02033528, 0.0027560694, -0.01183479, 0.007591135, 0.0014669934, 0.01765993, 0.017304096, -0.010180819, 0.0031135513, -0.026621688, 0.012467384, -0.012592586, -0.007874484, 0.006559874, 0.008797018, -0.0060491855, -0.022391211, 0.038219254, 0.19399567, 0.0077756415, 0.025396036, 0.027227923, 0.0062995874, 0.027728729, 0.006431378, 0.0018846046, 0.008144655, -0.03703314, 0.006589527, -0.0071100993, -0.028361322, -0.0015057068, 0.00063424197, -0.023761833, -0.07148319, -0.009502097, -0.030232748, -0.008797018, 0.015669893, -0.009297822, 0.014048871, -0.009739321, 0.013468993, 0.0112746805, 0.008131476, -0.018397959, -0.013956618, 0.014800077, -0.0084939, -0.04285828, -0.015050479, -0.016315669, 0.0006746028, 0.0041514016, 0.015643537, 0.017923512, -0.010760697, 0.010556421, 0.017699469, 0.00082451454, 0.015327239, 0.0017083348, 0.004326024, -0.0027428905, -0.0024331827, -0.0030097663, 0.012078603, 0.015630357, -0.019979445, -0.026252674, 0.008019454, 0.026648046, 0.0010370268, 0.0070639728, 0.013409686, -0.010688212, 0.0029834083, 0.0054198857, -0.02394634, 0.020664755, -0.008421415, 0.03716493, -0.016460638, -0.004105275, -0.012559637, -0.0050179246, -0.0030460088, -0.008460952, 0.0050607566, 0.012757324, 0.02128417, 0.022628434, -0.012889114, -0.011432828, 0.018160736, 0.003858168, 0.015248165, 0.010193998, -0.0018071777, -0.0029916451, -0.0022865657, -0.020862442, -0.011670052, -0.0144706005, 0.023537789, 0.015762148, -0.0031432041, 0.01267166, 0.012559637, 0.008144655, -0.00050739356, 0.007169405, -0.006589527, 0.028071383, -0.027781444, 0.008296214, -0.015169091, 0.003258521, -0.024315353, 0.0021004116, -0.022233063, 0.0015732495, -0.03144522, 0.015327239, 0.0017066874, 0.028255891, -0.013745752, -0.00877066, 0.008665227, -0.03745487, 0.005726299, -0.0045599523, -0.014391527, -0.009034241, 0.011109942, -0.015920296, -0.011386702, -0.0032832318, 0.027096134, -0.02981102, 0.014839614, -0.016790114, -0.015287702, 0.000127878, -0.0014431063, 0.012770503, 0.0164211, -0.032894917, -0.0021119432, -0.01321859, 0.022364853, -0.012190624, -0.02033528, -0.022733867, -0.011459187, -0.035451654, -0.004276603, -0.018226631, 0.006009648, 0.0091858, 0.0029142182, 0.022483464, 0.051002935, -0.0024397722, -0.017488604, -0.002663816, -0.005818552, -0.0065928213, 0.031629726, -0.001055148, -0.016539712, -0.004882839, 0.0010535006, -0.019979445, -0.025593722, -0.028993918, -0.009989723, 0.012836398, 3.2915457E-06, -0.00011634633, 0.020901978, -0.0030344771, -0.00765703, 0.011235143, -0.16689953, 0.044782422, 0.010483937, -0.023630042, -0.0016671503, 0.008421415, 0.012790271, -0.011347165, -0.005999764, 0.008849734, 0.017936692, 0.007894253, -0.027781444, -0.02604181, 0.016091624, -0.005736183, 0.011162658, -4.6126686E-05, 0.013508529, 0.0017000979, 0.0006461855, -0.0054462436, 0.009739321, -0.0025089623, -0.0014917041, -0.031155283, -0.011149479, -0.012513511, 0.0118282, 0.0032618158, 0.009383486, -0.021600468, 0.017699469, -0.011162658, 0.018028945, -0.027728729, -0.024091309, 0.015893938, -0.008665227, 0.03853555, 0.002016395, -8.6436055E-05, 0.041724883, -0.0057724253, 0.034502763, 0.02297109, -0.031787876, -0.0047807014, -0.0025139044, -0.015524925, 0.015274523, 0.0020921747, -0.002741243, -0.008968346, 0.011933633, -0.011590977, 0.014589212, 0.00063341827, 0.011254911, 0.0072353003, -0.0003335948, -0.033632945, 0.00093653647, -0.030285465, -0.0111363, -0.0062995874, 0.008006275, 0.009831574, -0.018898763, 0.0138643645, -0.029389288, -0.00046538532, -0.0020872327, -0.020677935, 0.030654479, 0.011841379, -0.0106684435, -0.019597253, -0.0019719158, -0.011597567, -0.0076636197, 0.040196113, -0.020414354, 0.011571209, -0.00047115114, 0.014088408, -0.023840908, 0.007914022, 0.002448009, -0.022153988, 0.0065928213, -0.020361638, -0.0018813099, -0.02186405, -0.007828358, 0.018292526, 0.02880941, -0.03173516, 0.0070903306, -0.027227923, 0.004527005, 0.0053342218, -0.0300746, 0.03144522, 0.042225685, 0.02743879, 0.018622002, 0.013442635, 0.018160736, 0.013449224, -0.01238172, 0.03215689, -0.0093703065, -0.0054693073, 0.006065659, -0.0012404784, -0.0024727199, -0.034608193, 0.023313746, -0.021929944, -0.00033771325, -0.0007302019, -0.02714885, -0.011867737, -0.0066751903, 0.00012314178, -0.09177893, -0.006579642, 0.02534332, 0.0073736804, -0.02228578, 0.0062798187, 0.011452598, 0.0020839379, 0.00024999017, 0.014246557, 0.0030015295, 0.009067189, 0.016236594, 0.027781444, 0.017989408, 0.0094559705, 0.015063658, -0.016486995, -0.043253653, 0.029837377, -0.02534332, -0.019267775, -0.011992939, -0.013969797, -0.006003059, -0.023735475, -0.023142418, 0.0047444594, 0.026384465, 0.019860834, -0.0057098246, -0.006919003, 0.0473128, -0.0075779557, -0.012757324, -0.002184428, -0.023893625, -0.001046911, 0.02269433, -0.008138065, -0.018134378, -0.0025386151, 0.005726299, -0.019676326, 0.009693193, -0.0073143747, 0.004942145, 0.0064807995, 0.015788507, -0.013798469, -0.00050368696, -0.02058568, -0.010009491, -0.015696252, -0.0063951355, 0.0111890165, -0.014865972, 0.0011185722, 0.019386386, -0.0025748576, 0.00424695, 0.012922062, 0.013205412, 0.013053852, 0.012882524, -0.012968188, 0.0028549123, -0.009521866, 0.0008887624, 0.0016210235, -0.00794038, -0.0023491662, -0.015907118, 0.025593722, -0.0072287107, 0.0085070785, -0.037955675, -0.006694959, 0.009528455, -0.0011745831, -0.0074791126, -0.012770503, 0.03186695, -0.036374185, 0.012968188, 0.036163323, 0.0043523824, -0.006892645, 0.008296214, -0.042647418, 0.0030773089, 0.020717472, 0.0031267304, -0.0024793094, -0.0012380073, 0.0058086677, 0.0066784853, 0.009996312, -0.0064511467, -0.0031003724, -0.03186695, 0.0013706215, -0.07269566, 0.03410739, 0.008144655, -0.015933475, -0.024829336, -0.015748968, 0.0116173355, 0.004790586, 0.0077888207, -0.03439733, 0.010088566, -0.021547752, 0.017791722, -0.0091133155, -0.005597803, -0.009857932, -0.011650283, 4.0824176E-05, 0.018437495, -0.0003272112, -0.02187723, 0.033870168, -0.03075991, 0.013877543, -0.032736767, -0.016117983, -0.02268115, 0.033316646, 0.013422865, -0.0027247693, 0.0075252396, -0.018766971, -0.004925671, 0.013561246, 0.009100136, -0.004978387, 0.015841221, -0.00033874286, 0.020269385, -0.021402782, -0.011887506, -0.014365168, 0.0045335945, 0.006273229, -0.013877543, -0.0078019993, 0.015551283, 0.0032651105, 0.014114766, 0.0058482047, 0.00045508918, 0.026568972, 0.028045025, -0.023313746, -0.021784974, -0.019808117, 0.008750891, 0.004958619, 0.003996548, -0.037428513, 0.029125707, 0.029204782, 0.0064478517, 0.010563011, -0.018121198, 0.0012676602, -0.027201567, -0.0070178458, -0.0038219255, 0.0033474795, -0.01210496, 0.014918689, 0.008302803, -0.005525318, 0.02366958, -0.00542977, -0.004978387, -0.00836211, -0.012559637, -0.003647303, 0.011735947, -0.010925435, -0.054772146, 0.0211392, 0.010279662, -0.004009727, -0.020532966, 0.018622002, -0.005739478, -0.012875935, -0.031418864, 0.0005205726, -0.03468727, 0.008315982, 0.0052979793, 0.011386702, -0.013824827, 0.0019488526, 0.0031777993, 0.009838163, 0.008006275, -0.021007411, 0.009614119, -0.025422394, 0.0027923118, 0.012098371, -0.01627613, -0.02157411, -0.010418042, -0.0029834083, 0.024288995, 0.0054231803, -0.008124886, -0.004915787, 0.003289821, -0.0064083147, 0.002485899, -0.02102059, 0.0071232785, 0.0054363594, 0.015630357, 0.033843808, -0.012744145, -0.01907009, -0.012987957, -0.011090173, 0.01489233, -0.0010378504, 0.0004161698, 0.0036571873, 0.023419177, -0.012072013, -0.03144522, -0.014259736, 0.009251695, -0.0009455971, -0.013067031, 0.00012118551, -0.038930923, 0.062205132, 0.012414668, 0.005805373, 0.016355205, -0.030654479, 0.0150373, 0.011301038, 0.014734182, -0.012131318, -0.023854086, 0.009106725, -0.011861148, -0.017580858, 0.0039306525, -0.019939907, 0.0024414195, 0.0036176501, 0.015933475, -0.0148132555, -0.0021597173, 0.04791904, -0.00933077, 0.022233063, 0.0017330456, -0.0026193368, -0.018450676, 0.012698018, 0.013165874, 0.023089701, -0.010246714, 0.0043919194, 0.015090016, -0.018068481, -0.00508382, -0.0054231803, -0.03147158, 0.0138643645, 0.018450676, 0.0011943517, 0.0075120605, 0.012296056, 0.0020608744, -0.0015641889, -0.027201567, -0.0038515783, 0.023630042, -0.018332062, 0.006866287, 0.003742851]
+ },
+ {
+ "Id": 71,
+ "Type": "Footwear",
+ "Brand": "Daybird",
+ "Name": "Explorer Frost Boots",
+ "Description": "The Explorer Frost Boots by Daybird are the perfect companion for cold-weather adventures. These premium boots are designed with a waterproof and insulated shell, keeping your feet warm and protected in icy conditions. The sleek black design with blue accents adds a touch of style to your outdoor gear.",
+ "Price": 149.99,
+ "Embedding": [-0.0068944586, -0.017449103, -0.02040387, -0.038332123, -0.01591848, 0.0075067077, -0.012338152, -0.036495376, 0.01879339, -0.02217407, -0.001858376, 0.007826142, -0.017302696, -0.015638974, -0.023731312, 0.013136738, 0.011093689, 0.03455215, 0.012823959, -0.015146513, -0.008185506, 0.026446505, 0.0013068526, -0.008651348, -0.0024406782, -0.049618807, -0.0006800458, -0.018899867, 0.009083915, -0.01476053, 0.018886557, -0.0070075914, -0.018380785, -0.018354166, -0.015705524, -0.008724552, 0.0021611731, -0.009449934, 0.008298638, 0.01331642, 0.026739318, -0.015971718, -0.0010889051, 0.025621299, 0.0011180203, 0.0017252783, 0.00046376215, -0.023411877, 0.0033923264, -0.0015148177, -0.006980972, -0.0044055325, 0.001870022, -0.013136738, 0.0046983473, 0.007846107, -0.0055801193, 0.0031078302, 0.019565355, -0.022932725, -0.04818135, -0.0016969951, -0.029680777, -0.0010880734, 0.008864304, -0.018460644, -0.030745558, -0.017169597, 0.0037833008, 0.015412708, -0.0026719354, 0.015439328, 0.0063520856, 0.012611003, -0.0024157225, -0.015798692, -0.0022077574, 0.005117605, -0.004478736, -0.0013958616, 0.026326716, -0.023997506, -0.033673707, 0.021708228, 0.00078818767, 0.024303632, 0.008644693, -0.002244359, -0.036601856, -0.0107676005, 0.0073336805, -0.0023591558, 0.009563066, 0.011945514, -0.013289801, 0.009210357, 0.008152232, 0.019512117, -0.008278674, -0.033088077, 0.0233054, 0.00068337325, -0.002758449, -0.010687741, -0.03953, 0.027285019, -0.0052606845, 0.0035769995, 0.017169597, 0.00068337325, -0.008025789, 0.03953, 0.03335427, -0.026446505, -0.0015614019, -0.00077695755, 0.003275866, -0.025182076, -0.00992243, -0.024529897, 0.02952106, 0.014693981, -0.002615369, -0.008751171, -0.02383779, -0.002876573, -0.0074068843, -0.018899867, 0.0045120106, 0.002954768, 0.023332018, 0.021495271, 0.02040387, -0.034126237, -0.039423525, 0.023611523, -0.038891133, 0.0073869196, 0.0051841536, 0.020816473, -0.011512947, 0.01699657, -0.008138921, -0.0012486223, 0.0013251535, 0.035004683, -0.0128905075, 0.0037034422, 0.0037932831, -0.022253927, 0.028802332, -0.01645087, 0.032023296, -0.0026702718, -0.005759801, -0.0064718733, 0.0127374455, 0.018873246, -0.01530623, -0.02379786, 0.00994905, -0.021814706, 0.020044507, -0.015133203, 0.032688785, 0.026180308, -0.007380265, -0.012264948, 0.0008439223, 0.020523658, 0.0030263078, 0.0075266724, -0.010022254, 0.033886664, 0.037719876, 0.010374962, -0.00177519, -0.00042196116, 4.429656E-05, 0.0018716857, -0.011646044, -0.027577834, 0.0048081526, 0.004438807, -0.03287512, -0.04149985, -0.008278674, -0.008644693, 0.0017635439, 0.01104045, 0.0031311223, 0.014933556, 0.011685974, 0.031304568, -0.65590525, -0.008884269, -0.0012369764, -0.043256737, 0.022546742, 0.0076863896, 0.018953105, 0.008152232, -0.008471666, 0.010374962, -0.0052806493, 0.0120120635, -0.0010872415, 0.010947282, -0.02216076, -0.017715298, 0.018048042, -0.008491631, 0.022253927, -0.0005103463, -0.017395863, 0.017103048, -0.0046118335, -0.025421651, -0.0060958727, -0.020856403, 0.012650932, -0.018939797, -0.016903402, 0.010681087, -0.024756163, 0.046158265, 0.0017136323, 0.0076331506, 0.047302905, -0.020004578, -0.014534264, 0.031490903, 0.021282315, 0.058935642, -0.034765106, 0.0014906938, 0.018300928, 0.016770305, 0.011486327, 0.010228555, 0.032129772, 0.008584798, 0.0029697414, 0.013349694, 0.02949444, 0.0033241138, -0.0028865554, 0.0015389416, 0.001685349, 0.006921078, 0.035989605, -0.00438224, 0.007766248, 0.002038058, -0.015439328, 0.024250392, -0.030346265, -0.00906395, -0.020803163, 0.029547678, -0.040568165, -0.027923888, 0.020190913, -0.03620256, 0.04251139, 0.027338259, -0.0030462726, 0.017169597, 0.013336385, 0.015971718, 0.028190084, 0.0017169598, -0.012803994, 0.017542271, 0.02558137, -0.007999169, -0.01360258, -0.030159928, 0.02555475, -0.018394096, 0.016983261, -0.018620363, 0.014028492, -0.0052041183, 0.008158886, 0.01247125, -0.025940733, -0.033008218, -0.016211294, 0.003806593, -0.0080989925, 0.009157118, 0.038225647, -0.0119322045, -0.002234377, -0.0021611731, 0.00092336495, -0.00081813463, 0.012264948, 0.019591974, -0.009749403, -0.00581304, 0.00396631, -0.023531666, 0.00033378397, 0.004295727, 0.0068611843, -0.010308413, -0.0045486125, -0.023438497, 0.017781846, -0.0072338576, 0.01822107, -0.030399503, 0.027364878, -0.005300614, -0.013023606, -0.01582531, -0.0011188522, -0.0024822713, -0.020217534, -0.00092170126, -0.0146806715, -0.012231674, 0.00825871, 0.004402205, 0.005932828, -0.0005486119, 0.004728294, 0.012418011, 0.0030961842, -0.014973486, 0.03782635, -0.017755227, -0.01766206, -4.5544355E-05, -0.01589186, 0.0003585318, -0.005693252, -0.023292089, -0.027471356, 0.008145576, -0.018540503, -0.00963627, 0.019152753, -0.0058163675, -0.0027484666, 0.020856403, 0.013356349, -0.010488095, 0.019591974, 0.0024340234, -0.0059428103, 0.0066149533, 0.024210462, 0.007952585, -0.0018251016, -0.014095042, -0.012604347, 0.0019765003, -0.004415515, 0.013456172, -0.018420715, -0.047861915, -0.015958408, -0.0080723725, -0.012650932, -0.0014873663, -0.0069543524, -0.01474722, -0.02041718, -0.012524489, -0.0018866592, -0.010068838, 0.017635439, -0.0008809401, -0.024649685, -0.0017518979, 0.02559468, -0.0038199027, -0.00039346993, 0.024197154, -0.0098092975, 0.008957472, -0.017635439, 0.028269941, -0.0073403358, 0.0045419573, -0.0025637934, -0.040621404, -0.001429136, 0.014028492, 0.016331082, 0.030718938, 0.028828952, -0.051908083, 0.021934493, -0.01704981, 0.016703755, -0.023119062, -0.0017385881, -0.009736094, 0.013555996, -0.0017652076, 0.011785797, -0.042671107, -0.01870022, -0.017276075, 0.02217407, -0.0032126447, 0.006794635, 0.015838621, -0.010541334, -0.014693981, -0.010554644, 0.001798482, 0.017129667, -0.008651348, 0.012371426, -0.004801498, -0.004259125, 0.012803994, -0.0093368, -0.022054281, 0.022812938, 0.008484975, 0.027418116, 0.0038698143, 0.0013634191, -0.008431736, 0.0048048254, -0.036069464, 0.04708995, 0.011113654, 0.036175944, 0.011419779, 0.0126842065, 0.0022044298, 0.0012436312, 0.011852346, 0.003573672, 0.022759698, 0.0021179165, 0.009223667, -0.0065350947, -0.0012777374, -0.004621816, -0.0094965175, 0.0036235836, -0.010348342, 0.025182076, 0.0004658418, 0.0029747325, 0.024702925, 0.017914943, 0.006961007, 0.000744515, 0.017741917, 0.04522658, 0.0059661022, -0.01587855, -0.021069359, -0.009456588, -0.02154851, -0.013269836, 0.0019731726, -0.0028432987, 0.0027917232, 0.0065350947, 0.0010889051, 0.002918166, 0.022453574, 0.00937673, 0.01927254, 0.0023441825, -0.01645087, 0.015439328, 0.024902571, 0.009416659, 0.009210357, -0.0067713433, 0.008178851, 0.00764646, 0.034365814, 0.015266301, 0.009915776, 0.0037733184, -0.013788917, 0.014387856, -0.01871353, 0.021867944, -0.024064057, 0.011479673, 0.0057564736, 0.005872934, -0.012118542, -0.022959346, -0.016304463, 0.047329526, -0.010115421, -0.00034272645, -0.0186736, 0.008564834, 0.015998337, -0.022054281, 0.0016720393, -0.0042790896, -0.01931247, 0.006009359, 0.003989602, -0.016530728, -0.03417948, 0.045679115, 0.030772178, -0.010914007, 0.0017319332, -0.01646418, -0.014347927, 0.098279305, 0.0075266724, 0.0121984, 0.025993971, 0.027418116, -0.03513778, -0.025248624, -0.010760945, 0.009536447, -0.00096329424, 0.020004578, -0.0028532809, -0.028536137, -0.009789333, -0.0016054905, 0.006418634, -0.019498806, -0.0295743, -0.009130499, -0.023691382, -0.016291153, -0.015492567, -0.004585214, 0.0043888954, 0.0021212439, 0.0005789748, 0.005031091, 0.0068279095, 0.0013625872, -0.014347927, -0.0022360405, -0.0054869507, -0.0028482897, 0.00095248007, -0.004991162, 0.0018567123, -0.019166062, -0.01815452, 0.020097746, -0.0035537074, 0.018274307, 0.019911408, 0.0067214314, -0.026845796, 0.010554644, -0.022866176, -0.0029946973, 0.029068528, -0.0040494963, -0.037666637, 0.022906106, 0.013748988, -0.012304878, 0.013076845, -0.008458355, 0.013509411, -0.0038398672, 0.005473641, 0.00468171, -0.028988669, -0.0012286577, -0.020270772, 0.025381723, 0.011126963, -0.012344807, 0.0170365, -0.004116045, 0.028216703, -0.020763233, 0.012564419, -0.010108767, 0.0013775607, -0.012238329, 0.005011127, 0.009955704, 0.021082668, 0.0011030468, -0.014840389, 0.013815536, 0.00087927637, 0.044561096, 0.0013367996, 0.015745452, 0.008897578, -0.0025754396, 0.0010706042, -0.0045419573, -0.0120120635, -0.021162527, 0.013709058, 0.017781846, 0.010567954, 0.021282315, -4.299678E-05, 0.0051076226, 0.015958408, 0.009609651, 0.014813769, 0.020483728, 0.0071872734, 0.012817304, 0.00010517834, -0.0024123949, -0.010428201, -0.0012012064, -0.0053804726, -0.00096329424, 0.020723304, 0.0059893946, 0.009310181, 0.0033124678, -0.005949465, -0.00017198712, -0.013110119, 0.006218988, 0.0026769266, 0.008378497, 0.016570657, -0.0052074455, -0.049565565, 0.009303526, -0.037852973, 0.026233548, -0.0030479364, -0.011173548, 0.0034871586, 0.01645087, -0.026805867, -0.024423419, -0.0059394827, -6.628887E-05, 0.008930853, -0.0039396905, -0.006781325, -0.015838621, -0.024742853, -0.0116992835, -0.006378705, 0.0023807844, 0.0015206407, 0.0012586047, 0.009423314, 0.020829782, 0.006724759, 0.019525426, -0.024623066, 0.004937923, 0.008405116, -0.02323885, 0.04019549, -0.016211294, 0.001888323, -0.0040994077, -0.0009508164, -0.014347927, -0.038944375, -0.009316836, -0.016264534, 0.023704693, 0.028615996, -0.0036601855, -0.01420152, 0.013063535, 0.0009674536, -0.013110119, -0.0035703445, -0.022054281, 0.0034838312, -0.013709058, 0.0012303215, 0.0064851833, -0.0024440056, -0.0047016745, -0.015013415, -0.015958408, 0.0014923575, -0.008964127, -0.015412708, -0.009929085, -0.021428723, 0.021202456, -0.025182076, -0.0062389523, 0.020603517, -0.015958408, -0.0033523971, 0.04123365, -0.0020596862, 0.019432258, 0.0040228767, 0.024596447, -0.009223667, 0.021828014, -0.00639867, -0.002470625, -0.014667361, 0.00290652, -0.036548615, -0.020483728, 0.022946035, 0.012883853, -0.0014981804, -0.010894043, 0.0026902363, -0.0017252783, 0.008338568, 0.010594573, -0.015266301, 0.019578665, -0.028269941, -0.0120120635, -0.019219302, -0.023345329, -0.025794325, 0.009589686, 0.0059760846, -0.01815452, 0.0119854435, -0.018314237, -0.00794593, -0.018886557, -0.02270646, 0.033301033, 0.004126027, 0.024809403, 0.016304463, 0.0012344808, -0.021734847, -0.010681087, -0.0003732973, -0.004468754, -0.0017735262, 0.0044820635, -0.013895395, -0.008658002, 0.004888011, -0.002036394, 0.00038494336, -0.023491737, 0.023465116, 0.005912863, 0.018460644, 0.004132682, -0.021388793, -0.0017718625, 0.020656755, -0.015705524, -0.007260477, -0.006498493, -0.0020680048, -0.0012186754, 0.0128905075, -0.013249871, 0.020510348, 0.0046484354, 0.0021894565, 0.011459708, 0.0024140587, 0.030852037, -0.009423314, -0.0043855677, 0.024290321, -0.018327547, 0.018234378, 0.022812938, -0.013229907, -0.0041759387, 0.007952585, 0.009190393, 0.023997506, -0.012630967, -0.0041127177, -0.008524905, -0.0018716857, -0.001966518, -0.008118957, -0.017875016, -0.0060193413, 0.017502341, -0.011240097, 0.012251639, -0.030186547, -0.014334617, 0.00013195384, -0.02261329, 0.00297806, -0.010734326, -0.019765, -0.014001873, -0.02720516, -0.023478426, -0.009749403, 0.011978789, 0.010288449, -0.0035237605, -0.0068146, -0.0064951656, 0.0006509307, -0.016051577, 0.010155351, 0.0083052935, 0.027311638, -0.004591869, 0.009343456, -0.0033690343, -0.03971634, -0.008817719, 0.012957057, -0.00905064, -0.026446505, -0.01133992, -0.0050011445, 0.01478715, -0.017981494, -0.0017286058, -0.013569306, 0.013010296, -0.0112068225, -0.024543207, 0.01638432, 0.004199231, 0.0062688994, 0.046664037, -0.007520017, 0.0295743, -0.012351463, 0.009043986, 0.005986067, -0.020763233, -0.025075598, -0.015838621, 0.021348864, 0.014547573, -0.043469694, 0.00035811588, 0.006325466, -0.014867008, -0.011306645, -0.021668298, 0.0074201943, 0.015732143, 0.029015288, 0.0052373926, 0.026579602, -0.027285019, -0.032821883, -0.02554144, -0.013882086, -0.020909641, -0.0062822094, 0.01075429, 0.06686826, -0.011785797, -0.02781741, -0.009682855, 0.0074002296, -0.044614334, -0.0030412814, -0.0004658418, 0.015758762, 0.030479362, -0.0067547057, -0.014906937, 0.03873142, -0.00090090476, 0.01162608, -0.0071140695, -0.017555581, 0.0002824166, 0.015732143, -0.0017419156, -0.018314237, -0.010594573, -0.019698452, 0.019791622, -0.0083319135, 0.005610066, 0.022866176, -0.029095147, -0.017063119, -0.0077995225, 0.0072870967, 0.054570038, 0.021481961, 0.015053345, -0.042325053, -0.010408237, 0.0012061974, -0.007520017, -0.012358117, -0.010261829, 0.008425081, 0.013422898, 0.01421483, -0.008977436, -0.013709058, -0.0105346795, -0.015758762, 0.017981494, -0.037134245, 0.003132786, 0.010987211, 0.017023189, -0.022200689, -0.006551732, 0.012830614, -0.0032592288, 0.0004098992, -0.009123844, -0.023558285, -0.002936467, -0.009789333, 0.01582531, 0.023158992, 0.0036768226, -0.003460539, 0.012870543, -0.011659355, 0.006505148, 0.0018417388, -0.01932578, -0.028775712, 0.0066482276, 0.01638432, -0.010162006, 0.004129355, -0.0067380685, -0.0136292, 0.0065916614, 0.004781533, -0.006634918, -0.027471356, 0.01695664, 0.016983261, 0.01762213, 0.0318902, 0.20454447, -0.012025373, -0.00909057, 0.030000212, 0.001203702, 0.015279611, 8.799522E-06, 0.010834149, 0.004878029, -0.008704587, 0.006741396, 0.020310702, -0.030745558, -0.0018733494, 0.020111056, -0.014494334, -0.027844029, 0.009902465, 0.00468171, -0.00079900183, -0.0068611843, -0.0076730796, 0.019072894, -0.01108038, 0.034152858, 0.0015089946, 0.0032392642, 0.0058762613, 0.0015231363, 0.0016687118, -0.013070189, -0.032076534, 0.010461476, 0.016064886, 0.016823543, -0.009236977, 0.023624834, 0.0027018823, -0.0037134246, 0.022067592, -0.014840389, -0.018859938, -0.018633671, -0.0048414273, 0.019405639, 0.021455342, -0.017116359, -0.022227308, -0.02660622, 0.0141615905, -0.0027734223, -0.034898207, 0.0034106274, 0.016211294, 0.0006937715, 0.0017502342, 0.0328485, -0.007533327, 0.0057464913, -0.006797963, -0.0035037957, 0.032688785, -0.024223773, 0.013948634, -4.700011E-05, 0.03460539, 0.003215972, -0.012664242, 0.004272435, 0.02896205, 0.008391807, 0.0068478743, 0.002400749, 0.03340751, -0.012358117, -0.030186547, 0.007520017, -0.00054694817, 0.009170428, 0.04248477, -0.00994905, -0.0064652185, -0.00992243, 0.008059063, -0.010241864, -0.03455215, 0.009609651, -0.013802227, -0.009749403, 0.003066237, 0.006784653, 0.0048613916, -0.0029231573, 0.010055528, 0.02559468, 0.013449518, -0.021428723, 0.03668171, -0.025834255, -0.014041803, -0.009403349, -0.012744101, 0.009330145, 0.00850494, -0.00092419685, 0.019126132, -0.0009799314, -0.0022360405, -0.005573464, -0.015199752, 0.009283561, -0.020017887, 0.0029414583, -0.0043090363, 0.0021062703, 0.0075599467, 0.019059584, -0.013229907, -0.017781846, -0.012863888, 0.017475722, -0.0047715507, 0.030239787, 0.015186442, -0.016078196, -0.013323075, -0.019405639, 0.023704693, -0.014095042, -0.016038267, 0.00326422, -0.012457941, 0.009463243, -0.025115527, -0.007819487, 0.028056985, 0.028562756, -0.031677242, -0.014294688, 0.0010631175, -0.013828847, 0.0047316216, 0.0053571807, 0.022999274, 0.034951445, -0.02437018, 0.026539672, -0.023917649, -0.019871479, 0.014813769, -0.009609651, 0.0025205368, 0.006794635, 0.0019498806, 0.008618073, 0.013023606, -0.03178372, -0.017475722, 0.0041726115, 0.008658002, -0.044294897, 0.021455342, -0.00054112513, -0.037240725, -0.012304878, 0.029308103, -0.16972613, 0.0072737867, -0.0055435174, -0.006145784, 0.024769474, -0.016091507, -0.006189041, 0.005473641, -0.026513053, 0.0067580333, 0.025980663, 0.024303632, -0.01919268, -0.010155351, -0.005104295, 0.02273308, -0.013988564, 0.015239681, 0.021335553, 0.008777791, 0.028030366, -0.00023021735, 0.0016154727, 0.0010456485, 0.0013376314, -0.007433504, 0.020869711, -0.01474722, -0.0010148697, -0.031411048, -0.02896205, -0.013156703, 0.02331871, 0.019019654, 0.023145681, -0.008924197, -0.004974525, 0.0004924613, -0.0052007907, 0.031970058, 0.0029148387, 0.02097619, 0.023944268, -0.007599876, 0.022253927, -0.023358637, -0.012045338, 0.004139337, -0.00019382346, -0.026752628, 0.026220238, -0.029867113, -0.02779079, -0.005104295, 0.028509518, 0.0076398053, 0.026233548, 0.033780184, 0.034419052, -0.025248624, -0.000935011, -0.01589186, -0.00086513476, -0.017502341, 0.007207238, 0.014960176, 0.009210357, 0.029813875, -0.032049917, -0.00409608, 0.008405116, 0.008611418, 0.0134095885, -0.0028799004, 0.016184675, 0.012990331, -0.030532602, -0.02154851, -0.012058647, -0.023917649, -0.0019748365, 0.037852973, -0.025900804, 0.019418947, 0.00793262, -0.0009108871, -0.030505981, 0.006618281, 0.010900698, -0.01358927, 0.010328378, -0.03181034, -0.009343456, -0.0037433715, 0.007553292, 0.025261935, 0.021056049, -0.019911408, 0.0071207243, 0.009270252, 0.005699907, -0.009390039, -0.012118542, 0.008604763, 0.02164168, -0.0054936055, 0.01993803, 0.012830614, 0.012910472, -0.011373195, -0.0011579496, -0.005330561, -0.003926381, 0.0032925033, -0.004937923, -0.005896226, 0.02779079, -0.0120120635, 0.0023225541, -0.04200562, 0.026260167, 0.006002704, -0.03173048, 0.011166893, -0.022946035, 0.009929085, -0.09045316, -0.012630967, 0.02321223, -0.014813769, -0.010920662, -0.022373715, -0.012777375, 0.01418821, -0.0025771032, -0.011413123, 0.008358533, -0.014015183, 0.023505045, -0.0047083297, 0.04149985, 0.016118126, 0.009117189, -0.0068611843, -0.028722474, 0.0063021737, 0.003437247, -0.0021229077, -0.0151198935, -0.0053505255, -0.017063119, -0.009143809, -0.019578665, 0.005443694, 0.033088077, 0.02326547, -0.012318187, 0.006295519, -0.008884269, -0.013669129, -0.0249425, 0.004272435, -0.013130084, 0.006069253, 0.023438497, -0.03292836, 0.018926486, 0.010860768, 0.0010872415, -0.029787255, -0.011299991, -0.0073669553, -0.008252054, 0.010268484, 0.013748988, -0.009183738, -0.013136738, -0.010880733, -0.02668608, 0.00015555788, 0.030745558, -0.010401581, -0.0043755854, -0.0071273795, 0.011266717, -0.0080989925, 0.016623897, 0.001959863, 0.005463659, 0.029734015, -0.010401581, 0.008059063, -0.024556518, 0.0186736, 0.004741604, 0.006651555, -0.0159451, 0.027764171, -0.011226787, 0.04424166, -0.0114929825, -0.012431321, -0.007426849, -0.016011648, 0.00825871, -0.023292089, -0.012784029, -0.029254865, 0.022426955, -0.022626601, 0.008278674, 0.015465947, 0.031517524, -0.01420152, 0.0095763765, -0.030479362, 0.013788917, 0.015705524, 0.0119588245, -0.026193619, -0.016717065, 0.005972757, 0.0001453676, -0.00905064, 0.010760945, 0.0026785904, -0.006764688, -0.0019914736, -0.07831466, 0.042351674, -0.0074734334, -0.030346265, 0.0119588245, 0.003740044, 0.013802227, -0.019711763, 0.0060958727, 0.010914007, -0.022560053, -0.0024273684, -0.0001137569, 0.0011637727, 0.004878029, -0.015958408, -0.00625559, 0.0011878966, 0.026499743, 0.009456588, -0.0049678697, -0.004092753, 0.015386089, -0.0047482587, -0.029946972, -0.013269836, -0.00070084236, -0.00396631, 0.011007176, 0.0015755434, 0.01476053, -0.025248624, 0.0072870967, 0.03572341, -0.019977957, -0.023385258, 0.02047042, 0.022506813, 0.015359469, -0.030692318, -0.008578144, -0.013223252, 0.023132373, -0.02949444, -0.015998337, -0.021468652, 0.008751171, 0.010148696, 0.00883103, -0.0025954042, 0.001441614, 0.034152858, 0.016663827, -0.041632947, -0.013961944, -0.005759801, 0.0060892175, -0.004734949, -0.010028908, -0.03287512, 0.037107624, 0.018846627, 0.0074401586, -0.012025373, 0.042112097, 0.0005365499, -0.006867839, -0.018354166, 0.020896332, 0.0051375693, -0.030266406, -0.0021428722, 0.005516898, 0.020550277, 0.0051375693, -0.007965894, -0.003074556, -0.017741917, -0.01985817, 0.03401976, -0.0012835605, -0.002335864, -0.050736826, 0.017994802, -0.0015946763, 4.721457E-06, -0.028269941, -0.014361237, -0.007925965, 0.015465947, -0.04301716, -0.00048206307, -0.013283146, 0.010634502, 0.017076429, 0.0007478424, -0.004348966, -0.0067713433, -0.021335553, -0.00019351151, -0.012877198, 0.0064652185, 0.004778206, -0.01305688, -0.01078091, 0.022919416, 0.021774776, -0.029201625, -0.021322245, 0.022799628, -0.017262766, 0.0013010296, -0.019538736, 0.0053838002, -0.012371426, 0.008398462, 0.008065718, -0.022200689, -0.010102112, -0.0049312683, 0.010115421, 0.002280961, 0.011719248, -0.03383342, 0.003227618, 0.00095913495, 0.010201935, 0.004199231, -0.0019615267, 0.02039056, 0.011679319, -0.0050943126, 0.023904338, 0.00018727256, -0.012650932, -0.002310908, 0.015599045, 0.024064057, -0.022426955, 0.060799006, 0.025674537, -0.03524426, 0.016171364, -0.047249667, 0.0035037957, -0.008697932, -0.007320371, -0.01189893, -0.026140379, 0.00992243, -0.004671728, -0.010501405, 0.007985859, -0.0363889, 0.00043797446, 0.015931789, -0.0025388377, -0.014867008, 0.0051608616, 0.02949444, -0.016890092, 0.030239787, -0.00019673497, -0.016291153, -0.022599982, 0.019498806, 0.004831445, -0.0093368, -0.014041803, 0.017595509, 0.0053405436, -0.010760945, 0.0006604971, 0.008850994, 0.0023325363, -0.009702819, 0.008864304, 0.009929085, 0.02097619, 0.0045885416, 0.0120120635, -0.0008959136, -0.00425247, 0.016051577, 0.01766206, -0.0124246655, -0.012531144, -0.0033773528]
+ },
+ {
+ "Id": 72,
+ "Type": "Ski/boarding",
+ "Brand": "Gravitator",
+ "Name": "GravityZone All-Mountain Skis",
+ "Description": "Take your skiing to new heights with the GravityZone All-Mountain Skis by Gravitator. These high-performance skis are designed for precision and control on all types of terrain. The sleek metallic blue design will make you stand out on the slopes while the carbon fiber construction ensures lightweight durability.",
+ "Price": 699.00,
+ "Embedding": [0.003198545, 0.005688925, -0.0026674212, -0.018668577, 0.0030349926, 0.02051655, -0.04313736, -0.03544871, -0.0038645572, -0.04618584, 0.005284259, 0.0070546716, 0.0015023213, -0.002193625, 0.003861185, -0.020300727, 0.02158217, -0.004130962, -0.013792355, -0.007944936, 0.015013096, 0.019464418, 0.00050372444, -0.03323654, -0.0044749277, 0.0033132, 0.01555265, -0.009091489, 0.011539716, 0.0043130615, 0.025278116, 0.005860908, -0.011020395, -0.016672226, -0.010413396, 0.003200231, 0.0069939718, -0.0134349, -0.02580418, 0.017346669, 0.0076886476, -0.012706502, -0.00043585864, -0.011586927, 0.013596767, 0.0016793625, -0.018169489, -0.037067376, -0.01649687, -0.018574154, -0.001593371, 0.04292154, -0.022526389, -0.012639058, 0.0035104747, -0.022418479, 0.010325719, 0.012166948, 0.006855711, -0.0017038111, -0.0073379376, -0.01497263, -0.015808938, 0.00718956, -0.0059620743, -0.006343134, -0.02225661, -0.01462192, -0.007209793, -0.018682064, 0.0066904724, -0.0011735305, 0.011431805, -0.005338215, -0.012969535, -0.006940016, 0.003105809, 0.014284698, -0.0065050004, 0.007095138, 0.030026192, -1.5372554E-05, -0.0039488627, 0.033533294, -0.0022425223, 0.009145444, 0.0109327175, -0.0043771337, -0.0047379606, -0.018965332, 0.011202495, 0.007938191, 0.014783786, 0.035313822, -0.035178937, -0.0048762215, 0.0002824229, 0.0022728723, -0.0107573625, -0.016712692, 0.018075066, 0.028137753, 0.0038443238, -0.0174276, -0.04065541, -0.00819448, 0.00878799, 0.005584386, 0.0007174385, -0.0033351195, -0.029513616, -0.007917958, 0.02193288, -0.013394434, 0.019761173, 0.029189883, 0.037930664, 0.0072570043, 0.023376187, -0.027058644, 0.018816954, -0.003325003, 0.014433076, -0.012827902, -0.003911768, 0.03409983, -0.035394758, -0.013792355, 0.015134496, -0.0008750895, 0.03830835, 0.01672618, 0.0017400624, 0.0059553296, -0.020462593, 0.0141632985, -0.0025139854, 0.00042763888, -0.030916458, 0.01780529, -0.0032912807, 0.016254071, -0.012800924, -0.007047927, 0.00015786177, 0.007317704, 0.0027669014, -0.0031091813, 0.029540595, -0.030242015, 0.009172422, -0.014014921, 0.03393796, 0.013407922, 0.0060160295, -0.0070883934, 0.011047373, 0.026303269, -0.03561058, -0.0018142511, -0.01043363, 0.005024599, 0.01508054, 0.01314489, -0.0065016286, 0.030970413, 0.013421412, 0.0044344612, 0.007270493, -0.011829726, 0.012328814, 0.041437764, -0.02228359, 0.023038965, 0.008578912, 0.011735304, -0.0013210648, 0.010939462, -0.0065825614, 0.014554475, 0.0046671443, -0.009341032, 0.011910659, -0.008052846, -0.008187735, -0.02651909, 0.016361982, 0.004302945, 0.00409724, -0.035178937, 0.0016886361, 0.012706502, 0.0056788083, 0.015471717, -0.6517815, -0.032589074, 0.017468069, -0.02249941, 0.04173452, 0.033910982, 0.02321432, 0.010258275, -0.0022273473, 0.016186627, -0.024698095, 0.021474259, -0.0034008778, -0.0064611617, -0.01661827, 8.2355786E-05, 0.0013294953, -0.014837741, -0.0006529449, 0.00842379, -0.022337545, -0.007364915, -0.022553366, 0.0013927243, 0.017009446, 0.025426492, 0.00033279535, -0.0037094352, -0.024859961, 0.034018893, -0.007924703, 0.044944867, -0.010986673, 0.0024853216, 0.050016675, -0.03275094, -0.0045760944, 0.047345884, 0.010487585, 0.022769189, -0.023929229, -0.0059823073, 0.013010001, -0.009543366, -0.00058929436, 0.008268668, 0.024360873, -0.0043434114, -0.0026573045, -0.01485123, 0.0070074606, -0.0035846634, 0.024118073, 0.006383601, 0.007391893, -0.0059350966, 0.0308625, 0.032157432, -0.010332463, 0.018587643, -0.011303661, 0.014905185, -0.008005636, -0.029972237, -0.021137036, 0.010076175, -0.020934705, 0.007998891, 0.008248435, -0.013448389, 0.011215984, 0.026653979, -0.0032525002, 0.01686107, 0.009192655, 0.021851946, 0.028623352, -0.009833376, 0.0017754707, 0.013488855, 0.010035709, 0.014702853, -0.015282873, -0.016321516, 0.032966763, -0.00866659, -0.024118073, 0.017184801, 0.047076106, 0.011715071, 0.009084744, 0.015026585, -0.0153907845, -0.018776488, 0.006417323, -0.0022020556, -0.015188452, 0.019950017, 0.048478946, -0.018587643, -0.012288348, -0.014230743, 0.0053112367, -0.00076717866, -0.005267398, 0.009664765, 0.004370389, -0.0012890288, 0.030943435, -0.020260261, 0.007789814, -0.0174276, 0.0021514725, -0.017495045, -0.008268668, -0.02216219, -0.0033772723, 0.004195034, -0.0005564153, -0.019491397, 0.02970246, 0.003911768, -0.0055540362, 0.009671509, -0.029513616, 0.015228918, 0.0062318514, 0.0050684377, -0.03326352, -0.006886061, -0.0056686914, 0.027679132, 0.0032204643, -0.011236217, 0.023497587, 0.022175679, 0.0051426264, 0.0037026908, 0.030430859, -0.03347934, -0.046617486, -0.032238364, 0.006117196, -0.0019137313, 0.0054629864, 0.013974454, -0.033668183, -0.00450865, -0.014635408, -0.018547177, -0.021784501, -0.0051628593, 0.006289179, 0.017036425, 0.013239312, -0.0038409517, 0.0065319785, -0.036446888, 0.005328098, -0.025655804, 0.024536228, -0.0077358587, 0.0029051623, -0.002377411, 0.012308581, -0.021002147, -0.015930338, 0.014338654, -0.013515834, -0.038335327, -0.0027331794, 0.0060025407, -0.012632313, 0.0044074836, -0.003689202, -0.0068489662, -0.020530038, 0.005941841, -0.008754267, -0.006474651, 0.008990322, 0.008417046, -0.057246704, 0.004994249, 0.025183693, 0.01920813, 0.022647789, 0.008983578, -0.01684758, -0.0001243504, -0.024563206, 0.040601455, -0.0097052315, -0.0014475228, -0.031860676, -0.028083798, -0.00027715383, -0.001276383, -0.011634138, 0.011559949, 0.012005081, -0.02133937, 0.0002727278, -0.00807308, 0.0308625, -0.005628225, 0.012564869, -0.027368888, 0.011391339, 0.0024532855, 0.017346669, -0.012659291, -0.016442915, -0.030242015, -0.0036993187, 0.011681349, -0.013704677, 0.011876937, 0.0025898602, 0.0017839011, 0.025993025, 0.006144174, 0.019464418, -0.021150526, -0.024306918, 0.0139879435, -0.019410463, 0.028569397, 0.029648505, -0.005489964, 0.0060160295, 0.015660562, 0.01084504, 0.0013834507, 0.015174963, 0.0031631365, -0.0036150133, -0.015943827, 0.051122762, -0.029324772, 0.020287238, 0.01166786, 0.0024195635, -0.0091993995, 0.015862893, 0.0048964545, 0.026087446, -0.014298187, -0.001513281, 0.023187343, -0.024536228, 0.01437912, 0.006258829, -0.014743319, 0.023780853, -0.012666035, 0.024387851, 0.003389075, 0.0014770296, 0.014716341, 0.008922878, 0.01472983, -0.0044749277, -0.008093313, 0.008059591, -0.00065968937, -0.006451045, -0.015053563, 0.0015040074, -0.003341864, -0.00551357, -0.024077607, 0.005223559, -0.0093949875, -0.004002818, -0.00064915116, -0.004684005, -0.010925973, 0.0040432843, 0.03585338, -0.010352696, -0.025507426, 0.0071828156, 0.018358333, -0.0055742697, -0.012126481, -0.0016979097, -0.0134349, 0.0122950915, 0.0450258, 0.009860354, -0.000179465, -0.014770297, -0.010339208, -0.01060224, -0.03169881, 0.0112429615, -0.014311676, 0.034612402, -0.0063768565, -0.027840998, -0.010096408, 0.003830835, -0.026370713, 0.030215036, -0.004899827, -0.015417762, -0.02262081, 0.010743873, -0.02169008, 0.0133742, -0.011870193, 0.008612635, -0.016281048, -0.0136776995, -0.012969535, 0.0005795993, -0.022539878, 0.03326352, -0.019855596, -0.025291605, -0.026573045, -0.0059823073, -0.014675875, 0.056976926, 0.009570343, -0.003389075, 0.030970413, -0.011452039, -0.0077493475, -0.013455134, -0.009968264, -0.010649451, 0.016469892, 0.016901536, 0.015174963, -0.0134821115, -0.016699202, 0.02144728, 0.016065227, 0.0047345883, -0.014932163, -0.02440134, 0.006987227, -0.010359441, 0.020017462, 0.022121724, 0.014581453, 0.0076684146, 0.015957316, -0.014514009, 0.021501236, -0.00096445315, -0.03409983, -0.0100559415, -0.0069265272, -0.008841945, -0.014648898, -0.025291605, 0.006417323, -0.009327544, -0.025305092, 0.00168695, -0.011890426, 0.013455134, 0.0064679063, 0.0007924703, -0.024657628, 0.00854519, -0.008538445, 0.012922323, 0.024347384, 0.004100612, -0.0046367943, 0.019761173, 0.0048964545, 0.0021059476, -0.0155661395, -0.011128305, 0.034585427, -0.0044513224, -0.023618987, 0.0058271857, -0.053685647, -0.00624534, -0.0017602957, 0.018290889, 0.002397644, 6.4177446E-05, -0.02120448, -0.011479016, 0.027760064, -0.0109124845, -0.004744705, 0.004603072, -0.03358725, -0.017535511, 0.0076886476, 0.032211386, 0.0061880127, -0.00024364245, -0.0042489897, 0.011951126, 0.001750179, 0.0132528, -0.022661278, -0.0025426494, -0.008963345, 0.009833376, -0.0022458944, 0.0037431575, 0.028056819, -0.015255895, -0.006879316, 0.0043063173, 0.0013185357, -0.0032356393, 0.014244231, 0.0041680564, -0.017306201, 0.011600416, 0.010804573, 0.012470447, -0.01166786, -0.0019204759, -0.028245663, -0.0009821573, -0.0025662547, 0.013394434, 0.010764107, 0.03051179, -2.0417701E-06, 0.016537337, 0.0036352465, 0.004984132, -0.019976996, 0.01567405, -0.007034438, -0.02297152, 0.022674765, 0.026141401, 0.017724356, -0.018843932, -0.017710868, 0.0061846403, -0.030781569, 0.028353574, 0.038092528, -0.0075132926, 0.009300566, 0.00028663818, 0.016078716, -0.018223444, 0.0060295183, -0.0022121724, 0.008025869, 0.021824969, 0.015053563, -0.017751334, -0.014217254, -0.03361423, 0.012463703, 0.012726735, -0.006005913, -0.019194642, 0.026424669, 0.001450052, 0.0058271857, -0.01390701, -0.021420302, -0.020880748, 0.027948909, -0.013839566, 0.030134104, -0.018722532, -0.012207414, -0.016456405, -0.0353408, -0.008180991, -0.041464742, -0.008221458, 0.0007224968, 0.028569397, 0.03830835, 0.00058845134, 0.0015663934, 0.010467352, 0.016442915, -0.003201917, -0.004289456, -0.002365608, 0.006066613, -0.01663176, 0.007486315, 0.00029464718, -0.008477746, -0.0072974707, -0.032130454, -0.013185357, -0.013131401, 0.00265056, -0.014014921, -0.0053415867, -0.055574086, 0.026829334, -0.008794734, -0.004680633, -0.00924661, -0.038173463, -0.008180991, 0.03299374, -0.007769581, -0.014648898, 0.006825361, 0.020813305, -0.038254395, 0.025197182, 0.0013514147, 0.040385634, -0.013947477, -0.00024701466, -0.027840998, 0.0050684377, -0.0012645802, -0.017589469, 0.009084744, 0.004340039, -0.004984132, -0.012409748, 0.013036979, -0.0035340802, -0.0029844092, 0.00083462294, -0.012827902, 0.00096361013, -0.020408638, -0.0008342014, -0.021271925, 0.012308581, 0.023780853, 0.007776325, 0.022472434, -0.029432682, -0.01757598, 0.026020002, -0.0042456174, 0.021406814, 0.0017940179, 0.009341032, 0.025642315, -0.021420302, -0.0012831273, -0.004319806, -0.015997782, -0.009860354, 0.002588174, 0.0037937406, -0.031159256, -0.014095854, 0.01932953, -0.012112992, -0.01721178, -0.019653263, -0.0061913845, -0.0013421412, 0.032454185, -0.018749509, -0.029081972, 0.010730385, 0.02709911, -0.0014298187, 0.018709043, -0.004309689, 0.004754822, -0.023254788, 0.030943435, -0.020206306, 0.0088352, 0.0052100704, -0.014433076, 0.00022720291, 0.0088689225, 0.0033486085, 0.028650329, -0.003358725, 0.02545347, -0.016429426, 0.012483936, 0.014311676, 0.015309851, -0.01291558, -0.0067241946, 0.0030164453, 0.027207023, -0.018655088, -0.0069062943, -0.0004137285, -0.015754983, 0.007223282, -0.0097254645, -0.020449106, -0.0010605613, 0.0268698, -0.0047649383, 0.014878208, 0.00574288, 0.012686268, -0.041410785, -0.010339208, -0.016888047, -0.031132279, -0.012625569, -0.020354683, -0.025399515, -0.020165838, -0.0043906225, 0.0044209724, 0.010204319, 0.011128305, -0.02193288, -0.020233283, 0.01756249, -0.03698644, 0.018560665, 0.023416653, 0.008457513, -0.0067376834, 0.02321432, 0.002933826, -0.020381661, 0.004080379, 0.0019440813, -0.032589074, -0.020111883, 0.0029253955, -0.00942871, 0.0182774, -0.0061104516, 0.00041415, 0.011101328, 0.02546696, -0.012726735, -0.01213997, 0.00094169076, 0.014635408, 0.005675436, 0.0059721908, -0.025777204, -0.00020749653, -0.00718956, 0.0086935675, 0.010399908, -0.02945966, -0.008882412, -0.0032727337, 0.011836471, 0.031051345, -0.01862811, -0.00027293857, -0.013219078, 0.00065168034, 0.019855596, 0.0010318975, -0.02086726, 0.016213605, 0.010743873, 0.028731262, 0.02935175, -0.008180991, -0.022472434, 0.006666867, -0.032346275, -0.04340714, -0.010716896, 0.0010150364, 0.054872666, -0.002647188, -0.023322232, 0.0013699619, 0.0037161796, -0.039225593, 0.010265019, -0.007223282, 0.011836471, 0.02900104, 0.034612402, -0.012564869, -0.00078741193, 0.03291281, -0.0016254071, 0.005739508, -0.0056383414, 0.011445294, 0.015970806, 0.0045626056, -0.028785218, -0.017535511, -0.018156, 0.019788152, 0.0052134427, 0.007567248, 0.006167779, 0.009111722, -0.0013379259, 0.009914309, 0.009408477, 0.025628826, 0.039684214, 0.006434184, -0.049665965, -0.008801478, -0.007169327, 0.0020098395, 0.006066613, 0.013583277, -0.0031462756, -0.023726897, 0.009590576, 0.016294537, -0.01862811, -0.008612635, -0.001954198, 0.011128305, 0.007850514, 0.011060862, 0.044378337, 0.013738399, -0.027301444, -0.0008658159, 0.03512498, 0.008106803, -0.005476475, 0.0072772377, 0.00012203199, 0.0033620973, 0.008781245, 0.004026423, 0.017818779, 0.004525511, -0.019181153, -0.013643977, -0.019396974, -0.0012114679, 0.009759187, 0.004117473, -0.016200116, -0.0053955424, -0.007324449, 0.018250423, -0.010467352, 0.0017054972, -0.03652782, 0.0036925743, 0.008720545, -0.011694837, -0.0023908997, 0.016699202, 0.003672341, -0.006872572, 0.03275094, 0.21042615, -0.008889155, -0.012956046, 0.039171636, 0.007324449, -0.003581291, -0.0022981637, -0.0015798822, -0.0028798706, -0.0017316318, 0.025534404, 0.00725026, 0.015053563, -0.012099504, 0.024684606, 0.000112758404, -0.021717057, -0.012247881, 0.01296279, -0.004761566, 0.00073092734, 0.0041073565, 0.013866544, 0.003800485, -0.01090574, 0.0019929784, -0.014945652, -0.0004906571, -0.004646911, 0.027921932, 0.019653263, -0.012214159, 0.0069939718, -0.000638613, 0.003719552, 0.0025713132, 0.014675875, -0.016685715, -0.0086733345, 0.030026192, -0.009988498, 0.00642744, 0.01849322, 0.0051358817, 0.017872734, 0.013866544, -0.0014955768, 0.03561058, 0.012065781, 0.014460053, -0.028461486, -0.014743319, -0.0029388843, 0.028110774, -0.0107573625, 0.012740225, 0.020732371, -0.037903685, 0.004947038, -0.015174963, -0.025736736, 0.03099739, -0.011357617, 0.043784827, -0.006117196, -0.0061846403, -0.005769858, -0.014352143, 0.020786326, 0.004279339, -0.0019929784, 0.0059620743, 0.0038072295, 0.019235108, 0.009583832, -0.02522416, 0.010629218, -0.0062487125, 0.019518374, -0.0041984064, -0.015309851, 0.0015200254, 0.0036352465, -0.0019221619, -0.02533207, -0.029513616, 0.016051738, 0.021865435, -0.040061902, 0.013104423, 0.005139254, 0.00051341957, 0.00038611848, -0.004555861, -0.008066336, 0.01757598, -0.05751648, 0.0018698926, -0.026923755, 0.004063518, 0.003517219, -0.0014323478, 0.00495041, 0.016995959, -0.0029439428, 0.01709038, -0.011910659, 0.012106248, -0.008275413, -0.012065781, 0.013340478, -0.028434508, 0.028083798, -0.014352143, -0.027625177, 0.01626756, 0.005850791, -0.046239797, 0.010872018, -0.038335327, 0.018870909, -0.0064375564, 0.02570976, -0.0021868807, 0.0075200372, -0.02321432, -0.024886938, 0.01722527, 0.0026084075, -0.022081256, -0.023821319, -0.012639058, 0.01025153, -0.028245663, -0.008106803, 0.0019289063, 0.01897882, -0.013765377, -0.016699202, -0.023632474, 0.0076279477, -0.00043459405, 0.014891696, 0.006447673, 0.019343019, -0.016483381, 0.011162028, -0.013016745, -0.0069939718, -0.008369835, 3.3695793E-05, -0.0074795703, -0.022418479, -0.012146714, 0.011647627, -0.0036352465, -0.027921932, -0.028137753, 0.011168772, 0.013515834, -0.027395865, 0.012052293, 0.025520915, -0.039144658, -0.011654371, -0.01698247, -0.17254944, 0.015862893, 0.027894953, -0.020071417, 0.018843932, -0.012787435, 0.015188452, 0.0044884165, -0.011694837, -0.0012359164, 0.0053651924, 0.0026943989, -0.003058598, -0.023983186, 0.022324055, 0.005759741, -0.007263749, 0.006403834, 0.0042321286, 0.0026674212, 0.012908835, -0.010541541, -0.0065184897, 0.0093949875, 0.017980644, -0.027436333, -0.003577919, -0.00041457155, 0.0056990413, 0.0053887977, 0.0114183165, -0.0024313661, 0.008585657, 0.010487585, 0.02063795, 0.01602476, -0.019720707, 0.009516387, -0.037283197, 0.00132528, 0.018870909, 0.0040399125, -0.016254071, -0.016173137, 0.026680956, 0.0026691074, 0.0011296916, -0.012497425, -0.0032710475, -0.012699758, 0.020084906, 0.0029827233, -0.010406652, 0.020125372, 0.04089821, 0.012106248, 0.01279418, 0.008997067, 0.0014264465, -0.0044850446, -0.0056855525, -0.016294537, -0.008821712, -0.015849406, -0.011222728, -0.015134496, 0.024711583, 0.000433751, -0.027126089, 0.004080379, -0.014527498, 0.035772447, 0.003309828, -0.007209793, 0.029216861, 0.006386973, -0.026573045, -0.0009855295, 0.022823144, -0.01731969, -0.008086569, 0.036851555, 0.0012746969, -0.011708327, -0.0065791896, 0.026667468, -0.025021827, -0.0067680334, -0.011249705, -0.028137753, 0.014891696, -0.0133742, -0.034828227, -0.013920499, -0.0029776648, -0.0065690726, 0.020557016, -0.022998499, -0.0061070793, -0.014298187, 0.005645086, 0.0049436656, -0.02983735, -0.0013994687, 0.023875274, -0.00718956, 0.009462432, 0.04243594, 0.0032929669, 0.004114101, -0.015067052, 0.0025932326, -0.004633422, 0.02135286, 0.005941841, 0.0153907845, 0.021123547, -0.024832983, 0.019774662, -0.0032423837, -0.00359478, -0.011539716, -0.028839173, -0.001309262, -0.020664927, 0.008700312, -0.08368486, -0.010608985, 0.032481164, 0.021002147, 0.014446564, -0.0025274744, 0.009833376, 0.0050583207, -0.009786164, 0.0119646145, 0.0037869962, -0.012908835, -0.010892251, 0.0037094352, 0.019154174, -0.02179799, 0.005992424, -0.023295254, -0.017764824, 0.013718166, -0.015930338, 0.0047986605, -0.03463938, -0.0060632406, 0.013603511, 0.0051358817, -0.030349925, 0.011337383, 0.019167664, -0.0072974707, 0.0023032222, 0.0009155561, 0.010022219, -0.014918675, -0.02945966, 0.0072907265, -0.03075459, -0.004714355, 0.012504169, -0.019761173, -0.0038274627, 0.019976996, -0.009462432, -0.019073242, -0.008707057, -0.010858528, -0.015269385, 0.007445848, -0.0047042384, 0.020705393, -0.03334445, -0.015943827, -0.010150364, -0.0033755861, 0.0014399353, -0.03571849, 0.019005798, -0.010689918, 0.009536621, 0.011249705, -0.017036425, 0.008160758, 0.017130846, 0.021878924, 0.0065994225, -0.0021261808, 0.0024701466, -0.010345953, 0.008221458, -0.0034143666, -0.018870909, 0.029081972, 0.0037735074, 0.022944544, -0.020799816, -0.0004839127, -0.040115856, -0.020921215, 0.017845755, -0.027139578, -0.020003973, -0.007209793, 0.016011272, -0.009361266, 0.02545347, 0.024576696, 0.0028933596, -0.01756249, 0.02298501, -0.032858852, -0.01472983, 0.015107518, 0.019140687, -0.023416653, 0.004977388, -0.011337383, 0.007951681, -0.00047210994, -0.018344844, -0.0025763714, -0.05328098, -0.02569627, -0.0666889, 0.025318582, 0.015768472, -0.009786164, -0.019626284, -0.011155284, 0.022580344, -0.021433791, 0.0069737383, -0.009658021, -0.010224553, -0.0011069293, -0.013569789, 0.002377411, -0.0046570273, -0.034963112, 0.009455687, 0.013542811, 0.03323654, -0.00948941, -0.012463703, 0.016955491, -0.0024364246, 0.014082366, -0.026100935, 0.0077358587, -0.039360482, 0.026451645, 0.012254626, -0.024455296, 0.02310641, 0.002190253, 0.024145052, 0.0348552, -0.0044816723, -0.028596373, 0.018075066, 0.00077645225, 0.01249068, -0.0174276, -0.011371105, -0.020125372, -0.0049133156, -0.009064511, -0.008248435, 0.0046570273, 0.030026192, -0.0051426264, 0.028272642, 0.005250537, 0.020476082, 0.033668183, -0.00035408247, -0.04524162, -0.023241298, -0.02945966, 0.008997067, 0.019585818, -0.0024397967, -0.0044816723, 0.031563923, 0.011661116, 0.022324055, -0.0014685992, 0.014999608, 0.005675436, -0.021892413, 0.010885507, 0.01768389, -0.015808938, -0.013138145, 0.0059081186, 0.01721178, 0.011654371, -0.0074593374, -0.011863449, 0.014770297, 0.018641599, -0.0115936715, 0.01684758, 0.012929068, 0.002522416, -0.037418086, 0.004350156, -3.8497246E-06, -0.005914863, -0.038928837, 0.0024161912, -0.02039515, 0.020435616, -0.021433791, 0.008889155, -0.01849322, -0.019167664, 0.014594941, 0.009421966, 0.0014846171, -0.016105693, 0.012510913, 0.0022829887, 0.008599145, -0.0002864274, 0.0045356276, -0.013920499, 0.005284259, 0.029378727, -0.024118073, -0.020772837, -0.021514725, 0.004147823, 0.027598199, 0.015930338, 0.009293822, 0.003341864, 0.014419586, 0.011903915, 0.004272595, -0.04597002, -0.0093545215, 0.0019407091, 0.011984848, 0.011310405, 0.0016540709, -0.047426816, 0.0075605037, 0.0023605498, 0.00551357, 0.0019339647, -0.0009189283, -0.011762282, 0.032103475, -0.013380945, 0.028299619, 0.0010791084, 0.0053213537, -0.010534796, 0.010480841, 0.027207023, 0.0048424993, 0.074782215, 0.006134057, -0.009927798, 0.0051426264, -0.016442915, 0.010872018, 0.027948909, 0.012956046, -0.017414114, -0.03396494, -0.008551935, -0.017589469, 0.0033772723, 0.022364523, -0.0058541633, 0.0019305925, 0.0077426033, 0.023780853, -0.028785218, -0.019909551, 0.033991918, -0.011479016, 0.03736413, 0.008336113, 0.0011330639, -0.018304378, 0.025534404, 0.01160716, 0.0134956, -0.020192817, 0.011971359, -0.008403557, -0.027948909, -0.019639773, -0.018466244, -0.030376904, -0.008147269, 0.0029270817, -0.034477513, 0.03218441, 0.018816954, 0.004694122, -0.027733088, -0.034828227, 0.013893521, -0.0035037303, -0.009914309, -0.018816954, -0.019842107]
+ },
+ {
+ "Id": 73,
+ "Type": "Ski/boarding",
+ "Brand": "WildRunner",
+ "Name": "Omni-Snow Dual Snowboard",
+ "Description": "Unleash your snowboarding skills with the Omni-Snow Dual Snowboard by WildRunner. This innovative design combines the maneuverability of a skateboard with the speed and stability of a snowboard. The vibrant red and black color scheme adds a dash of excitement to your snowboarding adventures.",
+ "Price": 289.99,
+ "Embedding": [-0.014427275, -0.007285448, -0.014296711, -0.014296711, -0.028959, 0.0024399068, -0.040135242, -0.03877738, -0.0062278826, -0.037027832, 9.583162E-05, -0.004703553, -4.1413135E-05, -0.019545367, -0.0006756665, 0.0022897588, 0.023070583, -0.0037341183, -0.011450426, -0.0097400425, -0.015184544, -0.0117311375, -0.011887814, -0.022992246, -0.006231147, -0.015080093, 0.027653366, -0.0069525107, 0.01842252, -0.0029980661, 0.014061697, -0.0042661647, 0.010902058, -0.029402917, -0.011600574, -0.0101643745, -0.00023419842, -0.004736194, 0.00058590405, 0.0109803965, 0.0074355956, 0.011607102, 0.0056142337, 0.019297296, 0.009113338, 0.0054673497, 0.0026928738, -0.03595721, 0.0044456897, 0.0121228285, -0.004958152, 0.01696021, -0.017900266, -0.011241524, 0.008734703, 0.0022016284, -0.0006495538, 0.010660516, 0.0069198697, -0.014897304, -0.005437973, -0.015302051, -0.0068350034, 0.025290165, 0.0037504388, -0.0014060065, -0.024598178, -0.012756062, -0.0033750685, 0.0021738836, -0.009426691, -0.0033783326, 0.0027091943, 0.0036035548, -0.0068415315, -0.02164744, -0.004269429, 0.0100664515, -0.0074160113, -0.0015063772, 0.019506197, -0.041702006, 0.008832626, 0.013591669, 0.011783362, 0.011306806, 0.006169129, 0.012762589, -0.0095115565, -0.0015202496, 0.00577091, 0.007344201, -0.0007980699, 0.015014811, -0.015680686, 0.003463199, 0.0037373824, 0.016712138, -0.039090734, -0.00598634, 0.017025491, 0.020172073, -0.0038875304, -0.011979208, -0.0332676, -0.009015415, 0.00026785934, 0.01652935, 0.011861701, -0.00022093805, -0.024428446, 0.0025492539, 0.00051246205, -0.029272353, 0.012814815, 0.0065836683, 0.035539407, -0.0021771477, 0.0159157, -0.018096112, 0.052486558, 0.009648648, 0.0100664515, -0.036949493, -0.005836192, 0.023867022, -0.019088395, -0.00023440243, 0.01957148, -0.0059602275, 0.024141205, -0.006231147, 0.0038614178, -0.009465859, -0.04211981, 0.022091357, -0.007853399, 0.017769704, -0.0034468784, -0.00068137865, 0.0035186885, -0.0014884247, -0.022039132, -0.007624913, 0.0073964265, 0.023906192, 0.018396407, -0.019976227, 0.04334711, -0.014871191, 0.013643893, -0.021321032, 0.04099696, 0.012671195, 0.026413012, -0.012064074, 0.006159337, 0.021595215, -0.015680686, 0.004351031, 0.000119955286, -0.012677724, -0.0011261109, -0.0023272957, 0.013565555, 0.027679479, 0.011248052, -0.015275938, 0.020511538, -0.015132318, 0.0027875323, 0.036792815, -0.039848004, 0.036348898, 0.0005043018, -0.010771495, -0.0020253675, 0.008166752, -0.020668214, 0.013970302, 0.025159601, -0.024310937, 0.009589895, 0.025799362, -0.013526387, -0.030734666, -0.007037377, -0.018096112, -0.0018915398, -0.020746551, -0.03115247, 0.021569103, 0.0090872245, 0.045932267, -0.65219116, -0.018997, 0.009576838, -0.026765533, -0.003141686, 0.020237355, 0.0168427, 0.015563178, 0.010379804, 0.013324013, -0.0102296565, -0.0015545225, -0.013957246, -0.014570896, 0.004977736, -0.008023132, 0.02427177, 0.00029336003, -0.0088587385, -0.001641021, -0.017652195, 0.006133224, -0.024545953, -0.023318654, -0.008010075, 0.011626687, -0.0013333806, -0.0038516256, -0.021373257, 0.03211864, -0.02523794, 0.04608894, 0.016555462, 0.012207694, 0.04964027, -0.021072961, -0.018879494, 0.05222543, 0.0045175, 0.03961299, -0.020354861, 0.00489287, -0.00032008477, 0.0028577102, -0.0059961323, -0.005891681, 0.0059341146, -0.0102622975, 0.004488123, -0.028619535, 0.011881285, -0.0050495462, 0.0038907945, -0.011483067, -0.012658139, 0.0008902804, 0.03945631, 0.023148922, -0.009008887, 0.01265161, -0.020472368, 0.026634969, -0.020955455, -0.035043266, -0.028776212, 0.0220783, -0.02337088, 0.0048700213, 0.012677724, -0.0038679459, 0.0031498463, 0.014113923, 0.0037080056, 0.03462546, -0.014675346, 0.025211826, 0.035252165, -0.021020737, 0.007017792, 0.014466444, 0.006316013, 0.005764382, -0.02014596, -0.03569608, 0.022665838, -0.021438539, -0.007043905, 0.025329335, 0.0021037057, -0.015458727, 0.025890756, 0.033110924, -0.020746551, -0.012390483, 0.0011089743, 0.021778004, -0.019375635, 0.0318314, 0.035748307, -0.017521633, -0.011091376, -0.007833814, 0.0301863, -0.008434407, 0.001461496, 0.015484841, -0.02394536, -0.0020580085, 0.036949493, -0.013330542, 0.022535274, -0.014557838, -0.020132903, 0.0013537811, -0.01673825, -0.015759023, 0.00065077783, -0.009296127, 0.016868815, -0.039482426, -0.008225505, -0.010353692, -0.012423124, -0.016947152, -0.02384091, 0.016464068, 0.01914062, 0.004076848, -0.0101643745, -0.01799166, -0.003105781, -0.022143582, 0.010125205, -0.006270316, -0.0014141668, 0.019558424, 0.011783362, -0.0007474765, 0.011633215, -0.004295542, -0.016464068, -0.004703553, -0.006126696, -0.008147167, 0.0039234357, -0.0066685346, 0.0004945095, 2.7515254E-05, -0.01831807, -0.025942983, -0.01602015, -0.02828007, -0.01731273, -0.003619875, 0.007846871, -0.017103828, 0.0025427258, 0.0012950274, 0.0046578557, -0.0031661668, 0.01981955, -0.0014476237, -0.009851022, 0.0048732855, -0.002155931, -0.001129375, -0.020093735, 0.0128344, -0.017273562, -0.033293713, -0.037001718, -0.0042792214, -0.0068023624, -0.0009759627, 0.0003723102, -0.0019519255, -0.021556046, -0.021360202, 0.0020563763, 0.010405917, 0.005222543, -9.175151E-05, -0.044835534, -0.003988717, 0.014962586, -0.008238561, 0.04175423, 0.027992832, -0.029951284, 0.004021358, -0.012299089, 0.03146582, 0.03010796, 0.0024431709, -0.020785721, -0.014322825, -0.012253392, -0.0117311375, 0.011097904, 0.029089564, 0.0039462843, -0.010836777, 0.0013619413, -0.005075659, 0.021464651, 0.00078623754, 0.02487236, -0.012083659, 0.03214475, 0.014335881, -0.00205148, -0.034886587, 0.004641535, -0.02856731, -0.00928307, 0.013983359, -0.027366126, 0.014283655, -0.009596423, -0.012364371, 0.0011783363, -0.0068154186, 0.01509315, -0.026034378, 0.018265845, 0.00038618257, -0.014936473, 0.014126979, 0.029220128, -0.009021943, 0.011215411, 0.0028936153, 0.023292542, -0.009322239, -0.0098706065, 0.0071287714, 0.0032379767, -0.013748345, 0.037654534, 0.0046252147, 0.028515086, 0.030264637, 0.011137073, -0.013565555, 0.017325787, -0.0017772967, 0.034677684, 0.0043608234, -0.010954284, -0.0012313777, -0.035931095, 0.003358748, -0.0111436015, 0.00024276665, 0.00978574, -0.0033815966, 0.018109169, -0.013578612, 0.024415389, 0.022926964, -0.012599385, 0.0334765, 0.01082372, 0.00044595622, 0.025120432, -0.01024924, -0.008636781, -0.0334765, 0.0064172, -0.02634773, 0.003430558, -0.010836777, 0.0036002905, -0.003430558, -0.012684251, 0.0010828617, 0.017378012, 0.013709175, 0.011776835, 0.02971627, -0.0077097793, -0.01928424, 0.0031596385, 0.020759609, -0.027340014, -0.008545386, -0.01673825, -0.0063551823, 0.016398786, 0.036949493, 0.0220783, -0.0072136377, -0.014283655, 0.013787514, 0.0066750627, -0.0030029623, 0.030316863, -0.015510953, 0.021895511, -0.018396407, 0.009968529, -0.005255184, -0.008689006, -0.036688365, 0.049118016, 0.018096112, -0.0067827776, 0.0010469566, 0.00031661667, -0.007004736, 0.0073637855, -0.053948868, -0.014727571, -0.046193395, -0.021099074, 0.0028511821, -0.0053857476, -0.008741232, 0.040814172, 0.009256958, -0.013382766, -0.018722817, -0.0024203223, -7.5125055E-05, 0.08397849, -4.9904866E-05, -0.013891964, 0.029376805, -0.02903734, -0.0091525065, -0.022026075, -0.005728477, 0.021373257, -0.008682478, 0.017051604, 0.022156639, 0.017874153, -0.016372673, -0.013683063, -0.0030192826, -0.008865267, -0.00795785, -0.025277108, -0.013891964, -0.02010679, -0.011104432, 0.004781891, 0.027940605, 0.019845665, -3.503796E-05, 0.011705025, 0.03240588, -0.0023175036, -0.024807079, -0.009687818, -0.017325787, 0.0054804063, 0.0058590407, 0.0014500717, 0.0027108262, 0.0059308503, -0.007154884, -0.0031498463, -0.0013733656, 0.014727571, 0.0062246183, 0.004168242, -0.012148941, 0.017090771, -0.00023787051, -0.004967944, 0.024219543, 0.019453973, -0.026974434, 0.017795816, 0.0029050396, -0.031178582, 0.008662893, -0.017861098, 0.019075338, -0.013278316, 0.011998793, 0.0034403503, -0.038385693, -0.015380389, -0.0076510254, 0.010973869, -0.02010679, 0.0041715065, -0.036270563, -0.013474161, 0.017116886, 0.0031514782, 0.010627875, -0.009021943, -0.0060744705, -0.021738835, 0.0066489503, 0.021020737, 0.0042988057, 0.007376842, -0.0023550405, 0.013996416, 0.017247448, 0.016503235, -0.013865852, 0.0018132017, -0.01731273, -0.0040670554, -0.01712994, 0.0058949455, 0.018109169, 0.004997321, 0.008303843, 0.02505515, 0.00284955, -0.005659931, 0.011646271, -0.004262901, 0.012703836, 0.02856731, 0.016686026, 0.011065263, -0.005470614, 0.025838532, -0.015954869, -0.014257543, 0.0047623063, 0.0094985, -0.020772666, 0.0010110517, 0.015014811, 0.00856497, 0.02133409, 0.021595215, -0.0049842647, 0.00093271356, -0.017717477, -0.0041715065, 0.0039919815, 0.0017446558, 0.015067037, -0.019480085, -0.0056468747, -0.0121163, -0.032275315, 0.009635592, 0.0009531141, 0.0035872343, 0.014388106, 0.007259335, -0.013317484, 0.008486632, 0.020446256, 0.026556632, 0.026386898, 0.014583952, 0.0144795, -0.0075335186, -0.0017462878, -0.022822512, -0.013526387, 0.0076510254, -0.010053395, -0.022208864, 0.013722232, 0.011215411, 0.0047557782, 0.007259335, -0.023906192, -0.020315692, 0.01677742, -0.02010679, 0.017090771, -0.020851003, 0.014427275, -0.006678327, -0.0068480596, 0.004608894, -0.035539407, -0.03298036, -0.008140639, 0.038385693, 0.042354826, 0.02014596, -0.0001974774, -0.008480105, 0.01914062, -0.013108583, -0.020655157, -0.029951284, -0.017547745, -0.04050082, 0.014688402, 0.027705591, 0.0017772967, 0.0113720875, -0.0050332258, 0.018305013, 0.0044326335, 0.0070243203, -0.03671448, 0.004050735, -0.021791061, 0.018331125, -0.023749515, -0.015954869, 0.0033979171, -0.037471745, 0.0015847154, 0.020681271, 0.007905625, -0.004644799, 0.011750722, 0.020054566, -0.030760778, 0.012671195, 0.02670025, 0.026295504, -0.0045827813, -0.025525179, -0.017978605, 0.00917862, 0.012710365, -6.9871916E-05, -0.007037377, 0.024611235, 0.0060091885, -0.029899059, 0.021268807, -0.015550122, 0.011091376, 0.008669421, -0.0035350088, -0.0039462843, -0.033998754, -0.0019029641, -0.029402917, 0.010738854, 0.008806514, -0.019610649, 0.030264637, -0.029951284, -0.026634969, 0.009302655, -0.01437505, 0.011776835, 0.0029719535, 0.011750722, 0.037941776, -0.017756646, 0.0118290605, -0.01573291, -0.00078011735, -0.018983943, 0.025068207, 0.023018358, -0.029794607, -0.005695836, -0.012488406, -0.033633176, -0.012605913, -0.02211747, 0.0104581425, 0.009616007, 0.01096734, -0.00044758827, -0.009518085, 0.007448652, 0.024780966, -0.027966717, 0.018004717, -0.014335881, -0.0026194318, -0.011124017, 0.025224883, -0.014766741, -0.0021608272, 0.014061697, -0.016699081, 0.0014011104, -0.00029070798, 0.0025166129, -0.0024301147, -0.0168427, 0.04201536, -0.014714515, 0.0018866437, 0.026765533, 0.0024937643, 0.0091851475, 0.014871191, -0.010843305, 0.025211826, 0.00032355287, 0.0045175, 0.017939435, -0.009942416, -0.025890756, -0.006316013, -0.020811833, -0.0045011793, -0.00011016302, 0.015745968, 0.014022528, 0.003619875, -0.016307391, -0.004638271, -0.019310353, -0.023135865, -0.017012434, -0.025851589, -0.020080678, -0.039665215, -0.02154299, -0.0019307089, 0.018696705, 0.029977398, 0.036375012, -0.0024301147, 0.00032967303, 0.03527828, -0.041101415, 0.022091357, 0.011443897, 0.026791645, -0.0022342692, 0.00095148204, 0.008212449, -0.029637933, 0.015693743, -0.009159035, -0.011345975, -0.029376805, 0.011313334, -0.024611235, -0.0075400467, 0.0043869363, 0.0037994, -0.020472368, 0.018161394, -0.002082489, -0.024284825, -0.008891379, -0.005437973, 0.002741835, 0.012625498, -0.00079072564, -0.0028723986, 0.00033824125, 0.019688988, 0.025747137, -0.025250996, -0.01462312, 0.0022669102, 0.011365559, 0.011332919, -0.011816003, -0.025446841, -0.0039723967, -0.00752699, -0.0049353032, -0.026478292, -0.006387823, 0.012586329, 0.009864078, 0.015223713, 0.019976227, -0.016268222, -0.020015396, 0.010830249, -0.0065967245, -0.012853984, -0.028253958, 0.018056942, 0.052329883, 0.013487217, -0.0087804, -0.005258448, 0.00058182393, -0.04548835, -0.02419343, 0.01577208, 0.019728156, 0.050449766, 0.016189884, -0.014531726, 0.030839117, 0.014153092, 0.00335222, 0.005509783, -0.0175608, 0.00723975, -0.016372673, -0.011966152, -0.015132318, -0.0120575465, -0.017142998, 0.005503255, -0.007853399, 0.0100338105, 0.023449218, -0.0115026515, 0.0026341202, -0.017534688, 0.013030245, 0.017808871, 0.019532312, 0.016542405, -0.035617743, -0.013604725, -0.000987387, -0.0056762514, 0.014531726, 0.0055228393, -0.023814796, 0.020837948, 0.026543574, 0.003249401, -0.02559046, -0.029899059, -0.004595838, 0.0097726835, -0.017443294, 0.007305032, 0.024715684, -0.008551914, -0.017404124, -0.023292542, 0.0044815945, -0.0011179507, -5.3653468E-05, 0.013996416, -0.022874739, -0.019532312, -0.008356069, 0.013310957, -0.00079766184, 0.01154182, -0.002632488, 0.029664045, -0.040056907, 0.019114507, -0.013448048, -0.0073246164, -0.021947738, -0.00081479835, -0.00605815, 0.043817136, -0.0095115565, 0.0065216506, -0.0035904984, 0.0071287714, 0.014166148, -0.0049940567, -0.027366126, 0.005216015, -0.008055773, -0.0042596366, 0.019989284, 0.19751658, -0.0110783195, 0.008591084, 0.0347038, -0.0073180883, 0.018200563, 0.0058133435, -0.011652799, -0.002844654, -0.010725798, 0.022300258, 0.0017234392, -0.006492274, -0.01082372, 0.0017218072, -0.00964212, -0.03308481, -0.0020547444, -0.009093753, -0.0060353014, 0.013363182, -0.018265845, -0.0028397578, -0.028959, 0.004670912, 0.013023716, -0.002191836, -0.009407106, 0.01082372, 0.006459633, -0.011992265, -0.012710365, 0.011071791, 0.019741213, -0.0030959889, -0.005806815, 0.03384208, 4.444772E-05, -0.011861701, 0.026543574, 0.00082255056, -0.0077685327, 0.025969096, -0.005137677, 0.010836777, 0.027705591, -0.005356371, 0.012194638, 0.0068088905, 6.048766E-05, -0.04099696, -0.015249826, 0.014544782, 0.03893406, -0.010347163, 0.002191836, 0.030212412, -0.0064106714, 0.020354861, -0.0012199534, -0.025864644, 0.02415426, -0.02232637, 0.046193395, -0.0015373861, 0.029089564, 0.008512746, -0.0055620084, -0.004811268, 0.007781589, 0.013996416, -0.0043967282, -0.012880097, -0.0005940643, -0.007370314, -0.0204332, 0.017782759, -0.016176827, 0.022757232, 0.016764363, -0.004856965, 0.0044130487, -0.004814532, 0.005976548, -0.014531726, -0.033894304, 0.010999981, -0.021608273, -0.004488123, 0.015667628, 0.0012623866, 0.012912738, 0.0069133416, -0.012612442, -0.009831437, 0.030499652, -0.01086289, 0.021503821, -0.005470614, -0.0064400486, -0.021033792, 0.0012272976, -0.001351333, 0.003949548, -0.005956963, 0.012351315, 0.0023207676, 0.0070896023, 0.010471199, -0.01803083, 0.017325787, -0.054680027, 0.005189902, -0.013082471, -0.016150715, 0.017808871, 0.020119848, -0.017717477, -0.009668233, -0.014231429, 0.012423124, -0.013552499, -0.0019992548, -0.0088260975, -0.0077424203, -0.009237373, -0.0005557112, 0.034834363, 0.00028581184, -0.016294334, -0.0007336041, -0.0013619413, 0.0097074015, -0.008473576, 0.0005691756, -0.0071287714, 0.018931719, -0.010445086, -0.030551877, -0.023357823, -0.013232619, -0.005464086, 0.009890191, 0.0045338203, 0.041519217, -0.0439477, -0.0008486633, -0.014531726, 0.0024676516, 0.0035513293, -0.026843872, 0.012462294, 0.008271202, -0.011443897, 0.0301863, 0.009256958, -0.028227845, -0.05212098, 0.007637969, 0.0056729876, -0.027104998, 0.011097904, 0.0030551876, -0.020642102, -0.0111436015, 0.020380974, -0.16492791, 0.020132903, 0.011032622, -0.013291372, 0.018239731, -0.029846834, 0.028723987, 0.007899096, -0.01577208, -0.0063551823, 0.031700835, 0.024637347, -0.02559046, -0.009948945, 0.02236554, 0.002994802, 0.011287221, 0.004351031, 0.001531674, 0.0041062245, 0.011783362, -0.02201302, -0.010307995, 0.0058525125, 0.017900266, -0.025433784, -0.00062629714, 0.018122224, -0.0044358973, -0.026034378, -0.008767344, -0.0027989566, 0.014727571, -0.0027875323, 0.033815965, -0.020981567, -0.011476538, 0.014544782, -0.012703836, 0.019924002, -0.012756062, 0.018814212, 0.015550122, 0.0048014754, 0.012788703, 0.019963171, -0.026791645, 0.0043738796, -0.007905625, -0.034860473, 0.027522802, -0.002010679, -0.01716911, -0.0058231354, 0.051572613, 0.0008715119, 0.021451596, -0.015524009, 0.018840324, 0.024402332, -0.013304428, -0.0023583046, 0.017926378, -0.004488123, -0.024598178, 0.005118092, 0.00939405, 0.028436746, -0.053296052, 0.00037027014, -0.0073964265, 0.043582123, 0.007559631, 0.0028136452, 0.032667007, 0.003724326, 0.011496123, -0.0013562292, 0.018187506, -0.0105234245, -0.008068829, 0.026478292, -0.0027336748, 0.014466444, -0.006430256, 0.008081885, -0.03384208, 0.0071026585, -0.007481293, -0.028697874, -0.0058982098, -0.0032200243, -0.006159337, -0.009766156, 0.022208864, 0.0042922776, 0.036427237, -0.00781423, 0.016124602, -0.01505398, -0.014544782, -0.0058982098, -0.0033685402, 0.031805288, 0.0168427, -0.004569725, 0.02828007, 0.012481878, 0.012978019, 0.003029075, -0.008532329, 0.017142998, -0.018683648, 0.02415426, 0.009322239, 0.0012370899, 0.014257543, -0.02057682, 0.010543009, -0.005330258, 0.023749515, -0.0022114206, -0.04172812, 0.021895511, -0.005105036, -0.0059341146, -0.093117945, -0.018918661, 0.025029037, 0.0070700175, -0.015315108, 0.020067621, -0.005976548, 0.014257543, -0.0011277429, 0.019414803, 0.003792872, -0.025185714, -0.0028364938, 0.016790476, 0.027966717, -0.001313796, 0.024794023, -0.022744175, -0.023057528, 0.030160187, 0.0024301147, -0.014557838, -0.011535292, 0.004883078, -0.028515086, -0.015184544, -0.026504407, 0.0047068167, 0.021634385, 0.024637347, 0.0074943495, 0.00881957, 0.009622536, -0.006724024, -0.030029623, 0.0249507, -0.020929342, 0.0023550405, 0.0043738796, -0.0166338, 0.0056370823, -0.006544499, -0.0037373824, -0.010347163, -0.038907945, 0.012684251, 0.013095527, 0.01304983, 0.013878908, -0.012403539, -0.014244487, -0.01523677, -0.020446256, -0.007899096, 0.028619535, -0.0020269996, 0.011868229, 0.009877134, -0.003724326, 0.0060418295, -0.016973265, -0.0018458426, -0.00512462, 0.030995794, -0.013643893, -0.0014157988, -5.3602467E-05, 0.0077293636, 0.013434992, 0.011156658, -0.01645101, 0.0011546717, 8.588635E-05, 0.0045925737, 0.0013154281, -0.011378616, -0.034050982, -0.03154416, 0.002882191, -0.0073898984, -0.029063452, -0.013761401, 0.025564348, -0.030734666, 0.0057088924, -0.008910964, 0.0067436085, -0.015941814, -0.0026700252, -0.020328749, 0.0059308503, 0.023357823, 0.012893153, -0.03068244, -0.005689308, 4.595226E-05, -0.0004300438, -0.0042661647, -0.013591669, 0.010079508, -0.014753684, -0.0030813003, -0.066744104, 0.02817562, 0.0063715028, -0.012462294, 0.0011840485, 0.00482106, -0.0034109734, -0.026948322, 0.013656951, -0.023057528, -0.0120249055, -0.012599385, 0.0006246651, 0.014348937, -0.0026602328, -0.03580053, 0.027157225, 0.0067762495, 0.014440332, 0.012011849, 0.0010102356, -0.0064759534, -0.0026700252, 0.009387521, 0.0075008776, -0.00036333397, -0.020642102, 0.023214204, 0.006071206, 0.009935888, -0.002405634, -0.016672969, 0.016033208, 0.021072961, -0.022809457, -0.032092527, 0.031048018, -0.0067370804, -0.0030910927, -0.013324013, -0.012488406, -0.043529898, 0.011156658, 0.0074160113, -0.032353655, -0.004047471, 0.007912152, 0.027575027, 0.039169073, 0.019662874, 0.02384091, 0.030316863, 0.0023958415, -0.042929303, 0.0035807062, -0.018135281, 0.021751892, -0.0076836664, 0.012318674, -0.020772666, 0.013787514, 0.007376842, 0.0025345655, -0.017534688, 0.015563178, -0.0058557764, -0.0045729894, 0.0024986605, -0.008375653, -0.001057565, -0.010079508, -0.0013962142, 0.0100011695, 0.0027891644, -0.0022505897, 0.0062605236, 0.009452803, -0.013787514, -0.04903968, 0.025929926, 0.00824509, 0.0110783195, -0.032092527, -0.00029376804, -0.0005002217, 0.0037014773, -0.030212412, 0.008963189, -0.004595838, 0.0046121585, -0.020028453, -0.006231147, -0.027914492, -0.020159015, 0.004311862, 0.04050082, -0.019023113, -0.013128168, 0.0065477635, -0.0107519105, 0.013232619, -0.004275957, 0.0048047397, -0.033711515, -0.012540632, 0.007592272, -0.011424313, -0.0047623063, -0.008486632, 0.003645988, 0.019127565, -0.013813626, -0.017273562, -0.0022799664, -0.011567933, -0.008760816, -0.0077685327, -0.04269429, -0.033215374, 0.02749669, 0.028332297, 0.025433784, -0.0056044417, -0.011652799, 0.007487821, -0.008989302, -0.0055228393, -0.0021722515, 0.016437955, -0.00015290218, 0.017391069, -0.008329956, 0.005777438, 0.0056370823, -0.0075008776, 0.0064792177, -0.009270014, 0.036113884, -0.01100651, 0.066900775, 0.025956038, -0.034938812, 0.00074258033, -0.001964982, 0.0077489484, 0.03078689, -0.0015749232, -0.01874893, -0.013891964, 0.0144795, 0.0030780362, 0.0045044436, 0.00066383416, -0.017260505, 0.0025492539, -0.006338862, 0.019597594, -0.027183337, -0.019702043, 0.055358957, -0.032693118, 0.020354861, -0.008447464, -0.0046154223, -0.013180393, 0.009844494, -0.0002954001, -0.019218959, -0.012540632, -0.013258731, 0.0016157243, -0.0025688384, -0.008447464, 0.010405917, -0.006599989, 0.0068415315, 0.030029623, -0.001094286, 0.029089564, 0.0091525065, 0.0067305523, -0.00014117187, -0.011874758, 0.0045207636, -0.0011571198, -0.0008462152, -0.014792853, -0.020629045]
+ },
+ {
+ "Id": 74,
+ "Type": "Climbing",
+ "Brand": "Raptor Elite",
+ "Name": "Apex Climbing Harness",
+ "Description": "Conquer the heights with the Apex Climbing Harness by Raptor Elite. This harness is constructed with high-strength nylon webbing and features adjustable leg loops for a secure and comfortable fit. The sleek white design with a vibrant orange emblem ensures you'll look good while tackling challenging routes.",
+ "Price": 99.99,
+ "Embedding": [0.017359048, -0.0013603873, -0.018194655, -0.044341046, 0.004120752, 0.031941727, -0.01087636, -0.027224595, 0.024246061, -0.025957707, 0.0023787825, -0.009595996, 0.0039118505, 0.008666047, -0.013443828, 0.010950486, 0.029246222, -0.014393994, -0.024987325, -0.0056336042, 0.004545294, 0.009966628, -0.0057077305, -0.01646953, -0.0017074335, -0.02637551, 0.017736418, -0.020728428, 0.045257516, -0.023194814, 0.026914611, 0.004993422, -0.0015347528, -0.020795817, -0.023909124, 0.009063633, -0.016240414, -0.009825113, -0.0035007864, 0.003197542, 0.035014603, -0.014407471, -0.0011253731, -0.006836473, -0.009346661, -0.008558227, -0.0075676283, -0.01843725, -0.015849566, 0.005364054, -0.018639412, -0.00044728525, -0.019407632, 0.002457963, 0.015580015, -0.0042588967, -0.010155313, 0.02425954, 0.042777654, -0.0150409145, -0.013645991, 0.02017585, -0.022453552, -0.013854892, 0.008409973, -0.02126753, -0.0057245772, -0.0036086065, -0.008935597, 0.023464365, 0.03784488, 0.015296987, 0.013356224, -0.0121162925, -0.0011270577, 0.004703655, -0.009589257, -0.007439592, -0.015431763, -0.0012988962, 0.029974008, -0.026227258, -0.0017006948, 0.0032615603, 0.037764017, -0.015485672, -0.0045992043, 0.0023922601, 0.0041611847, -0.019596316, 0.014070532, -0.008470623, 0.017534256, 0.019421108, -0.046901777, -0.0010327151, 0.0067084366, -0.0053809006, -0.004632898, -0.038680486, 0.009488176, 0.001237405, -0.00929949, -0.0027746847, -0.023626097, -0.017884672, -0.00031966998, 0.003615345, 0.030027919, -0.008578443, -0.009724032, 0.0033946508, 0.013470783, -0.033262525, 0.0046531144, -0.012176941, 0.035041556, 0.008025864, 0.009117544, -0.017763374, -0.0035681739, 0.008693001, 0.0320765, -0.00494962, -0.012210635, 0.013989667, -0.021577513, -0.0038680488, 0.012298238, -0.016213458, 0.017682508, 0.0041274913, 0.010330521, -0.00015162212, 0.00924558, 0.03382858, 0.013403395, -0.006967879, -0.0052494947, 0.0064422553, 0.016779514, 0.007156564, -0.009414049, 0.0038107692, -0.00706896, 0.014906139, 0.0065702917, 0.005357315, 0.010815711, -0.0014159821, 0.011887174, -0.024353882, 0.04180727, 0.027426757, 0.0009897555, -0.012608222, 0.017386002, 0.035176333, -0.017925104, -0.012958637, -0.008935597, 0.00065955624, 0.007493502, -0.023733916, 0.023370022, 0.01446138, 0.0033946508, -0.020431923, -0.012331933, -0.010074448, 0.012358887, 0.00940731, 0.00089204346, 0.009737509, 0.015539583, 0.014650066, -0.01908417, 0.008281937, -0.01952893, 0.0054449188, 0.008928858, -0.0027915316, 0.01386837, 0.025485994, -0.01147611, 0.0025910535, 0.01653692, 0.0018396818, 0.003871418, -0.016402144, 0.009333184, 0.014326606, -0.007554151, -0.011914129, -0.6430395, -0.009494914, 0.007298078, -0.02664506, 0.04835735, 0.007250907, 0.025876842, 0.004845169, -0.008322369, 0.024515612, 0.0025809454, 0.021200141, 0.00013077407, -0.036928408, -0.007102654, -0.028814942, -0.013949235, -0.014501814, 0.007466547, -0.004686808, -0.028221931, -0.0016425729, -0.017372526, -0.0068499506, -0.0039522834, -0.013538171, 0.012412798, -0.0010613549, -0.012837339, 0.017210795, -0.03425986, 0.028841896, -0.0074193757, 0.01908417, 0.052454516, -0.035769343, -0.0077900076, 0.035472836, -0.0031368933, 0.03757533, -0.02605205, 0.0057751182, 0.0029886405, -0.0014741039, 0.00043549243, -0.0028774508, 0.030216604, -0.0280602, 0.01734557, -0.022628758, 0.019838912, -0.0063849757, 0.008497577, 0.008760389, -0.020917114, -0.00019542407, 0.031186985, 0.014097488, 0.008928858, 0.008201072, -0.018167699, -0.00042475254, -0.034313772, -0.0408908, -0.03116003, 0.036928408, -0.018262042, -0.005572955, -0.002882505, -0.019865867, 0.017763374, 0.033855535, -0.010303565, 6.9756707E-06, 0.023666529, 0.02186054, 0.0031082535, 0.0008057031, -0.0038309856, 0.015633926, 0.0077900076, 0.014272695, -0.0042285724, -0.0045014923, 0.008618875, 0.004447582, -0.015418285, -0.010910054, 0.020593653, -0.00391522, 0.035445884, 0.009198409, -0.021981837, -0.014906139, -0.005417964, 0.0042723743, -0.011186343, -0.0007892774, 0.007897828, -0.020148896, -0.006816257, -0.008329108, -0.031779997, -0.029839233, 0.04612008, 0.010054232, 0.02447518, 0.0019542407, 0.04404454, -0.022062704, -0.029111447, -0.00016309907, -0.016712127, -0.025593814, -0.0008760389, -0.020755384, 0.012123031, -0.0062299846, 0.01946154, -0.06350608, 0.03585021, 0.0077697914, 0.016766038, 0.014367038, 0.007190258, 0.016146071, 0.017682508, -0.01528351, -0.022184001, -0.022925265, -0.003414867, -0.016819946, 0.011947823, 0.01691429, 0.008194333, 0.0085312715, 0.003524372, 0.007918044, 0.02082277, -0.028814942, -0.025957707, 0.0007694823, 0.01103809, -0.009124282, -0.01299907, -0.041861184, -0.025027758, 0.0009164715, 0.014663544, -0.01707602, -0.0012087652, -0.012102814, 0.0018885378, -0.0025657832, 0.01805988, -0.014380516, -0.0020351058, -0.018262042, -0.0141918305, -0.022857876, 0.016240414, 0.006128903, -0.018208131, -0.008457145, -0.011772615, -0.005670667, 0.000678509, 0.011354812, -0.0031419473, -0.042615924, 0.004373456, -0.014151398, -0.036955364, 0.019758048, -0.004818214, 0.0015280141, -0.018720279, -0.020701474, 0.011078523, 0.01278343, -0.002484918, 0.013295575, -0.01811379, -0.010256394, -0.0004371771, 0.0082549825, 0.010957225, 0.053317077, -0.008463884, 0.00214798, -0.027049387, 0.029569684, -0.0228444, 0.0280602, -0.0076148, -0.022723101, -0.002784793, 0.028653212, 0.011705227, 0.02653724, 0.020283671, -0.03485287, 0.03900395, -0.0077630524, 0.025849886, 0.007951737, -0.007183519, 0.0013309052, 0.017251227, -0.0039286977, -0.011772615, -0.018639412, 0.0047811507, -0.024582999, 0.01332253, 0.01784424, 0.030324424, 0.04312807, -0.016523441, -0.014097488, 0.023531754, -0.0063714986, 0.017925104, -0.011011135, -0.019353721, 0.012608222, 0.013255143, 0.04585053, -0.007944999, -0.012109553, 0.0010849405, -0.0006751396, 0.011226776, 0.0034670925, 0.038869172, 0.026119437, -0.0044779065, -0.015067869, 0.022965698, -0.0107011525, 0.035499793, 0.00041948786, 0.020256715, 0.0027763695, 0.04151077, 0.027076341, 0.035257198, 0.019690659, -0.009690338, 0.007850656, 0.0034435068, 0.015580015, 0.0056302347, 0.033127747, 0.012675609, 0.0014446218, 0.023302635, 0.02159099, 0.014178352, 0.0114558935, 0.017574688, -0.013949235, 0.021240573, -0.0063175885, 0.029192312, -0.031699132, -0.013207971, -0.012958637, -0.014596156, -0.0280602, 0.010155313, -0.015148735, 0.012513879, 0.004605943, 0.015404807, -0.01446138, -0.013261882, 0.010849405, -0.006216507, 0.016119117, -0.01799249, -0.040863845, 0.020256715, 0.018666368, 0.014973527, -0.024084331, -0.030809615, 0.013174278, -0.008827777, 0.058222894, 0.0030779291, 0.006004236, -0.017439913, 5.922739E-05, 0.00047213444, 0.023666529, 0.022035748, -0.017722942, 0.030378334, -0.030755704, 0.0066140937, -0.002382152, -0.01397619, -0.008423451, 0.048330393, -0.007911305, -0.012149986, -0.037871838, 0.015741745, 0.00036978952, 0.013800982, -0.013989667, 0.010391169, -0.007196997, -0.0012744681, -0.02022976, -0.019771524, -0.022305299, 0.02012194, -0.01680647, 0.013403395, 0.00804608, -0.0015179059, -0.011004397, 0.08043385, 0.0073991595, -0.0047946284, 0.017601643, 0.0018801143, -0.029434908, -0.0012820492, 0.0024781793, -0.009555563, 0.0019373938, 0.006041299, 0.0070959153, -0.0011514857, 0.0108898375, -0.0017124877, 0.006064885, -0.004322915, -0.009919456, -0.016644739, 0.0015473879, 0.017911626, 0.008335847, 0.02257485, 0.0060143443, 0.009225364, 0.026955044, 0.020189328, 0.0064254086, 0.0068331035, -0.020216282, 0.011348073, -0.01392228, 0.0003834776, 0.012075859, 0.003649039, -0.0081539005, -0.033316433, -0.016024774, 0.029219268, 0.004154446, 0.0029077753, 0.03180695, 0.0059806504, -0.024246061, 0.019987164, 0.001574343, 0.01386837, 0.016631262, -0.0037602286, -0.011004397, -0.0021277638, 0.021132754, -0.02403042, -0.003632192, 0.00048687548, 0.02773674, 0.0024815486, -0.0004603416, -0.008066297, -0.03496069, -0.00016783726, -0.011792831, 0.017682508, -0.0062468313, -0.014771364, -0.0147578865, -0.018733755, 0.022682669, -0.013767288, -0.01082245, -0.022184001, -0.008895164, 0.0030695056, 0.011334596, 0.02549947, 0.0016922713, 0.001025134, -0.0142861735, 0.024839073, 0.026146391, -0.007217213, 0.015566538, -0.0014319867, -0.005178738, 0.012635177, -0.0068870136, -0.0040971665, -0.018464204, -0.0032649296, -0.0028841896, 0.02425954, -0.0064692106, 0.039030902, 0.0053370986, -0.0038040306, -0.00011866537, 0.010215961, 0.007924783, 0.019717615, -0.0007433696, -0.0022558002, -0.0280602, -0.005835767, 0.0025337741, 0.044907104, 0.023248725, 0.021132754, 0.020310625, -0.01397619, -0.011914129, 0.021793153, 0.0064961654, -0.00036557778, -0.0059638033, -0.014097488, 0.011577191, 0.01413792, 0.0053910087, 0.026698971, -0.026928088, -0.007998909, -0.043640215, 0.024623433, 0.00973077, -0.017911626, 0.01929981, -0.0013149007, -0.020216282, 8.456355E-06, -0.0026365402, -0.025041236, 0.0026853962, 0.0076821875, -0.005475243, -0.010869621, 0.001930655, -0.044233225, 0.005279819, -0.0020873311, -0.0022591695, 0.0026298014, 0.0036389309, 0.008490839, 0.006644418, -0.01979848, -0.019865867, -0.011482849, 0.0026533871, -0.032211278, -0.0042386805, -0.022777012, 0.00026470696, -0.03323557, -0.012406059, -0.0032851459, -0.015081347, -0.011570453, -9.865967E-05, 0.020270193, 0.011920868, 0.013895325, -0.029731413, 0.047252193, 0.0054583964, -0.015148735, 0.002110917, -0.017547734, -0.005623496, -0.029030582, 0.034313772, -0.003948914, 0.017534256, 0.0009998636, -0.0042925905, -0.007951737, 0.014407471, 0.0036355616, -0.03986651, -0.0027696306, -0.05434137, -0.0098520685, 0.0019811958, 0.010707891, -0.0006157543, -0.032966018, 0.0011919183, 0.055015244, 0.032885153, -0.012938421, -0.009393833, 0.036065847, -0.023666529, 0.021092322, -0.01979848, -0.009178192, -0.001935709, -0.0037265348, -0.015957385, 0.0040196707, 0.013005809, -0.009865546, 0.0018919071, 0.008834516, -0.011112217, -0.024785163, 0.00793826, 0.01245323, -0.01691429, 0.029300133, -0.018774187, -0.0022153677, -0.008888425, -0.009252319, -0.02419215, 0.016550398, 0.024219107, -0.009717293, 0.016846903, -0.010087925, 0.0057852264, 0.016078683, -0.0041679237, 0.01544524, -0.01549915, 0.012278022, 0.011314379, -0.009306229, -0.023680005, -0.028248886, -0.022588326, 0.014933094, 0.0012997385, 0.029839233, -0.0025859994, -0.0007964373, -0.010182268, 0.0043599783, -0.012614961, -0.029542727, 0.028141065, 0.01147611, 0.028599301, -0.0062636784, -0.033720758, 0.0010175529, 0.020202804, -0.0112672085, -0.0046901777, 0.0031689024, -0.029650548, -0.0045756185, 0.035823252, -0.026105959, 0.023046562, 0.0073452494, -0.01544524, -0.011705227, 0.0055325227, -0.0008954129, -0.009865546, 0.00826846, 0.026200302, 0.01310689, -0.010734846, -0.0011969724, -0.0023299265, -0.016132593, -0.0021462953, 0.015997818, 0.027386324, -0.008874948, -0.0028201714, -0.019717615, 0.0016248837, -0.007857395, -0.007891089, -0.0029633702, -0.007392421, 0.01321471, -0.009670122, 0.009737509, 0.005134936, -0.007655232, -0.010842666, -0.0028033245, 0.018774187, -0.029273177, -0.016685171, 0.018100312, -0.030270513, -0.03757533, 0.015957385, 0.0048418, 0.015809134, 0.005128197, -0.016173026, -0.017089497, 0.0067623467, -0.041888136, 0.0067252833, 0.014879184, 0.03655104, -0.00924558, 0.026564196, 0.014218786, 0.00059806503, 0.020472355, -0.018895486, -0.025607292, -0.02089016, 0.021227097, 0.00051467284, -0.008241504, -0.012534095, 0.016550398, -0.005155152, 0.013066458, 0.00413423, -0.028572347, -0.0022659083, 0.008841254, 0.010707891, 0.040378656, -0.025351219, -0.0017082759, -0.0023535122, 0.012446491, 0.008504316, -0.021820107, -0.030054873, -0.03110612, 0.0038848957, -0.022682669, -0.04746783, -0.011509803, -0.010613549, -0.015310464, 0.014151398, 0.004178032, -0.0007901197, 0.011786093, 0.007021789, 0.008551488, 0.0007488448, -0.01854507, -0.016173026, 0.018531593, -0.0061154254, -0.012675609, -0.014420948, 0.0046430063, 0.034556367, 0.008841254, -0.042939384, -0.012992331, -0.022440074, -0.04943555, 0.01365273, -0.014205308, 0.018612457, 0.029515773, 0.013895325, 0.02431345, 0.015566538, 0.02425954, -0.0016130909, 0.0062838946, -0.013740334, 0.002382152, -0.013713378, -0.016563874, -0.032211278, -0.017911626, -0.021078844, 0.03126785, 0.012365626, 0.0043465006, 0.025890319, 0.0058728303, 0.003827616, -0.015957385, 0.0063883453, 0.03614671, 0.02126753, 0.024892982, -0.020957546, -0.0075069796, 0.0014370407, 0.024434747, -0.0055325227, 0.013079935, 0.0076754484, 0.014313128, 0.0061794436, -0.021078844, -0.028949717, -0.021307962, -0.0040870584, 0.0019171775, 0.0005260445, -0.012965376, -0.0037703367, 0.024569523, -0.02811411, -0.010950486, 0.030593975, -0.004562141, -0.015795656, 0.007318294, -0.026672015, 0.012938421, -0.014933094, 0.042400282, -0.022467028, -0.018935919, 0.0019727722, -0.025014281, -0.017493824, 0.021927929, 0.023033084, -0.009777942, -0.036524083, 0.016226936, -0.010310304, 0.017412959, 0.005660559, -0.015512628, -0.03078266, 0.013288836, -0.023396978, -0.024448225, -0.012365626, -0.0056807753, -0.008073036, 0.003686102, 0.040648207, 0.1934294, 0.01843725, -0.013113629, 0.03301993, 0.0071161315, 0.010957225, -0.003746751, 0.01044508, 0.0052730804, 0.00037336946, 0.00989924, 0.017547734, -0.017871194, -0.0082549825, 0.026011618, -0.0072778617, -0.037790973, 0.006934185, -0.034340724, 0.0025253505, -0.002077223, 0.011199821, 0.018976351, -0.006607355, 0.018841576, 0.0026449636, -0.009582518, -0.010067709, -0.012594744, 0.015970863, -0.010498989, -0.020971024, 0.025256876, -0.0048754937, -0.006149119, -0.0094746975, 0.04169945, 0.01632128, -0.0059840195, 0.012035427, 0.006085101, 0.0021833584, 0.019448064, -0.015782177, 0.002153034, -0.0050439625, 0.009117544, -0.016644739, -0.014299651, 0.015270032, -0.023922602, -0.0035850208, 0.019272856, 0.019475019, 0.0014218786, -0.010950486, 0.0368745, -0.017359048, 0.0063714986, 0.024057377, -0.017534256, 0.019097649, 0.007338511, 0.011678273, -0.0081539005, 0.014744408, -0.007816963, -0.010350737, 0.0147578865, 0.006816257, 0.01632128, 0.008288676, -0.0014092433, 0.01952893, -0.023841737, -0.026281167, 0.013686423, 0.0005235175, 0.015243077, 0.0031992267, 0.034313772, -0.009400572, 0.007264384, -0.000109504865, -0.020324104, -0.0139088025, 0.020054553, -0.00048519077, -0.009993582, -0.017453391, 0.0022608542, -0.024299972, -0.014744408, -0.020512788, -0.013605558, 0.03293906, -0.009926194, 0.02762892, -0.010566377, 0.0058761993, -0.021995315, 0.016792992, -0.020027597, 0.011294163, -0.025539903, 0.005953695, 0.015580015, 0.018086834, -0.0055224146, -0.018572025, -0.012742997, -0.022224434, 0.012217374, -0.00019995167, -0.0041915094, -0.010290088, -0.0036793635, -0.012803646, 0.005455027, -0.014784842, 0.007641755, -0.030971345, 0.011792831, -0.00036747305, 0.004208356, -0.001095891, -0.007075699, 0.016294323, 0.018127266, -0.03159131, -0.005289927, 0.011536758, 0.02653724, -0.008086513, -0.007918044, -0.023302635, -0.0054078554, -0.042130735, 0.022386163, 0.016644739, -0.011334596, -0.00024027894, 0.029003628, 0.031537402, 0.022534417, 0.012601483, -0.004198248, 0.0008827777, -0.024299972, 0.01615955, 0.014973527, -0.0047238716, -0.0029195682, -0.0019811958, 0.009124282, -0.018666368, -0.041672498, -0.02854539, -0.014043578, -0.003246398, -0.019879345, 0.004120752, 0.0032312358, -0.033127747, -0.013315791, -0.01397619, -0.17143407, 0.013524693, 0.02784456, -0.041295126, -0.00924558, 0.03382858, 0.024273017, -0.0011161072, -0.023531754, 0.0019407631, 0.0058728303, -0.018423771, -0.014420948, -0.032130413, 0.019663705, -0.0073789433, 0.017736418, -0.010532684, 0.026833747, -0.0024630171, 0.0027645766, -0.016658217, 0.025701635, 0.012729519, 0.006782563, -0.020701474, -0.011233514, -0.0040702117, 0.023558708, -0.0077697914, -0.015889999, -0.01163784, 0.021954883, -0.006509643, 0.0009872285, -0.0005256233, -0.013181016, 0.015674358, -0.029893143, 0.03425986, -0.0024562783, 0.01653692, 0.033154704, -0.018908963, 0.030189648, 0.03469114, -0.010539422, 0.0040702117, 0.025108622, -0.0104181245, 0.019609794, -0.010990919, 0.008821038, -0.012123031, 0.013726856, 0.002469756, 0.0042049866, -0.0064489944, 0.026793314, -0.0039286977, 0.02485255, -0.008430189, 0.011725444, -0.016995154, -0.03833007, -0.006967879, 0.0035648046, 0.012190418, -0.016483009, 0.028437572, 0.0079652155, 0.02306004, -0.020202804, -0.02425954, 0.013450567, 0.034664188, -0.009184931, 0.0072037354, 0.0011498011, -0.01071463, 0.013780766, 0.02169881, -0.025054714, -0.006758977, -0.0066545266, 0.010647242, -0.012716042, 0.006927446, -0.00522254, -0.02816802, 0.015013959, -0.034394637, -0.0044677984, -0.024043899, -0.00034557207, 0.024704298, 0.0013216395, -0.023086995, -0.004269005, -0.027494144, 0.0074530696, 0.0058728303, -0.018100312, 0.02870712, 0.03116003, 0.008396496, 0.022197478, 0.0031284697, 0.011934346, -0.0038074, 0.022898309, 0.014609634, -0.008935597, 0.0169682, -0.009528608, 0.012480185, -0.0016274108, -0.04126817, 0.010937009, -0.010027276, 0.025149055, -0.017507302, -0.021887496, -0.0038377242, 0.00056352885, 0.008099991, -0.100865774, 0.004029779, 0.031240895, 0.013726856, -0.029057536, -0.008544749, -0.01071463, 0.032130413, 0.00031524766, 0.013356224, 0.0049192957, 0.0023956294, 0.019124603, 0.015081347, 0.024609955, -0.01555306, 0.024785163, -0.021469692, -0.02447518, 0.03218432, 0.009885762, 0.0054145944, -0.0028740815, -0.016496487, -0.009333184, -0.040567342, -0.02359914, -0.0066107246, 0.023909124, -0.008659308, 0.0051416745, -0.0004498123, 0.028653212, -0.009036678, -0.008841254, -0.015067869, -0.042022914, 0.014825274, 0.020526266, -0.022777012, -0.023127427, 0.0015574961, 0.012601483, -0.014340083, -0.013113629, -0.027817605, -0.008639092, -0.011327857, 0.006563553, -0.022992652, 0.0015103248, -0.017359048, 0.0011919183, -0.007190258, 0.010350737, -0.007264384, -0.0031537402, 0.016577352, 0.008180856, 0.009454481, -0.019178513, 0.007466547, -0.005269711, -0.0083425855, 0.019542407, 0.0019070694, -0.01979848, 0.011577191, -0.013255143, 0.009070372, -0.01811379, 0.018127266, -0.02148317, 0.023936078, -0.015809134, 0.007985432, -0.037440557, 0.0006637679, -0.002464702, 0.008942336, -0.010391169, -0.025027758, 0.027925424, -0.023841737, -0.01784424, 0.011947823, -0.0006523963, -0.02180663, 0.005519045, -0.03051311, 0.017480345, 0.002457963, 0.024178674, 0.0131540615, -0.024178674, -0.017102975, 0.018477682, -0.0034182365, -0.027588487, -0.0030661363, -0.033801626, -0.0055561084, -0.07682187, 0.035176333, -0.0073452494, -0.02060713, -0.00440378, -0.010923532, 0.0030829832, -0.021712288, 0.008821038, -0.020310625, -0.01082245, -0.010532684, 0.011098739, 0.0033154704, 0.00036578835, 0.0017824023, 0.0045284475, 0.0017175417, 0.020351058, 7.760104E-05, -0.009697077, -0.016388666, -0.023828259, 0.01571479, -0.021847064, -0.0005045647, 0.0064085615, 0.016483009, 0.013659468, -0.0007307344, 0.007810224, -0.02702243, -0.0034974169, 0.052346695, -0.007924783, -0.0140031455, -0.003578282, 0.024515612, 0.015539583, -0.01615955, -0.022035748, -0.007998909, 0.017049065, -0.02175272, -0.0065837693, -0.007325033, 0.009980105, 0.0050439625, 0.013450567, -0.006438886, 0.017588167, 0.0133360075, -0.0062131374, -0.0037231655, -0.02490646, -0.033747714, -0.004791259, -0.015539583, 0.0035210026, -0.036928408, 0.04078298, -0.01539133, 0.012224113, 0.01087636, 0.01348426, 0.0057784873, -0.030405289, -0.0014589417, -0.0035749127, 0.011233514, -0.031079166, -0.0022659083, 0.0033003082, -0.012877772, -0.007210474, 0.02892276, 0.009744248, 0.01952893, -0.012554311, 0.0114558935, -0.0128710335, -0.020728428, -0.0451497, 0.01587652, -0.0169682, -0.007338511, -0.005977281, 0.0063849757, -0.0153239425, -0.004616051, -0.030540064, 0.0103170425, -0.012311717, -0.016415622, -0.0073789433, 0.007035266, -0.015903475, -0.009845329, 0.008073036, 0.024515612, 0.00074000016, -0.018410295, -0.012392581, -0.01603825, -0.003888265, 0.00059806503, 0.00946122, -0.021550557, -0.018801143, 0.0025169272, 0.020135418, -0.019191992, -0.008578443, 0.0075339344, -0.0098520685, -0.0047710426, 0.011132433, -0.0075743673, -0.015970863, 0.02142926, 0.013639252, 0.029057536, 0.0049799443, -0.011813048, 0.013585342, 0.022817444, -0.012008472, -0.0008499262, 0.016334757, 0.0060244524, 0.0010655666, -0.011893913, -0.0140031455, -0.00036326132, -0.017763374, -0.00017562896, -0.008369541, 0.011725444, -0.012143247, 0.06571639, 0.008403235, -0.021550557, 0.024151718, -0.006206399, 0.028949717, 0.020687995, -0.0058054426, -0.014164875, -0.034125086, -0.008335847, 0.0012584636, -0.00473061, 0.005387639, -0.022493985, 0.00039863982, 0.013228187, 0.008093252, -0.012278022, -0.029057536, 0.034178995, -0.020297147, 0.011873697, -0.0030627667, -0.01659083, 0.016294323, 0.014407471, 0.026698971, -0.0100407535, -0.009973366, -0.00097543566, -0.005202323, -0.03089048, -0.01424574, -0.012945159, -0.0017124877, -0.014016623, 0.004504862, 0.0058930465, 0.0033019928, 0.0041948785, 0.010963964, -0.005417964, -0.0131540615, 0.017439913, 0.022534417, -0.013827938, -0.015377852, -0.003659147]
+ },
+ {
+ "Id": 75,
+ "Type": "Footwear",
+ "Brand": "AirStrider",
+ "Name": "TrailTracker Hiking Shoes",
+ "Description": "The TrailTracker Hiking Shoes by AirStrider are built to handle any terrain. These lightweight and breathable shoes feature a rugged rubber sole for excellent traction and stability. The cool gray color with green accents adds a touch of style to your hiking ensemble.",
+ "Price": 89.99,
+ "Embedding": [0.0007018134, -0.01577986, 0.008839146, -0.029324692, 0.02446417, 0.015887573, -0.013389993, -0.046477884, 0.036595274, -0.019751754, 0.0022989858, -0.0031977107, 0.0024302602, -0.0060453564, -0.005129801, -0.0009862413, 0.013376529, 0.0024588713, 0.013948751, -0.008058231, -0.030644167, 0.006270879, -0.00788993, -0.019092016, -0.0107375765, -0.009471956, 0.02313123, -0.017032018, 0.013383261, -0.021825217, 0.010091302, 0.008704505, -0.016587704, -0.014675809, 0.00013106407, -0.0021677113, -0.001183153, 0.0032061257, 0.013585222, 0.013019732, 0.0030933644, 0.007795682, -0.018432278, -0.0046080695, 0.025850967, 0.014204568, 0.016830057, -0.021488616, -0.021057768, 0.0027365673, -0.024154497, 0.0025649006, -0.0095527405, -0.015860645, 0.015954893, 0.016318424, 0.022619596, 0.0006260781, 0.024854628, -0.018782344, -0.018432278, -0.0042916643, -0.0416039, 0.016089534, 0.005328396, -0.0015113391, -0.013235156, 0.014366137, 0.00045146627, 0.030428743, -0.0089131985, -0.012057053, 0.008038035, 0.0039718933, 0.0040190173, -0.03724155, 0.0074725454, -0.008893002, -0.008071695, 0.018149532, 0.0019219925, -0.014002607, -0.009842217, -0.00074178475, 0.011794504, -0.0055370885, 0.021111622, 0.0025261915, -0.031802077, -0.0010830142, 0.007196532, -0.0027887404, -0.002973871, 0.019994108, -0.012730255, -0.0027500312, -0.011680059, 0.023979465, 3.697353E-05, -0.013598686, -0.0036891485, 0.01065006, -0.010804896, -0.008798754, -0.04531998, 0.0108789485, 0.00072285096, 0.029270835, 0.015537509, -0.010602936, -0.018984305, 0.010569275, 0.022754237, -0.017314762, -0.0025278744, -0.008650649, 0.016385743, 0.015685612, -0.0050187227, -0.03718769, 0.045589257, -0.0060318923, 0.0167762, -0.0031068285, -0.0007817561, 0.03317541, -0.013470777, 0.0036251943, 0.013470777, -0.0029536749, 0.019078553, 0.0037059784, 0.032906126, -0.014985482, -0.009579668, 0.0028510117, 0.0028375476, 0.02130012, -0.025649006, -0.008771826, -0.011680059, 0.020546133, -0.024087178, -0.011202086, -0.00592418, 0.017260905, 0.009714309, -0.00065721374, 0.008987251, -0.004749442, 0.02086927, -0.0069945715, 0.0143796, -0.015981821, -0.0072907805, -0.0044801612, 0.0149181625, -0.005338494, -0.0227677, 8.4202875E-05, 0.015429796, -0.0019270414, 0.030428743, 0.0016653341, 0.03651449, 0.018364958, 0.017678292, 0.002713005, -0.0019707996, -0.008125551, 0.015227836, 0.012003196, -0.011612739, 0.010421171, 0.008563133, 0.012333065, 0.0021508813, 0.018755415, -0.009142087, 0.0038002268, -0.003847351, -0.00093911716, 0.024369922, 0.0014583244, -0.0010131694, -0.01381411, 0.014083391, 0.0035309459, -0.003867547, -0.017732147, 0.002386502, -0.018984305, -0.0072234604, 0.0060621863, -0.67384857, -0.020047963, -0.010596204, -0.036406778, 0.02778979, 0.014662346, 0.030698024, 0.01194934, -0.037026126, 0.016318424, 0.0036992466, 0.024423778, 0.008293852, -0.01813607, -0.016399207, -0.00888627, 0.0089131985, -0.008542937, 0.034494884, 0.023144694, -0.0416039, 0.0075264014, -0.008792021, -0.028139856, 0.0046686577, 0.007970715, 0.007135944, -0.0007943787, -0.018230317, 0.018661167, -0.03877645, 0.020923126, -0.0024841165, -0.0018529892, 0.05854167, -0.028651489, -0.008758361, 0.060157355, 0.020222995, 0.045589257, -0.009465224, -0.02186561, 0.024518026, -0.013376529, 0.018284174, 0.0057491474, 0.03425253, -0.004419573, 0.02566247, -0.012131105, 0.014123783, 0.01544326, -0.006139605, -0.0028459625, 0.016183782, -0.006011696, 0.021461688, 0.018001428, 0.013389993, -0.0121109085, -0.030240245, 0.008691042, -0.0019707996, -0.004520553, -0.022121426, 0.020976983, -0.03357933, -0.004537383, 0.008064963, -0.0143257445, 0.014339209, 0.024679596, 0.0043320567, 0.010427903, -0.0004994319, 0.022619596, 0.01720705, -0.0031017794, 0.008980518, 0.019926786, 0.029593972, 0.012898555, 0.0016762736, -0.011370386, 0.0069541796, 0.0064627416, 0.0012445827, -0.007943787, 0.026254889, 0.016655024, 0.0022081034, 0.04424285, -0.035060376, -0.023508223, -0.024450706, 0.020909663, -0.018822735, -0.0006790928, 0.007829342, -0.014648882, -0.010946269, -0.004507089, -0.001614844, -0.0049278405, 0.013935287, 0.03637985, 0.011855092, 0.0018799173, 0.0074052247, -0.0111751575, -0.00237977, -0.011074177, -0.030294102, -0.018284174, 0.0061530685, -0.024221817, 0.011700256, -0.011754111, 0.02432953, -0.045104552, 0.015227836, 0.0025329236, 0.0070147677, -0.008583329, -0.026241424, 0.0102394065, 0.025043124, -0.005685193, -0.004254638, -0.008899734, -0.01347751, 0.010421171, 0.021259727, -0.00527454, -0.0069743753, 0.0051903897, 0.008071695, -0.011457902, 0.022148354, -0.015685612, -0.020707702, 0.0093036555, -0.0034669917, 0.0064863036, -0.024073713, -0.035625864, -0.02892077, -0.00421088, -0.0176379, -0.0075937216, 0.0076071857, -0.019415153, -0.010461563, 0.005577481, 0.0022417635, -0.029620899, -0.00768797, -0.03481802, 0.015591364, -0.008906466, 0.014258424, 0.00015694028, -0.0019859467, -0.011828164, 0.00041780615, -0.018728487, 0.0022182015, 0.037079982, 0.00060167455, -0.04720494, -0.0048941807, -0.011040517, -0.028947698, 0.035706647, 0.013235156, 0.012528294, -0.019563258, -0.025541294, -0.0015862328, 0.0007863844, -0.009276727, 0.004123364, -0.02735894, -0.0015635123, 0.0067286566, -0.012669667, 0.008139015, 0.026578026, -0.0034400637, 0.036460634, 0.0024151132, 0.015901038, 0.00063575536, 0.01806875, 0.0054596704, -0.027897501, 0.0019960448, -0.013437117, 0.009546008, 0.0101922825, 0.03751083, -0.010131694, 0.009579668, -0.03398325, 0.009936466, -0.020182604, -0.005988134, -0.012319601, 0.014635418, 0.019832538, 0.018324565, -0.02446417, -0.012999536, -0.012784111, -0.00047250383, 0.00084066135, 0.005930912, 0.031909786, 0.0030613872, -0.036245212, -0.00035995283, -0.004961501, 0.0075802575, -0.032825343, 0.0028796226, 0.023966001, -0.014891234, 0.024019858, -0.00825346, -0.01587411, 0.031613577, 0.023036981, 0.026106784, 0.027682077, 0.026281817, -0.007883199, 0.0022468127, -0.027655149, 0.050436314, 0.014945091, 0.02708966, 0.015133587, -0.0026221229, -0.018324565, 0.025083516, 0.021677112, 0.026874235, -0.009195943, 0.010380779, 0.01005091, -0.028436065, -0.0067454865, -0.0024487732, 0.012622543, 0.016614633, -0.013060124, 0.028839985, 0.0017637899, 0.02193293, 0.019428618, 0.020357637, 0.008563133, 0.01381411, -0.008677578, 0.013652542, -0.0099431975, -0.020923126, 0.0033525473, -0.0007994277, -0.009970126, 0.025191229, -0.0027432994, -0.0010771237, 0.006243951, 0.007364833, 0.020896198, 0.025689399, 0.005123069, -0.0022400806, 0.012918752, -0.0153086195, -0.020088356, 0.018930448, 0.0127504505, -0.003009214, -0.02023646, -0.013578489, 0.017153194, -0.017651364, 0.035248872, -0.0022973027, -0.00090377405, 0.0048571546, 0.020586526, 0.008677578, 0.01174738, 0.015173979, -0.00325325, 0.031613577, -0.010751041, -0.014002607, 0.019899858, -0.019617114, -0.030994233, 0.044377495, -0.008771826, -0.017126266, -0.002061682, -0.015281691, -0.0014785205, 0.0026961751, -0.012191693, 0.006496402, -0.0022081034, 0.0069407155, 0.020196067, -0.001325367, -0.021003911, 0.02762822, 0.008044767, -0.022377243, -0.013517901, -0.035195015, 0.014083391, 0.07173643, -0.00061513856, -0.0060621863, 0.0016762736, -0.00029494675, -0.01777254, -0.026214497, -0.018526526, -0.009572936, -0.004153658, -0.0028762566, -0.0171128, -0.0057626115, -0.02735894, 0.026349137, 0.01973829, 0.008132284, -0.03371397, -0.0011242478, -0.0060318923, 0.015200907, -0.009936466, 0.0072773164, 0.024585348, 0.008428493, 0.0015382671, 0.021165479, 0.0060453564, 0.02193293, -0.021784825, -0.00047755285, -0.01184836, -0.017193586, 0.0075869896, -0.02093659, 0.011861824, -0.01940169, -0.010057642, 0.02103084, 0.007661042, 0.03059031, 0.020694237, 0.005298102, -0.008657381, -0.012932216, -0.0069205193, -0.002997433, 0.018526526, -0.0025413386, -0.018014893, 0.01897084, 0.025985608, -0.023319727, 0.0030664364, -0.006526696, 0.0105827395, 0.014164176, -0.0019657507, 0.0055202586, -0.03831867, -0.010232675, -0.031613577, 0.020209532, -0.0028526946, 0.0127504505, -0.01015189, 0.002366306, 0.011895484, -0.0061059445, -0.009714309, 0.0011612739, -0.0051668272, -0.03551815, -0.008872806, 0.014985482, 0.0031101946, -0.01913241, -0.0051028733, 0.027480116, 0.009525812, -0.0021071231, 0.008859342, 0.00037783477, 0.006307905, -0.00046114356, -0.011013589, -0.025770184, -0.012043589, 0.009384439, 0.008670845, 0.0014019437, -0.027897501, -0.004439769, -0.006476206, -0.004513821, 0.0057121213, 0.009034375, 0.035922073, 0.001773888, 0.010353851, 0.0069474475, -0.017557114, -0.0049514025, -0.009976857, 0.012602346, 0.0043724487, 0.001210081, 0.0023612569, 0.006237219, -0.0036891485, 0.015200907, 0.002389868, 0.019428618, 0.009909538, -0.006769049, 0.021165479, -0.012494634, -0.01001725, -0.0072369245, -0.02975554, 0.00042390704, -0.02446417, 0.027143516, 0.023548616, 0.0019825806, 0.011868556, 0.040095925, -0.012225353, -0.016762737, 0.016479991, 0.0028022043, 0.03877645, 0.013396725, 0.0021256362, -0.010825093, -0.020263389, -0.047635794, -0.0006399629, 0.016183782, -0.012938947, -0.013437117, 0.024087178, -0.004752808, 0.019199729, -0.024248745, -0.016224174, -0.029324692, 0.007149408, -0.042627167, 0.051513437, -0.015995286, 0.0089131985, -0.018189926, -0.0050725793, -0.006634408, -0.018768879, 0.0012134471, -0.006772415, 0.021044303, 0.019186264, -0.018364958, -0.016372278, 0.0167762, 0.011632935, -0.0024656034, 0.004422939, -0.015362476, 0.002373038, -0.036756843, 0.008940126, 0.028139856, 0.0025733158, -0.016129926, -0.020923126, -0.0015525727, -0.0045643114, -0.014648882, -1.1610109E-05, 0.0015929649, -0.059995785, -0.000294526, -0.021057768, 0.005722219, 0.0070215, -0.028974626, -0.00655699, 0.035760503, 0.009263263, -0.008516009, 0.006479572, 0.03228678, 0.004385913, 0.0072503886, -0.00296209, -0.0040930696, -0.021461688, -0.0046619256, -0.037026126, 0.019280514, 0.0152413, -0.0024521393, -0.0054428405, -0.006826271, -0.0037901287, -0.019253585, 0.009889341, 0.003254933, -0.0027836913, -0.0012538392, -0.003911305, -0.008213067, -0.018997768, -0.017233979, -0.03751083, -0.006846467, 5.7432568E-05, 0.0011924095, 0.0075600613, -0.024719987, -0.0066512385, 0.01381411, 0.008064963, 0.008576597, -0.008293852, 0.014069928, 0.007950519, -0.0108318245, -0.009135355, -0.014958554, 0.022148354, 0.009094963, 0.024423778, -0.009000714, 0.0051668272, -0.019374762, 0.028543776, 0.008563133, -0.023521688, -0.017395547, 0.017126266, 0.03088652, 0.011895484, -0.011087641, -0.024046784, 0.0031404886, 0.024450706, -0.011154962, 0.012070517, -0.012986071, -0.0037934948, -0.0070080357, 0.02455842, -0.015039339, 0.020519204, 0.0002850591, -0.014864306, -0.0064189835, -0.0014145663, 0.019024696, -0.012009929, -0.0061732647, 0.015995286, -0.025083516, 0.014635418, 0.024383387, 0.010804896, -0.00417722, 0.00033281438, -0.014891234, 0.028597632, -0.02432953, -0.013416921, 0.014366137, 0.010057642, -0.00026296964, 0.011632935, -0.00042138255, -0.015173979, 0.007842806, -0.020317245, 0.022390708, -0.0009963394, -0.0248277, -0.018620774, 0.011612739, 0.0052307816, -0.019213192, -0.03621828, 0.0041974164, -0.026147176, -0.03032103, -0.0012227036, 0.017920645, 0.00772163, -0.016924305, -0.012669667, -0.0036891485, 0.018284174, -0.030617239, 0.01328228, -0.0031909787, 0.02292927, -0.014204568, 0.013167837, 0.008071695, -0.052186638, 0.009135355, -0.009074766, -0.025406653, -0.04515841, -0.005045651, -0.011107838, 0.019320905, 0.008893002, -6.1008956E-05, -0.0025531196, 0.021205872, -0.002987335, -0.024989268, -0.0051937555, -0.01381411, -0.0038271549, 0.030509526, -0.024921948, 0.021057768, -0.0030411913, 0.017126266, 0.009370975, -0.0055370885, -0.018755415, 0.017233979, 0.009714309, -0.0019607015, -0.032394495, 0.016453063, 0.000121702345, -0.008017839, -0.014473849, -0.0039988216, -0.013989143, 0.0098489495, 0.013921823, 0.013921823, 0.013517901, -0.011929144, -0.023925608, 0.012561955, 0.010380779, -0.02948626, -0.0066512385, 0.02213489, 0.046612523, 0.016991625, -0.026928091, 0.005570749, 0.0072234604, -0.049224548, -0.020196067, 0.016587704, -0.000746413, 0.016318424, 0.010427903, -0.0046080695, 0.030213317, -0.021475153, 0.019846004, 0.0013211594, -0.009169015, -0.005075945, 0.009828753, -0.021502081, 0.0030411913, -0.025783647, -0.008711237, 0.033040766, -0.005621239, 0.012184961, 0.009781629, -0.035329655, -0.02426221, -0.010104766, -0.0008082635, 0.03807632, 0.018580383, 0.008973787, -0.029216979, -0.022579204, -0.013410189, -0.014298816, 0.0060386243, -0.0072369245, -0.006594016, 0.0048672524, 0.00090209104, -0.01241385, -0.023656327, -0.020559598, -0.0026305378, 0.023144694, 0.009963393, -0.018984305, -0.0057828077, 0.01121555, -0.027978286, 0.026241424, 0.008812218, 0.019145872, 0.0061900946, -0.00778895, -0.014675809, 0.007896663, -0.0015475237, 0.00082761806, 0.010205747, -0.0032431518, 0.009263263, -0.0037632007, 0.00241343, 0.016062606, -0.009721041, -0.020357637, -0.027466653, -0.01567215, -5.083203E-05, 0.009330584, -0.0048739845, -0.0052846377, -0.021609792, 0.022969661, -0.0033222532, -0.03242142, 0.0017149828, 0.007728362, -0.02975554, -0.0320175, 0.026470313, 0.19829845, -0.010252871, 0.0025665837, 0.016695416, 0.02249842, -0.0039685275, 0.018028356, 0.014837378, 0.009512348, -0.0054159123, 0.028516848, 0.019832538, -0.038695667, -0.0028762566, 0.0040089195, -0.030509526, -0.039557364, -0.00472588, -0.02792443, -0.009216139, 0.0008305633, -0.0018159631, 0.026470313, -0.03228678, 0.025824038, 0.00654016, -0.0047763702, -0.020317245, -0.010576008, 0.012972607, -0.016197247, -0.0352758, -0.006883493, -0.003854083, 0.012420582, -0.013437117, 0.012009929, 0.037564687, 0.0027634953, -0.0046989517, -0.008091891, 0.016022215, -0.0031909787, -0.0095527405, -0.00028358644, 0.009909538, -0.012629274, -0.005624605, -0.011962804, 0.009182479, -0.021327049, -0.008482348, 0.0016224175, -0.0051499973, -0.018391887, 0.00084234437, 0.03947658, -0.024612274, -0.002650734, 0.014110319, -0.021946395, 0.0152413, 0.006307905, 0.0068733953, -0.009593132, 0.0109260725, -0.0075600613, -0.00328691, 0.0062944414, 0.0025850968, 0.004453233, -0.0018395252, 0.0011318213, 0.025918288, 0.011680059, -0.021273192, 0.012878359, 0.0076543097, -0.0005339336, 0.017732147, -0.0022333486, 0.0016039044, 0.013841039, -0.0054361084, -0.0057794414, -0.0320175, -5.1016108E-05, 0.009606596, 0.016614633, 0.009471956, 0.015564436, -0.010798165, -0.0033643283, -0.0015189126, -0.010865484, 0.012952412, -0.016964696, 0.022875413, -0.02399293, 0.013591954, -0.027574364, -0.005577481, -0.002408381, 0.014568097, -0.01727437, 0.0063987877, 3.568498E-05, -0.010199014, -0.007149408, -0.0105827395, -0.017058946, -0.043354224, 0.017530188, -0.002317499, 0.0063482975, -0.01308032, 0.00029726088, -0.032475278, 0.004507089, -0.02862456, 0.021003911, 0.018795807, 0.013672738, 0.013174568, -0.017624436, -0.010172086, 0.011592543, -0.0046316315, 0.019859467, -0.022942733, -0.0070080357, -0.0051870234, 0.009424832, -0.0021559303, -0.023050446, -0.012346529, 0.0017217149, -0.0014423359, -0.024208354, 0.008845878, 0.0092565315, -9.729876E-05, -0.009290191, -0.0013396725, 0.037860896, -0.026214497, 0.0021980053, -0.0076273815, -0.028678417, 0.005022089, 0.031236585, -0.01474313, -0.030724952, -0.011303066, 0.011000125, -0.0022973027, -0.036002856, -0.019832538, -0.010791432, 0.012757183, -0.022081034, 0.015389404, 0.025877895, -0.012077249, -0.024854628, 0.004140194, -0.17287834, 0.020021036, 0.012588883, 0.004422939, 0.0146219535, -0.012151301, 0.018957376, 0.0094181, -0.009391172, -0.00708882, 0.01810914, -0.0024268941, -0.019199729, -0.01587411, -3.2082295E-05, 0.0025396557, -0.001012328, 0.010427903, 0.014446921, -0.0028762566, 0.0016628096, -0.009229603, 0.018849663, -0.010993393, 0.004180586, 0.00045146627, -0.0037968608, -0.0069945715, 0.00908823, -0.008805485, 0.0045811413, -0.0042849323, 0.0042849323, 0.007708166, 0.009357512, -0.017476331, -0.0041300957, 0.00040918076, -0.008031303, 0.04359658, 0.010481759, 0.00654016, 0.03923423, -0.006907055, 0.030940376, -0.0052341474, -0.015052803, 0.0077687544, -0.0075735254, -0.020222995, -0.008179408, -0.011606007, -0.028409136, 0.0067522186, 0.013214961, 0.0047932, 0.009781629, 0.0055370885, 0.00042727307, -0.02622796, -0.0123599935, -0.008038035, -0.00542601, -0.011303066, -0.01650692, 0.0031135604, 0.0043892786, -0.003833887, 0.002709639, 0.014945091, -0.037537757, -0.002354525, -0.004439769, -0.011632935, 0.013033196, 0.019374762, -0.011572347, -1.6895799E-06, -0.014972018, -0.012238817, 0.002398283, 0.03807632, -0.04768965, 0.008468885, 0.0110337855, 0.009505616, -0.007028232, 0.010205747, -0.02459881, -0.015887573, -0.010407707, -0.016803129, -0.014595025, -0.024114106, 0.0041099, 0.011962804, 0.02306391, -0.021327049, 0.010246138, -0.016560776, 0.0036824164, 0.0066074803, -0.009121891, 0.030105606, 0.019994108, 0.020586526, 0.027978286, 0.0083881, 0.03032103, -0.0016880546, -0.014756594, 0.004739344, 0.0005002734, 0.0025362896, 0.0152143715, 0.01617032, 0.013591954, -0.02848992, 0.025433581, -0.021906001, 0.022902342, -0.014285352, -0.036002856, 0.018324565, -0.011942608, -0.019509401, -0.10001093, -0.009862414, 0.02399293, -0.0076408456, -0.019051624, 0.0012386922, -0.00041864766, -0.002970505, 0.019886395, 0.013854503, -0.003547776, 0.0002812723, -0.006543526, -0.004416207, 0.00587369, 0.002024656, 0.035652794, -0.016856985, -0.033498544, 0.020424956, -0.022390708, -0.0051567294, 0.009000714, -0.019657506, 0.0072436566, 0.0017099337, -0.029917108, 0.0005970463, 0.016856985, 0.021650186, 0.019024696, 0.019213192, 0.0031791977, -0.016183782, 0.0071628722, -0.003843985, -0.023454366, -0.004847056, 0.015752934, -0.018916983, -0.011464635, -0.011397314, 0.013531365, -0.03271763, 0.015752934, -0.019846004, 0.0019674336, 0.0090074465, 0.010232675, -0.013457313, -0.008361172, -0.00023625192, 0.009700845, -0.025487438, 0.035437368, -0.019428618, -0.020398028, -0.0069811074, -0.0065771863, 0.0051331674, -0.011060713, 0.006580552, 0.0038507169, 0.023171622, 0.006587284, -0.009249799, -0.022215676, 0.031371225, 0.015349012, -0.011565615, 0.003894475, 0.025770184, -0.023723649, 0.060049642, 0.007708166, 0.00044725876, -0.043111872, -0.008118819, 0.009445027, -0.033821683, -0.0039550634, -0.0067353887, 0.035868216, -0.031963643, -0.004729246, 0.027816718, -0.0012277527, -0.001633357, 0.009970126, -0.021044303, 0.02686077, 0.0383456, 0.014043, 0.0046316315, -0.012259013, -0.0153086195, 0.0071898, 0.00014105691, -0.017678292, -0.012380189, -0.020950055, -0.0001490512, -0.06543526, 0.018607311, -0.01054908, -0.010165354, 0.004429671, 0.008280388, 0.0075331335, -0.018445741, 0.005365422, -0.031532794, 0.002120587, -0.028274495, 0.01487777, 0.009391172, 0.012420582, -0.013248621, -0.004500357, -0.00778895, 0.032475278, 0.0057760756, -0.022350315, 0.012689862, -0.021852145, 0.02532587, -0.024342993, 0.005082677, 0.0048874486, 0.019388225, 0.0072167283, -0.008246728, 0.007674506, 0.008906466, 0.010589472, 0.020788485, -0.011700256, -0.012333065, 0.010293263, 0.012514831, 0.00048176036, -0.018459206, 0.0017621069, -0.01874195, 0.01607607, -0.025918288, -0.025406653, -0.03126351, 0.028274495, -0.0024487732, 0.019644042, 0.01487777, -0.012245549, 0.010959733, 0.010481759, -0.028974626, -0.020276852, -0.022969661, 0.012763915, -0.014783522, -0.019199729, -0.03255606, 0.030428743, -0.0030866324, -0.011074177, 0.01897084, 0.014406528, 0.0042647365, -0.0014490678, -0.0023057177, 0.02186561, -0.0051096054, -0.014796986, 0.015927965, 0.0320175, 0.0030024822, 0.0033660114, 0.010212478, -0.021071231, -0.020775022, -0.004207514, 0.012299405, 0.01367947, -0.0010586106, -0.043650433, 0.0118146995, -0.0028627927, -0.01713973, -0.013659274, 0.0018782343, -0.010751041, 0.0009189211, -0.026753059, -0.0053081997, -0.012568686, -0.0011511759, 0.00905457, 0.004103168, -0.0012193376, -0.0035814361, 0.017853323, 0.023360118, -0.0048672524, 0.0024706523, -0.00210544, 0.00093238516, -0.01720705, 0.0066848984, 0.0031202924, 0.004449867, -0.025433581, -0.017045481, 0.007943787, 0.011229014, -0.022915805, 0.0035949, -0.012642738, 0.009673917, 0.0022737407, -0.010124962, -0.002097025, 0.006466108, 0.02059999, 0.023548616, -0.0069609117, -0.0048605204, -0.004483527, 0.00022594351, 0.021461688, -0.006617578, -0.007479277, 0.005365422, 0.008475617, -0.0028089364, 0.0124542415, 0.0149181625, 0.0027197371, 0.013262085, -0.008044767, 0.028974626, -0.045481544, 0.053021412, 0.03368704, 0.013625614, -0.0048840824, 0.0033794753, 0.01351117, 0.010697184, 0.0069407155, -0.041846253, -0.004369083, -0.009835485, -0.015658684, -0.024114106, 0.03018639, -0.03371397, 0.008172676, 0.0049413047, -0.0108318245, -0.012683131, 0.0022182015, 0.02349476, 0.0033340342, 0.022848485, 0.0077014337, -0.013194764, -0.02010182, 0.013120712, 0.01128287, -0.004133462, -0.018297637, 0.02805907, -0.0014212982, -0.014837378, -0.008576597, -0.008435224, -0.016668487, -0.0016796397, 0.019442081, -0.00041654392, 0.024881557, 0.014904698, 0.0024857994, -0.0052610757, -0.01297934, -0.0056111407, 0.0060689184, -0.018822735, -0.007411957, 0.009963393]
+ },
+ {
+ "Id": 76,
+ "Type": "Cycling",
+ "Brand": "B&R",
+ "Name": "Fusion Carbon Cycling Helmet",
+ "Description": "Protect yourself on two wheels with the Fusion Carbon Cycling Helmet by B&R. This helmet is made from lightweight carbon fiber and features an aerodynamic design for maximum speed. The colorful finish with a bold blue stripe will make you stand out on the road.",
+ "Price": 159.00,
+ "Embedding": [0.0050177895, 0.014522386, -0.011223653, -0.0070288875, 0.009391762, -0.006046569, -0.011396223, -0.02361547, 0.025460636, -0.023456175, 0.019818941, 0.012683856, -0.0036272777, -1.5128349E-05, 0.00028104766, -0.0030996134, 0.026535876, 0.009013437, -0.005522223, -0.019832216, -0.0027461778, 0.008674935, -0.01842511, -0.009670529, -0.017296772, -0.014163972, 0.030451875, -0.023841137, 0.023203958, -0.0069824266, 0.012146236, 0.028540337, 0.014840975, -0.009338664, -0.006491267, 0.022168541, 0.0102081485, 0.0077589895, 0.004194766, 0.0068032197, 0.033212986, -0.0074337623, 0.00983646, 0.012026765, -0.009039986, 0.0038429897, 0.013394047, 0.011382949, -0.014801151, -0.006189271, 0.0005052635, 0.024013707, -0.020841083, 0.0081837755, -0.0036571454, -0.022141991, 0.007905009, 0.016938359, 0.03124835, -0.0037500674, -0.015106467, 0.00868821, -0.030558072, 0.008814318, 0.0011606957, -0.010121863, 0.004529949, 0.016951634, -0.0042047217, 0.016619768, 0.01935433, 0.0049149115, 0.014057775, 0.013765735, 0.022792445, 0.0021206134, -0.013486968, -0.022646425, 0.018730426, 0.00014612403, 0.020363199, 0.0066140573, -0.016579945, 0.028566886, 0.013566616, 0.0044602575, -0.011124094, 0.008343071, 0.0014353135, -0.0025039169, -0.021159673, 0.005731298, 0.015279036, 0.01321484, -0.0218765, 0.03477939, 0.0022649744, 0.020787984, -0.006152766, -0.010354169, 0.0040288335, -0.00036836945, 0.00668043, -0.019686196, -0.017110927, -0.028699633, 0.015252487, 0.017933952, 0.008754582, -0.0072147315, -0.015292311, 0.02388096, 0.0037567047, -0.018491484, 0.0092855655, 0.010075402, 0.03472629, 0.0073873014, -0.0078850975, -0.022619877, 0.007148359, 0.012597572, 0.0210933, -0.02390751, 0.007228006, 0.010181599, -0.03000054, -0.009212555, 0.024903104, -0.0067700334, 0.0075797825, 0.0012569363, 0.003318644, 0.010679396, -0.0070952605, 0.014774603, -0.017071104, 0.00979, -0.029469557, -0.0074669486, 0.005565366, 0.016208256, -0.021624284, -0.009272291, -0.028327944, -0.0011689923, 0.0029983947, 0.02907132, 0.003614003, -0.0057445723, 0.018823348, -0.02515532, 0.030212933, 0.038974155, 0.011588704, -0.014615308, 0.0070687113, 0.025049124, -0.016938359, -0.00043723133, -0.0025072354, -0.022314562, 0.03231032, -0.0023164134, 0.033080243, 0.015332134, 0.013307761, -0.007984657, -0.008044393, -0.014548935, -0.001979571, 0.03345193, -0.01630118, 0.014907348, -0.007480223, 0.0074669486, 0.007878461, 0.017057829, -0.0064414875, -0.015810018, 0.011588704, -0.017734833, 0.023111036, 0.016500298, 0.002870627, -0.007314291, 0.02623056, -0.007891735, 0.0046361457, -0.023854412, 0.0106395725, 0.024305748, 0.021438438, 0.0056914743, -0.65544546, -0.012119687, -0.0025752676, -0.036106844, 0.008794406, 0.011263478, 0.0021986016, -0.012152874, -0.0023578964, 0.01737642, -0.0031676455, 0.021026928, 0.006474674, -0.015677273, -0.003102932, -0.027611116, 0.0064248946, -0.005674881, 0.0005496504, -0.017190576, -0.02877928, -0.02001806, -0.029124418, 0.0064713554, -0.00052890886, 0.0104470905, 0.021345517, 0.021942873, -0.01485425, 0.010506826, -0.05028409, 0.04093879, 0.008336433, -0.021664107, 0.048266355, -0.016327728, 0.005850769, 0.021796852, 0.0035476303, 0.010705945, 0.016659591, -0.00091428636, 0.035735156, -0.0126506705, -0.018743701, 0.019606547, 0.026044717, -0.0007184864, 0.027637666, -0.028991673, 0.006929328, 0.0053961147, -0.013586528, 0.015159565, 0.005943691, -0.020363199, 0.033080243, 0.005777759, -0.00575121, 0.020960554, -0.0061627217, 0.024411945, -0.03629269, -0.020495944, -0.011031172, 0.007360752, -0.042717583, -0.012245796, 0.007314291, -0.043168917, 0.0137524605, 0.0053927964, 0.0072412807, 0.022208365, 0.018889721, 0.020761436, 0.026071265, -0.0024043575, 0.008104128, 0.018518033, 0.0328413, 0.016805612, 0.0042478642, -0.0058739996, -0.0039823726, -0.017296772, -0.0050841626, -0.010101952, 0.012411728, 0.019102113, 0.01578347, 0.012192697, -0.0118608335, -0.00890724, -0.019115388, 0.0068032197, 0.014004677, 0.02141189, 0.027265977, -0.009929382, -0.0047290674, -0.024013707, 0.015544528, 0.0053927964, 0.020894181, -0.013991402, 0.02471726, -0.025593381, 0.025168594, -0.038602464, -0.003169305, -0.02907132, -0.025049124, -0.012239158, 0.007261193, -0.027982805, 0.018040149, 0.0030166472, 0.009823185, -0.040168867, 0.015279036, -0.0045797285, 0.018172894, -0.020934006, -0.009909471, 0.0014543957, 0.022314562, 0.012478101, -0.031195251, -0.011774548, 0.019248134, 0.020150805, 0.01769501, -0.0042843693, 0.037779443, 0.02016408, 0.013221477, -0.0031875574, 0.0028473963, -0.03254926, -0.027929706, 0.00491823, -0.014787877, -0.0195269, -0.004938142, -0.0055056303, -0.033372283, 0.0031211844, -0.012584297, -0.009325389, 0.0092855655, 0.0011407838, -0.0035011692, -0.016394101, 0.005196996, -0.015597626, -0.014084324, -0.017894128, -0.0063950266, -0.033956364, 0.03002709, -0.0098961955, 0.00036505083, -0.004267776, -0.00077199953, 0.01630118, -0.0011955415, 0.024969475, 0.0014427804, -0.046248622, -0.016194982, -0.018000323, -0.014084324, 0.022155266, -0.017721558, 0.009205918, -0.025434086, -0.028885476, 0.017894128, -0.021040201, 0.0026532558, -0.005469125, -0.0122192465, -0.012239158, 0.008011206, -0.003998966, 0.008309884, 0.01211305, -0.03751395, 0.025845598, 0.008847505, 0.015053368, -0.030398777, -0.012265707, 0.005485718, -0.041841462, -0.0053562913, 0.00222681, 0.017363144, 0.007798813, 0.018305639, -0.020721612, 0.027584568, -0.0024060167, 0.01732332, -0.007314291, 0.0031809201, 0.0078054504, 0.03536347, 0.0020990423, 0.0074403994, -0.03350503, -0.011661715, -0.011562156, 0.0075399587, -0.0047091558, 0.012776779, 0.014376366, 0.003237337, 0.0053562913, 0.027558018, -0.0059503284, 0.019540176, 0.0049248673, 0.008203687, 0.026535876, -0.009232467, 0.046142425, 0.025872147, -0.0210933, 0.0060697994, 0.02973505, 0.008509003, 0.003886132, 0.012325443, 0.027876608, 0.0017505846, -0.004901637, 0.05973559, -0.001695827, 0.036690928, 0.014575484, 0.01703128, 0.010433816, 0.024584513, 0.007380664, 0.037673246, 0.0023944015, 0.0066605182, 0.0010188237, -0.028248297, -0.005887274, -0.015743647, -0.0062390505, 0.031699687, -0.0029237252, 0.017203849, 0.011535606, -0.0058839554, 0.017509164, 0.015079917, 0.023044663, 0.0068164943, -0.005123986, 0.009212555, -0.014283443, -0.023363253, -0.011389585, -0.024358846, -0.007447037, 0.013108643, -0.021982696, 0.012909524, -0.011064359, 0.03212447, -0.004885044, -0.012809965, 0.0030481743, -0.017164025, 0.033664323, -0.010055491, -0.032363415, -0.0080643045, 0.029522656, -0.012438277, -0.025593381, -0.022181815, 0.014084324, 0.0055852775, 0.032097925, 0.021650832, 0.014708229, -0.01485425, 0.0119803045, 0.0058773183, -0.010646209, 0.009730264, -0.029867794, 0.024783632, -0.006969152, -0.030584622, 0.008940427, -0.0015008567, -0.029867794, 0.01172145, 0.016898535, -0.0037201997, -0.02173048, 0.027770411, -0.034991782, 0.024571238, 0.0022284694, -0.0045432234, -0.015517979, -0.003056471, -0.0013457101, -0.010387355, -0.02576595, 0.019327782, -0.010805504, 0.0010337576, -0.0011897339, -0.0030797014, -0.0032456336, 0.08023153, -0.007905009, -0.02207562, -0.0017124203, 0.0068895044, -0.01607551, -0.004742342, -0.01862423, 0.001270211, -0.0094183115, -0.006896142, 0.0014129126, -0.0010851965, 0.00359741, 0.0010213127, -0.006438169, 0.00829661, -0.014562209, -0.024358846, 0.022606602, -0.006345247, -0.028381042, 0.034274954, 0.017203849, -0.0023213914, -0.010274521, 0.015517979, 0.040832594, 0.003886132, -0.007951471, 0.0195269, 0.002231788, -0.005489037, -0.0066837487, -0.017283497, -0.017854303, 0.0054624877, -0.0135732535, 0.011382949, 0.0054824, -0.0037102439, 0.013553342, -0.0067866268, 0.012119687, 0.017641911, -0.012132962, -7.596583E-05, -0.006252325, 0.0054923557, -0.025699578, 0.0122192465, 0.0065277726, -0.011701538, 0.006922691, -0.0052135894, 0.011515694, 0.012537836, -0.020150805, -0.005416027, -0.023203958, -0.0063850707, 0.0034878948, 0.031142155, -0.0008943745, -0.002021054, -0.0017555626, 0.012584297, -0.0022898642, -0.010055491, -0.022248188, -0.006809857, -0.014894074, -0.01610206, 0.0059868335, 0.004194766, 0.009152819, 0.017801205, -0.016752515, 0.007493498, 0.0076926164, -0.009624067, -0.0032539302, -0.015531253, -0.029310262, -0.010420541, -0.01201349, 0.011495782, -0.0052766437, -0.01421707, 0.0098961955, 0.016460473, -0.016407374, 0.03491213, 0.006152766, -0.0063220165, -4.2857173E-05, 0.026416404, 0.021717206, 0.008110765, -0.01827909, 0.009902833, -0.010347531, 0.0011656736, -0.002860671, 0.036106844, 0.0084957285, -0.0037600235, 0.014774603, 0.0016402397, -0.005887274, -0.00844263, -0.002077471, 0.011953755, -0.0034513895, -0.009391762, 0.016951634, -0.00078319997, -0.014907348, 0.0042080404, -0.0297085, 0.026389856, -0.0468858, 0.027584568, 0.0015108126, 0.0030813608, -0.013898481, 0.01920831, 0.0015332134, 0.009112996, 0.014402914, 0.014575484, 0.037646696, 0.0024375438, -0.012438277, -0.03183243, -0.018982643, -0.020243727, -0.0012196016, 0.006039932, -0.014177247, -0.036611278, 0.0226597, 0.040275063, 0.026549151, -0.008190413, -0.018332189, -0.009630704, -7.404724E-05, -0.022062344, 0.018756974, -0.022128718, -0.027743863, -0.040487453, 0.0017157389, -0.007188183, -0.025898697, -0.025527008, -0.030690819, 0.0102678845, 0.006268918, 0.016128609, 0.00807758, 0.009843098, 0.0015307245, -0.014349816, 0.00089769316, -0.022925192, -0.0064613996, -0.028301395, 0.0041416674, -0.0031012727, 0.0016742558, -0.016009137, -0.019473802, -0.014017952, 0.025673028, 0.0044702133, -0.025168594, -0.02907132, -0.027319076, -0.022407483, -0.0044005215, -0.008701484, -0.021597734, -0.0390538, 0.0030083507, 0.014668406, 0.007294379, 0.021318968, 0.00232471, 0.032283768, -0.012411728, 0.0020990423, -0.010174962, 0.012663945, 0.010188237, -0.03692987, -0.011416134, -0.022354385, 0.01825254, 0.018929545, -0.012464826, 0.0094183115, -0.01578347, -0.008754582, 6.460985E-05, -0.008117403, -0.031805884, 0.016407374, 0.0044768504, -0.027796961, -0.018345464, -0.021743754, -0.047894668, -0.016925083, 0.006458081, -0.027796961, 0.024783632, 0.006521135, -0.014548935, 0.024823455, -0.02471726, 0.033876717, -0.011210379, 0.00947141, -0.002273271, -0.029814696, -0.02346945, -0.03719536, -0.011528969, -0.030823564, 0.033080243, 0.034142207, -0.014137423, -0.0071018976, 0.0033335777, 0.020416297, 0.0023927423, -0.015119742, -0.013978127, 0.027133232, 0.021013653, -0.001548977, -0.026150914, -0.010148413, 0.03462009, 0.016088786, -0.0020492626, 0.009843098, -0.012809965, -0.014283443, 0.028805828, -0.042133503, 0.008522278, 0.0111174565, -0.005731298, 0.0027959575, -0.012192697, -0.005638376, -0.010486915, 0.0039126812, 0.030850112, 0.024411945, -0.001463522, 0.007712528, -0.024770357, -0.003557586, 0.0041881287, 0.0061461283, 0.022726074, 0.01260421, -0.004712474, -0.03780599, 0.0056118267, 0.037301555, -0.017602086, -0.0025304658, -0.010121863, 0.0040321522, 0.0044668945, -0.003995647, 0.021770304, -0.0032157658, -0.016951634, -0.0025951795, -0.008489091, -0.036451984, 0.0026233878, 0.011528969, -0.0312749, -0.030770466, -0.0040885694, 0.007931558, 0.01859768, -0.0064049824, 0.015531253, -0.005366247, 0.0047556167, -0.028832378, 0.022128718, 0.033876717, 0.019752568, 0.010951525, 0.012975898, 0.0265757, -0.02811555, 0.008097491, -0.030770466, -0.015557802, -0.023774764, 0.007042162, 5.880222E-05, 0.011741362, -0.018000323, 0.011814372, -0.0059503284, 0.017947227, -0.01172145, -0.02068179, 8.166975E-05, 0.01659322, 0.0084359925, 0.01468168, -0.029920893, -0.0063220165, -0.0040553827, -0.013832107, -0.0024557963, -0.0077921757, -0.014562209, -0.009975843, -0.007546596, 0.0065045417, -0.01069267, 0.0069890637, -0.016261354, -0.019314507, -0.014615308, -0.01752244, 0.00741385, 0.016314453, -0.023495998, 0.0043938844, 0.01754899, -0.039558236, -0.039637882, 0.0008109936, -0.019022467, -0.00026735823, -0.010732494, 0.022009246, 0.040142316, 0.022526955, -0.03002709, 0.0026150914, -0.016725965, -0.024969475, -0.007228006, 0.013334311, 0.01267722, 0.018982643, 0.019261409, -0.016911808, 0.013526793, 0.02184995, 0.033372283, 0.01054665, -0.008774495, 0.002040966, 0.016208256, 0.0056416946, -0.0065344097, -0.024199551, -0.017190576, 0.028566886, -0.015451605, 0.018796798, 0.010765681, 0.0026018168, -0.010393992, 0.023642018, -0.007593057, 0.020880908, 0.024279198, 0.0035078065, -0.026655348, 0.0021056796, -0.024850005, 0.0067667146, 2.9375184E-05, 0.01798705, -0.012312168, 0.007360752, 0.002561993, -0.009464772, -0.008429355, 0.005588596, -0.043275114, -0.00979, 0.0021919643, -0.0034713014, 0.022606602, 0.0143630905, -0.026018167, 0.02097383, 0.02190305, -0.017137477, -0.034513894, -0.015358684, -0.014668406, 0.0065841894, 0.005190359, 0.016606493, -0.009159457, -0.008860779, -0.015252487, -0.0049812845, -0.010247972, 0.024146453, -0.010413905, -0.014442738, -0.036744025, -0.0012544474, -0.022327837, 0.017190576, -6.191345E-05, 0.009119634, -0.027212879, 0.027903158, -0.0061063045, -0.015717097, -0.026031442, 0.009816549, 0.005495674, 0.015690548, 0.00023645337, 0.19964962, 0.006401664, -0.013686087, 0.031089056, -0.03241651, -0.010725857, -0.0064647184, -0.0026681896, 0.0007155826, 0.0070222504, 0.008721396, 0.022566779, -0.0036671015, -0.009039986, 0.0406733, 0.008143952, -0.02631021, -0.008057667, -0.01563745, -0.015557802, -0.011714812, -0.009358576, -0.010613023, -0.032044824, 0.0046195523, 0.016765788, -0.0210933, -0.0328413, 0.015093192, 0.0027876608, 0.008236874, -0.025434086, -0.013586528, -0.009922745, -0.015398507, 0.00726783, 0.004417115, -0.020177355, -0.02033665, 0.044788416, -0.012597572, 0.023456175, -0.0068430435, 0.0059835147, 0.014548935, -0.004267776, -0.015982589, -0.0060897116, -0.025633205, -0.01186747, -0.041761816, 0.005014471, 4.7783287E-05, 0.038522817, 0.0031991727, 0.001270211, 0.031460743, -0.014376366, -0.011024535, 0.0049912403, -0.029549206, 0.026150914, 0.009604155, 0.025088947, -0.014761328, 0.0011814372, -0.015225938, -0.00017899935, 0.03400946, -0.0033053693, 0.007520047, -0.006809857, 0.0014676702, 0.028062452, -0.010287796, -0.019407429, -0.013095369, 0.0114294095, 0.009975843, 0.020761436, 0.0002123932, -0.02001806, -0.0102081485, 0.0014759669, 0.0044237524, -0.028274845, -0.0062855114, -0.011515694, 0.028221747, -0.015969314, 0.017947227, -0.0015124719, 0.0004084006, 0.0012337059, -0.0022168541, -0.008628474, -0.02909787, 0.0195269, -0.010805504, 0.014721504, -0.049753107, 0.01859768, -0.0033568083, -0.0070620743, -0.018186169, 0.017575538, -0.015902942, 0.024478316, 0.021823402, -0.0037567047, 0.006006745, -0.017190576, 0.00084169104, -0.01798705, 0.010659484, -0.009332026, 0.0075399587, -0.008562101, 0.024478316, -0.031938627, 0.015119742, 0.014004677, 0.029124418, -0.008402806, 0.016048962, -0.013148467, -0.014814426, 0.01607551, 0.008389532, -0.032097925, 0.0014394617, 0.0006110453, 0.0068895044, -0.011628528, -0.020668514, 0.011674989, 0.009683803, -0.023190683, -0.016141884, -0.00040508196, -0.013792284, -0.00477221, 0.0065078605, -0.0014386321, 0.009172732, -0.017402967, 0.004881725, -0.018677328, -0.01813307, 0.013898481, -0.0109979855, 0.012020128, -0.012232522, -0.018531308, -0.004417115, 0.015225938, -0.03491213, -0.010911701, -0.020416297, 0.012391816, -0.028673083, 0.011356399, 0.010765681, -0.011469233, -0.0039126812, -0.024199551, -0.1688526, 0.011655077, 0.018066697, -0.03159349, 0.011973667, -0.0026200693, 0.004629508, 0.0021869864, -0.0078253625, 0.008382894, 0.027319076, -0.012391816, -0.02936336, -0.036451984, 0.0061428095, -0.010513464, -0.023562372, 0.043009624, 0.02251368, -0.007221369, 0.009783362, -0.03692987, 0.009458135, -0.011535606, 0.009584243, -0.009736901, 0.013221477, 0.026668621, -0.0029038133, -0.020110982, -0.004463576, -0.022248188, 0.04338131, 0.0038429897, 0.015225938, -0.0021405253, -0.023788039, -0.010413905, -0.0153454095, 0.013606439, 0.005001196, 0.0048883623, 0.013175016, 0.008701484, -0.010632935, 0.037089165, -0.012345355, -0.0037766166, 0.018664053, 0.00028353665, 0.033345733, -0.008522278, -0.017708283, -0.0014676702, 0.017973775, 0.01407105, -0.011887382, -0.009252379, 0.02512877, -0.018889721, 0.0010395652, -0.027372174, 0.0144825615, -0.025301341, -0.0069824266, -0.01766846, 0.012882975, 0.007612969, -0.015119742, 0.0024093355, 0.008143952, 0.009371851, -0.008157226, -0.01622153, -0.005870681, -0.0011864152, -0.009829823, -0.015040094, 0.024345571, -0.021398615, 0.016194982, 0.04659376, -0.017748108, 0.00041503788, -0.018637504, 0.0035011692, -0.01468168, 0.011197104, -0.019035742, 0.0012693813, 0.00071641227, -0.018637504, -0.023071213, 0.0047755283, 0.00222681, 0.009882921, 0.0024342253, -0.016380826, 0.006477993, -0.008084216, -4.3531272E-05, -0.007380664, -0.031513844, 0.0077855387, 0.03621304, -0.009451497, 0.019540176, 0.0041715354, 0.027239429, 8.789221E-05, 0.006421576, 0.020031335, -0.0027528151, 0.020071158, 0.008402806, 0.0089868875, -0.0011930525, -0.0056251013, -0.009086447, -0.0296554, 0.032097925, -0.0037002878, -0.022500405, -0.0142436195, -0.008794406, 0.018345464, -0.08984233, -0.010765681, 0.020403022, 0.021969423, 0.0013033974, 0.010858603, -0.008309884, 0.04091224, -0.017681735, 0.023164134, -0.004264457, -0.03246961, -0.016699417, 0.035257272, -0.0010387355, -0.009942657, 0.03350503, -0.005050976, -0.017018005, 0.0024923016, 0.005973559, 0.0035310371, -0.011144006, -0.0004181491, -0.0015058346, -0.011436047, -0.02973505, 0.018717151, 0.005674881, 0.005708067, -0.00074503553, -0.013540067, 0.008820956, -0.009604155, -0.007566508, -0.011170555, -0.018186169, -0.0045399047, 0.01700473, -0.010606386, -0.0003594506, -0.0037799354, 0.024279198, -0.025686303, -0.008170501, -0.018385287, -0.026549151, 0.019128663, 0.008973613, -0.01267722, -0.025580106, -0.028752731, 0.010095314, 0.00259352, 0.027929706, -0.023243781, 0.0075399587, 0.024080079, -0.010241335, 0.032708555, -0.0012071567, 0.010467003, -0.03315989, 0.0102081485, 0.006551003, -0.021518087, -0.04502736, -0.00037936246, 0.016062235, 0.0036969692, -0.01877025, 0.013725911, -0.008137315, 0.027504921, -0.000112522765, -0.000107648506, -0.017110927, -0.01798705, -0.013938304, -0.017602086, -0.015093192, -0.017336596, 0.024624337, -0.03249616, -0.0120997755, 0.014880799, 0.015079917, -0.009059898, 0.015743647, -0.014323267, 0.018385287, 0.04117773, 0.042053856, -0.0086151995, -0.02909787, 0.010068766, -0.008993525, 0.0045730914, 0.010851965, -0.00851564, -0.02623056, -0.0063120606, -0.07635536, 0.009444861, 0.017761381, -0.015252487, 0.021611009, 0.036690928, 0.020044608, 0.0007840296, 0.01194048, 0.026987212, 0.0065078605, -0.007931558, 0.0013316058, 0.0006940114, -0.033637773, -0.026814641, 0.026057992, -0.0034016098, 0.028513787, 0.0005633398, 0.013440507, 0.017880853, -0.015969314, -0.00014104236, -0.041682165, 0.017310046, -0.0048219897, 0.01810652, -0.0107590435, -0.009398399, 0.024425218, -0.015225938, -0.0022848863, 0.020097706, 0.0028872201, -0.042876877, -0.0033451929, 0.008509003, 0.005565366, -0.027637666, -0.0061361725, -0.017894128, 0.009723626, -0.011767911, -0.016871985, -0.009816549, 0.00054550206, -0.010135138, 0.032682005, 0.014270169, -0.0027743862, 0.022845544, 0.0059868335, -0.03562896, 0.00051148597, -0.01453566, -0.023642018, -0.013234751, -0.0064448062, -0.034938682, 0.037168812, -0.002180349, 0.007334203, 0.0029552523, 0.016473748, 0.01894282, -0.02483673, 0.005887274, -0.007427125, -0.015332134, -0.027717313, 0.012318806, 0.025805775, 0.004629508, -0.007666067, 0.0047589354, 0.0062357318, 0.008349708, -0.014694955, 0.004818671, 0.012411728, -0.018531308, -0.022965016, 0.007360752, 0.0026881015, 0.019633098, -0.011290026, 0.010161688, -0.0038363524, 0.025911972, -0.01627463, 0.006341928, 0.009796636, -0.0061428095, 0.019195035, -0.0013813855, -0.019141939, -0.0061992267, 0.017867578, 0.0043275114, 0.008283335, 0.018650778, 0.0018385287, 0.0071218098, -0.012955986, 0.02550046, -0.00668043, -0.012936073, -0.012318806, 0.022261463, 0.006205864, 0.0049978774, -0.027876608, 0.006969152, -0.015663998, -0.007360752, -0.00660742, -0.00511403, -0.013181653, 0.0048485384, 0.023057938, 0.0044237524, 0.019035742, 0.011157281, 0.015770195, 0.023270331, -0.0075333216, -0.009650616, 0.016513571, 0.007984657, 0.023562372, 0.006305423, -0.008781131, -0.0059835147, -0.008747946, -0.013241389, -0.0009532804, 0.033850167, -0.011044446, 0.068921596, 0.011064359, -0.010062128, -0.0012884635, -0.007838637, -0.011217016, 0.0034381151, -0.0036969692, -0.015133016, -0.031805884, 0.0114891445, -0.0038927693, -0.020057883, 0.006942603, -0.038921054, 0.021518087, 0.01357989, 0.004490125, -0.0015688889, -0.011197104, 0.02973505, -0.015358684, 0.01318829, -0.0048485384, 0.0035343557, -0.0014967084, 0.02300484, 0.011290026, 0.015026819, -0.0024856643, 0.011747999, -0.009730264, -0.012199335, 0.0022085574, 0.0031576897, 0.003484576, -0.032708555, 0.016526846, 0.003014988, 0.02388096, 0.013108643, 0.03565551, -0.010360806, -0.0132613005, 0.011608616, -0.027770411, -0.0035509488, -0.043062724, -0.008057667]
+ },
+ {
+ "Id": 77,
+ "Type": "Trekking",
+ "Brand": "XE",
+ "Name": "Survivor 2-Person Tent",
+ "Description": "Gear up for your next adventure with the Survivor 2-Person Tent by XE. This rugged tent is made from durable ripstop nylon and features a waterproof coating to keep you dry in any weather. The vibrant orange color ensures high visibility in the wild.",
+ "Price": 249.99,
+ "Embedding": [0.02069555, -0.014547832, 0.007360037, -0.0070288023, -0.009758177, 0.024127143, -0.013203018, -0.019105623, 0.012288811, -0.020298067, -0.003264319, 0.0250281, 0.014985062, 0.00093159784, -0.002037094, -0.0062470883, 0.025770066, -0.004511418, 0.0069559305, -0.021000285, 0.0056044925, 0.0054786233, -0.006896308, 0.011732336, -0.0148790665, -0.034474917, 0.022046987, -0.015091057, 0.050586175, -0.002237491, 0.016031764, -0.022722706, -0.009526312, -0.028804177, -0.0014193411, 0.017144714, -0.012600171, 0.010718758, 0.017515695, -0.019516354, 0.024869109, 0.017171212, -0.0037926384, 0.017714437, -0.013130147, -0.0003121888, -0.0010077818, -0.017979424, 0.00588273, 0.011175862, -0.009705179, -0.02111953, -0.0012404743, -0.013580626, -0.009115581, 0.0006918667, -0.02090754, -0.007850264, 0.019118872, -0.028194705, -0.0072209183, -0.0031367934, -0.027320245, -0.0071811704, 0.0026680962, -0.0073732864, -0.01763494, -0.01564753, -0.013249392, 0.025107596, 0.018535899, 0.023451423, 0.027161252, 0.014759822, -0.0059754755, -0.018350407, -0.01983434, -0.0036402703, 0.002818808, 0.0039185076, 0.030791586, -0.040755127, -0.015448791, -0.014640578, 0.023862153, 0.012540549, -0.0047200955, 0.0070023034, -0.0250546, -0.02526659, 0.021185776, 0.027267247, -0.0011253702, 0.025955558, -0.0348194, 0.01852265, 0.00740641, 0.006790313, 0.003178198, -0.05644241, -0.013885362, 0.00881747, 0.0065683858, -0.008963213, -0.01632325, -0.013739619, 0.013699871, 0.004786343, 0.0038257618, 0.010526641, -0.018138416, 0.012540549, 0.020351065, -0.021464014, 0.0050678924, -0.016230505, 0.01502481, -0.00017451933, -0.00018331775, -0.017528946, 0.029493146, -0.0059357276, 0.0044551077, -0.0021662754, 0.010738632, 0.017091716, -0.030897582, -0.005799921, 0.03134806, -0.0034514666, 0.013222893, 0.020510059, 0.038688224, 0.004932086, -0.013607125, 0.046081383, -0.0026531906, -0.008658477, -0.014256345, -0.00527657, 0.026591528, 0.015819773, -0.006091408, -0.0081285015, 0.03420993, 0.01742295, 0.0012719416, 0.01261342, 0.0090890825, 0.00058669964, 0.009943669, -0.02047031, 0.021689255, 0.011798583, 0.0039450065, 0.0070089283, 0.0076448987, 0.020284818, -0.0073931604, -0.01722421, -0.01895988, 0.007664773, -0.0003179854, -0.0074196593, -0.010619387, 0.02656503, 0.017595192, 0.004322614, -0.021450765, -0.0043822364, -0.01872139, 0.03548187, -0.013275891, 0.019516354, 0.00740641, 0.037893258, -0.007578652, -0.0037860137, -0.0053395047, 0.006091408, -0.010824753, 0.0034912147, 0.013819115, 0.022828702, -0.035773356, -0.005809858, -0.0077442694, 0.0026780332, 0.030871082, -0.0152500495, 0.017740935, 0.00114276, 0.006482265, 0.015448791, -0.6584418, 0.0023169874, -0.015846273, -0.033944942, 0.006074846, 0.015727028, 0.017754184, 0.028698182, -0.0017091715, 0.013262641, 0.0108181285, 0.006628008, 0.0068830587, -0.033918444, 0.004862527, -0.036091343, -0.018323908, -0.00430274, 0.010135785, 0.013368636, -0.024935355, 0.013282515, -0.020192072, -0.011924452, -0.010261654, -0.0019228179, 0.013978108, -0.019052625, -0.0022490842, 0.033017483, -0.0133288875, 0.041682586, 0.0054223137, 0.0083206175, 0.05034769, -0.031931035, 0.0070420518, 0.03153355, 0.016614737, 0.04178858, -0.004173558, 0.010334525, 0.015197052, -0.007187795, 0.0050182072, -0.002048687, 0.013415009, 0.008525983, 0.014362341, -0.00506458, 0.0069559305, -0.014309343, -0.005647553, -0.009705179, 0.019118872, 0.01100362, 0.029943625, -0.009420318, -0.000102889804, 0.00082146225, -0.024855858, 0.0015576315, -0.0017224209, -0.028777678, -0.02853919, 0.03116257, -0.03548187, -0.0041172486, 0.013242767, -0.01231531, -0.0006827577, 0.051752124, -0.0042596795, 0.031931035, 0.0055581196, 0.022961196, -0.004395486, 0.00096140895, -0.0050182072, 0.008552482, 0.006452454, -0.0045776647, -0.0112156095, -0.00784364, 0.029466648, -0.025014851, -0.0033686578, 0.00196091, 0.0061742165, -0.0062669623, 0.00805563, 0.008062255, -0.01100362, 0.00670088, -0.026843267, 0.019264616, -0.02220598, 0.019529603, 0.029943625, -0.024988353, 0.0012346776, -0.025995307, -0.00870485, -0.024961853, 0.03548187, 0.013249392, 0.010394148, 0.011884704, 0.029016167, -0.023636915, -0.0071811704, -0.026300043, -0.017608441, -0.028910173, 0.019317612, -0.018270912, 0.046902847, 0.0057469234, 0.021225525, -0.052361596, 0.012209314, -0.00037533042, 0.0044617327, -0.011513721, 0.02547858, 0.028618686, 0.01502481, -0.008353741, -0.0074196593, -0.032381512, -0.00072416203, -0.0063464586, 0.0018880382, -0.0022772392, -0.015329546, 0.0071546715, 0.0014168568, -0.015939018, 0.035216883, -0.02113278, -0.032090027, 0.0023202996, -0.007605151, -0.03330897, -0.0068565602, -0.019768093, -0.018787637, -0.008976463, -0.013415009, -0.020881042, 0.012633295, -0.003275912, 0.017091716, -0.014508083, 0.00032502413, -0.021954242, 0.019145371, 0.0023848906, -0.031507052, 0.004710159, 0.037601773, -0.0040145656, -0.0077707684, -0.0228552, -0.025001602, -0.009168579, -0.006720754, 0.031507052, 0.007167921, -0.033706453, 0.0133288875, -0.017793933, -0.025783315, 0.004024503, -0.0070420518, 0.015409042, -0.003067234, -0.038131747, 0.015766775, 0.0084862355, 0.0041934326, -0.009665431, -0.02724075, 0.0051772, -0.00729379, -0.018178165, 0.0057734223, 0.030076118, 0.0065187006, 0.0110234935, -0.020443812, 0.00051589817, -0.00348459, 0.012971154, 0.0045577907, -0.010579639, -0.010235155, 0.013819115, 0.010930748, 0.027850222, 0.018761138, -0.020390814, 0.022152983, -0.024564372, 0.0196091, -0.014044355, 0.009234826, -0.0018052296, 0.015965518, 0.0020354379, -0.0057469234, -0.0544285, -0.011036743, -0.01338851, 0.0054786233, 0.019463357, 0.029731635, 0.041205607, 0.0019195057, -0.013249392, 0.0014218254, -0.0042530545, 0.007075175, -0.012712792, -0.015183803, -0.00096389325, -0.003264319, 0.017171212, 5.315283E-05, -0.014693575, -0.006790313, 0.005839669, 0.024988353, 0.017740935, 0.010592888, -0.0032792245, 0.00071008457, -0.012421304, 0.017436199, 0.014667076, 0.025558077, 0.011871455, 0.016601488, -0.016906224, 0.012891658, 0.006773751, 0.017528946, -0.015051309, -0.023968149, 0.0005929103, 0.0113944765, 0.009234826, -0.0040112534, 0.0059655383, 0.018893633, -0.007167921, 0.03002312, 0.004905587, 0.00883072, 0.018005922, -0.011732336, -0.008386865, 0.012911532, 0.004610788, 0.014667076, -0.02113278, -0.047088336, -0.04078163, -0.02372966, -0.0072474172, 0.018973129, -0.018840635, 0.016243754, -0.007837015, -0.008340492, -0.009539562, 0.0074726567, -0.003045704, 0.004349113, 0.0027442803, 0.0016619705, -0.027770724, 0.018840635, 0.019582601, -0.0027658106, -0.017277207, -0.020390814, 0.013858863, 0.019516354, 0.03129506, 0.019648848, -0.014110602, -0.011308355, 0.0011833363, 0.013766117, 0.015144055, 0.031719044, -0.035587866, 0.035190385, -0.0028403383, 0.0011253702, 0.008333867, -0.013434883, -0.02157001, 0.016362999, -0.0077906423, -0.0064226426, -0.010043039, -0.019264616, 0.01296453, 0.015170554, -0.02592906, 0.021079782, -0.021291772, -0.007989383, -0.027585233, -0.018774388, -0.03723079, 0.0027856845, -0.0040708757, 0.007161296, -0.021185776, -0.009440191, 0.0064657032, 0.09428267, 0.009698555, -0.00052707735, 0.009771426, 0.008896966, -0.02217948, -0.029122163, -0.02371641, 0.007969509, -0.013481256, -0.018270912, 0.01763494, 0.011083116, -0.0104338955, 0.002181181, 0.023491172, -0.014680326, -0.013421633, -0.0072275433, 0.0015029778, -0.017330203, -0.022126485, 0.014004607, 0.0056309914, 0.016005265, -0.005034769, -0.0050314562, 0.025399083, 0.017767435, -0.0062967734, -0.008234497, -0.019489855, -0.0011394477, 0.018641895, -0.01612451, -0.011142738, 0.004882401, -0.0108181285, 0.024206638, -0.0031086386, -0.002674721, 0.0033587208, 0.01393836, -0.0185094, 0.013275891, 0.0054156887, -0.021384519, 0.012586922, 0.0047300328, -0.0113812275, 0.009214952, 0.014680326, -0.016601488, -0.0036733937, -0.024127143, 0.006359708, -0.010043039, -0.0068035624, -0.03357396, -0.02679027, -0.0044517955, -0.035561368, 0.010043039, -0.0075919013, -0.016959222, -0.031401057, 0.0039880667, 0.012143067, -0.015316296, -0.03240801, 0.008810845, -0.033679955, 0.004392173, -0.0033819072, 0.02616755, -0.00051010156, 0.010361024, -0.014958563, 0.0057568606, -0.002027157, 0.0035011517, 0.019622348, 0.017144714, -0.0044782944, 0.03246101, 0.010910874, -0.00554487, -0.022457719, 0.014256345, 0.014547832, 0.015766775, 0.005200386, 0.017555444, -0.01983434, 0.021411017, 0.010857876, 0.0031334811, 0.010321276, 0.005998662, -0.0006152686, 0.019688595, -0.03004962, -0.008400114, -0.0048128413, 0.017701186, -0.0058330446, 0.011467349, 0.016972471, -0.0063729575, 0.016230505, 0.0038423236, -0.00055274804, 0.011142738, -0.019980082, -0.011096366, 0.0060980325, 0.0016205662, 0.01012916, -0.0058496064, -0.018708142, -0.012759164, -0.052812073, 0.008771097, -0.0070089283, -0.012593547, -0.010009916, 0.0008293291, -0.028141707, 0.002389859, -0.0007121548, -0.017886678, 0.008943339, -0.006896308, -0.008525983, 0.002542227, -0.02176875, -0.0071811704, 0.00030804836, 0.011851581, 0.0010533266, 0.0043855486, 0.0014690263, 0.014057605, 0.017913178, -0.0006711645, -0.017104965, -0.040437143, 0.012394805, -0.012215939, 0.021397768, -0.017051967, -0.0017141401, -0.0024875733, -0.00058421533, 0.00029686917, -0.046319872, -0.020364314, 0.006329897, 0.012467678, 0.03312348, 0.0032924737, -0.0066578193, -0.00042770692, 0.008737974, 0.006339834, 0.010414022, -0.02721425, -0.013176519, -0.034474917, 0.020788295, -0.010500142, 0.015978767, -0.0018383531, -0.008347116, 0.03442192, 0.017701186, -0.006008599, -0.03415693, 0.021940993, -0.027744226, -0.0029927064, -0.009188453, -0.01209007, -0.011606467, -0.0072407923, 0.00386551, 0.027929718, 0.0090758335, 0.0038092001, 0.011566719, 0.032143023, -0.012368307, -0.0025869438, -0.008771097, 0.007684647, 0.004200057, 0.008784346, -0.017449448, -0.003352096, 0.0024643869, 0.0074792816, -0.004564415, -0.0016810165, -0.011851581, -0.00020681472, 0.020205323, -0.014905565, -0.01615101, 0.025558077, -0.017038718, -0.012785663, -0.0025223529, -0.016389497, -0.05026819, 0.0041569965, 0.010009916, -0.021927742, 0.0046240375, -0.0062139644, -0.022735955, 0.002379922, -0.01698572, 0.020761797, -0.006409393, 0.022974445, 0.010824753, -0.015382543, -0.0098575475, -0.007658148, 0.0144948345, 0.0066379453, 0.016945971, 0.005842982, 0.0010218594, -0.008009257, 0.010897624, 0.0038588853, 0.0011510409, -0.022113234, -0.01481282, 0.013322263, 0.01001654, -0.006608134, -0.037071798, -0.022550464, 0.012792287, 0.004534604, -0.025730317, 0.0054123765, 0.00375289, -0.007883388, 0.021490512, -0.029307654, -0.00506458, 0.014998311, -0.01393836, 0.012686293, -0.015316296, 0.019450108, -0.008386865, 0.014004607, 0.032275517, -0.004587602, 0.0027641542, 0.008241122, 0.0010135785, -0.0025587888, 0.013441508, 0.01588602, 0.03113607, -0.01674723, -0.021000285, -0.010195407, 0.0059754755, 0.017250707, -0.0074329088, -0.014693575, -0.013103648, 0.019887337, 0.0046207253, -0.008671727, 0.006942681, -0.0055581196, -0.009983417, -0.020192072, -0.0030887644, -0.012666418, -0.022364972, -0.006180841, -0.02284195, -0.01587277, 0.008174875, -0.0019261303, 0.020589555, -0.008426613, -0.0119840745, 0.020059578, -0.0010591232, -0.024272885, 0.008671727, 0.0077641434, 0.019728344, -0.020059578, 0.014388839, 0.021967491, -0.025014851, 0.025213592, -0.027903218, -0.020602804, -0.04261004, 0.027903218, -0.005674052, -0.02721425, -0.012706166, 0.012547174, 0.0012504114, 0.015740277, -0.013964859, -0.021093031, 0.012037072, 0.0026068178, 0.0052699456, 0.020006582, -0.017290456, 0.0027972779, -0.0047167833, 0.0282742, -0.007923136, -0.02327918, 0.001362203, -0.006455766, 0.013169895, 0.010308026, -0.024471626, 0.012686293, -0.026750522, -0.0018482901, 2.3160557E-05, -0.0070221773, 0.019436857, 0.015978767, 0.02264321, -0.009592559, 0.024551123, -0.0044716694, -0.023941651, -0.012361682, -0.016283503, -0.004806217, -0.01251405, 0.008373615, 0.035428874, -0.0078105163, -0.021517012, -0.0077707684, -0.009877421, -0.038131747, 0.008121877, 0.02220598, 0.01501156, 0.02134477, 0.028406695, 0.005471999, 0.044517957, 0.017078465, 0.008333867, -0.010175533, -0.038476232, -0.002540571, -0.011891329, 0.019648848, 0.0037297036, -0.021013536, -0.020086078, 0.009539562, 0.026883015, 0.015409042, -0.0031285125, -0.03068559, 0.009844298, -0.016164258, 0.027346743, 0.02766473, 0.02155676, 0.0031119508, -0.023027442, 0.0016710795, -0.010155658, 0.01919837, 0.0037562025, 0.00049561006, 0.035561368, 0.026843267, -0.00784364, -0.010069538, -0.02592906, -0.0034713405, -0.020947289, -0.0076515237, 0.017396452, 0.0045081056, 0.010082787, 0.02481611, -0.019688595, -0.013375261, 0.030129116, -0.01674723, -0.024855858, 0.019503104, 0.006876434, 0.004468357, -0.01742295, 0.0024246387, -0.01034115, -0.019423608, 0.012348433, -0.025611075, -0.0077906423, 0.02154351, 0.027505737, -0.023173185, -0.02329243, -0.0064657032, -0.0015013217, 0.026657775, -0.014773072, 0.004587602, -0.002494198, 0.016415996, -0.019450108, 0.006942681, -0.015568035, -0.00050099264, 0.012871784, -0.001685157, 0.041311603, 0.21230824, 0.020801544, 0.01001654, 0.04661136, 0.011712462, 0.04009266, 0.016257003, 0.0036866432, 0.014070854, 0.0016710795, -0.023173185, 0.0017836994, 0.0010996995, -0.0027442803, 0.013408384, -0.020496808, -0.034686908, -0.00078047195, -0.025425583, 0.00048318875, 0.020629304, -0.013964859, 0.003733016, -0.021861495, 0.021411017, -0.008618729, -0.0077243955, -0.025955558, 0.004445171, -0.004862527, -0.0031351373, -0.028645184, 0.016442494, 0.00881747, -0.006386207, 0.011712462, 0.024948604, -0.0034912147, -0.008956589, 0.010235155, -0.0060417224, 0.0058496064, -0.008453112, 0.01230206, -0.0039880667, 0.026021805, -0.022563715, 0.009791301, 0.0065915724, 0.0063365214, -0.036621317, -0.020536557, -0.0017439511, 0.005283195, 0.004418672, -0.007141422, 0.02914866, -0.015700528, 0.0068631847, 0.021490512, -0.0067439405, 0.03330897, -0.027823722, 0.02808871, -0.013249392, 0.041046616, -0.0012346776, 0.007890013, -0.0038323866, -0.016919473, -0.0023981398, -0.013911861, -0.0030887644, 0.03352096, -0.0078105163, 0.0027558734, -0.0072010444, 0.001589099, -0.0029529582, 0.008400114, 0.0046902844, -0.009320947, 0.0010491862, -0.0067671267, 0.0022441158, -0.03397144, -0.0014938689, -0.009420318, 0.01762169, -0.00588273, 0.0066379453, -0.013216268, -0.012295435, -0.018827386, -0.012898283, 0.0127525395, -0.002113278, 0.0370453, -0.0027426241, 0.01676048, -0.045153927, 0.0062437756, -0.018787637, -0.01615101, -0.026247045, 0.013216268, -0.010009916, 0.032275517, 0.026525281, 0.00028900235, 0.00015443822, 0.0008003461, 0.006134468, -0.002552164, 0.01719771, -0.0026200672, 0.038767718, -0.018747889, 0.004296115, -0.009592559, 0.017992673, -0.020284818, -0.0010533266, 0.010738632, -0.017396452, -0.022364972, -0.007015553, 0.019277865, 0.004392173, -0.015104306, -0.010467019, -0.008572357, 0.016866475, -0.019887337, 0.030579595, -0.02787672, 0.0011651184, -0.020152325, -0.004054314, 0.019927084, -0.0026167547, -0.019662097, -0.0008587262, 0.02504135, 0.037734266, -0.016018514, 0.0054521244, -0.0016354718, -0.0076117753, -0.0050910786, -0.017091716, -0.003607147, 0.016415996, 0.0076515237, 0.0006136125, -0.048678264, -0.03373295, -0.033997938, 0.029943625, -0.006949306, 0.0015940674, -0.0050248317, 0.0030042995, -0.012639919, -0.01567403, -0.0017091715, -0.16938022, 0.009261325, 0.006111282, -0.02680352, -0.009619058, -0.008565731, 0.0040576262, 0.015144055, -0.025200343, 0.020006582, 0.021636257, -0.0068565602, -0.026525281, -0.012348433, 0.0071944194, 0.0049453354, 0.000116035684, 0.031215567, -0.0057734223, 0.005617742, 0.025677321, -0.003829074, 0.02241797, -0.011460723, 0.0049188365, -0.010718758, 0.012215939, 0.016521992, 0.009082458, -0.014508083, -0.006704192, -0.015793275, 0.04332551, -0.010109286, 0.009698555, -0.023769408, -0.0021729001, 0.0058496064, -0.015780026, 0.018562397, -0.016853226, -0.014176849, 0.0005858715, -0.0010293121, -0.024458377, 0.01742295, -0.023477921, 0.01055314, -0.0003304067, -0.022815453, 0.022258978, -0.010539891, -0.0051208897, -0.019277865, 0.038025755, 0.0002722336, 0.0130639, -0.009526312, 0.017793933, 0.018231163, -0.011950951, -0.029996622, 0.0076912716, -0.014335842, -0.041921075, -0.0125273, 0.015581285, 0.0038920087, -0.026737273, 0.016826726, -0.013646874, 0.015568035, 0.015210302, -0.038582228, 0.017542195, 0.020496808, -0.013474631, -0.012620046, 0.0037595148, -0.012633295, -0.0123418085, 0.036435828, -0.009241451, 0.025942309, -0.020430561, 0.0133288875, -0.04157659, 0.0016710795, -0.0052633206, -0.011222235, 0.0123418085, -0.017754184, 0.004292803, -0.020841293, 0.019118872, 0.019940333, 0.00816825, -0.013282515, 0.014017857, -0.0076912716, 0.012368307, 0.00010014677, -0.00074900466, 0.023610415, 0.024299383, -0.005942352, 0.021503763, 0.0017853555, 0.02419339, 0.005541558, 0.01567403, 0.0112156095, 0.018125167, 0.0023302368, 0.023835655, -0.0036005222, -0.0026730648, -0.020735297, -0.0140841035, -0.0010930748, 0.031851538, -0.015236801, -0.013275891, -0.014958563, -0.0029827692, -0.0046969093, -0.08532608, -0.0034912147, 0.042716037, 0.019662097, -0.0086783515, 0.0007539732, 0.008949964, 0.026114551, -0.013249392, 0.015210302, 0.013110273, -0.0068101874, -0.015992016, 0.0069294316, 0.04109961, -0.005674052, 0.016296752, -0.041205607, -0.022139734, 0.01656174, 0.0010773411, -0.02198074, -0.009069208, -0.017515695, -0.0094733145, -0.010281527, -0.030447101, -0.009426942, 0.021053283, 0.018270912, -0.011195736, -0.016389497, 0.014044355, -0.028221205, -0.015939018, -0.014031106, -0.0501357, 0.003312348, 0.013766117, -0.025306338, -0.015329546, 0.0012578641, 0.014031106, -0.023676662, -0.013845614, -0.008373615, -0.019980082, 0.010394148, 0.032725997, -0.04745932, -0.013805866, -0.017277207, -0.0075720274, -0.022974445, 0.008532608, -0.015594534, -0.0029397088, 0.021093031, -0.0027475925, 0.014600829, -0.004256367, 0.015819773, 0.0018814136, 0.021371268, -0.013116898, -0.0065617613, -0.00056599744, -0.014653827, -0.0042861784, -0.004713471, -0.0065617613, -0.00019263373, 0.00023062222, 0.03312348, -0.022828702, 0.0035110887, -0.024445128, -0.0059821005, 0.018787637, -0.0053063813, 0.004047689, -0.017316954, 0.016919473, -0.013269265, 0.0014450118, 0.009340821, 0.006816812, -0.026313292, -0.007273916, -0.0077177705, -0.0016437527, 0.020602804, 0.029228158, -0.013991358, -0.0086783515, 6.008806E-05, 0.0053858776, -0.013547502, -0.016482243, -0.01766144, -0.0023567355, -0.0021215589, -0.08098028, 0.021715753, 0.022709457, -0.026419288, 0.013474631, 0.01099037, -0.011613091, 0.008757847, -0.005253384, -0.021914493, -0.025438832, 0.02023182, 0.012911532, -0.0037396408, -0.007095049, -0.008698226, 0.0045842896, 0.011897953, 0.027346743, 0.010679009, -0.010248404, -0.0010549828, -0.009009587, -0.006770439, -0.01980784, 0.013752868, -0.0050712046, 0.0012901595, -0.002732687, 0.012169566, 0.0030821397, 0.0010061257, 0.009022836, 0.03439542, -0.021887995, -0.035852853, 0.007850264, 0.0075720274, 0.010811503, -0.029016167, -0.021530261, -0.013699871, 0.0054322504, 0.012832035, -0.047379825, -0.0056972383, 0.012759164, 0.011758835, 0.005693926, 0.0035243381, 0.037972756, 0.018310659, 0.004047689, 0.002408077, -0.013150021, -0.04072863, -0.0065882597, -0.021199027, -0.0044882316, -0.030818084, 0.04661136, 0.016720733, 0.017250707, 0.009526312, 7.354448E-05, 0.003769452, -0.00991717, 0.00020929899, 0.0035144011, 0.008247746, -0.0020834669, 0.002219273, 0.037071798, 0.0058131707, -0.007167921, 0.018920131, 0.017462699, -0.009778051, -0.010838002, 0.029042667, 0.017157963, -0.011725712, -0.058403317, 0.01979459, -0.004905587, 0.0073732864, -0.017939676, 0.024710115, -0.012288811, 0.009877421, -0.033255972, 0.013593876, 0.0029678638, -0.015051309, 0.017290456, 0.015038059, -0.006485577, 0.022722706, 0.011109615, -0.0050182072, 0.014852568, -0.0038323866, -0.00039065004, -0.017926427, -0.005084454, -0.009698555, -0.021755502, -0.018270912, -0.0140841035, 0.015051309, 0.0068698097, -0.025001602, -0.027850222, 0.006425955, -0.00805563, -0.01262667, 0.010043039, -0.0072606667, -0.013660123, 0.01197745, 0.010294777, 0.0370453, 0.002113278, -0.0112023605, 0.011374603, -0.008062255, -0.00670088, 0.0025654135, 0.00957931, -0.0014864161, 0.005207011, 0.008698226, 0.014203347, -0.013368636, -0.0028486191, -0.01152697, 0.01230206, 0.0250546, -0.0040344396, 0.054587495, 0.019503104, -0.019463357, 0.015740277, -0.013567377, 0.015157304, 0.018602146, 0.008466361, -0.01591252, -0.03004962, 0.023557419, -0.010347775, 0.015276548, 0.01262667, -0.029201658, 0.0064127054, 0.018456403, 0.0016901256, -0.022033738, -0.002732687, 0.041629586, -0.0163365, 0.018615395, -0.0062205894, -0.007426284, -0.009168579, 0.025134096, -0.0048128413, -0.004150372, -0.022894949, 0.008188124, -0.018588897, -0.005299757, -0.019622348, 0.0021530262, 0.002772435, -0.018655144, 0.015382543, -0.0046538487, 0.00424643, 0.009387194, 0.03002312, -0.004743282, -0.008559107, 0.014627328, 0.01099037, -0.021782, -0.014561081, -0.0010409054]
+ },
+ {
+ "Id": 78,
+ "Type": "Bags",
+ "Brand": "Solstix",
+ "Name": "Basecamp Duffle Bag",
+ "Description": "The Basecamp Duffle Bag by Solstix is the ultimate adventure companion. This spacious bag is made from durable nylon and features multiple compartments for optimal organization. Its sleek red design with gray accents exudes both style and functionality.",
+ "Price": 129.00,
+ "Embedding": [0.018496176, -0.00043119042, -0.010459628, -0.025994262, -0.035888504, 0.02450003, -0.024136567, -0.030611575, 0.019088484, 0.002350724, 0.010183666, 0.008945203, 0.008951934, 0.029023113, -0.0048899096, 0.0012132226, 0.030961575, 0.011220206, 0.004122601, -0.010971167, -0.009813474, -0.0042033703, 0.00020886444, -0.00014113598, -0.0067577004, -0.02277695, 0.02467503, -0.012344246, 0.024351953, 0.005169237, 0.019438485, -0.009968281, -0.035619274, -0.022561565, 0.01013655, -0.004718275, -0.0016734395, -0.012573092, 0.016813481, -0.02459426, 0.034219272, 0.015090403, 0.0064817388, -0.010473089, -0.03473081, -0.014134632, -0.0140134785, -0.0070538544, 0.0017971175, 0.0032627443, 0.0008573328, 0.019115407, 0.0011770447, 0.014525018, 0.0016658674, -0.005482218, -0.007949048, 0.003705293, 0.02312695, -0.027676957, -0.024984645, 0.0012325736, -0.011563475, 0.013374055, -0.017365405, -0.025240416, -0.002564426, 0.0056403913, 0.014417325, 0.0323885, -0.0073432783, 0.013259632, 0.022292335, 0.00934905, 0.009059627, -0.0072153932, -0.02209041, 0.028269265, -0.007612509, 0.014982711, 0.0017567329, -0.0127077075, -0.036130812, -0.011576937, 0.03325004, -0.0021824546, 0.00376587, 0.012929823, -0.021955796, -0.01480771, -0.009301934, 0.003954332, 0.008440395, 0.01611348, -0.03707312, 0.0013175496, 0.011906745, 0.011119244, -0.020192333, -0.019263485, 0.0004602169, -0.0048394287, -0.008857703, -0.015803864, -0.035619274, -0.0028824555, 0.002956494, -0.012539438, 0.017944252, 0.013690401, -0.033896193, 0.0179981, 0.01523848, -0.028942343, 0.006767797, -0.019344253, 0.025334645, -0.013973094, -0.014471171, -0.022978874, 0.03012696, 0.0140134785, 0.047492366, 0.0024920702, 0.0064480845, 0.00996155, -0.04582313, 0.007969241, 0.02770388, -0.0054721218, -0.0017971175, 0.033976965, 0.0053610643, -0.017607713, -0.0034663503, 0.0095173195, -0.0026250032, 0.02234618, 0.0081509715, 0.009900973, 0.021201948, 0.035538506, -0.035080813, -0.020030793, 0.010749051, 0.01568271, 0.009086549, 0.019559639, 0.021242334, -0.008723088, 0.041461587, -0.03185004, 0.019371178, 0.016207712, -0.0071682776, 0.015898095, 0.01194713, 0.025146184, -0.015803864, -0.0044793324, 0.0028858208, 0.0018475984, 0.010883667, -0.015615404, 0.009025972, 0.017123098, 0.036884658, 0.0016423097, -0.014713479, 0.010109628, -0.0061250073, 0.020515408, -0.014955787, 0.006380777, 0.00118041, 0.019721178, 0.013131746, 0.00087836647, -0.03004619, -0.017876945, -0.014067325, 0.012855785, 0.0001154749, 0.02910388, -0.025859646, -0.018751945, 0.015278865, -0.0052971216, 0.0075653936, -0.0012712756, 0.007201932, 0.0008560707, -0.0007016835, -0.006744239, -0.6508931, -0.0025240416, -0.010035589, -0.04294236, 0.018630791, 0.009281742, 0.014484633, 0.012458669, -0.010224051, -0.0044793324, 0.018846177, 0.030584652, -0.0061754882, -0.024486568, -0.0015943529, -0.027892342, 0.0035134659, 0.002261541, 0.013353862, -0.0008438712, -0.049915444, 0.012929823, -0.034784656, -0.009550973, -0.0053745257, -0.0039004853, 0.026694262, -0.004321159, -0.01420194, 0.0188731, -0.015750019, 0.028942343, -0.008117317, -0.0061081806, 0.050938524, -0.025401954, -0.002268272, 0.045930825, 0.013475016, 0.00385337, 0.0037557737, -0.011765399, -0.013306747, -0.020555794, -0.019909639, -0.0015203144, 0.032173116, -0.013017324, -0.0074173165, -0.014471171, 0.014753864, -0.035807736, -0.0044658706, -0.008218279, 0.016759636, -0.0045903903, 0.020636564, 0.008965395, -0.0021656277, -0.006370681, -0.0074307784, 0.017971175, -0.020986564, -0.021255795, -0.039334662, 0.02217118, -0.05500391, -0.012546169, 0.0259808, -0.014121171, -0.014323094, 0.018644253, -0.0028942341, 0.0074913553, 0.008184625, 0.005680776, -0.0049235635, -0.005956738, -0.00710097, 0.019250022, 0.021915412, -0.006643277, -0.0195731, -0.030719267, 0.048973136, 0.0076057785, 0.000933054, 0.006939431, 0.012902901, -0.021982718, 0.0011139436, 0.042834666, -0.00023768058, -0.024203876, -0.0110048205, 0.0188731, -0.008433664, 0.02121541, 0.009658665, -0.005048083, 0.0057110647, 0.008649048, -0.012606746, -0.014753864, 0.014067325, 0.018644253, 0.009732704, 0.018751945, 0.0007778255, -0.016328866, 0.010950975, -0.019465407, -0.031903885, -0.01610002, 0.0065221232, -0.028215418, 0.020946179, -0.025051953, 0.03403081, -0.027407724, 0.0070336624, 0.0018543291, -0.008339433, 0.0072961627, -0.0085077025, 0.015171172, 0.0050750063, -0.012324053, -0.02095964, -0.011408668, -0.014565402, 0.0151038645, 0.009705781, -0.0027108206, -0.0007328134, 0.024405798, 0.010708666, -0.020825025, 0.010318282, -0.042646207, -0.030261574, 0.0016238, 0.015184633, -0.032576963, -0.0025475991, -0.019990409, -0.044934668, -0.02043464, -0.013905786, -0.021242334, 0.0016633434, -0.030234652, -0.0040317355, -0.01576348, 0.018496176, -0.018509638, 0.002626686, -0.019263485, 0.0030305325, -0.01428271, 0.032980807, -0.0081711635, -0.022292335, 0.014269248, -0.040034663, -0.016907712, -0.0059432765, 0.022292335, -0.006771162, -0.047842365, -0.0020276466, -0.0038836584, -0.01793079, 0.011846168, -0.0062327, 0.0051153908, -0.02346349, 0.017298097, 0.032334656, 0.012438476, -0.0013932709, -0.0025576954, -0.0021992815, -0.00036682736, 0.021323103, 0.021417333, 0.014565402, 0.026088493, 0.0062057767, -0.0030625036, 0.010749051, 0.011792322, 0.025428876, -0.0021723583, -0.030934652, -0.010984628, -0.0036750045, 0.012700977, 0.02658657, 0.015225018, 0.008642318, -0.02362503, 0.020838486, -0.020542333, 0.0022531278, -0.04953852, -0.00039122644, 0.0066802963, 0.021457719, 0.02555003, -0.0014092565, -0.003654812, 0.004782217, -0.0065591424, -0.000608294, 0.03082696, 0.022413488, 0.0068620276, 0.0009927896, 0.020205794, 0.0009204338, 0.00044759669, 0.014080786, -0.026828878, -0.032146193, 0.014417325, -0.012828861, 0.02209041, 0.0046913517, -0.024190413, 0.019425023, 0.020057717, -0.0034798118, 0.016692327, 0.014928864, -0.0029144266, 0.0045937556, -0.021525025, 0.05653853, -0.0055024102, 0.018321175, 0.027151955, 0.022063488, -0.0077875094, 0.031284653, 0.011031744, 0.024984645, 0.0049302946, 0.002350724, -0.020569256, 0.00024378033, 0.0052096215, -0.011529822, -0.008642318, -0.005317314, -0.022561565, 0.007525009, 0.03500004, 0.015346172, 0.011327898, -0.020178871, -0.0077269324, 0.015723096, 0.0032762059, 0.025496185, -0.008958665, -0.022117333, -0.041165434, -0.026559647, -0.014228864, 0.020313486, -0.01531925, 0.011045205, -0.021107718, 0.00194856, 0.005741353, 0.0072153932, 0.010782706, -0.0055024102, 0.018630791, -0.00532741, -0.02520003, -0.008541357, 0.015117326, 0.013367324, -0.015857711, -0.01791733, 0.027219264, 0.0199231, 0.01756733, 0.012404823, 0.005812026, 0.00021370218, -0.013185592, -0.0076663555, 0.011139437, 0.008972126, -0.018092329, 0.029319266, -0.011590399, 0.001081131, -0.0017685117, -0.01619425, -0.028269265, 0.044234667, 0.001982214, -0.02926542, -0.008877895, -0.0061519304, -0.004213467, 0.000506491, -0.018523099, -0.0056572184, -0.009773089, 0.011563475, 0.0032341385, -0.005700968, 0.009954819, 0.032442346, -0.0031500037, -0.023005797, -0.0085077025, -0.02077118, -0.0023153874, 0.091915496, -0.0016717569, -0.014296171, 0.009470204, 0.022575026, -0.019290408, -0.02451349, -0.017526943, 0.018455792, -0.02778465, -0.0032509654, -0.006919239, -0.016665405, -0.022359643, -0.0048394287, 0.01576348, 0.0051254868, -0.0063639497, -0.0078009707, -0.01342117, 0.0049504866, -0.007760586, -0.020030793, 0.0136567475, 0.012169246, -0.009389434, 0.010028859, 0.032146193, 0.009833666, -0.014134632, 0.0060576997, 0.013414439, 0.015871173, 0.015265403, -0.023692336, -0.0091807805, -0.014592325, -0.0057110647, 0.01619425, 0.013131746, 0.011799052, 0.0249308, 0.023086566, -0.0070471237, 0.026155801, -0.0016246414, -0.016853867, 0.012566362, 0.01091059, -0.019532716, 0.016840406, 0.011590399, -0.0122903995, -0.0012250015, 0.012075014, -0.0034360618, 0.011125975, 0.0062293345, -0.025051953, -0.043157745, 0.012519246, -0.024082722, 0.03551158, 0.0050783716, -0.010675013, -0.027542342, -0.017553868, -0.0018543291, -0.0066971234, -0.004496159, -0.009840396, -0.011294245, 0.0038836584, 0.009322126, 0.02277695, 0.0030894268, 0.018146176, -0.0049639484, 0.010809628, 0.024903877, 0.0048865443, 0.0020125024, 0.0064952, -0.017365405, 0.023867337, -0.0005338348, 0.014511556, -0.010466359, -0.004226928, 0.003732216, 0.0179981, -0.000728186, 0.019344253, 0.0005380415, 0.012431745, 0.023153873, 0.02025964, 0.017244251, 0.007558663, -0.011529822, 0.02631734, -0.017096175, -0.015453865, 0.0046543325, 0.005229814, -0.0127278995, -0.007376932, 0.025563492, -0.009254819, 0.015723096, 0.017863482, -0.02381349, 0.0061283726, -0.008514433, -0.023853876, 0.012801939, -0.010264436, 0.0039375047, 0.007309624, -0.018428868, -0.029157728, -0.042753898, 0.014269248, 0.015992327, -0.010971167, 0.017526943, 0.0048158714, -0.03723466, -0.005048083, 0.002762984, 0.0050110635, 0.02502503, -0.039684664, -0.0154404035, -0.01783656, -0.01853656, -0.019640408, 0.010264436, 0.012714438, -0.0088442415, -0.019680792, 0.004735102, 0.008373087, -0.018105792, -0.0366962, -0.015346172, -0.013387516, 0.00078581827, -0.008036548, 0.028538495, -0.0021588968, 0.018078867, -0.005492314, -0.013111554, -0.009335588, -0.019142332, -0.037019275, 0.00190481, 0.035026964, 0.029857729, -0.004920198, 0.0048528905, 0.027125033, 0.003637985, -0.007323086, -0.016221173, -0.009100011, -0.018859638, -0.012202899, 0.006744239, 0.019600024, 7.041024E-05, 0.0013705546, -0.03004619, 0.019128868, 0.042538512, -0.0039610625, -0.04875775, 0.0017769252, -0.023275027, 0.0055697183, -0.03349235, 0.00089098664, -0.009948089, -0.03626543, -0.015776942, 0.023584643, 0.008985587, -0.014269248, -0.008016355, 0.02891542, -0.01531925, -0.00014218767, 0.0065591424, 0.00788174, -0.013784632, 0.009248088, -0.019909639, -0.0013301698, 0.002719234, -0.0073432783, 0.0037557737, 0.007255778, -0.02910388, -0.00078497693, 0.014592325, -0.0054956796, -0.004667794, 0.012613476, -0.01134809, -0.021376949, 0.0035269272, -0.02320772, -0.032873116, 0.020300025, 0.005229814, -0.012741362, 0.02891542, -0.023046182, 0.019438485, -0.0042067356, -0.009604819, 0.034434658, -0.030423114, -0.0028891861, 0.019963486, 0.00480914, -0.02639811, -0.00042551133, 0.0013966362, -0.009645204, 0.017001944, 0.024688492, -0.021834642, 0.0022463968, 0.022373104, 0.005576449, -0.002503849, -0.009550973, 0.018940408, 0.03322312, 0.057615455, -0.016934635, -0.01653079, 0.014780787, -0.0054754876, -0.01756733, 0.0058153914, -0.014780787, -0.020892333, -0.0022951951, -0.007249047, -0.018428868, 0.008420203, 0.003644716, -0.005886065, 0.020501947, -0.00892501, 0.0188731, -0.017163482, -0.013973094, 0.03160773, 0.008871164, 0.004398563, 0.003705293, 0.027555803, 0.013932709, 0.0137577085, 0.0028858208, 0.020555794, -0.020838486, -0.00961828, 0.00032623237, -0.005155775, 0.017082714, -0.013825017, -0.004735102, -0.00996155, 0.0016254827, -0.010870205, 0.0130038615, -0.004176447, -0.008534626, -0.014875018, -0.012741362, 0.0030574556, -0.020528872, -0.03750389, -0.002874042, -0.039361585, -0.028350035, 0.0025459165, -0.0040216395, 0.0054586604, -0.03696543, -0.029857729, -0.006370681, 0.0059870263, -0.023571182, 0.014175017, 0.008776934, 0.028430803, -0.037719276, 0.029750036, -0.0023355798, -0.016207712, 0.017473098, 9.985739E-05, 0.00036829972, -0.036050044, 0.0025375031, -0.016261557, 0.0017617809, 0.0039980817, 0.015453865, -0.012162515, 0.0071480856, 0.011859629, -0.044800054, -0.006650008, 0.0030372632, -0.006939431, 0.017769253, -0.01420194, 0.0022766853, -0.007868279, 0.027757725, 0.021888487, -0.014242325, -0.005492314, 0.0030877441, 0.0004968155, 0.013360593, -0.018846177, -0.01177213, -0.025105799, -0.015036557, -0.0048966403, 0.008433664, 0.018025022, 0.019532716, 0.0010643041, -0.0078346245, -0.001282213, -0.031230807, 0.003964428, -0.0039980817, -0.021080794, -0.008453856, -0.0061620264, -0.016073097, 0.043588515, -0.02397503, -0.02840388, 0.000444652, 0.003611062, -0.024890415, -0.005334141, 0.013744247, 0.0065995273, 0.029884651, 0.031500038, -0.0065221232, 0.024567338, 0.023328874, 0.002052887, 0.027138494, 0.008379818, -0.0050177947, -0.0068384698, 0.007982702, -0.0306385, -0.018738484, -0.017176943, 0.021969257, 0.02347695, 0.026169263, 0.016301943, -0.021323103, -0.0058759684, -0.0037826968, 0.014363479, 0.024042336, 0.023301952, 0.021228872, -0.01793079, 0.0074307784, -0.012357707, 0.03723466, 0.013811555, -0.005791834, 0.015009633, 0.010574051, 0.008951934, -0.017796176, -0.035969272, -0.01645002, -0.008945203, 0.014969248, 6.625609E-05, -0.011307706, 0.003688466, 0.010109628, -0.02104041, -0.007222124, 0.03004619, -0.023369258, -0.028619265, -0.0021706757, -0.019842332, 0.00541491, -0.024755798, 0.042188514, -0.0012308909, -0.024553876, 0.00034432134, -0.024392337, -0.02625003, 0.016692327, 0.0025728396, -0.025092337, 0.004795679, -0.00018909278, -0.003462985, 0.026182724, -0.0062562576, -0.00022674307, -0.017782714, 0.024701953, -0.0130038615, -0.0050951983, -0.03306158, -0.008299048, 0.006744239, 0.007370201, 0.018025022, 0.19255407, 0.023665413, 0.011758668, 0.04356159, 0.0020512044, 0.032765426, 0.016261557, -0.01592502, 0.024284644, -0.0032004847, -0.009322126, 0.022063488, 0.013771171, -0.0031449557, 0.004139428, -0.012048092, -0.027676957, -0.012081745, -0.020811563, -0.0002542972, 0.0023322143, 0.004735102, -0.007067316, -0.0015792086, 0.020892333, -0.015965404, 0.008076933, -0.025051953, -0.0004276147, 0.0005203732, -0.004869717, -0.02625003, 0.017244251, -0.020757718, 0.015817327, -0.011839437, 0.016638482, -0.008723088, -0.0002791169, -0.0046004863, -0.00027175513, 0.0049639484, 0.011657706, 0.011051936, -0.0063673155, -0.0126269385, -0.015211557, -0.008992318, 0.027380802, 0.0020781276, -0.009981743, -0.017715406, 0.0058153914, 0.013098093, -0.0058658724, -0.007646163, 0.029965421, -0.011226936, 0.0024819742, 0.018778868, -0.010850013, 0.032523114, -0.0062730843, 0.039011586, 0.0193981, -0.0013217564, -0.004512986, 0.015575019, 0.010769243, -0.02182118, -0.00034347997, -0.014565402, -0.0059533725, 0.031203883, -0.010937513, -0.015723096, 0.005212987, 0.0052601025, -0.0058153914, 0.0306385, 0.013414439, -0.021928873, 0.014888479, -0.011401936, 0.025940416, -0.026882725, -0.010695205, -0.012512515, 0.003688466, -0.026371185, 0.0050514485, -0.014713479, 0.014417325, -0.015400019, -0.007901932, 0.028080802, 0.019196177, 0.044476975, 0.008339433, 0.01506348, -0.011361552, 0.030369267, -0.009315396, -0.010984628, -0.024298105, -0.015467326, -0.008945203, 0.022278873, -0.00580193, 0.0023860605, 0.010372127, -0.03430004, 0.003964428, -0.019546177, -0.008413471, 0.01420194, 0.020851947, -0.010836552, 0.009369242, -0.016436558, 0.01506348, -0.012909631, 0.0190481, -0.02416349, -0.01541348, -0.011556745, 0.010277897, 0.007222124, 0.010318282, -0.01549425, -0.0035841388, 0.022480797, 0.024715414, -0.027326956, 0.009483665, -0.014619248, 0.0038500046, -0.022965413, 0.002328849, 0.006121642, -0.003308177, 0.010627897, 0.017338483, -0.004799044, 0.04641544, -0.027919265, -0.0016221174, -0.0075519322, -0.01636925, -0.014834633, -0.020192333, 0.014619248, 0.003082696, -0.023153873, -0.0098740505, -0.027044263, -0.051746216, -0.023786567, 0.01247213, 0.0069730855, -0.0011080542, -0.0028286092, 0.02397503, -0.010782706, -0.022803873, 0.010405782, -0.17166175, 0.016921174, 0.013549055, -0.005653853, -0.0018812523, 0.014659633, 0.027892342, 0.0018610599, -0.014498094, 0.004122601, 0.0015808913, -0.0018038483, -0.041461587, -0.0035033696, 0.0035605812, 0.004112505, 0.004304332, 0.024836568, 0.008373087, 0.016046174, 0.033007734, -0.014740402, 0.0027983207, 0.007249047, -0.003977889, -4.6142635E-05, 0.023019258, -0.00056454394, 0.0019519255, -0.014471171, -0.0072086626, -0.03125773, 0.02840388, -0.0036716391, 0.004014909, -0.022332719, -0.0005561305, 0.014942326, -0.0060913535, 0.0359962, -0.034515426, 0.018280791, 0.015332711, 0.012054822, 0.004849525, 0.019209638, 0.0039004853, -0.00023052913, 0.0027158686, -0.035080813, 0.03281927, -0.012027899, -0.025132723, -0.004573563, 0.014942326, 0.004078851, 0.03392312, -0.0017121414, 0.022480797, 0.004536544, -0.010695205, -0.019088484, 0.0012906266, -0.00015396652, -0.031580806, -0.029023113, -0.012788477, 0.009800012, 0.0050884676, 0.022009641, 0.0067341425, 0.0032442347, 0.007767317, -0.019465407, 0.0027713976, -0.00013756026, -0.0068990467, -0.0020461562, -0.011408668, -0.020919256, -0.03556543, 0.049942367, -0.03074619, 0.002081493, -0.0039274087, 0.004304332, -0.011556745, 0.008164433, 0.0027713976, -0.003489908, -0.005169237, -0.04598467, -0.0017062521, 0.0031062537, 0.012674054, 0.01004232, -0.004788948, -0.0060576997, 0.008588471, -0.010802898, 0.011610591, -0.002614907, -0.0130442465, 0.018401945, 0.0377462, 0.011206744, 0.025671184, -0.002707455, 0.014955787, -0.006441354, 0.011758668, 0.004035101, 0.0075384704, 0.0035807735, 0.005219718, 0.022400027, 0.008709626, -0.0306385, 0.022561565, -0.0076865475, 0.042888515, -0.009281742, -0.010008666, -0.005828853, 0.002411301, -0.007114432, -0.10424628, -0.0029430324, 0.0062730843, 0.013878862, -0.019896178, 0.021188486, -0.012243284, 0.022050027, 0.009921166, 0.025671184, 0.00969905, -0.0015590163, 0.0006861186, 0.023046182, 0.016786559, -0.0031853404, 0.013542324, -0.017419253, -0.012660592, 0.0045903903, 0.0007071523, -0.017244251, 0.0151038645, 0.0025627434, 0.005600007, -0.006606258, -0.048192367, 0.014175017, 0.030800037, 0.01610002, 0.008608664, -0.008669241, 0.018994253, -0.02328849, 0.004647602, -0.001381492, -0.008723088, 0.006444719, 0.037530813, -0.03629235, -0.025428876, 1.51836875E-05, -0.027475033, -0.034380812, -0.00840001, 0.007074047, 0.013575978, -0.010473089, 0.01791733, 0.007525009, 0.0015506028, -0.016786559, -0.0122702075, -0.013414439, 0.020986564, 0.012000976, -0.0095577035, 0.017284635, 0.012000976, -0.0029800516, -0.013602901, 0.022225026, 0.002069714, -0.00032518068, -0.026909648, -0.009604819, -0.010271166, 0.00515241, 0.011152898, -0.03047696, 0.0085278945, 0.0050245253, -0.005206256, 0.024701953, -0.027515417, 0.0010870205, -0.013643285, 0.010695205, -0.004200005, -0.004718275, -0.007161547, -0.019357715, 0.034003887, -0.013703862, 0.007397124, 0.037800044, 0.0060139494, -0.018146176, -0.010937513, -0.011550014, 0.020973101, 0.0133202085, 0.020394254, -0.01646348, -0.027044263, -0.008985587, 0.0023843779, -0.008036548, -0.01654425, 0.0031819749, -0.013394247, -0.005963469, -0.07807702, 0.011038475, 0.03462312, -0.014471171, -0.009833666, -0.014296171, -0.0065322192, -0.009981743, 0.010897129, -0.023005797, -0.012620208, -0.011469245, -0.0027360609, -0.017055789, -0.01783656, -0.013212516, 0.001982214, 0.002498801, 0.018509638, 0.011361552, -0.017890407, -0.016907712, 0.0017129828, -0.018132715, -0.04078851, 0.025778877, 0.0007790875, 0.01748656, 0.0023372625, -0.019115407, -0.019182716, -0.0012931506, 0.015117326, 0.037611585, -0.01108559, -0.044396207, 0.014417325, 0.015036557, 0.005256737, -0.020676948, -0.016288482, -0.02355772, 0.0137173245, -0.0073028933, -0.033976965, -0.0133807855, 0.0013057708, 0.017351944, 0.016907712, 0.006979816, -0.010553859, 0.026169263, 0.026734648, -0.026290417, 0.0054687564, -0.008548087, -0.0037726008, 0.002503849, -0.0044726017, 0.006703854, 0.006676931, 0.007935586, 0.030880807, 0.012923093, 0.0057716416, 0.0057278913, -0.007747125, 0.0010222368, -0.0068687582, 0.013387516, 0.0049302946, 0.003974524, 0.02762311, -0.012391361, -0.0073298165, -0.008783665, 0.0124654, -0.017419253, -0.017984636, 0.013427901, -0.0027478398, -0.022830797, -0.018980792, 0.017271174, 0.010890397, -0.0038937547, -0.014646172, 0.015790403, 0.003368754, 0.008682703, -0.04544621, -0.019021176, -0.017028866, -0.0070471237, 0.0011871408, 0.043938514, 0.0065995273, 0.025792338, 0.01646348, 0.0065860655, -0.00044044523, 0.0005523444, -0.016907712, -0.028026957, -0.006347123, 0.013798093, -0.010580782, -0.010769243, -0.0062528923, 0.024648106, 0.012142322, -0.0030372632, -0.00978655, 0.01758079, -0.020071179, -0.009275011, -0.0028353399, -0.00952405, -0.011718283, 0.024648106, 0.011408668, 0.03817697, 0.019465407, -0.018065406, 0.0004888227, -0.01541348, -0.020757718, 0.001987262, 0.0026014454, 0.010816359, -0.0068014506, 0.0029581767, 0.0018644254, 0.0068384698, -0.018644253, 0.005973565, 0.0023591374, 0.030961575, -0.021282718, 0.059930842, 0.0048798136, 0.008319241, 0.014673094, -0.01385194, 0.013602901, 0.026101954, -0.0037019276, -0.0002967852, -0.029588496, 0.013427901, 0.020582717, 0.0027495224, 0.004408659, -0.033815425, 0.009934627, 0.0022985605, 0.012021168, -0.024378875, -0.007935586, 0.034703888, -0.015265403, 0.0021319736, 0.021350026, -0.0126673225, 0.0013225977, 0.014578864, 0.00024399068, -0.011846168, -0.005068275, 0.0055293334, -0.010378859, -0.020205794, -0.024298105, -0.0015329345, 0.012512515, -0.014525018, 0.0010735589, 0.02008464, 0.029911574, -0.0036649082, -0.0026603397, -0.006286546, -0.018146176, 0.0130240545, -0.002355772, -0.004311063, -0.023853876, -0.037476968]
+ },
+ {
+ "Id": 79,
+ "Type": "Jackets",
+ "Brand": "Legend",
+ "Name": "Everest Insulated Jacket",
+ "Description": "Conquer the cold with the Everest Insulated Jacket by Legend. This jacket combines warmth and style with its insulated design and sleek grey color. The water-resistant shell will keep you dry during unexpected showers while the cozy fleece lining adds extra comfort.",
+ "Price": 179.99,
+ "Embedding": [0.0091259135, 0.0011704116, -0.005723478, -0.013200925, -0.011770055, 0.0010500735, -0.019781604, -0.021522386, 0.0054333475, -0.012389879, -0.006758715, 0.0063433014, 0.0064290217, -0.0115063, -0.025135826, -0.0120997485, 0.02435775, 0.0034156237, 0.0021199286, 0.0015099959, 0.010959009, 0.016405545, 0.014203193, 0.005809198, 0.00020121601, -0.031096684, 0.00464538, -0.014902143, 0.03030542, 0.015825285, 0.02084981, 0.0077675767, -0.027509619, -0.022274086, -0.011064511, -0.016300043, -0.00034329327, -0.024344562, 0.008492902, -0.010345779, 0.036952037, -0.027351366, -0.00041623795, 0.016089039, -0.006521336, 0.010385343, 0.0007986823, -0.033813357, 0.0029672408, 0.02015086, 0.01019412, -0.007859891, -0.026665604, -0.000469401, -0.031861573, 0.008756657, 0.0017638598, -0.010213902, 0.014110878, -0.028380008, -0.027166737, -0.020493742, -0.019161781, -0.0032524255, -0.0005489395, -0.025795212, -0.028274508, -0.018462831, -0.0040321504, 0.03157144, 0.021298194, 0.02983066, 0.011928308, 0.02243234, -0.01515271, -0.03170332, -0.011117262, 0.02120588, -0.0039761025, 0.011275515, 0.015310962, -0.042385384, -0.03286384, 0.012132717, 0.01970248, 0.0018809009, -0.009040194, -0.0011695874, -0.027984377, -0.016801177, 0.014493323, -0.0057135867, -0.0038640068, 0.018871652, -0.027509619, 0.016379168, 0.03291659, -0.013214112, 0.01261407, -0.024252247, 0.0107480055, 0.0006161146, 0.004797039, -0.007391726, -0.031676944, -0.0038706006, 0.01392625, 0.018779337, 0.013042672, -0.0023589565, -0.024779757, 0.02406762, 0.023052163, -0.04264914, 0.018396892, -0.001927058, 0.028643765, -0.016286856, 0.004998152, -0.020599244, 0.0029738345, 0.008255523, 0.020124486, -0.0036892693, -0.007919236, -0.010246871, -0.033602353, -0.01474389, 0.0052520162, 0.019135406, 0.044469047, 0.005222344, -0.0052487194, -0.0194651, -0.02062562, 0.020665184, -0.023962118, 0.015640656, 0.016009912, 0.03035817, 0.016959429, 0.0017144057, -0.012251407, -0.0044178916, -0.024872072, 0.014124066, -0.0131283915, 0.015983537, 0.007497228, 0.003659597, 0.0032178077, -0.022445528, 0.045761447, 0.006201533, -0.0039233514, 0.0006396052, 0.0071807224, 0.013979001, -0.0023919258, 0.014888954, -0.0046321927, -0.005924591, 0.002654032, 0.0006325992, 0.003254074, 0.027562369, -0.000726974, -0.015192272, 0.010537001, 0.017843008, 0.0033332005, 0.03676741, -0.019359598, 0.018291391, 0.029936163, 0.028063504, -0.017170433, 0.0050476063, -0.0028650358, -0.0007867309, -0.0069763125, -0.00024170648, 0.0033562789, 0.026296347, -0.033839732, -0.009831457, -9.304824E-07, 0.0021149833, 0.013365771, -0.01474389, 0.014401008, 0.009297354, 0.0027183222, 0.010088619, -0.6608639, -0.00075582217, -0.017104493, -0.02766787, 0.02354011, 0.0019501365, 0.011934902, 0.011704116, -0.016590172, 0.016141789, 0.009363293, 0.02872289, 0.005146514, -0.024832508, 0.0018907917, -0.030912055, -0.013556994, -0.004404704, 0.00821596, 0.0023243385, -0.006864217, 0.018410081, -0.019887106, -0.000875336, 0.0046849432, -0.014150442, 0.010734818, -0.016537422, -0.004038744, 0.016220916, -0.03478925, 0.033312224, -1.8641845E-06, 0.024951197, 0.057023775, -0.02418631, 0.006551008, 0.042833768, 0.016642924, 0.04940126, -0.011282109, 0.0034848594, 0.011268921, 0.014374633, 0.004061823, 0.0034848594, 0.029936163, 0.014572449, 0.014809828, -0.011519488, 0.01101176, -0.006765309, -0.0160231, 0.0043222806, 0.0064850696, 0.0075499793, 0.0257029, 0.01788257, -0.005265204, 0.0057894164, 0.00041912275, 0.026349097, -0.014295506, -0.020717934, -0.036872912, 0.035316758, -0.03128131, -0.019834356, 0.018370517, -0.028511887, 0.00702247, 0.019557413, 0.0044739395, 0.014321882, 0.011803024, 0.018436456, 0.005060794, 0.004295905, -0.013754809, 0.022524655, 0.0048464932, -0.008519278, -0.004553066, -0.019939858, 0.004388219, -0.024740193, 0.02766787, -0.0066729947, 0.007846703, 0.008578623, 0.010167745, 0.019372785, -0.013372364, -0.018251827, -0.027061235, -0.0019287064, -0.011835993, 0.019794792, 0.022287276, -0.020427804, 0.0053805965, -0.019544225, -0.008730282, -0.029355902, 0.008578623, -0.0031469236, 0.00792583, -0.0068444354, 0.019267283, -0.028248131, -0.008466527, -0.00944242, -0.00821596, -0.015680218, -0.009574297, -0.028169006, 0.013662495, 0.009600672, 0.02214221, -0.028775642, 0.034472745, -0.0115326755, 0.029804286, 0.01060294, -0.021021252, 0.026111718, -0.0021430072, -0.0032359408, -0.019029904, -0.020361865, 0.009884208, 0.012363503, 0.017908946, 0.0008155791, -0.0061224066, 0.014031752, 0.0145592615, -0.0014819719, 0.028511887, -0.013286645, -0.01578572, 0.014005376, 2.7019405E-05, -0.006765309, -0.018436456, -0.02621722, -0.02703486, -0.011664553, -0.020744309, 0.002682056, -0.023276355, 0.004506909, -0.010530408, 0.022616968, 0.02948778, -0.0073455693, 0.026546914, -0.002072123, -0.0146252, -0.02545233, 0.010991978, 0.0028155819, -0.009310542, 0.0073060063, 0.00020430688, -0.020309115, 0.0058751367, 0.0155879045, -0.033997986, -0.03576514, -0.009923772, -0.008189584, -0.014058127, 0.014888954, 0.0060861404, -0.0056938054, 0.001979809, -0.04114574, -0.006211424, -0.006359786, 0.0013855366, 0.0045332843, -0.0012956951, -0.012014028, 0.035791516, 0.0078071402, 0.014242755, 0.021812517, -0.018344142, 0.010299622, -0.011994246, 0.009633642, 0.013161361, -7.5984026E-05, 0.001327016, -0.03671466, 0.021891642, 0.017078118, 0.041172113, 0.025847964, 0.005743259, -0.023038976, 0.0045893323, -0.024344562, 0.027694248, -0.01597035, 0.018660648, 0.000108592765, 0.018476019, 0.005149811, 0.0010204011, -0.032283578, -0.022445528, -0.005106951, 0.0072928183, 0.011974465, 0.0120733725, 0.016629735, -0.004015666, -0.015561529, 0.011387611, 0.010207308, 0.009231416, -0.019662915, -0.013326208, -0.02120588, 0.007971987, 0.019596977, -0.0050904662, -0.03465737, 0.016471483, -0.0063400045, 0.009633642, 0.009567703, 0.015996724, 0.009897396, -0.005357518, -0.03705754, 0.031545065, -0.0010088618, 0.03286384, -0.014097691, 0.017421, -0.007939017, 0.02132457, 0.011901932, 0.014941705, 0.016234104, -0.0028947082, 0.011486518, 0.010490844, -4.373589E-05, -0.0046882406, 0.005756447, 0.004668459, -0.022326838, 0.009772113, 0.0015470864, 0.00961386, 0.017935323, 0.0034321086, -0.016787989, -0.0061026253, 0.008064301, 0.044469047, -0.023962118, -0.020651996, -0.011954683, -0.0049223225, -0.02476657, -0.0042134817, -0.009251197, -0.0006692776, -0.005308064, -0.009356699, -0.0010228738, 0.025188576, 0.028643765, 0.0072862245, 0.022353213, 0.007668669, -0.025386393, 0.0025567724, 0.011967871, 0.019979421, -0.011552458, -0.019873919, 0.016906679, -0.01080735, 0.03937858, 0.01864746, 0.0033826544, 0.009633642, -0.018977152, 0.016260479, -0.00013445309, 0.015139522, -0.035316758, 0.0069895005, 0.018093575, 0.008848972, -0.014691139, -0.011374423, -0.029804286, 0.035105754, 0.014704326, 0.0040783077, -0.025663335, 0.025927091, 0.0034485932, 0.002212243, -0.016036287, 0.012719572, -0.016207729, -0.0015479106, -0.012053591, -0.012040404, 0.007444477, 0.032204453, 0.011328266, 0.0008555544, -0.01858152, -0.035158508, 0.0054531293, 0.10223133, 0.011677741, 0.0022814784, 0.014137254, 0.040354475, -0.016273666, -0.016089039, -0.016141789, 0.0011844236, -0.016576985, 0.016695675, 0.018410081, -0.003807959, -0.009963335, 8.937783E-05, 0.0014234514, -0.008433557, -0.021707015, -0.04090836, -0.022063084, 0.005021231, -0.019293658, 0.0059212935, 0.010457875, -0.008684125, 0.017816633, 0.015205461, 0.027061235, -0.0018034229, -0.009996304, -3.6369303E-05, -0.00874347, -0.007833515, -0.002601281, -0.0011349695, 0.00751701, -0.012297564, -0.016220916, 0.031202184, -0.01203381, 0.017579254, 0.017434187, -0.008150022, 0.005888324, 0.021139942, -0.009950147, 0.0056872116, 0.023658799, -3.4463264E-05, -0.016445108, 0.02057287, -0.0017605629, -0.027430492, 0.007760983, -0.015719783, 0.013965813, -0.0119085265, -0.0071345656, 0.0013492703, -0.013306426, -0.008486308, -0.018568333, 0.022089459, -0.008189584, -0.017104493, -0.019531038, 0.004556363, 0.019359598, -0.017658379, 0.00033752364, 0.00081970025, -0.00973255, -0.0028749267, 0.005614679, 0.028300883, 0.0041013863, -0.0077873585, -0.016972616, 0.011374423, -0.00043849225, 0.030542798, 0.0055355523, -0.0039266488, -0.01031281, 0.0055322554, -0.0029276775, -0.00069482886, 0.006715855, -0.02539958, -0.011453549, 0.026942546, -0.0017407812, 0.031175809, 0.00084401516, -0.014638388, 0.0107743805, -0.013332802, -0.010279841, 0.018594708, -0.002093553, 0.021799328, -0.00034370538, -0.0025221547, 0.013306426, 0.022616968, 0.008235741, -0.019069467, 0.010642503, -0.011110668, 0.035343133, 0.019873919, -0.019306846, 0.012363503, -0.016326418, -0.029698784, 0.02038824, 0.016497858, 0.018159512, 0.011835993, -0.023751114, -0.017078118, -0.040222596, 0.02057287, 0.0002781788, 0.0023012601, -0.0011580482, 0.013121798, -0.0058619487, -0.011888744, 0.0036628938, -0.008433557, 0.024028055, -0.009363293, 0.0064158337, -0.03302209, -3.6478773E-06, -0.018687023, -0.004051932, -0.0060795466, -0.005763041, -0.011038136, -0.009996304, 0.0054828017, 0.021100378, -0.012225032, -0.023579674, -0.0016459944, 0.0044904244, -0.034842, 0.016181353, 0.00014496208, 0.0004982492, -0.01730231, -0.009099538, -0.009594078, -0.044231668, -0.01835733, 0.002471052, 0.010299622, 0.0043255775, 0.00929076, -0.013688871, 0.0062674717, 0.0004768191, -0.024423689, 0.01566703, -0.01934641, -0.006554305, -0.018133137, 0.01636598, 0.012343721, 0.016880304, 0.002403465, -0.008987443, 0.0015578014, -0.0066235405, 0.017289123, -0.025017137, -0.01631323, -0.04486468, 0.0059212935, 0.01544284, -0.0050476063, 0.011526082, -0.028327258, -0.005017934, 0.03368148, 0.007510416, -0.004200294, 0.01701218, 0.014269131, -0.026349097, 0.010147964, 0.007154347, -0.02423906, 0.0005510001, -0.0046223016, -0.031676944, 0.00070389546, 0.010365561, -0.0015610983, 0.0080972705, -0.020902563, 0.011717304, -0.008090677, 0.019794792, 7.299618E-05, -0.018014448, 0.029936163, -0.028617388, 0.0019385973, -0.012996514, -0.01211953, -0.039114825, 0.030753803, 0.0010896367, -0.004506909, 0.013345989, -0.011809618, -0.0113414535, -0.0003228935, -0.009930366, 0.041172113, -0.004091495, 0.027008485, -0.00300021, -0.0037914743, -0.032204453, -0.0074840407, -0.004998152, 0.017935323, -0.0064685848, 0.010279841, 0.0020144267, -0.022471903, -0.003695863, 0.01578572, -0.00653782, 0.0013781185, 0.027931627, 0.017843008, 0.01771113, -0.019623352, -0.0376378, -0.0009429232, 0.013609745, -0.0039299456, 0.015258212, -0.004223373, -0.011137043, 0.0050871694, 0.036978412, -0.01566703, 0.013781184, -0.0015899464, -0.0068048723, 0.0066894796, -0.02243234, 0.0015619226, -0.021601513, 0.0045464723, 0.017803444, -0.009086351, -0.012066779, 0.012244813, 0.01162499, -0.010873289, 0.015891222, 0.013115204, 0.015469215, -0.0083939945, 0.0036464091, 0.013675683, -0.019557413, 0.023236793, -0.014031752, -0.005723478, -0.0059146998, 0.030252667, -0.015772533, 0.0019616757, -0.022287276, -0.007365351, -0.019188156, -0.018396892, -0.0043981103, -0.021561949, -0.020678371, -0.024792945, -0.018330954, -0.0119085265, -0.030094415, 0.013583369, 0.016339606, 0.008354431, 0.013418522, -0.014387821, -0.00050154614, -0.011123856, 0.015878035, 0.023091726, 0.02657329, 0.008196178, 0.016379168, 0.022392776, -0.020810248, -0.000914075, -0.0041310587, -0.020203613, -0.05902831, -0.0139921885, 0.009871021, -0.0040881983, -0.008684125, -0.0011481573, -0.004793742, 0.0080972705, 0.0012907498, -0.024014868, 0.01348446, 0.0131811425, -0.014203193, 0.050324403, -0.009831457, 0.0014160333, 0.0040849014, 0.008196178, 0.010728224, -0.020032171, -0.01348446, -0.01724956, 0.005855355, 0.021759765, -0.021179505, 0.012330534, -0.024516003, -0.004942104, -0.010273247, -0.0033381458, 0.015086771, 0.0057828226, 0.034762874, 0.025505083, 0.018476019, -0.01870021, -0.044363547, 0.0044376734, -0.00057407864, -0.035264008, -0.024898447, 0.026837043, 0.04847812, 0.014757077, -0.008110458, -0.023408232, -0.006303738, -0.05802604, -0.0044343765, -0.009996304, 0.015917597, 0.01900353, 0.03916758, -0.011737086, 0.01544284, 0.0094226375, 0.00053987297, 0.0155879045, -0.012686603, -0.007154347, -0.022326838, -0.001704515, -0.01864746, -0.0061224066, -0.022854347, 0.027562369, 0.016748425, 0.011117262, 0.012007434, -0.030384544, -0.020757498, -0.003959618, 0.008473121, 0.017724318, 0.03315397, 0.019610165, -0.04206888, -0.014137254, 0.0058223857, 0.0054795044, -0.013214112, 0.004797039, -0.00029383926, 0.020032171, 0.0070290635, -0.023579674, -0.046869215, -0.016590172, -0.019992609, 0.008400588, 0.001249538, -0.00020121601, 0.016998993, -0.011361235, -0.0334441, -0.01404494, 0.0042134817, -0.02057287, 0.00028724538, 0.0093962625, -0.021430071, -0.010569971, 0.010306216, 0.030173542, 0.017473752, -0.014902143, -0.004114574, 0.010695254, -0.018713398, 0.015680218, 0.008829189, -0.0056707268, -0.02028274, 0.0021149833, 0.011888744, 0.004869572, 0.0010311161, -0.016735237, -0.030991182, -0.002724916, -0.018199077, -0.011961277, -0.02703486, -0.017632004, -0.008321462, 0.023698363, 0.018607896, 0.20984326, -0.0068312474, -0.02843276, 0.039774213, -0.0039398363, 0.021944394, 0.0021083893, -0.0012800347, -0.0019369489, 0.015653843, 0.012244813, 0.012310752, -0.021997144, -0.0031930807, 0.027984377, -0.02662604, -0.04929576, -0.010609534, -0.009356699, 0.0015108201, -0.008090677, 0.009165477, 0.028802017, -0.027746998, 0.01162499, 0.005364112, 0.0034749685, 0.017421, 0.021561949, 0.012218438, -0.01782982, -0.009178665, 0.009739144, 0.0020424507, -0.02173339, 0.0017440781, 0.028802017, -0.0071807224, -0.010622722, 0.0015198867, 0.006943343, -0.015126334, 0.0059311846, 0.014783452, 0.0075367913, 0.009501765, -0.013688871, 0.0094490135, 0.005443238, 0.0024479737, -0.014836203, -0.02412037, 0.007352163, 0.02522814, 0.012772323, 0.0035507982, 0.031254936, -0.018752962, 0.023434607, -0.007075221, -0.013833935, 0.015403276, -0.006168564, 0.008974255, -0.01014137, 0.03088568, 0.0042266697, -0.015350525, -0.010187526, 0.007563167, 0.00070719235, 0.00476407, -0.0053443303, 0.032362707, -0.0018841978, -0.018410081, 0.020599244, 0.015007644, 0.0049783704, 0.021825705, 0.010042462, 0.0004912432, -0.008037926, -0.0030546095, -0.0040816045, -0.04188425, 0.00525861, -0.013741622, -0.013392147, 0.0070356573, 0.005604788, -0.007760983, -0.0012891012, 0.00050030975, 0.02248509, 0.007358757, -0.011499707, 0.030964805, 0.003275504, 0.0059410753, -0.020137673, -0.011400798, 0.0044343765, 0.0023523625, -0.020599244, 0.0209685, 0.009561109, 0.01811995, 0.01450651, -0.013471273, -0.0008324759, -0.017552877, 0.00944242, -0.008413776, -0.0073323813, 0.005456426, 0.002579851, -0.009343511, 0.016247291, -0.008295086, 0.003399139, -0.0033480367, 0.022155397, -0.010991978, -0.01544284, -0.011150232, 0.0069367494, 0.03874557, -0.0027793155, -0.019728854, -0.0041277613, -0.0072466615, 0.005723478, -0.033575978, 0.0041772155, 0.0121524995, 0.009244603, -0.02103444, -0.007754389, 0.008308274, -0.009838051, -0.009969929, 0.019953046, 0.024014868, 0.016735237, -0.020256363, 0.0040453384, -0.020691559, -0.017341875, 0.009943553, -0.009350105, -0.014097691, -0.007991768, -0.0024578643, 0.025201764, -0.013392147, -0.040697355, -0.036028896, -0.018410081, 0.012271189, -0.008281899, 0.04264914, 0.024410501, -0.038666442, 0.0021430072, 0.016787989, -0.1678535, 0.020005796, -0.013979001, -0.023513734, 0.017777069, 0.010965603, 0.006646619, -0.0002639608, -0.040011592, 0.021166317, 0.013273457, 0.016642924, -0.025650147, 0.013003108, -0.004147543, 0.0013525672, 0.0072466615, -0.0038969761, 0.03133406, 0.00024026408, 0.03455187, -0.01515271, -0.008295086, 0.006943343, 0.0044904244, -0.008565435, -0.004167325, -0.0026705167, 0.01404494, -0.036609158, -0.016642924, -0.00530147, 0.02983066, -0.00973255, 0.0135042425, -0.006765309, 0.0025155607, -0.00038203225, -0.008941285, 0.016154977, 0.022577405, 0.018251827, 0.022867536, 0.012277783, 0.016867114, -0.002093553, -0.0027018376, -0.008268711, 0.023566484, -0.012541537, 0.015205461, -0.036899287, -0.019491475, 0.010457875, 0.04241176, 0.021285007, 0.0306483, 0.0016962726, 0.036081646, -0.0018199077, 0.0055322554, -0.012020621, 0.0075433855, -0.017196808, -0.0049948553, -0.0013575127, 0.0036628938, 0.011104074, -0.021443259, 0.005159702, -0.007503822, 0.015245023, -0.008954473, -0.020691559, 0.021060815, 0.0049322136, -0.01706493, -0.0045794416, -0.022300463, -0.043915164, 0.0008555544, 0.02983066, -0.022010332, 0.010952415, -0.014849392, -0.0030612033, -0.027113987, -0.011545863, -0.0064850696, -0.00031403298, 0.010464469, -0.021548761, -0.018990342, 0.005759744, 0.011974465, 0.012139312, 0.012014028, -0.010734818, 0.0068378416, -0.003405733, 0.0055916, -0.016998993, -0.011803024, 0.021047628, 0.0040486353, -0.0027183222, 0.0017935322, 0.023460984, 0.00969958, -0.007510416, 0.008789627, 0.011275515, -0.0074708527, 0.02464788, 0.0032029715, -0.004187106, 0.005294876, -0.033655103, 0.008664343, -0.00046198288, 0.014770265, -0.0065411176, -0.0035244226, -0.0018100168, -0.012798699, -0.009554516, -0.08651155, -0.02243234, 0.029988913, 0.005357518, 0.013438304, 0.013556994, -0.008459933, 0.010273247, -0.019320033, 0.00710819, -0.004539878, -0.009073162, 0.009040194, 0.0015685164, 0.027958002, -0.004520097, 0.013965813, -0.010385343, -0.021469636, 0.026639229, 0.0008019792, -0.016629735, -0.02173339, -0.017777069, -0.01939916, 0.010813944, -0.015376901, 0.013596556, 0.024133557, 0.0223664, 0.0108007565, 0.020084923, -0.012739354, -0.016946241, -0.010701848, -0.028037127, -0.054808233, 0.0180672, 0.04515481, -0.007464259, 0.00464538, 0.0044211885, 0.00016216795, -0.04346678, 0.0027446977, -0.005410269, -0.0073785386, -0.0020622322, 0.012864637, -0.009772113, 0.0022188367, -0.026771106, -0.009158883, 0.012020621, 0.034578245, 0.002233673, 0.0062872535, -0.0041310587, 0.0060103107, -0.008545653, -0.0012561319, -0.0022402667, 0.006389458, 0.011763461, -0.0019847543, 0.008974255, -0.014638388, 0.025993029, 0.0042794207, 0.008987443, -0.012159093, 0.009251197, -0.027430492, 0.028248131, -0.016352793, -0.007358757, -0.033180345, -0.0025617178, -0.0035376104, -0.009554516, -0.0068971864, -0.03478925, 0.0021693828, -0.0014127363, 0.023685174, 0.008163209, 0.013847124, -0.027958002, -0.0052783918, -0.016893491, 0.0017753991, 0.023104915, 0.027720623, -0.016998993, -0.01963654, 0.0036134399, -0.0054762075, -0.016049476, -0.007840109, 0.009317136, -0.012548131, -0.019649727, -0.07764939, 0.026480975, 0.0047146156, -0.012106342, 0.012416254, 0.024225872, 0.010985385, -0.0065312264, 0.025953466, -0.014097691, -0.018924402, -0.012403066, -0.0035409073, -0.016748425, 0.0032276986, 0.004853087, -0.00021697948, 0.010365561, 0.01811995, -0.0007636524, -0.002131468, 0.008051113, -0.010510626, -0.011934902, -0.030859303, -0.0059707477, -0.0025452331, 0.021008065, -0.006145485, -0.0044772364, -0.004793742, -0.008532465, 0.008367619, 0.04824074, -0.019728854, -0.038297188, 0.0053970814, 0.022696095, 0.018449644, -0.028881144, -0.006630135, -0.014954893, 0.017315498, -0.014163629, -0.019254096, -0.011486518, 0.012647039, 0.023988493, 0.005004746, -0.0031782445, 0.0042167786, 0.028353633, 0.021258632, -0.02948778, 0.00072161644, -0.017724318, 0.0044838306, -0.0059311846, 0.006145485, -0.023065351, 0.027984377, -0.0033826544, 0.01852877, 0.002833715, 0.028696515, -7.97446E-05, -0.01968929, 0.0037189417, -0.0050904662, 0.013649307, -0.0089083165, -0.01876615, 0.014084503, 0.0055817096, 0.016458295, -0.0019699181, 0.0036793784, -0.008829189, -0.023197228, 0.032072574, -0.026546914, -0.018449644, -0.04404704, 0.016946241, -0.0017622113, 0.008763251, -0.029593281, -0.007457665, -0.0008390697, 0.025900714, -0.013556994, 0.00029198473, -0.04481193, -0.0051432173, -0.0021413588, 0.015508778, -0.010682067, -0.008994036, -0.02761512, 0.005364112, -4.1340463E-06, 0.010009492, -0.008618186, -0.00043601953, -0.016761614, -0.008235741, 0.0061784545, -0.030173542, -0.031914324, 0.0070356573, 0.014058127, -0.00640924, -0.015495591, 0.0071807224, -0.013253675, 0.000571606, 0.009640235, -0.011954683, -0.028063504, 0.0144801345, 0.0039761025, 0.020981688, 0.015878035, 0.0094490135, 0.01392625, 0.015943974, -0.021245444, 0.00095281395, -0.002851848, 0.033364974, 0.026322722, -0.0020111299, 0.032441832, -0.0059212935, -0.0051728897, -0.0039299456, 0.00874347, 0.028643765, -0.02015086, 0.055124737, 0.0011069457, -0.03088568, 0.025795212, -0.017935323, 0.025412768, 0.009185258, -0.00070142274, -0.02016405, -0.038587317, 0.006554305, 0.001041007, -0.015363713, 0.011394205, -0.039009325, 0.014704326, 0.033971608, 0.006372974, -0.029909786, 0.002721619, 0.01835733, -0.013979001, 0.015996724, -0.0068971864, -0.0077477954, -0.0043288744, 0.028775642, 0.010840319, -0.0102336835, -0.0002600457, 0.00041706217, -0.009468795, -0.020533307, -0.01269979, 0.0017308905, -0.015179085, -0.012838261, -0.017447375, -0.0066037592, 0.014466947, -0.008024738, 0.0064521004, 0.00018854342, -0.037901554, 0.020810248, 0.0089083165, -0.02248509, -0.011176607, -0.0144801345]
+ },
+ {
+ "Id": 80,
+ "Type": "Navigation",
+ "Brand": "XE",
+ "Name": "Pathfinder GPS Watch",
+ "Description": "Navigate with confidence using the Pathfinder GPS Watch by XE. This feature-packed watch includes GPS tracking, altimeter, barometer, and compass functions to guide you on your outdoor adventures. The sleek pink design with a vibrant green dial adds a sporty touch to your wrist.",
+ "Price": 199.00,
+ "Embedding": [0.02460347, 0.010266147, -0.011419646, -0.0061949715, -0.013156681, 0.015551889, -0.016216848, -0.024617039, 0.0118335495, -0.017831746, 0.01336024, 0.006354426, -0.0025851962, -0.009743679, -0.011256799, 0.0016199885, 0.016203277, -0.008311982, -0.0057437494, 0.0009389148, -0.019663775, 0.0051805703, 0.03161946, -0.022133622, -0.017750323, -0.013462019, 0.002620819, -0.02068157, 0.014031984, 0.003708162, 0.013400951, -0.015470466, -0.013299172, -0.008596965, 0.017248211, 0.012498508, -0.0020983515, -0.008814095, 0.006228898, -0.010198294, 0.008936229, -0.007979503, 0.0015003977, 0.022486458, -0.028905343, 0.01762819, 0.006954924, -0.0011704628, -0.010747902, 0.02115654, 0.0012086302, 0.00523146, -0.0048921956, -0.011195731, 0.011894617, -0.0106257675, 0.021536516, -0.0112296585, 0.0012561271, -0.0074706064, -0.008793739, 0.006469776, -0.01931094, 0.012145673, -0.014479813, -0.031510897, -0.002369763, 0.0020288022, 0.00061703747, 0.017641759, 3.607337E-05, 0.009384058, 0.019012388, 0.012281379, -0.00017779585, -0.0020830845, -0.024318486, -0.008176276, -0.008203418, 0.023870656, 0.018469565, -0.03696627, -0.004739526, 0.023354976, 0.020613717, -0.0067988625, -0.014561237, 0.012688496, -0.00860375, -0.020749424, 0.018076017, 0.0049498705, 0.0037692296, 0.012674925, -0.0028752675, 0.0018286362, 0.014479813, 0.013251675, 0.0049804044, -0.03362791, 0.008583394, 0.0043595503, 0.0009618151, -0.001806584, -0.027263302, -0.013353455, -0.0016157477, -0.023368545, 0.010001521, 0.00789808, -0.038187623, 0.02928532, 0.034822118, -0.0059167747, -0.011297511, -0.038920436, 0.02648978, -0.011236443, 0.003891365, -0.018808829, 0.03275939, -0.0062356833, 0.04090174, -0.0027802733, -0.011887832, 0.016556112, -0.0077488036, -0.006948139, 0.020749424, -0.014208402, -0.01532119, 0.024997016, 0.027005462, 0.008719101, -0.026666198, 0.01186069, -0.010306858, 0.019677347, -0.018157441, 0.0034197872, 0.007389183, 0.02534985, -0.009078721, 0.00042959378, -0.017058223, 0.0023612815, -0.004155991, -0.0022442352, 0.042421646, -0.002966869, 0.03582634, -0.019433076, 0.021984346, -0.007932006, -0.02442705, 0.011182161, -0.0013502731, 0.016786812, -0.008508756, -0.012640999, -0.01973163, 0.016474688, 0.014330536, -0.004234022, 0.024983445, 0.03742767, -0.004227237, 0.015185484, -0.024006363, -0.0035894194, 0.008223774, 0.029638154, -0.014031984, 0.0102118645, 0.017546766, 0.018958105, 0.004905766, -0.0043527647, -0.00049405405, 0.010469706, -0.0066869054, -0.019813053, -0.008827665, -0.017736753, -0.01696323, -0.02974672, -0.001989787, -0.010944676, 0.01580973, -0.0084205475, 0.0090040825, 0.004926122, 0.0019880906, 0.0096079735, -0.6548621, -0.021577228, -0.0204373, -0.025200574, 0.031239484, 0.014927642, 0.012118531, 0.009879385, -0.008705529, 0.01791317, -0.0020610325, 0.018035306, -0.010008305, -0.018293148, -0.0044104396, -0.02950245, -0.0032637254, -0.04185168, 0.018211724, 0.01671896, -0.009831888, 0.007063489, -0.012125317, -0.010205079, -0.0038269046, 0.007993074, 0.0023663705, -0.0028650896, -0.025675545, 0.021794358, -0.022649305, 0.029448166, -0.012892054, 0.0013197393, 0.04166169, -0.045244325, -0.030859508, 0.04204167, 0.017981024, 0.052735288, -0.023273552, 0.0049193366, 0.002032195, -0.014506954, -0.017302494, -0.013645222, 0.017872458, -0.008094854, 0.0018116729, -0.03064238, 0.021346528, -0.0036063828, 0.0014987014, 0.008915873, -0.013516301, -0.003755659, 0.0334922, 0.016895376, 0.0009864118, -0.0059846276, -0.014561237, 0.011283941, -0.011168591, -0.016854664, -0.022364322, 0.06296751, -0.02138724, -0.003524959, -0.01371986, -0.019718058, 0.042910185, 0.032243706, -0.0022272721, 0.023599245, 0.017546766, 0.010205079, 0.01627113, -0.011168591, -0.0195145, 0.006476561, 0.036830563, -0.013767357, -0.009234782, 0.004868447, 0.044810068, -0.00020864773, 6.9178175E-05, -0.010259361, 0.016922519, 0.009920097, -0.0010288199, 0.008753027, -0.036857706, -0.025431274, -0.014371248, 0.003565671, -0.018835971, 0.016556112, 0.02605552, -0.034252156, -0.022988569, 0.006008376, 0.005272172, -0.010523988, 0.0056691114, 0.016854664, 0.0066563715, 0.0049396926, 0.013923419, -0.028253956, -0.015131201, -0.030723803, -0.015660454, -0.0048345206, -0.013563799, -0.028715355, 0.03140233, 0.005804817, 0.003938862, -0.026625486, 0.03273225, -0.03273225, 0.009133003, -0.0147376545, -0.0013299172, 0.00929585, 0.0025597513, -0.01996233, -0.015199054, -0.022120051, -0.0116639165, -0.008508756, -0.005472338, 0.014683371, -0.013292387, 0.0052280673, 0.0015054867, -0.0044884705, -0.002841341, -0.0158233, -0.034930684, 0.0024138675, -0.023042852, -0.023992792, -0.0144933835, -0.015891153, -0.009689397, 0.009445126, -0.015918296, 0.00394904, 0.011914972, -0.021672223, 0.0043595503, 0.026774762, 0.015864013, -0.016013289, -0.009472268, -0.0043934765, -0.007823441, -0.009071935, 0.020125177, 0.023395687, -0.016474688, -0.02696475, 0.016569683, -0.0050245086, -0.0022391463, 0.042937327, -0.0050279014, -0.031782307, 0.0195145, 0.022215046, -0.02091227, 0.02184864, -0.00929585, 0.016528971, -0.021767216, -0.021984346, 0.019256659, 0.007002421, 0.0037624445, 0.00939763, -0.018768117, 0.0030228475, 0.012444225, -0.016094713, -0.0020729066, 0.035229236, -0.011080381, 0.028226815, 0.006822611, 0.015918296, -0.005835351, 0.01557903, -0.0065885186, 0.00038994226, -0.00639853, -0.005770891, 0.017981024, 0.016325412, 0.018198153, -0.02509201, 0.028498227, -0.023300692, 0.018103158, -0.02672048, 0.0059846276, -0.009499408, 0.0112296585, 0.008298412, -0.0042509856, -0.031185202, -0.0061644376, -0.024386339, 0.0016666374, 0.005272172, 0.013740216, 0.026869755, -0.0029380315, -0.013217749, -0.00059583347, 0.023422828, 0.0061067627, -0.019365223, 0.0014215186, 0.014669801, 0.005373951, 0.026584774, 0.003250155, -0.017438201, 0.016393265, -0.0005610588, 0.006927783, 0.0190531, 0.0014673194, 0.020206599, 0.008196632, -0.008447688, 0.008902303, 0.013590939, 0.013210963, 0.007904865, 0.017112507, -0.025431274, 0.00697528, 0.019338083, 0.02882392, 0.017383918, 0.00015637977, 0.023124276, -0.02045087, -0.011969255, -0.002100048, 0.007389183, -0.0027972367, -0.008732671, 0.017017512, 0.008108424, 0.012396729, 0.02722259, 0.014330536, -0.005472338, -0.013054902, -0.0021628118, 0.0062119346, -0.018211724, -0.010802185, -0.022567881, -0.009329776, -0.020274453, 0.028199673, -0.016556112, 0.025960527, 0.012389943, 0.01902596, -0.019799482, 0.028118249, -0.000667079, -0.011819978, 0.0001911544, 0.013136325, -0.02904105, 0.028851062, 0.022852864, -0.0006017706, -0.013862352, -0.029936709, 0.0132856015, -0.005306098, 0.024128499, -0.018035306, 0.008658033, 0.0033705938, -0.014344107, 0.0027785772, 0.010184723, 0.025987668, -0.019880906, 0.015009066, -0.022377893, -0.02277144, 0.0022934286, -0.0067445803, -0.04016893, 0.036396306, -0.0060796216, 0.004512219, -0.006306929, 0.017750323, -0.000477939, -0.010781829, -0.0334922, 0.012980264, -0.028661072, -0.018876683, 0.0045766793, -0.00668012, -0.0015377168, 0.017017512, 0.014371248, -0.0151719125, -0.010761473, -0.0018557773, 0.0061644376, 0.07604955, -0.012254237, 0.020600146, 0.0028854455, -0.007572386, -0.02693761, -0.029475309, -0.0025444846, 0.0071449126, 0.006937961, -0.003755659, 0.007253477, -0.0056487555, -0.020668, 0.028226815, 0.0167461, -0.0016132032, -0.027236162, -0.017044654, -0.010958247, -0.0019439862, -0.014018414, 0.017492482, -0.009797961, 0.0012527346, -0.0056046513, 0.026313363, -0.0010322125, 0.012600287, -0.005394307, 0.011650346, -0.010442564, 0.0015487429, 0.0024868094, -0.004810772, -0.002688672, -0.01833386, 0.00012255933, 0.010876823, 0.006317107, 0.016664676, 0.012254237, 0.018903824, -0.030316684, 0.024454191, 0.02046444, 0.011182161, 0.010802185, -0.0023069992, -0.012043893, -0.0010652909, -0.0051195025, -0.0093637025, -0.026530491, 0.0029855284, 0.038214765, -5.5448556E-05, 0.009791176, -0.014371248, -0.02696475, 0.0048514837, -0.0056080436, 0.024929162, 0.011060026, 0.014778366, 0.007110986, 0.0011755518, -0.009289064, -0.03205372, -0.008563039, -0.0010585055, -0.006018554, 0.0021577228, 0.004926122, 0.027683992, 0.02511915, 0.0024308308, -0.010306858, -0.0061678304, 0.019650206, 0.029475309, 0.026842615, -0.005245031, -0.012579931, 0.015864013, 0.006948139, -0.008868377, -0.009574047, 0.019582352, 0.021726504, 0.013733431, 0.003507996, 0.031076638, 0.013672363, -0.020342305, 0.00529592, -0.0050482573, 0.02509201, 0.0014749528, 0.022595022, 0.026842615, -0.01602686, -0.027629709, -0.00054579193, 0.023219269, 0.01464266, 0.012973478, 0.02163151, -9.011716E-05, -0.015769018, -0.012478152, -0.012389943, 0.019175235, 0.00094400375, -0.007022777, 0.011216087, -0.0025190397, 0.01556546, 0.0076334532, -0.0144933835, -0.02439991, -0.021943634, 0.032352272, 0.0026903683, 0.021292247, 0.022242187, 0.0006297599, -0.00014609582, -0.00528235, 0.014927642, 0.0065308437, 0.015443324, 0.011283941, -0.011419646, 0.016108284, -0.010571484, -0.023667099, 0.009994735, -0.0065308437, 0.007572386, -0.02416921, 0.003450321, 0.035989188, 0.026530491, 0.0028108072, -0.019880906, -0.022310039, -0.028742496, -0.01068005, 0.011480714, -0.034713555, 0.014506954, -0.015470466, -0.015456895, -0.016121853, -0.03232513, -0.024847738, 0.02209291, 0.025227716, 0.016705388, -0.010612196, -0.014439101, -0.0014147334, 0.013896278, -0.018632412, -0.009669041, -0.012790276, -0.0084951855, -0.03227085, 0.004132243, 0.00056317926, 0.0049396926, -0.015606171, -0.028932486, -0.013204178, 0.0033027409, -0.007511318, -0.010910749, 0.001187426, -0.0580821, 0.009445126, -0.010958247, -0.014126978, 0.0094112, -0.023314264, -0.007131342, 0.02882392, 0.023789234, -0.00417974, -0.00928228, 0.0075452444, 0.0024935948, 0.025037726, -0.0074095386, 0.0181303, -0.015999718, -0.00292955, -0.030153837, 0.00052161934, 0.014764795, -0.012749564, -0.0074909623, -0.007945577, -0.00697528, -0.024956305, 0.018930964, -0.0055130497, 0.00024808725, -0.007714877, -0.007694521, -0.0028854455, -0.0090990765, -0.009384058, -0.0213601, -0.0017845317, -0.016868236, -0.019378794, 0.0108903935, -0.017112507, -0.028009685, 0.021427952, -0.011799622, 0.012546005, -0.0069617094, 0.04120029, 0.028226815, -0.011060026, -0.025933385, -0.014235542, -0.003061863, 0.01046292, -0.005713216, 0.005981235, -0.011378935, -0.033166505, -0.0049702264, 0.027928261, 0.011331437, -0.002563144, 0.0043256236, 0.024142068, 0.021645082, -0.01300062, 0.0061203334, -0.0084205475, 0.038486175, -0.028769638, -0.002337533, 0.013054902, -0.0041933106, -0.02950245, -0.00025381232, -0.028471084, 0.015972577, 0.00812878, -0.014588377, 0.0028175926, 0.004074568, -0.0002767127, 0.008753027, 0.0041729547, 0.014018414, 0.00837305, 0.011188947, 0.007837012, 0.0011204213, -0.0011585886, 0.007945577, 0.021007264, 0.027032603, 0.0028277703, -0.020383017, 0.016474688, -0.010775044, 0.010171153, 0.008936229, -0.021672223, -0.02047801, -0.011345008, -0.0073349006, 0.010910749, -0.0009372184, -0.025960527, -0.025892675, 0.0024986838, -0.013618081, -0.028905343, -0.0061644376, -0.0022713766, -0.029475309, -0.02765685, 0.006527451, 0.033980742, 0.021047976, 0.017641759, -0.01719393, 0.008529112, 0.0037692296, -0.022934286, 0.00020493702, 0.027683992, 0.0053128838, -0.03463213, 0.022011487, 0.010171153, -0.048935525, 0.010096515, -0.0043765134, -0.014778366, -0.028416803, 0.004573287, 0.013434878, 0.025675545, -0.0011153324, -0.026367644, -0.009621544, 0.014520525, -0.006113548, -0.022717157, -0.03066952, 0.0060490877, -0.002593678, 0.037753366, -0.02764328, 0.020410158, -0.014900501, 0.012851343, 0.019975899, 0.011148235, -0.0061203334, -0.013183822, 0.0042509856, 0.004206881, -0.021753646, -0.010286503, 0.006452813, -0.0046716733, 0.01978591, -0.016678248, 0.019161664, 0.020640858, 0.005200926, 0.0023069992, 0.021237964, -0.018700264, 0.0013358544, 0.0034163946, -0.018442424, 0.009838673, -0.0067140465, 0.011806408, 0.03064238, 0.01998947, -0.037617657, -0.014886931, -0.026788333, -0.026109803, -0.042611632, 0.0002851943, 0.01996233, 0.029339602, 0.024114927, -0.006432457, 0.04622141, -0.0038099415, 0.008820879, -0.0014079481, -0.025363421, -0.0036708429, -0.009356918, 0.0090040825, -0.010741117, -0.018578129, -0.0211294, 0.0117589105, -0.009987949, -0.013197393, -0.001260368, -0.019012388, -0.032840814, 0.005760713, -0.0011009136, 0.044511516, 0.016556112, -0.0016734226, -0.040358916, -0.013054902, 0.0013307654, 0.0058794552, 0.0010822541, 0.008848021, 0.022500029, 0.0061339037, 0.0061271186, 0.015389042, -0.034062166, -0.013672363, -0.008339124, 0.0033129188, -0.020803705, -0.02046444, 0.019039528, 0.0016157477, -0.013665578, -0.005441804, 0.0030907004, -0.0005152581, -0.0090990765, 0.0020508545, -0.020844417, 0.0050143306, -0.010523988, 0.010903964, 0.0017455163, -0.010293288, -0.0088344505, 0.0060117687, -0.025621263, 0.022880005, 0.032189425, 0.012634214, -0.016705388, 0.011073597, 0.0064154933, 0.007714877, -0.012525649, 0.0008286538, -0.018089589, 0.018727405, 1.42597155E-05, 0.0071720537, -0.025634833, 0.022744298, 0.0019422899, -0.0084884, 0.03183659, 0.20920412, 0.011297511, -0.0066936905, 0.018198153, 0.015741877, 0.037997633, 0.010598626, 0.017044654, 0.027928261, -0.019120952, 0.00464114, 0.021563658, -0.024345627, -0.0053332397, 0.0051228954, -0.0497769, -0.032216568, -0.023748523, -0.018713836, -0.0190531, 0.027141169, 0.004793809, 0.023639956, -0.024847738, 0.026896898, -0.005672504, -0.012349231, 0.00010464193, 0.02415564, 0.03115806, -0.016216848, -0.017845318, 0.024820598, 0.01650183, -0.007619883, 0.01419483, 0.021930063, 0.027955404, 0.009133003, 0.008406977, -0.0195145, -0.0099675935, 0.0050720056, -0.028932486, 0.027127597, 0.0056758965, -0.0123628015, -0.006391745, -0.0011246621, -0.0023867264, -0.013516301, -0.014832648, 0.010598626, -0.007884509, -0.033763614, -0.00066580676, 0.00417974, -0.022405034, -0.010727546, -0.014656231, -9.3456794E-05, -0.00010586116, -0.007864153, 0.034252156, -0.009038009, 0.02999099, -0.0021814713, -0.004223844, 0.024902022, 0.0073552565, 0.0053434176, -0.0067106537, 0.021550087, 0.014710513, -0.020288022, -0.020111606, 0.018781688, -0.0032705108, 0.011867476, 0.012640999, 0.0215908, -0.0037454811, -0.004627569, -0.024929162, 0.002044069, -0.04038606, -0.011168591, -0.005977842, -0.0069413534, 0.006466383, 0.012824202, -0.030560955, -0.020640858, -0.020600146, -0.013543443, 0.016379695, -0.01419483, 0.039544683, -0.012647784, 0.013367025, 0.002558055, 0.018958105, -0.009913311, 0.013495945, -0.017736753, 0.018713836, -0.0072399066, 0.019935187, -0.004661496, -0.0112296585, -0.024074215, -0.022405034, 0.005838744, -0.016148996, 0.0036538797, 0.0012264415, 0.0074706064, 0.0035792415, -0.00010644427, -0.0073145446, 0.014696943, -0.005156822, -0.016216848, 0.024128499, 0.0042475928, -0.017763894, -0.02186221, 0.0062356833, 0.011480714, -0.0045156116, -0.007891295, -0.010198294, 0.032867953, -0.04388727, 0.01837457, -0.014018414, 0.011650346, -0.011460358, -0.018890252, 0.015429754, 0.016800383, -0.0056657186, 0.0047870236, 0.031293765, 0.03227085, -0.023409257, -0.0044613294, 0.015239766, -0.011087167, -0.013251675, -0.013394167, -0.012505293, 0.0107207615, 0.010205079, 0.009791176, -0.0012043893, -0.034007885, -0.030750943, 0.036206316, -0.014656231, -0.0004406199, 0.0029957064, 0.0211294, -0.012708852, -0.009838673, 0.023680668, -0.1739206, 0.019473787, 0.013373811, -0.027276874, 0.004512219, -0.008454474, 0.03957182, 0.007389183, -0.014126978, 0.0026293006, 0.02722259, -0.011263585, -0.039381836, -0.0036437018, 0.008183062, 0.019690918, -0.016311841, 0.0028108072, 0.008006644, 0.0030432034, -0.008189848, 0.030343825, 0.020545864, 0.0056487555, 0.0021034405, 0.006076229, -0.015470466, -0.0018846148, -0.0027514359, -0.011867476, 0.0010763169, -0.024969874, 0.043344446, -0.0029159791, 2.4185854E-05, -0.016556112, -0.019202376, -0.028063968, -0.020301593, 0.019908046, -0.0027022425, 0.008773383, 0.015429754, 0.00732133, 0.013258461, -0.0043188385, -0.010171153, 0.0017794428, 0.004695422, -0.027683992, 0.00081635546, -0.021047976, -0.013991272, -0.013814854, 0.020844417, 0.0077284477, 0.0049702264, -0.0066190525, 0.028009685, -0.025716256, -0.0097776055, -0.0017692649, -0.023409257, -0.015009066, 0.006591911, -0.01765533, -0.004237415, 0.013875922, -0.016243989, 0.008183062, -0.019243088, -0.010205079, 0.021997916, -0.015877584, 0.007070274, 0.0033383637, -0.011426432, 0.0072941887, -0.008515541, 0.009302636, -0.0012501901, 0.012166029, -0.021522947, 0.00824413, -0.00078242895, -0.0025835, -0.0007192409, 0.01511763, -0.0042204517, -0.00066665496, 0.018266005, -0.009587618, -0.020043753, 0.007932006, 0.008644462, 0.011602849, 0.0028040218, -0.022893576, 0.0044749, -0.024114927, 0.020559434, -0.022907145, 0.003565671, -0.003979574, 0.0376448, 0.012573146, 0.03191801, -0.012817416, 0.034550708, -0.0014316966, -0.031185202, 0.006391745, -0.00824413, 0.011772482, 0.0024189565, 0.011141449, 0.017940313, -0.018293148, -0.004973619, -0.0050584353, 0.014561237, -0.02904105, -0.014778366, 0.025811251, -0.024671322, -0.012471367, -0.099608086, -0.012742778, 0.01742463, 0.018740976, -0.015280478, -0.0014147334, -0.0045665014, 0.003262029, 0.011358579, 0.030045273, 0.016759671, -0.027955404, 0.0073688272, -0.0026276044, 0.027738273, -0.010747902, 0.012729208, -0.023097133, -0.0010763169, 0.026394786, -0.00284643, -0.003445232, -0.003014366, 0.008535897, -0.0137944985, 0.0044715074, -0.021889351, -0.0013748697, 0.024318486, 0.019609494, -0.0074434653, 0.00034329336, 0.01950093, -0.016868236, -0.02719545, -0.014072696, -0.025933385, -0.0018422068, -0.0017166788, -0.018293148, 0.004708993, 0.0025003802, 0.0025241286, -0.02857965, -0.02393851, 0.008841235, -0.008596965, 0.016922519, 0.004739526, -0.02092584, -0.023531392, -0.03414359, -0.020152317, -0.028796779, 0.0049329074, -0.021563658, -0.024983445, 0.015280478, 0.012125317, -0.007504533, -0.026245508, -0.007056704, 0.005221282, 0.029013908, -0.024983445, 0.00942477, -0.012037108, 0.017288923, 0.024250634, 0.0030126697, -0.0097029675, 0.027344726, -0.011528211, 0.03829619, -0.017356778, 0.004186525, -0.029258179, -0.0038676164, 0.010700406, -0.0062221126, -0.014900501, -0.015633313, 0.011100737, -0.016841095, -0.0043866914, 0.018781688, 0.009112647, 0.0006429064, 0.008841235, -0.027249733, 0.0033977348, 0.03134805, 0.013618081, 0.018754547, -0.022893576, -0.013346669, 0.018835971, -0.018550988, -0.027724704, -0.0155111775, 0.005377344, -0.0060965847, -0.082237735, 0.011765696, -0.0025020763, 0.000950789, -0.013183822, -0.0077963006, 0.0036437018, -0.041173153, 0.032867953, -0.008318768, -0.019392364, 0.00035007866, 0.0007599527, -0.010191509, 0.0061847935, -0.02001661, 0.019623064, 0.008922659, 0.015714737, 0.013197393, -0.0131159695, 0.012016752, 0.0037828002, 0.0014376338, -0.00732133, 0.0104764905, -0.01879526, -0.01243744, 0.013536657, -0.013991272, 0.022418605, 0.012702066, -0.009804747, 0.018958105, -0.022974998, -0.021075116, -0.0036911988, 0.010001521, -0.00027713677, -0.010768258, 0.003660665, 0.0004075416, 0.036179177, -0.0011899705, -0.014832648, -0.01952807, -0.009112647, -0.0027378653, 0.02767042, 0.023097133, 0.0012103264, 0.0072195507, 0.004322231, -0.012593502, -0.021400811, -0.0339536, -0.008698745, -0.0143983895, 0.007178839, -0.012288163, 0.058950618, 0.036369164, 0.0067547583, -0.0045868573, 0.019609494, 0.0011848815, -0.04016893, -0.0072331214, -0.00523146, 0.0002557207, -0.026530491, -0.01418126, 0.03607061, -0.0030788262, 0.01650183, -0.010177938, 0.0012586716, -0.011473929, -0.023314264, 0.031103779, 0.011792838, 0.008434118, -0.05048257, 0.020315165, 0.0169768, 0.016148996, -0.02302928, -0.025363421, -0.022187905, 0.013034546, -0.022622162, -0.021170111, -0.009241568, -0.011317867, 0.0019880906, 0.00824413, 0.013238105, -0.004074568, 0.0063476404, 0.030940931, -0.01069362, 0.00089141773, -0.004023678, -0.012803846, -0.0035995974, -0.0054180557, -0.019148095, -0.022187905, -0.011107523, -0.007742018, -0.0024036898, -0.010917535, -0.015836872, 0.0044240104, -0.007965933, 0.0055028717, -0.0043154457, 0.0030839152, -0.020573005, 0.0042679487, 0.021699363, 0.030343825, 0.001801495, -0.009404414, 0.0053977, -0.035473507, 0.025987668, -0.013808069, 0.0048888028, -0.009764035, 0.031022355, 0.014235542, 0.02277144, 0.006018554, -0.0032331916, 0.0140591245, 0.01511763, 0.0188224, -0.046655666, 0.07876367, 0.0132856015, -0.008678389, -0.00417974, -0.024820598, -0.0060219467, 0.006354426, 0.00621872, -0.036911987, -0.03647773, 0.012315305, 0.0103814965, -0.0015088792, 0.031429473, -0.0013587547, 0.020030182, 0.0065783407, 0.015090489, -0.01745177, -0.014927642, 0.0534681, -0.00827127, 0.0077691595, 0.014384819, -0.0016098105, -0.0062628244, 0.030316684, 0.020586576, -0.026584774, -0.012016752, 0.026123375, -0.019840194, -0.027100457, -0.0010152493, -0.0012747868, -0.01906667, 0.0011373846, 0.0022611986, 0.02906819, 0.04342587, 0.009085506, -0.000535614, 0.0047870236, -0.0043391944, -0.0012510382, 0.0013273727, -0.003246762, -0.019555211, -0.00511611]
+ },
+ {
+ "Id": 81,
+ "Type": "Footwear",
+ "Brand": "AirStrider",
+ "Name": "Trail Breeze Hiking Shoes",
+ "Description": "Experience the ultimate comfort and stability with the Trail Breeze hiking shoes by AirStrider. These lightweight shoes feature a breathable mesh upper in vivid blue, providing excellent airflow on hot summer hikes. The durable rubber outsole offers exceptional grip, ensuring you stay steady on any terrain.",
+ "Price": 109.99,
+ "Embedding": [-0.007713134, -0.002888215, -0.008602333, -0.0094780605, 0.017999558, 0.011963778, -0.008285725, -0.033358462, 0.0278077, -0.035298534, -0.01806692, -0.011768423, 0.0005077532, -0.0033328147, 0.0015148392, -0.003802676, 0.012354487, 0.005537289, 0.015749613, -0.008649488, -0.023563791, 0.0049343845, -0.003597217, -0.015534049, 0.006770043, -0.016760066, 0.03572966, -0.005756221, 0.021044392, -0.022485973, 0.018093867, 0.016005594, -0.0038296215, -0.006864352, 0.005611389, -0.012933814, -0.0019367039, 0.0034203874, 0.020774938, -0.0022634175, 0.014227195, -0.008851578, -0.021084812, 0.018039975, 0.014779577, 0.018120812, 0.03904395, -0.01791872, -0.0054867663, -0.005773062, -0.018174702, 0.009841824, -0.013984686, -0.0010938167, 0.015560995, 0.0073830523, 0.008918942, 0.010225796, 0.026608627, -0.0029959967, -0.022081792, 0.008824633, -0.034517117, 0.010629978, 0.0025615015, 0.0026204446, -0.014685268, -0.004880494, 0.004941121, 0.005217312, 0.011168887, -0.0066386843, 0.0066892067, 0.0052678348, 0.00261034, -0.01751454, 0.0068677203, 0.004735662, 0.0034018625, 0.011377715, -0.0064803795, -0.0016268312, -0.00809037, -0.0044055805, 0.008501288, -0.01469874, 0.011478759, -0.009356806, -0.04206184, -0.014483177, 0.014213722, -0.0078007067, -0.00955216, 0.016315468, -0.020249503, 0.0033968103, -0.0061940844, 0.022863211, -0.001788504, -0.003004417, 0.0009548792, -0.00046144077, -0.025827209, -0.009080615, -0.04319355, -0.0038835122, -0.0047626076, 0.012192814, 0.02156983, -0.006463539, -0.018269012, 0.015412794, 0.011007215, -0.023294337, 0.003671317, -0.007416734, 0.006611739, 0.018929176, -0.0004216541, -0.035352424, 0.021354266, -0.003373233, -0.0015165233, 0.0005363828, 0.007140543, 0.029074136, -0.030717807, -0.011802105, 0.031014208, -0.003112199, 0.03176868, 0.009734042, 0.03133755, -0.03365486, -0.018727085, 0.0041967533, -0.0055642347, 0.020087829, -0.01954892, 0.01558794, -0.009087351, 0.020101301, -0.022108737, -0.005816848, 0.009154715, 0.011707796, 0.022957519, -0.004509994, -0.010569351, -0.011687587, 0.015870867, -0.016840903, 0.016611867, -0.009262497, 0.0035904807, -0.003302501, 0.008561916, 0.02251292, -0.031095045, -0.007841124, 0.020451592, 0.0017219824, 0.026150554, 0.0039508757, 0.015331958, 0.017164249, 0.012927078, 0.0045908303, -0.0073291613, -0.0030953581, -0.0030919898, 0.02241861, -0.025652064, 0.015749613, 0.020424647, 0.005409298, 0.02103092, 0.027295737, -0.0037353123, 0.0025598174, -0.009963078, 0.0017295608, 0.01647714, 0.0068138293, -0.0119435685, -0.00030860957, 0.017554957, -0.0033782853, 0.0001594623, -0.017554957, -0.0010323473, -0.010912905, 0.007827652, -0.005264466, -0.66867816, -0.012583523, -0.00022124736, -0.022917101, 0.030798644, 0.008548442, 0.028589118, 0.010731024, -0.02019561, 0.0033513398, -0.0025446606, 0.021502465, 0.013095487, -0.0151702855, -0.02047854, 0.0028579014, 0.020411175, -0.0042068576, 0.03532548, 0.0011232883, -0.027012808, 0.011795369, -0.01096006, -0.02023603, 0.0014954723, 0.012590259, 0.009275969, -0.01479305, -0.01771663, 0.015749613, -0.023024883, 0.03621468, 0.011357505, 0.00020482749, 0.059387762, -0.022580283, -0.021354266, 0.042546857, 0.023280865, 0.036645807, -0.002588447, -0.01697563, 0.0065309023, -0.008541706, 0.013337996, 0.019212103, 0.042492967, -0.022957519, 0.020963557, 0.00057974807, 0.018740557, 0.01529154, 0.018686667, -0.0067565707, 0.007564934, -0.015197231, 0.036780532, 0.018942649, 0.016490612, -0.0019905947, -0.030798644, 0.019239048, -0.012037878, -0.024668556, -0.025369138, 0.022836264, -0.038181696, -0.0031610376, 0.004978171, -0.01323695, 0.011633696, 0.022027902, -0.004826603, 0.021744974, 0.005513712, 0.024129646, 0.008790951, 0.01323695, 0.004573989, 0.015722668, 0.02815799, 0.010852278, 0.0029572626, -0.02251292, 0.015331958, 0.011842524, -0.0010736076, -0.010333578, 0.020505484, 0.006712784, 0.014119414, 0.043786347, -0.024452992, -0.03147228, -0.011559596, 0.023590738, -0.0054463483, 0.005483398, 0.007827652, -0.021448575, -0.010542406, 0.016746594, -0.006840775, -0.007928697, 0.006958661, 0.040741514, 0.005274571, -0.0045504123, 0.0028023263, -0.009787933, -0.0010592928, -0.0061031436, -0.025517337, -0.033735696, -0.00054311915, -0.029747771, 0.0035332215, -0.0117818955, 0.034921296, -0.04437915, 0.010003497, -0.019953102, 0.005800007, -0.012785614, -0.019724065, 0.0071338066, 0.016261576, -0.011882941, 0.0037386806, -0.010279687, -0.002010804, 0.025921518, 0.01642325, -0.00025029792, -0.00067574123, 0.006450066, -0.0105356695, -0.0035500624, 0.026110137, -0.032118972, -0.022108737, 0.011640432, -0.0077468157, -0.006709416, -0.026662517, -0.025732901, -0.029855553, 0.008912206, -0.011074578, -0.0032957648, 0.0053756163, -0.024547301, -0.01221976, 0.018524993, 0.0070327614, -0.025854155, -0.0058471616, -0.022526393, -0.0013540087, -0.005766325, 0.02697239, 0.0033176579, 0.0068879295, -0.01036726, -0.023186555, -0.01791872, 0.013560295, 0.015560995, -0.002627181, -0.04206184, 0.018632775, -0.007915225, -0.023078773, 0.03963675, 0.020249503, -0.005874107, -0.023617683, -0.013998159, 0.01964323, 0.0013556927, -0.015560995, 0.021866228, -0.026702937, -0.009565633, 0.011876205, 0.0065309023, 0.020586321, 0.013007914, 0.0052813073, 0.028373554, 0.008049952, 0.014361923, -0.009855296, 0.021664139, -0.0039407713, -0.016787013, -0.0021185856, 0.0035837442, 0.0015552575, 0.01360745, 0.032577045, 0.0034928033, 0.0077872337, -0.013445777, 0.014779577, -0.03508297, -0.014658323, -0.0045066257, 0.016719649, 0.015816977, 0.018363321, -0.031984244, -0.01214566, -0.02756519, 0.0035534305, -0.0076188245, 0.003038099, 0.024237428, 0.006860984, -0.020451592, 0.014388868, -0.004159703, 0.012576787, -0.020586321, -0.011963778, 0.018080395, -0.022930574, 0.017824411, -0.0069788704, 0.0010087701, 0.04039122, 0.027672973, 0.022135684, 0.016099904, 0.024911065, -0.0060425163, 0.013769123, -0.02221652, 0.05879496, 0.010050651, 0.032819554, 0.022432083, -0.0049983803, -0.026190974, 0.026810719, 0.02730921, 0.008918942, -0.006567952, 0.01692174, 0.006524166, -0.017649267, -0.0038094122, -0.004008135, 0.010192115, 0.015722668, -0.037535004, 0.011788633, 0.008285725, 0.026164027, 0.012563314, 0.012886659, 0.0026036038, 0.029613044, -0.0038430942, 0.012751932, -0.006372598, -0.023267392, 0.003913826, -0.018188175, -0.013129168, 0.012448796, -0.009996761, 0.0048198667, -0.009599315, 0.011869469, 0.015709195, 0.017986085, -0.004472944, 0.0009279338, 0.017164249, -0.019441139, -0.011761687, 0.0051971027, 0.012091769, -0.00012588575, -0.0028107467, -0.010987005, 0.0284005, -0.0049849073, 0.04190017, -0.0004921754, 0.0025951832, 0.0050590076, 0.015709195, 0.013930796, 0.0014289507, 0.008595597, -0.012852977, 0.045726422, -0.020397702, -0.007895015, 0.024223955, -0.017164249, -0.029720826, 0.029532209, -0.0007157384, -0.021057865, -0.008285725, 0.005773062, -0.00085635995, -0.0045537804, -0.02325392, 0.006113248, -0.017810939, 0.012273651, 0.012590259, 0.0039980304, -0.019683648, 0.023994919, -0.0075043067, -0.02206832, -0.015709195, -0.026217919, 0.015224176, 0.08132135, -0.002632233, -0.014537068, 0.00064963783, 0.0068912976, -0.016167266, -0.028077153, -0.0021893175, -0.01066366, 0.0031913512, -0.01251616, -0.02597541, -0.00073257927, -0.0037252079, 0.01756843, 0.020599794, 0.005106162, -0.023415592, 0.0084473975, -0.006396175, -0.0063355477, 0.01771663, 0.022768902, 0.03308901, 0.012603732, 0.024237428, -0.008124052, -0.010609769, 0.024372155, 0.0008689906, -0.0007418418, -0.014038577, -0.0034018625, 0.009094087, -0.018242067, 0.01390385, -0.031930353, -0.027699918, 0.013944268, -0.0058471616, 0.03543326, 0.011613487, -0.0021017448, -0.00592463, -0.0074099973, -0.021933593, -0.001454212, 0.025261356, 0.005021957, 0.00052712025, 0.028562171, 0.015655303, -0.009174924, -0.0048535485, 0.0026002354, 0.012583523, 0.021408156, -0.0020747993, 0.008252042, -0.042870205, -0.019063903, -0.03543326, 0.021785393, 0.003971085, 0.0014255824, -0.023873664, -0.0024890855, 0.018727085, -0.015278067, -0.013068541, -0.017649267, -0.009673415, -0.03702304, -0.0025833945, 0.023321282, 0.0042641168, -0.007827652, 0.0054564527, 0.022741957, 0.000819731, -0.0032587147, 0.005311621, 0.01984532, 0.014860413, 0.0026406536, -0.017042994, -0.0063321795, -0.007807443, 0.014685268, 0.0031088307, 0.019225575, -0.018039975, 0.01564183, -0.0063523888, -0.0056450707, 0.008076897, 0.024735918, 0.026810719, 0.01133056, 0.0050994256, 0.010757969, -0.021502465, -0.0064871158, 0.0041428623, 0.00757167, 0.0048400755, -0.0011982303, -0.0016007279, 0.0058808434, -0.017272031, 0.01449665, -3.4865934E-05, 0.025867628, 0.008696643, -0.008150998, 0.029262753, -0.01697563, -0.008851578, -0.00028292718, -0.02280932, 0.022701537, -0.03645719, 0.03944813, 0.023496429, -0.002463824, 0.0040519214, 0.027174482, -0.02053243, -0.022351246, 0.02375241, 0.0072820066, 0.026675992, 0.016221158, 0.003671317, -0.022364719, -0.03656497, -0.038073916, 0.0040182397, -0.005766325, -0.012044614, -0.019777957, 0.015197231, 0.0019434403, 0.03141839, -0.011633696, -0.017770521, -0.027861591, -0.006753202, -0.04532224, 0.0284005, -0.012138923, 0.004173176, -0.025503865, -0.009444378, -0.016948685, -0.020424647, -0.003580376, -0.015574467, 0.01184926, 0.018942649, -0.0058033755, -0.03152617, 0.01806692, 0.024628136, -0.020330338, 0.006510693, -0.012900132, -0.0030498875, -0.024830228, 0.019468084, 0.014860413, 0.00794217, 0.00145337, -0.017622322, -0.010407678, -0.0063119708, -0.0016731437, -0.0057124346, -0.0057494845, -0.04284326, 0.00033450243, -0.019131266, -0.020303393, -0.0028090626, -0.01249595, -0.0055440255, 0.029101081, 0.0076525067, -0.007760288, 0.00086646446, 0.030771699, -0.006507325, 0.021233011, -0.009430906, -0.0018912335, -0.033277623, 0.00462788, -0.038828388, -0.00012051772, 0.016261576, -0.02266112, -0.011802105, -0.012980969, -0.011573069, -0.01905043, -0.002066379, -0.013472723, -0.009444378, 0.0041125487, 0.0066420524, -0.008070161, -0.017285503, -0.012098505, -0.041226532, -0.0097205695, 0.0029522104, 0.009673415, 0.017002575, -0.04039122, 0.015183759, 0.0014382132, -0.007140543, 0.0017598744, 0.00015535734, 0.01860583, 0.018228594, -0.01583045, -0.020680629, -0.011714532, 0.0010845541, -0.0017042995, 0.01390385, 0.0063894386, -0.019899212, -0.019319884, 0.01771663, 0.009323124, -0.014011632, -0.0039407713, 0.02078841, 0.022607228, 0.004920912, -0.0073695793, -0.0224725, 0.012556577, 0.022795847, -0.011930096, 0.019670175, -0.011478759, -0.00690477, 0.007012552, 0.01964323, -0.011997459, 0.022270411, -0.009983287, -0.011195833, 0.005052271, 0.0035736398, 0.0031627216, -0.0068811933, -0.0042472756, 0.024089228, -0.016315468, 0.007511043, 0.02047854, 0.010906169, 0.0019821743, -0.0050051166, -0.0018440789, 0.02375241, -0.020626739, -0.0024975059, -0.0017497699, 0.0068475115, 0.01647714, -0.0010104541, -0.0013523245, -0.00912777, 0.023051828, -0.010427888, 0.014523595, -0.005513712, -0.010623242, -0.026635572, -0.0013767439, -0.00032355587, -0.015682248, -0.021192594, -0.0016478824, -0.028077153, -0.020033939, 0.0046851393, -0.005160053, 0.005217312, -0.0061604027, -0.0261775, -0.0066487887, 0.016099904, -0.031256717, 0.018807922, -0.010084333, 0.019656703, -0.01701605, 0.0016344097, 0.0034220715, -0.038046967, 0.006264816, -0.004115917, -0.022728482, -0.03519075, -0.014173305, -0.0037049986, 0.01760885, -0.015278067, 0.011882941, 0.013620922, 0.01499514, -0.015924757, -0.02993639, -0.006709416, -0.0053217253, -0.020761466, 0.027592136, -0.021206066, 0.020370757, 0.015628358, 0.015264595, -0.006227766, -0.008743797, -0.024075756, 2.8629536E-05, 0.0013447461, 0.0038531986, -0.022593755, 0.010912905, 0.0014062155, -0.011411396, -0.0072954795, -0.0067228884, -0.012206287, 0.006456802, 0.017730104, 0.01308875, 0.014254141, -0.012805823, -0.019953102, 0.014213722, -0.0009540372, -0.024277845, -0.0017918721, 0.02221652, 0.05626209, 0.0042775893, -0.025625119, 0.0034793306, 0.012765405, -0.053648382, -0.011930096, 0.014510122, 0.0028410603, 0.013492932, 0.006150298, -0.008999779, 0.017191194, -0.011842524, 0.012314068, -0.0052105756, -0.0052274163, 0.008305933, 0.005948207, -0.018821394, 0.01205135, -0.026110137, -0.008285725, 0.022310829, -0.013984686, 0.0062345024, 0.0117010595, -0.027241845, -0.012987705, 0.010704078, -0.019225575, 0.03583744, 0.011013951, 0.017945666, -0.05001075, -0.027039755, -0.0061974525, -0.031687845, -0.0028983194, -0.0151163945, 0.0010736076, 0.00085299177, -0.0096397335, -0.02315961, -0.016248103, -0.026649045, -0.017905248, -0.0009885611, 0.0043718987, -0.014968195, -0.0023594105, 0.012435323, -0.0230653, 0.016342413, 0.038855333, 0.0046447213, 0.0073358975, -0.010825332, -0.02716101, 0.0028107467, -0.0058404254, 0.013257159, 0.009976551, -0.010757969, -0.012603732, -0.007059707, -0.0045403074, 0.01760885, 0.0073695793, -0.036807477, -0.019751012, 0.0022701537, -0.009794669, 0.01182905, 0.0019282835, 0.0047053485, -0.03117588, 0.034274608, 0.009632996, -0.022580283, -0.006163771, 0.014819995, -0.01103416, -0.0108859595, 0.030717807, 0.20047411, -0.009781197, -0.007255061, 0.0249919, 0.022378193, -0.016126849, -0.010118015, 0.010064124, 0.0009952973, -0.0023358334, 0.01688132, 0.008326143, -0.034759626, -0.006466907, 0.007760288, -0.017783994, -0.036807477, 0.002106797, -0.03484046, -0.007255061, -0.011660641, -0.01273846, 0.014510122, -0.022432083, 0.011869469, 4.473365E-05, -0.00080246903, -0.019158212, -0.008838106, 0.0086360155, -0.014671795, -0.027201427, -0.012307332, -0.010468305, 0.003526485, -0.00566528, 0.022917101, 0.021839283, -0.0003092411, 0.0023038355, -0.022351246, 0.01066366, -0.00912777, -0.0076322975, 0.0018491312, 0.010987005, -0.029720826, 0.0015038927, -0.0060492526, 0.010650188, -0.043489948, 0.000764156, -0.0030515718, 3.376075E-05, -0.016706176, -0.00436853, 0.029855553, -0.021435102, -0.008912206, 0.003432176, -0.023819774, 0.0070731794, -0.012906868, 0.014227195, -0.014146359, -0.004270853, -0.014065523, 0.012664359, 0.016450195, 0.017810939, 0.013156114, -0.00912777, -0.008056688, 0.028589118, -0.0057528527, -0.013890377, 0.02156983, 0.002982524, -0.0025800264, 0.02330781, -0.014092468, -0.0015013665, 0.006972134, -0.01618074, -0.009895715, -0.027888536, -0.00039070897, -0.00049049134, 0.009976551, 0.004307903, 0.007740079, -0.00024145645, 0.019683648, -0.015049031, 0.0004344953, 0.023563791, -0.03265788, 0.029747771, -0.032981224, 0.021960538, -0.008225097, -0.00078478607, -0.0040519214, -0.008561916, -0.006130089, 0.009599315, 0.0045537804, 0.0033698648, -0.0017581903, 0.004439262, -0.018080395, -0.029451372, 0.0019889106, -0.013836486, -0.0070327614, 0.002963999, 0.00786807, -0.0284005, 0.010562615, -0.039744534, 0.021165647, 0.016760066, 0.0065140612, 0.01870014, -0.006898034, -0.012206287, 0.01375565, 0.010394205, 0.018430684, -0.033358462, 0.0072348523, 0.0051398436, 0.016706176, -0.014752631, -0.017891776, -0.0019417561, 0.009289443, -0.020087829, -0.020505484, -0.0116202235, 0.00048417598, -0.01390385, -0.013122432, 0.027403519, 0.043166604, -0.030394463, 0.029101081, -0.01192336, -0.024951482, 0.0074706245, 0.018120812, -0.017406758, -0.027888536, -0.020963557, 0.017986085, 0.002741699, -0.04157682, -0.022553338, -0.003920562, 0.009713833, -0.021718029, 0.020262975, 0.024587719, -0.006753202, -0.0117549505, -0.011936832, -0.17288198, 0.011027424, 0.016935213, 0.010522196, 0.025126629, 0.0010256111, 0.00853497, 0.009996761, -0.009862033, -0.0018979699, 0.025557755, 0.003130724, -0.01420025, -0.0003709209, -0.006662261, 0.012563314, 0.0118896775, 0.01786483, 0.025247883, -0.00883137, 0.0034035465, -0.017110357, 0.012260178, -0.0074773612, 0.0059347344, -0.012233232, -0.0029421058, -0.008049952, 0.0022667856, -0.008380033, -0.009713833, -0.002886531, 0.010313369, -0.0031644057, 0.033520132, -0.01192336, -0.0036106897, 0.009403961, -0.011478759, 0.04543002, 0.029235808, 0.018093867, 0.03489435, -0.01140466, 0.03370875, -0.018807922, -0.0068273023, 0.0075986157, -0.008851578, -0.010003497, 0.009181661, -0.023173083, -0.010953324, 0.006810461, 0.009673415, 0.007302216, 0.004584094, 0.010023706, -0.011498969, -0.036187734, -0.0057865344, -0.014577486, 0.00064626965, -0.0037184714, -0.019306412, 0.01925252, 0.016194213, -0.00089340995, -0.003356392, 0.017851358, -0.028184935, -0.013358205, 0.007342634, -0.011458551, 0.013115696, 0.022526393, 0.0072617973, -0.0012453848, -0.0036477398, -0.021219539, 0.0039946623, 0.049256273, -0.04763955, 0.014833468, -0.006396175, 0.036484133, 0.005224048, 0.011775159, -0.027403519, -0.021111757, -0.012650887, -0.0243991, -0.006163771, -0.016275048, -0.0022263674, 0.014254141, 0.0246955, -0.025773318, 0.00037197347, -0.01410594, 0.021852756, 0.0054901345, -0.010171906, 0.03661886, 0.025126629, 0.018080395, 0.015601413, 0.014968195, 0.024682028, -0.015251122, -0.012711514, 0.008811161, 0.00994287, 0.0032772399, 0.010232533, 0.013593977, 0.001007086, -0.023051828, 0.012111978, -0.032038134, 0.014186777, -0.01642325, -0.03632246, 0.007106861, -0.000615535, -0.0063321795, -0.09533299, -0.013674813, 0.01993963, -0.0011460235, -0.021704556, -0.006392807, -0.0095319515, 0.020492012, 0.008427188, 0.004829971, 0.011337296, -0.0013590609, -0.0065713204, -0.007059707, -0.008588861, -0.00055027654, 0.025665537, 0.0002347201, -0.03702304, 0.014173305, -0.025840683, -0.0062917615, -0.004957962, -0.024830228, 0.004981539, 0.0010407679, -0.025908045, 0.00068416167, 0.027107118, 0.025638591, 0.0045066257, 0.015614886, 0.007288743, 0.0012411745, 0.007874806, -0.006359125, -0.02038423, -0.022405138, 0.012469005, -0.015453213, -0.022580283, -0.025746373, 0.01701605, -0.03750806, 0.0063119708, -0.026891554, -0.003038099, 0.009410697, 0.0042607486, -0.0063389163, -0.0047390303, 0.0028595855, 0.019158212, -0.006965398, 0.027336154, -0.0019265993, -0.017528012, -0.010387469, -0.0077266064, -0.0073224246, -0.016072959, 0.007046234, -0.0058842115, 0.026271809, 0.00092372356, -0.0012613836, -0.020815356, 0.02197401, 0.0055406573, 0.0030263104, 0.0065746885, 0.025247883, -0.016692704, 0.04992991, -0.010380733, -0.0048400755, -0.03969064, -0.032630935, -0.007174225, -0.029235808, -0.02019561, -0.012233232, 0.036996096, -0.040741514, 0.01153265, 0.03376264, 0.010171906, -0.014159831, 0.008703379, -0.028723845, 0.023226975, 0.018484576, 0.021206066, 0.01014496, -0.005311621, -0.029154971, -0.01184926, -0.009909187, -0.009370279, -0.006396175, -0.01410594, 0.0059583117, -0.06633969, 0.017447175, -0.010899433, -0.028508281, 0.016733121, 0.0014466336, 0.010636714, -0.010165169, -0.0074840975, -0.015480158, 0.0050387983, -0.024075756, 0.010784915, -0.0064231204, 0.0031644057, -0.012826032, -0.0010795019, -0.008056688, 0.021003975, 0.0056787524, -0.015628358, 0.0039811893, -0.006247975, 0.020653684, -0.041684605, 0.008049952, -0.013708496, 0.022620702, 0.004045185, 0.0035130125, 0.0055810753, -0.010407678, 0.015655303, 0.020801883, -0.022027902, 0.006520798, -0.00045975667, 0.01469874, 0.011815578, -0.034651842, -0.0037252079, -0.022485973, -0.0058640027, -0.021273429, -0.019966574, -0.01905043, 0.025665537, 0.0077468157, 0.027996318, 0.008103843, -0.011815578, 0.012475741, 0.021003975, -0.033520132, -0.0019703857, -0.01919863, -0.008865052, -0.028669953, -0.0098014055, -0.031607006, 0.036726642, 0.012967495, -0.0012866451, 0.011997459, 0.022243464, 0.03473268, -0.0023358334, 0.010852278, 0.026931973, 0.0018457631, -0.004974803, 0.025234409, 0.008858315, -0.0016504085, 0.006729625, 0.0028056945, -0.016019067, -0.0044426303, -0.007975852, 0.023280865, 0.011761687, -0.001640304, -0.04839402, 0.00984856, -0.008191415, -0.0025716058, -0.0052947802, -0.008359824, -0.016167266, -0.0016066221, -0.007436943, -0.007975852, -0.009606051, 0.007969116, 0.027403519, 0.013129168, -0.0012605416, -0.022876684, 0.0024183537, 0.02904719, -0.0246955, 0.011896414, -0.007975852, -0.010461569, -0.026446955, 0.021462047, 0.0130281225, -0.007895015, -0.01830943, -0.0051499484, 0.005820216, 0.026608627, -0.020087829, 0.005874107, -0.008097107, 0.017379813, 0.007605352, -0.025961937, 0.0022263674, 0.02156983, 0.011141942, 0.028265772, 0.005112898, -0.0063995435, -0.016436722, 0.0084473975, 0.0036645806, 0.0069249794, -0.008177943, 0.00955216, 0.021771919, -0.0077266064, -0.01623463, 0.012118714, 0.016867848, 0.0035534305, 0.00690477, 0.020613266, -0.033574026, 0.05631598, 0.03395126, 0.013479459, -0.0070933886, 0.0056753843, 0.023226975, 0.019737538, 0.0033243943, -0.012111978, -0.013412096, 0.0045537804, -0.007248325, -0.024143118, 0.014240668, -0.04028344, 0.002068063, -0.008359824, -0.016436722, -0.018174702, 0.00019893316, 0.017339393, -0.00064963783, 0.03378959, 0.0015148392, -0.016679231, 0.006898034, 0.0047491346, 0.013701759, -0.016355885, -0.015305013, 0.030394463, 0.0068138293, -0.02275543, -0.0018137653, 0.004230435, -0.002330781, -0.013364941, 0.01405205, -0.0009877189, 0.01701605, 0.007807443, 0.018538466, -0.02182581, -0.010656924, 0.011694323, -0.0029151603, -0.033574026, 0.00749757, -0.005052271]
+ },
+ {
+ "Id": 82,
+ "Type": "Ski/boarding",
+ "Brand": "WildRunner",
+ "Name": "Maverick Pro Ski Goggles",
+ "Description": "Conquer the slopes in style with the Maverick Pro ski goggles by WildRunner. Designed for maximum performance, these goggles feature a sleek black frame and mirrored, polarized lenses that reduce glare, enhancing your visibility. With a comfortable foam lining and adjustable strap, these goggles provide a secure and snug fit.",
+ "Price": 139.99,
+ "Embedding": [-0.00017970953, -0.009324188, -0.013901764, -0.03537647, -0.01306333, 0.016484678, 0.0005645901, -0.042110983, 0.0159708, -0.03783768, 0.02551812, 0.00694412, 0.010879347, -0.026613493, -0.012623829, -0.005453197, 0.013915286, -0.0074918065, -0.0049460796, -0.025017764, 0.01037223, 0.027059756, -0.01683628, -0.03488964, -0.003641099, -0.0148348585, 0.005558001, -0.008735933, -0.000998175, -0.014375073, 0.019473288, -0.01766119, -0.011001055, -0.034916688, -0.0027519541, 0.008749456, 0.015686816, -0.009209242, -0.0055005276, 0.0068156505, 0.028452637, -0.007282198, -0.0001520294, 0.012495359, -0.008215293, 0.015808523, -0.009648743, -0.028669007, -0.029372208, 0.0031052455, 0.0060684984, 0.00063685427, -0.016565816, -0.020852646, 0.01858076, -0.0047973255, -0.0023580934, -0.006795366, 0.018945886, -0.017390728, -0.0046587135, -0.005676328, -0.026843386, 0.020582182, 0.00079490565, 0.006761558, -0.033564374, -0.007971877, -0.0011190379, 0.007295721, 0.03188751, 0.0065012383, 0.007146967, 0.0014858524, 0.0058926977, -0.010906394, -0.017471867, 0.003436562, 0.0031035552, 0.016809233, 0.02595086, -0.0183103, -0.016200693, 0.025017764, 0.0037222377, 0.014550873, 0.021948017, 0.021812787, -0.017052649, -0.008918495, -0.00083589763, 0.01840496, 0.004452486, 0.0059975022, -0.026099615, -0.0019253537, -0.0023327374, 0.014970089, -0.015943754, -0.013225608, -0.005879175, -0.0037154763, -0.013049807, -0.012326321, -0.051387843, -0.0061868257, -0.0029801568, 0.013840909, 0.020406382, 0.008661556, -0.010182907, 0.002004802, 0.025355842, -0.026586447, -0.0036309566, -0.0077622687, 0.03337505, 0.0011874987, 0.012549452, -0.0079245465, 0.024530932, -0.017972222, 0.02920993, -0.018039837, 0.01227899, 0.013678632, -0.030832704, 0.011420271, 0.028019898, 0.0054058656, 0.043733757, -0.0018864747, 0.004496436, 0.00985159, -0.00011727077, 0.02490958, -0.020987876, 0.02473378, -0.018986454, 0.027857618, 0.004313874, 0.004706044, -0.0028838045, -0.0031694802, -0.0017951936, 0.013780056, -0.0012483527, -0.009614935, 0.042814184, 0.0057135164, 0.0076878914, -0.032834128, 0.028669007, 0.016390016, -0.0033402096, -0.007971877, 0.008539848, 0.009567604, -0.045031976, 0.015037705, 0.015240552, -0.015064752, 0.018621331, 0.010257283, 0.027046232, 0.020081827, 0.016728094, -0.00429697, 0.003854088, 0.015118844, 0.011271518, 0.03424053, -0.021691078, 0.024355132, 0.006366007, 0.011697495, -0.010101768, 0.01770176, -0.004638429, 0.0108861085, -0.014009949, -0.023422036, -0.0060414523, 0.010182907, -0.010507462, 0.0010438155, 0.011832727, -0.004330778, -0.0106088845, -0.028696053, -0.0051015955, 0.026627015, 0.01184625, 0.011420271, -0.6547352, -0.005047503, -0.0072145825, -0.032780033, 0.020338766, 0.023962962, 0.009128103, 0.013631301, -0.012103189, 0.016254786, -0.010419561, 0.020081827, -0.00097281917, -0.0131918, -0.012765822, -0.031779323, 0.021109585, -0.0077487454, 0.013928809, -0.017891083, -0.014388596, 0.0010970628, -0.009554082, 0.026072567, -0.0039419886, 0.0112850405, 0.013509593, -0.002021706, -0.018594285, 0.02530175, -0.033915974, 0.017269019, -0.01158931, 0.020379337, 0.055715237, -0.048926633, 0.01858076, 0.027911711, 0.0010235308, 0.040244795, -0.017972222, 0.017458344, 0.008526324, -0.026356554, -0.0044152974, 0.028073989, 0.010176145, -0.0067243697, -0.014915997, -0.013766532, 0.0015407901, -0.000272364, 0.0006841852, -0.011088955, 0.009871875, -0.0139693795, 0.019513857, 0.0099327285, 0.011832727, 0.014604965, -0.01453735, 0.020257628, -0.004604621, -0.021704601, -0.0043104934, 0.023056913, -0.027884666, -0.023165097, 0.009777213, -0.010825255, 0.018513147, 0.012312797, -0.019716704, 0.015903184, -0.009831306, 0.030021317, 0.005432912, -0.005737182, -0.0006038917, 0.013955856, 0.0026133421, 0.011656926, -0.021948017, -0.023841254, 0.012806391, -0.026843386, -0.001648975, 0.01380034, 0.030048365, 0.00018393551, 0.024030577, 0.023462607, -0.0139693795, -0.00972312, -0.008864403, 0.006977928, -0.032915264, 0.010879347, 0.03970387, -0.028073989, -0.010872586, -0.0136921555, -0.00028546454, -0.0027232175, 0.020676844, 0.0036985723, 0.004438963, -0.01514589, 0.026315983, -0.030589288, -0.008871164, -0.00089252566, -0.0048142294, -0.013861194, 0.0132594155, -0.026883954, 0.0037999956, -0.0025592498, 0.020866169, -0.033104587, 0.019040547, -0.012143758, 0.01822916, -0.0026944808, -0.003345281, 0.0026589828, 0.0011832727, 0.0022110294, -0.022597127, -0.014064041, 0.006315295, 0.008600702, 0.011494649, 0.0051286416, -0.008012447, 0.0003420926, 0.0048750835, -0.0045370054, 0.016998557, 0.0002579957, -0.025599258, 0.013029522, -0.009756928, 0.0057811323, -0.01371244, -0.027316695, -0.029804949, -0.027546588, -0.0053652963, -0.011001055, 0.014442688, -0.01844553, -0.0080800615, 0.0008612535, 0.037242662, -0.0142127955, -0.0011570717, -0.009662267, -0.0038168996, -0.0006127662, 0.008127393, 0.003406135, -0.008350524, -0.012562975, 0.0078975, -0.006977928, -0.00728896, 0.029994272, -0.023990009, -0.04278714, -0.009905683, -0.010433084, -0.01970318, 0.02300282, -0.0163224, -0.012143758, -0.0074444753, -0.023111006, 0.004635048, -0.017647667, 0.00872241, -0.0035768643, -0.035078965, -0.0058994596, 0.013793578, 0.009662267, 0.02681634, 0.0057878937, -0.013029522, -0.010480415, -0.008296432, 0.034294624, 0.00018657674, 0.009101057, -0.009053727, -0.038513836, 0.019878982, 0.010906394, 0.0112850405, 0.015024182, 0.026099615, -0.041407783, 0.0063457224, -0.03575512, 0.033618465, -0.014185749, 0.004783802, -0.007714938, -0.017066173, 0.0031914555, 0.013340554, -0.026031999, -0.007228106, -0.019811366, -0.001388655, 0.00451334, 0.02573449, 0.03172523, -0.012224897, -0.017106742, 0.009148388, -0.012292513, 0.018634854, -0.023773639, -0.021055492, -0.0005295145, -0.016119555, 0.0104871765, 0.010007106, -0.0184861, 0.012840198, 0.0050069336, 0.026004953, 0.016890371, 0.0093444735, 0.0017258876, -0.016024893, -0.02347613, 0.0527672, -0.0006617875, 0.026545877, 0.014632012, 0.0131039, 0.021839833, 0.023165097, -0.008587179, 0.02473378, -0.008898211, 0.005000172, 0.01787756, -0.021244815, 0.020636275, -0.0037695686, 0.02078503, 0.00056754827, -0.015240552, 0.036241952, -0.00021372862, 0.018607808, 0.035944443, -0.009885398, 0.02178574, -0.0022465277, -0.0037222377, 0.027181463, 0.013110661, -0.014672581, -0.029994272, -0.017133787, -0.020460475, 0.018891793, -0.00036237726, -0.0081138695, -0.007971877, 0.004922414, 0.012691445, 0.010128814, 0.021907449, -0.0054498157, 0.021542324, -0.030562242, -0.026640538, 0.0043848706, 0.018715993, 0.00059121376, -0.011623118, -0.013638062, -0.005050884, -0.016457632, 0.026640538, 0.005375439, 0.023029868, -0.015281121, -0.0091889575, 0.0024493744, -0.008465471, 0.018648377, -0.021109585, 0.0053010616, -0.018202115, -0.014483257, 0.004141454, -0.011217425, -0.013441977, 0.01722845, 0.0029057795, -0.014997136, -0.017809944, 0.0006799592, -0.005098215, 0.0037864726, 0.008675079, -0.007951592, -0.009702836, -0.008776503, -0.0030088935, -0.02677577, -0.012711729, 0.019027025, -0.00014695823, -0.025491074, -0.006687181, 0.009216004, -0.016065462, 0.07502625, -0.0009178815, -0.0028550678, 0.026140183, 0.011312087, -0.0047804215, -0.021041969, 0.0060414523, 0.008756218, -0.010690023, -0.0028246408, 0.024652641, 0.0018814035, 0.00707259, 0.026654063, 0.011697495, -0.007329529, -0.035484657, -0.032049786, -0.01024376, 0.01010853, 0.0027130751, -0.0035768643, 0.01653877, 0.011406749, -0.0023056914, 0.0057473243, 0.029750856, 0.016078984, -0.030589288, -0.01071707, -0.0004842966, -0.015700338, 0.0044152974, 0.008533087, 0.0023766877, 0.0072145825, -0.033780742, 0.02864196, 0.01263059, 0.0140910875, 0.0080733, -0.0019811366, -0.013124185, 0.006950882, -0.00032899206, 0.009790736, 0.0041110273, 0.015862616, -0.03770245, 0.0211772, 0.008654795, 0.009993583, 0.023097482, -0.006315295, 0.015943754, 0.018851224, 0.007052305, -0.01132561, -0.045140162, -0.01141351, -0.01927044, 0.0029345162, -0.003718857, 0.0142804105, -0.02716794, 0.0060245483, 0.0036816683, -0.011623118, -0.0115622645, 0.020433428, 0.00011114311, -0.0062476797, -0.015281121, 0.016863326, 0.005551239, 0.017269019, -0.018972931, 0.028046943, 0.01722845, 0.01974375, -0.011690734, 0.008857641, -0.010622407, 0.019540902, -0.019676134, 0.00035709477, -0.016755141, -0.03461918, 0.011947673, -0.0005506444, 0.008215293, -0.016552294, -0.008898211, -0.01297543, -0.0034483946, 0.0004906356, 0.0028128081, 0.011332371, 0.0050846916, 0.022407804, -0.019459764, 0.0057439436, -0.007620276, 0.010412799, -0.0068325545, 0.006822412, 0.0013218846, -0.023962962, 0.009499989, 0.0030612955, 0.0045031975, 0.009182196, -0.0057642283, -0.0055647623, 0.0041786428, 0.00945942, 0.013056569, 0.012792868, -0.0082355775, -0.00036026427, -0.032185018, 0.04300351, 0.013543401, -0.0049798875, 0.010203191, 0.021704601, -0.016930941, 0.007883977, 0.016741619, -0.0047094254, 0.030535197, -0.0082355775, -0.00637953, -0.02864196, -0.0127049675, -0.029318117, 0.005290919, -0.0080800615, 0.007775792, 0.0019202825, 0.004479532, 0.01119714, 0.024612071, 0.0014478186, -0.023976484, -0.013043046, -0.012299274, -0.047249768, 0.032076832, -0.029967226, -0.0035126295, -0.010203191, -0.022029156, -0.015172936, -0.056256164, -0.030994982, -0.005277396, 0.019554427, 0.037431985, 0.016985035, -0.01349607, 0.01844553, 0.017553005, -0.011690734, 0.0005962849, -0.024882535, -0.0089117335, -0.03954159, 0.009838067, -0.0017216618, -0.014807812, 0.011582549, 0.010115291, -0.011731303, -0.00070277945, -0.0017512436, -0.007437714, -0.0034314906, -0.028046943, -0.0045370054, 0.0034923449, 0.011792158, 0.018553715, -0.016863326, -0.002204268, 0.053172894, 0.00512188, -0.0048243715, 0.004104266, 0.014009949, -0.021853356, 0.017512435, 0.02178574, 0.029913133, 0.0013709059, -0.005132023, -0.018864747, -0.004009604, 0.013928809, 0.013698917, 0.014388596, 0.0087900255, 0.0024544457, -0.012035574, 0.04665475, -0.00035772868, -0.0040839813, 0.006839316, -0.017323112, 0.0060313097, -0.019135209, -0.03645832, -0.027086802, -0.015930232, 0.00893878, -0.0072145825, 0.007207821, -0.0023817588, -0.035484657, -0.0011038244, -0.022745881, 0.05750029, -0.010635931, 0.011244471, 0.026464738, -0.031617045, 0.01805336, -0.019432718, 0.02139357, -9.941604E-05, -0.008424901, 0.011467602, -0.020987876, -0.0161466, -0.010000344, -0.009317427, -0.019459764, -0.02512595, 0.020757983, 0.025234135, 0.017728806, -0.009973298, -0.014902474, -0.006359245, 0.029967226, -0.011541979, 0.016038416, 0.0029953702, -0.02699214, -0.022164388, 0.033131633, -0.015024182, -0.010919916, 0.011298563, -0.0027705485, 0.014564396, 0.002491634, 0.014442688, -0.004668856, -0.005757467, 0.037080385, -0.0031187686, -0.012961907, 0.0060651177, 0.010642692, 0.005798036, 0.003701953, -0.004100885, 0.024652641, 0.01071707, -0.0013616087, -0.0014511994, -0.011974719, 0.006531665, -0.019202825, -0.017593574, -0.015524537, 0.044815607, 0.024706732, 0.017079696, 0.008587179, -0.030318826, -0.020460475, -0.0009085844, 0.0066770385, -0.019500334, -0.016281832, -0.0026268654, -0.04708749, 0.0016244643, -0.025044812, 0.0008730862, -0.008830595, 0.013002477, -0.0019456383, 0.0034179676, -0.0056999936, -0.026410647, 0.004364586, 0.03150886, 0.012400698, -0.022137342, 0.011217425, 0.0015974181, -0.017999267, 0.005402485, -0.016038416, -0.03437576, -0.0348085, -0.0067852237, -0.009134865, 0.0061023063, -0.012441267, -0.00087731215, -0.007349814, 0.008093585, -0.0013514664, -0.015673291, 0.018161545, 0.011494649, 0.017809944, 0.017431296, -0.020730937, -0.00034505076, -0.014429165, -0.009925967, 0.040380023, -0.02915584, 0.0045099594, -0.007775792, 0.006758177, 0.013705678, -0.017255496, -0.013327031, 0.001982827, -0.0038980383, 0.021582894, -0.010852301, 0.011494649, 0.020325243, 0.0005172592, 0.019121686, 0.015172936, -0.045978595, -0.034348715, 0.0149565665, -0.015470445, -0.0034331812, -0.026221322, -0.0074850447, 0.05701346, 0.019297486, -0.016376493, 0.015997846, -0.00768113, -0.040028423, -0.005236827, -0.0032776652, 0.014050518, 0.014794289, 0.009648743, -0.027938759, 0.014496781, 0.00954732, -0.0045877174, -0.0032539999, -0.015132367, -0.0057033743, 0.0033858502, -0.0034483946, -0.034348715, -0.020622753, -0.0049967915, 0.02261065, -0.01909464, 0.012698206, 0.019283963, -0.021704601, -0.029020607, -0.0007446166, 0.009040203, 0.034916688, 0.023678977, 0.008560132, -0.024503887, -0.011034863, 0.017079696, 0.014861905, 0.002226243, 0.0044322014, 0.0028026658, 0.020433428, 0.009195719, 0.0020115636, -0.038243372, -0.0076067527, -0.0040501733, 0.0121505195, -0.006808889, 0.012373651, 0.02247542, 0.017390728, -0.023016343, 0.012488598, 0.029236978, 0.001960852, -0.001388655, 0.0012914576, -0.011082194, -0.004851418, 0.015957277, 0.0056932317, 0.013604254, 0.0059873597, -0.008898211, 0.047249768, -0.016241262, 0.005950171, -0.00021467947, -0.014388596, -0.0012306035, -0.00021975064, 0.014185749, 0.018134499, 0.008140916, 0.0035734836, -0.024206378, 0.025802106, 0.003610672, -0.002325976, -0.016471155, 0.016024893, -0.022164388, 0.006237537, 0.02595086, 0.20998695, 0.01518646, -0.003580245, 0.044842653, 0.017539483, 0.020717414, 0.00954732, 0.007647322, 0.019824889, -0.0014249984, 0.025288228, 0.0010995984, -0.02616723, -0.0049697454, 0.032969356, -0.003137363, -0.026518831, -0.012339843, -0.03367256, -0.0058047976, 0.0029818472, 0.004695902, 0.015659768, -0.027830573, 0.016606387, 0.0008020898, 0.0071063978, -0.0077284607, 0.009398566, 0.019459764, 0.0037864726, -0.023232713, 0.006700704, -0.008404616, -0.014307457, -0.0005231756, -0.005236827, 0.005351773, -0.013604254, 0.02455798, -0.014983613, 0.023773639, 0.01618717, -0.0036681453, 0.023286806, 0.0046891407, -0.014902474, 0.010656215, -0.0055444776, 0.0006017787, -0.02416581, -0.009391804, 0.022164388, 0.020663321, 0.0016244643, -0.014672581, 0.0081138695, -0.030535197, 0.016701048, -0.020852646, -0.026518831, 0.017634144, -0.022164388, 0.024152286, -0.012819914, 0.0405423, 3.845636E-05, 0.0042935894, -0.010088244, -0.0068460777, 0.005061026, 0.012813153, -0.009249811, 0.011765111, 0.01184625, -0.028101036, -0.0012001765, -0.006514761, 0.020812076, 0.02591029, -0.013570447, -0.020825598, 0.00011135441, -0.0101423375, -0.02434161, -0.009716359, 0.023327375, 0.0016100961, -0.013719201, 0.013611017, -0.0020318483, -0.0077014146, -0.008654795, -0.017634144, 0.0013168134, 0.010615646, -0.02039286, 0.028073989, -0.007843408, 0.002057204, -0.008492517, -0.0071266824, -0.018553715, 0.00019862076, -0.013076853, 0.006088783, 0.010777923, 0.0322932, -0.0025355844, -0.028696053, 0.0036309566, -0.04543767, 0.02048752, -0.0027265984, -0.0017216618, 0.005186115, 0.0029531105, -0.03188751, 0.0039960807, 0.010771162, 0.033915974, -0.0044322014, 0.018553715, -0.017688235, -0.010615646, -0.027722389, -0.0035565796, 0.006656754, 0.0071807746, -0.038027003, -0.0019084498, -0.031265445, 0.021014923, -0.022245526, -0.012441267, -0.013942333, 0.03237434, -0.01114981, -0.0025119188, -0.0052063996, -0.0007610979, -0.0056999936, 0.013381124, 0.03388893, 0.023787161, -0.005236827, 0.004161739, -0.0061293524, -0.0017275781, 0.031779323, -0.023746593, -0.007829884, -0.010723831, -0.018648377, 0.014118133, 0.021014923, -0.040650487, -0.010358707, -0.01410461, 0.01917578, -0.030021317, 0.031130213, 0.026031999, -0.03432167, -0.016930941, -0.015862616, -0.17320408, 0.025977906, 0.0112850405, -0.01939215, 0.03605263, -0.010230238, 0.025748013, 0.0006998213, -0.043598525, -0.009770451, 0.011183617, 0.0037594263, -0.007890739, -0.016930941, 0.0026184134, -0.0012373652, -0.01380034, 0.010859062, -0.00015456499, 0.019770795, 0.039649777, -0.01323913, 0.004678998, -0.0015221958, -0.00976369, -0.015930232, 0.0029328258, 0.015064752, -1.18789485E-05, -0.011656926, 0.0029463489, -0.00238683, 0.022313142, -0.0016396778, 0.011156571, -0.015686816, -0.015659768, 0.029236978, -0.0054092463, 0.00013903454, -0.0059535517, 0.006835935, 0.042462584, 0.001176511, -0.0028212601, 0.014361549, -0.008005685, -0.0040603154, 0.021014923, -0.013773294, 0.02426047, -0.02885833, -0.025896767, -0.0038371843, 0.027316695, 0.016227739, 0.026315983, -0.006521523, 0.013861194, -0.019365102, 0.0013962617, -0.025842676, 0.020555137, -0.021853356, -0.02451741, 0.0034551562, 0.0067209885, -0.002148485, -0.020690368, 0.00092717865, -0.007904261, 0.023097482, 0.0065249037, 0.008282908, 0.0138138635, 0.0022752644, -0.010541269, -0.0087900255, -0.0008891449, -0.024747303, 0.007870453, 0.020825598, -0.0062409183, 0.005645901, -0.0007264449, -0.0053179655, -0.028182175, 0.009554082, -0.018472577, -0.005459958, 0.014659058, -0.014807812, -0.01891884, -0.001974375, 0.026965093, 0.01679571, 0.020501044, -0.020866169, 0.015308168, -0.027370786, -0.008553371, -0.018499622, -0.012441267, 0.016606387, 0.010365468, 0.004929176, 0.03545761, 0.03323982, 0.017999267, -0.008262624, -0.008140916, 0.0039994614, 0.0019304248, -0.011095717, -0.004915653, 0.012407459, 0.0051489263, -0.024706732, -0.007856931, -0.01697151, 0.018432008, -0.017025603, -0.0075661833, -0.022069726, -0.004418678, -0.004695902, -0.10017925, -0.03870316, 0.021001399, 0.0043206355, -0.0027620965, 0.017809944, 0.009128103, 0.02261065, 0.0045031975, 0.02469321, 0.026086092, -0.003823661, 0.0012483527, -0.00057261944, 0.013543401, -0.012035574, 0.022975774, -0.013157992, -0.034267575, 0.022137342, -0.020027734, -0.017904606, -0.0373238, 0.0046249055, -0.003796615, -0.0018120976, -0.012711729, 0.013070092, 0.007038782, 0.011798919, -0.003762807, 0.007802838, 0.01158931, -0.014172226, -0.017512435, -0.0025947478, -0.01744482, -0.008776503, 0.025869722, -0.022664743, 0.009716359, 0.0064031957, -0.011224186, -0.042706, -0.037648354, 0.013685393, -0.0027012425, 0.021407092, 0.009871875, 0.0073971446, -0.021920972, -0.0033249962, -0.016903896, -0.0030663665, 0.01297543, -0.0026657442, -0.013577209, -0.0044322014, -0.00967579, 0.0075797066, 0.012576498, 0.021799263, -0.0080462545, -0.0020977734, 0.004131312, -0.00082026154, 0.0031272206, -0.008729172, 0.006825793, 0.007829884, -0.009770451, 0.029020607, -0.011048386, 0.034781456, 0.00082871347, -0.0184861, -0.015700338, -0.020730937, -0.004486294, -0.011156571, -0.01371244, -0.027438402, 0.03540352, -0.013218846, 0.008086824, 0.031914555, 0.017417774, -0.009554082, 0.0020403, -0.0401907, 0.0042902087, 0.025937337, 0.009662267, -0.016714571, -0.023259759, -0.0049697454, 0.017147312, -0.014888951, 0.0034247292, -0.009486466, -0.025504597, -0.027965805, -0.07410668, 0.03610672, 0.003658003, 0.0015593843, 0.004787183, 0.021866878, 0.0066330885, -0.024125239, 0.00945942, -0.027614202, -0.010351946, -0.022637697, -0.0034822023, -0.000100578174, -0.0132797, -0.0153893065, 0.010845539, -0.0057135164, 0.026694631, -0.00057473243, -0.015984323, 0.01271849, -0.0057033743, -0.00019407785, -0.039108854, -0.012177566, -0.007343052, 0.025991429, -1.3562734E-05, -0.007174013, 0.0013337174, 0.01683628, 0.021028446, 0.0366206, -0.0041685007, -0.023895346, 0.041056182, 0.0033909213, 0.0121505195, -0.032698896, -0.02551812, -0.021231292, 0.010345184, -0.02512595, -0.0033047115, -0.017620621, -0.007917784, -0.0029446585, 0.027019186, 0.011399987, -0.0070455438, 0.024544455, -0.0034686793, -0.028425591, -0.016985035, -0.022096772, 0.016038416, -0.0026961714, 0.006017787, -0.02473378, 0.024706732, 0.014023472, 0.009418851, -0.008898211, 0.03199569, 0.0073633366, -0.0139693795, -0.0065384265, 0.002173841, -0.004009604, -0.031346582, -0.004391632, 0.01805336, 0.013631301, 0.022543035, -0.024639118, 0.0040839813, 0.0063558645, -0.025680397, 0.011001055, 0.00841814, 0.007113159, -0.039866146, 0.017539483, 0.009770451, 0.002187364, -0.034348715, -0.015646245, -0.0044930554, 0.019121686, -0.024301039, -0.001982827, -0.041299596, -0.014334504, -0.007931308, 0.010960486, -0.016633432, -0.009209242, 0.018594285, -0.0023023104, 0.0052706343, -0.0020943927, -0.013428454, -0.014861905, -0.0029395875, 0.0051286416, -0.00902668, -0.00841814, -0.0032168112, 0.0035464372, 0.02526118, -0.01722845, 0.0048852256, 0.013780056, 0.0014943044, 0.003901419, 0.00929038, -0.029642671, -0.007931308, -0.008965826, 0.0049629835, 0.009364758, 0.009533796, -0.009364758, 0.002043681, -0.005375439, 0.003914942, -0.018553715, 0.009601412, -0.0031441245, 0.021636985, -0.01935158, 0.020433428, 0.00011589733, -0.012076143, 0.0015940373, -0.00010860753, 0.023070436, -0.04330102, 0.06664192, 0.008242339, 0.01236689, 0.0042902087, -0.019378625, 0.01210995, 0.008188247, 0.02039286, -0.019378625, -0.012819914, -0.012353366, -0.005723659, 0.00054557325, 0.013002477, -0.017390728, -0.01141351, 0.013144469, 0.027086802, -0.027654773, -0.015713861, 0.03943341, -0.012596782, 0.026086092, -0.006808889, 0.012846961, -0.038973622, 0.008370809, 0.010541269, -0.006819031, -0.004378109, 0.016998557, 0.021515278, -0.0012720181, -0.024328087, 0.021677556, -0.01514589, 0.007633799, 0.017512435, -0.011460841, 0.033185728, -0.0040467926, -0.0005688161, -0.00776903, -0.018066883, 0.0077893147, -0.0064674304, -0.0071402052, -0.017674712, -0.008925256]
+ },
+ {
+ "Id": 83,
+ "Type": "Ski/boarding",
+ "Brand": "Zephyr",
+ "Name": "Blizzard Freestyle Snowboard",
+ "Description": "Unleash your freestyle skills on the slopes with the Blizzard snowboard from Zephyr. Featuring a vibrant orange and black design, this snowboard is perfect for riders who crave speed and control. Constructed with a durable bamboo core and carbon fiber reinforcement, the Blizzard offers an optimal blend of flexibility and responsiveness.",
+ "Price": 379.00,
+ "Embedding": [-0.013076768, -0.0058958647, -0.017444568, -0.036327314, -0.0010237033, -0.003006192, -0.033983618, -0.033797186, 0.01792396, -0.041680533, 0.007104334, 0.004903788, 0.006798055, 0.0018626405, -0.0019209, -0.0067481184, 0.022464875, -0.01129902, -0.003642053, -0.0041713826, -0.010972767, 0.00034643614, -0.004767294, -0.0067747515, -0.015886541, -0.013556161, 0.022944268, 0.00015365951, 0.0052666618, 0.006764764, 0.030121842, 0.0059258267, 0.009694386, -0.0077901315, -0.04354484, -0.008562487, 0.00020255591, -0.029535918, -0.003472268, 0.01510087, 0.0038118379, -0.019588519, -0.011152539, 0.016539048, 0.020973431, -0.0014281909, -0.008655702, -0.03289167, 0.0066249412, 0.011079298, 0.009095145, 0.013849123, -0.0022871029, 0.003179306, 0.021372925, -0.007084359, 0.018403353, 0.0059990673, 0.015713427, -0.022624673, -0.02154604, -0.009035221, -6.991144E-05, 0.0023270522, 0.0021189824, -0.008602436, -0.012983553, -0.015806643, -0.0067780805, -0.009661095, 0.0139423385, 0.009814234, 0.010346893, 0.0105066905, -0.0025068244, -0.018629733, -0.0029029893, 0.0059657763, -0.011012716, -0.015580263, 0.025474396, -0.007537119, -0.0026682867, 0.011159197, 0.013316465, 0.010067247, 0.021452824, 0.0030927488, -0.034862503, -0.0073773214, -0.008555829, -0.0025667485, 0.012197881, 0.026220119, -0.009534588, 0.0022355015, 0.006202143, 0.0060922825, -0.00017072124, -0.009015246, 0.023250546, 0.02715227, -0.0031576667, -0.019735001, -0.024528928, -0.021040013, -0.0047140284, -2.3719953E-05, 0.034942403, 0.007983221, -0.032359008, 0.017391302, 0.0051468136, -0.037259467, 0.029242955, 0.008942006, 0.03201278, 0.010140488, -0.0056927884, -0.037978556, 0.026579663, 0.012943603, 0.0041414206, -0.018323455, 0.016379252, 0.0013308142, -0.024049535, -0.028257538, 0.018896064, 0.0019292228, 0.029163057, 0.009061854, 0.007077701, -0.016658897, -0.02177242, 0.013835806, 0.020813635, -0.00080314925, -0.009321525, 0.006202143, -0.0025867233, 0.006165523, -0.024888473, 0.0049770284, -0.006222118, 0.016352618, -0.008202942, -0.012291097, 0.016126238, -0.018097075, 0.019189024, -0.02550103, 0.022891002, 0.021066647, 0.012284438, 0.0021273051, -0.0019558556, 0.036407214, -0.021439508, -0.00041322655, 0.0028580462, -0.017790796, 0.0024385776, -0.0007586223, 0.019615153, 0.02737865, 0.012457552, -0.011026032, 0.021226445, -0.012763831, -0.0091550695, 0.032039415, -0.023823155, 0.02109328, 0.022997534, 0.0011527064, 0.024289232, 0.015380517, -0.0105532985, 0.012710566, 0.025421131, 0.0013050135, 0.0118383365, 0.021972166, -0.012284438, -0.02233171, 0.015846593, -0.007390638, -0.019921431, -0.017151605, -0.031533387, 0.014488313, 0.019228974, 0.0076236757, -0.6553831, -0.025900524, 0.026473131, -0.0042279772, -0.0037752176, 0.009081828, -0.00027069874, -0.020294292, -0.004297889, 0.014182035, -0.003974965, 0.009887475, 0.008842132, -0.009208336, 0.008109727, -0.011998135, 0.01815034, 0.013835806, -0.011099273, -0.023290496, -0.017191555, 0.0037985216, -0.032572072, -0.006964511, -0.0058625736, 0.028151006, 0.0024618814, -0.0034023568, -0.015513681, 0.023556825, -0.020813635, 0.039762963, 0.0105333235, 0.012870363, 0.04956388, -0.017111657, -0.014435047, 0.025993738, 0.0054031555, 0.029589184, -0.019069176, -0.016618948, 0.008788867, 0.0048039146, -0.0076569673, 0.00011121328, 0.014807909, -0.0091350945, 0.014688061, -0.017164923, 0.029589184, -0.0139423385, 0.024395762, -0.012996869, 0.012477527, 0.009408082, 0.027298752, 0.015074238, 0.017058391, 0.0019841532, -0.019015912, 0.02282442, -0.014408414, -0.023104066, -0.030308273, 0.02564751, -0.035794657, -0.01777748, 0.016485782, -0.0072974227, -0.004098142, 0.0036254073, -0.0044909776, 0.027325384, -0.005326586, 0.018163657, 0.022265129, -0.013955655, -0.0016637258, -0.003698648, -0.009721019, 0.029163057, -0.008615753, -0.022265129, 0.009354816, -0.00945469, 0.008043145, -0.00015594828, 0.00090635184, 0.007843398, 0.036833342, 0.009175044, -0.00049520604, -0.03092083, -0.008549171, 0.009774284, -0.01864305, 0.012231173, 0.030840931, -0.028310804, 0.0027148942, -0.017258137, 0.019388773, 0.0037119645, 0.008595778, 0.018936012, -0.018070443, -0.031320326, 0.028523866, -0.012038084, 0.006801384, -0.020121178, -0.01977495, -0.025434447, 0.008615753, -0.02685931, 0.016818695, -0.014528262, 0.019535253, -0.036753442, -0.024076167, 0.0028913373, -0.014648111, -0.007423929, -0.017537784, 0.008862107, 0.021372925, 0.01058659, -0.017431252, -0.011472134, 0.025301283, 0.01163859, 0.0075637517, -0.0017877354, 0.0024535586, 0.017164923, 0.01378254, -0.002293761, 0.014767959, -0.0284706, -0.031506754, 0.01032026, -0.00813636, -0.0008239562, -0.0007977394, 0.010972767, 0.0016079631, 0.0027748183, -0.020933483, -0.006648245, -0.01114588, -0.030601235, 0.007197549, 0.0026033688, 0.0053132693, -0.009681069, 0.0071842326, -0.028657032, 0.0017694252, 7.9976815E-07, 0.015780011, -0.0048005856, 0.004560889, 0.0069245617, -0.0032059387, -0.021000065, -0.011132564, 0.005453092, -0.026992474, -0.03179972, -0.017870694, -0.007876689, 0.0016670548, 0.009208336, -0.010779678, -0.0053665354, -0.01404887, -0.023183964, -0.015633529, -0.01303016, 0.015953124, 0.0084559545, -0.02700579, -0.009448032, 0.030334907, -0.0068446626, 0.018336771, 0.032039415, -0.018083759, 0.0027198878, -0.020787, 0.0252347, 0.020320924, 0.0008614088, -0.011418868, -0.0011968173, -0.007550435, -0.013576135, 0.0015297289, 0.015020972, 0.015167453, -0.009428057, 0.013995604, 0.013529528, 0.012004793, -0.020667152, 0.026020372, -0.009927425, 0.02606032, 0.032359008, 0.018070443, -0.03973633, -0.0066049662, -0.010353551, -0.0043478254, -0.0026832677, -0.023117382, 0.016099606, 0.0076236757, -0.0021988812, -0.0051434846, -0.00023574303, 0.02173247, -0.012370995, -0.00299454, 0.00037473365, -0.010573273, 0.014674744, 0.025394497, -0.0067148274, 0.011445501, 0.025341231, 0.013569477, -0.017271454, 0.0055496367, 0.012224514, 0.011352286, -0.02014781, 0.04354484, -0.004094813, 0.019615153, 0.029189691, 0.009727677, 0.001598808, 0.03238564, 0.012630667, 0.02436913, 0.009614487, -0.004980358, 0.013163325, -0.033024833, -0.0058326116, -0.011438843, 0.0008002363, 0.015673479, -0.00335242, 0.012710566, 0.00040531988, 0.009288234, 0.021625938, -0.013616085, 0.0014190357, 0.008356081, 0.0050868895, 0.040881544, -0.004987016, -0.014634795, -0.024502294, -0.015566947, -0.016632264, -0.0056561683, -0.010187095, -0.003272521, 0.0012517476, -0.004124775, -0.01849657, -0.00074072834, 0.011678539, 0.005356548, 0.029242955, -0.022544775, -0.016898593, -0.0032608693, 0.033344425, -0.019335506, -0.015074238, -0.012817097, 0.014168718, 0.017417936, 0.029482652, 0.016246086, 0.007110992, -0.0070643844, -0.0042246482, 0.0013599439, -0.015833275, 0.007803448, -0.008369398, 0.011105931, -0.0009596177, -0.0029429386, -0.0054863836, -0.012184565, -0.022837736, 0.0285505, 0.017417936, -0.009214994, -7.599748E-05, 0.0061222445, -0.00080855907, 0.01645915, -0.054064844, -0.0057627, -0.032785136, -0.0043145344, -0.001542213, -0.0012084692, -0.019268924, 0.026499765, 0.008329448, -0.017191555, -0.022025432, -0.0021073306, -0.014035554, 0.086557016, 0.010686463, -0.013582794, 0.016246086, -0.00711765, 0.0072108656, -0.0066249412, 0.0018959317, 0.0040515345, 0.0010187095, 0.019988013, 0.026606295, 0.0055296617, -0.013609427, -0.016539048, -0.014421731, 0.0038817495, 0.003618749, -0.008123043, -0.011591982, -0.022078699, 0.0015538649, 0.017111657, 0.017990543, 0.010859577, 0.020840267, 0.002666622, 0.027099006, -0.00870231, -0.015726745, -0.024249282, -0.0043178634, 0.0027215525, 0.0072707897, -0.020573938, 0.014568212, 0.012364337, -0.047699574, 0.0017461214, -0.0025101535, 0.015713427, 0.009647778, 0.0071243085, -0.014807909, -0.00591251, -0.0075903847, -0.003558825, 0.010619881, 0.009048537, -0.009428057, 0.029695716, -0.012923629, -0.018017177, -0.0009413076, -0.008968639, 0.0037918633, -0.01043345, 0.008229575, 0.013436313, -0.032678604, -0.02117318, -0.016765429, 0.0018226911, -0.006418536, 0.005959118, -0.0072175236, -0.013562819, 0.027138954, 0.0069711693, 0.011432185, -0.0013524534, -0.013729275, -0.030894198, 0.009701044, 0.024808573, 0.005509687, 0.009661095, 0.0017128303, 0.029296221, 0.017005125, 0.022877686, -0.010779678, -0.0074638785, -0.021386242, -0.0037818758, -0.015713427, 0.023290496, 0.017005125, 0.024355814, 0.008902056, 0.008782208, -0.0024801914, 0.017630998, 0.0002985801, -0.020986749, 0.006545042, 0.024129434, 0.0084492965, 0.020427456, -0.011059323, 0.01581996, 0.0011285704, -0.0046907244, 0.020494038, 0.009348158, -0.013968972, 0.008462613, 0.022158597, 0.0036320656, 0.016072972, 0.022611357, -0.023210598, 0.006851321, 0.015793327, -0.0033840465, -0.0002806861, 0.010247019, 0.026313333, -0.008256208, -0.015660163, 0.010946134, -0.06125574, 0.0132565405, 0.0038118379, 0.0026349954, 0.010040614, 0.0011294027, -0.009900792, -0.0010861241, 0.014634795, 0.0050935475, 0.030121842, 0.022025432, 0.029509285, -0.027698247, -0.005756042, -0.0010578267, -0.027751511, 0.02135961, -0.0070377514, -0.037792128, 0.029056525, 0.020134494, -0.0037752176, 0.009434715, -0.027751511, -0.017844062, 0.02723217, -0.018789532, 0.0037718886, -0.045249347, -0.0008385211, -0.002240495, -0.01107264, -0.0018509886, -0.025248017, -0.013183299, -0.024688724, 0.021040013, 0.035341896, 0.013549503, 0.013929022, -0.009175044, 0.012983553, -0.03443638, -0.0039050533, -0.021559356, -0.011365603, -0.0351022, 0.021665888, 0.008356081, -0.0006728976, 0.001894267, -0.035714757, 0.008429322, -0.009048537, 0.0030577932, -0.019082494, -0.022171913, -0.023037484, 0.0015921497, -0.0084825875, -0.01732472, 0.0067481184, -0.026366599, -0.010713096, 0.029509285, -0.0026266726, -0.008555829, 0.009767626, 0.015953124, -0.012703907, 0.01261735, 0.019149076, 0.03289167, -0.018842798, -0.017564416, -0.020054596, -0.006142219, 0.008442638, 0.016312668, -0.0008210433, 0.003951661, 0.0027914639, -0.0038617747, 0.017444568, 0.0030161792, 0.011718488, 0.0068779537, -0.004674079, -0.03755243, -0.03046807, 0.016379252, -0.024622142, 0.014568212, 0.013502895, -0.024449028, 0.02492842, -0.0329982, -0.010999399, 0.032625336, -0.010966108, 0.018962646, 0.0031876287, 0.0016187828, 0.031506754, -0.03310473, -0.0032858376, -0.020853583, -0.00020994239, -0.009128436, 0.0015646846, 0.021226445, -0.033024833, -0.0012159597, 0.0021872292, -0.0036387239, -0.012484185, -0.0018526531, -0.006255409, 0.011951527, 0.026939208, -0.010033956, -0.027059056, -0.0078167645, 0.026513081, -0.030334907, 0.010326918, -0.027511815, -0.017830746, -0.0032675276, 0.026872626, -0.0034389768, 0.0043711294, 0.001312504, -0.01660563, -0.0026216789, 0.018842798, -0.0085025625, 0.0028347424, -0.011392236, 0.038431317, 0.0005859244, 0.0050935475, 0.024249282, -1.39926915E-05, 0.007017777, 0.020800317, -0.014182035, 0.02527465, -0.014781276, 0.00020838185, -0.010080564, -0.016898593, -0.01736467, -0.0060956115, -0.021079963, -0.0055230036, 0.012131299, 0.0118782865, 0.021972166, -0.015220718, -0.025887206, -0.010100538, -0.0033141351, -0.019668417, -0.014927757, -0.026339967, -0.020427456, -0.036513746, -0.0056062317, -0.0059757633, 0.014834542, 0.009514614, 0.017151605, -0.019615153, -0.015660163, 0.026566347, -0.040934812, 0.00896198, 0.026339967, 0.012936945, -0.009874159, 0.0048405346, 0.011259071, -0.012344362, 0.010879551, -0.0038584457, -0.016938543, -0.038005188, 0.007257473, -0.0016620612, 0.018736266, -0.0063819154, 0.010872893, -0.0013924028, 0.030574603, -0.002666622, -0.009148411, -0.018669683, 0.0025883878, -0.009041879, 0.015646845, -0.00866236, -0.00032833408, 0.013329781, 0.0057460545, 0.007224182, -0.03227911, -0.04117451, -0.011665223, -0.0037951923, 0.0016062985, -0.022211863, -0.015553631, -0.013742591, 0.0028414007, -0.0042745853, -0.027724879, 0.005356548, 0.013316465, 0.018283505, 0.008169651, 0.031240426, -0.01924229, -0.03747253, 0.0112124635, -0.011805045, -0.008895398, -0.025754042, 0.01996138, 0.052067377, 0.00039803743, -0.012217856, -0.0038784202, 0.002210533, -0.045142815, -0.011085956, -0.012430919, 0.018789532, 0.026539713, 0.0084559545, -0.007423929, 0.012790464, 0.007310739, 0.012537451, 0.0025517675, -0.042239826, 0.0062487507, -0.011765096, 0.0039649773, -0.01872295, -0.01182502, -0.023876421, 0.022531457, -0.010200412, 0.018709632, 0.018443303, -0.009288234, 0.0060623204, 0.007084359, 0.017630998, 0.023943003, 0.024422396, 0.026992474, -0.04474332, -0.015886541, -0.012038084, -0.007197549, 0.00286304, 0.0047473195, -0.015753377, -0.0021306344, 0.019495305, -0.0033624072, -0.027724879, -0.039230306, -0.007197549, -0.0067281434, -0.0027731538, 0.016978493, 0.037685595, -0.020081228, -0.031852983, -0.014248617, 0.026699511, -0.01600639, 0.009261601, 0.0077834735, -0.025527662, -0.023144016, 0.0018426657, 0.023769889, 0.01853652, -0.014341832, -0.018789532, 0.008542512, -0.043598104, 0.02764498, -0.005220054, -0.015313935, -0.036167517, -0.015460415, -0.011738463, 0.028417336, 0.0023303812, -0.0073440303, -0.03009521, 0.016033024, 0.0020690456, -0.013702642, -0.04466342, -0.0020906848, -0.0058925357, 0.012943603, 0.01800386, 0.19687061, -0.012497501, 0.008016512, 0.04117451, 0.0019974697, 0.027272118, 0.00625208, -0.01773753, -0.025887206, -0.0039716354, 0.012384312, 0.0025417802, 0.013702642, -0.00809641, 0.0175511, -0.009701044, -0.030388173, 0.005449763, 0.011032691, -0.014488313, -0.0044044205, -0.025820624, 0.012663958, -0.0053665354, -0.0005434782, 0.020893533, -0.01905586, 0.0028430652, 0.007104334, 0.00045650505, -6.835091E-05, -0.0048338766, -0.010826286, -0.011565349, -0.016818695, -0.009381449, 0.035421796, -0.01009388, -0.0033474262, 0.032225844, -0.008615753, 0.0010753045, 0.007989879, -0.0012034755, 0.0036720152, 0.015420466, -0.019109126, 0.01773753, -0.0036320656, -0.0032708566, -0.039123774, -0.035501692, 0.024848523, 0.019948063, 0.008003195, -0.010313601, 0.034329847, -0.021839002, 0.023889737, -0.0077768154, -0.015793327, 0.0208669, -0.022211863, 0.050602566, -0.000105283296, 0.011725147, 0.016392568, -0.01781743, 0.008748917, 0.02350356, 0.008103069, 0.0020890203, 0.004134762, 0.021213127, -0.025527662, -0.041254405, 0.025594244, -0.023876421, 0.020587254, 0.019881481, -0.013649376, 0.015526998, -0.007956588, 0.017271454, -0.011425527, -0.027591715, 0.021439508, 0.001792729, -0.014568212, 0.013862439, 0.011438843, 0.007024435, 0.0021422862, -0.0112058045, 0.020320924, 0.018256873, -0.025114851, 0.018390037, -0.020280976, 0.005140155, -0.0024918434, -0.002380318, 0.017484518, -0.0031759767, -0.014861174, 0.0032708566, 0.010812969, 0.0043178634, 0.020054596, -0.016246086, -0.005269991, -0.05020307, 0.014701377, -0.030840931, -0.009740993, 0.011698514, 0.0014456686, -0.0055596237, -0.01133897, -0.013476262, 0.00964112, -0.0045542307, 0.012364337, -0.017231505, -0.009241627, -0.006575004, -0.0014356814, 0.034516275, -0.016286036, -0.012757173, 0.0036287366, 0.0048904717, -0.0014323522, -0.013276515, -0.0053365733, 0.016525732, 0.018856114, -0.020014646, -0.012397628, -0.027698247, 0.0005126839, -0.0066315993, 0.0075038276, 0.009274918, 0.03337106, -0.031346958, 0.018376721, -0.023982953, 0.008276182, -0.0014290231, -0.018216923, 0.0019791594, -0.009328184, -0.014355148, 0.02873693, 0.007357347, -0.024262598, -0.031506754, -0.01020707, 0.018589783, -0.032412276, 0.026619613, 0.011139222, -0.017231505, -0.008296157, 0.0031510084, -0.16970502, 0.027618347, 0.021226445, -0.014501629, 0.03092083, -0.007017777, 0.01295692, -0.0047406615, -0.02391637, 0.011085956, 0.016978493, 0.00542313, -0.0175511, -0.009328184, -0.0006196317, 0.0056262063, -0.007364005, 0.031533387, 0.01359611, 0.005592915, 0.0055463077, -0.03289167, -0.0056262063, 0.020320924, 0.027724879, -0.028310804, 0.0017677606, 0.024062851, -0.009361475, -0.028230904, -0.003588787, -0.00323923, 0.02037419, 0.013689325, 0.037605695, -0.014648111, 0.0013774218, -0.0016653903, -0.01133897, 0.022837736, 0.013189958, 0.010812969, 0.0084892465, -0.014781276, 0.011538716, 0.016392568, -0.02037419, 0.007144283, 0.0055862567, -0.022038748, 0.020400824, -0.015220718, -0.02154604, -0.0014190357, 0.0438378, 0.009101803, 0.010899526, -0.0050036614, 0.019228974, 0.016325986, -0.0012683932, -0.0046308003, 0.00094796583, 0.0073773214, -0.010127171, -0.013769224, 0.01291697, 0.010473399, -0.061681863, 0.0010037285, 0.008509221, 0.04274585, 0.017391302, -0.011372261, 0.027937943, 0.013556161, -0.006355283, -0.0043411674, 0.012757173, -0.019162392, -0.005619548, 0.038591113, 0.0006138058, -0.009421399, 0.015633529, 0.04074838, -0.03329116, -0.0115254, -0.0070710424, -0.03816499, -0.012124641, -0.020494038, -0.027298752, -0.00636527, -0.010979425, 0.009068512, 0.018243557, -0.021439508, 0.009807576, -0.0040015974, 0.0027248815, 0.0045209397, -0.023490243, 0.027964575, 0.031080628, -0.004823889, 0.0046541044, 0.03163992, 0.023596775, 0.012790464, -0.024435712, 0.041440837, 0.001446501, 0.017884012, 0.017764164, 0.007264131, 0.007890006, -0.026113587, 0.023490243, -0.007577068, 0.022012116, -0.012803781, -0.027352018, 0.023583459, -0.029376121, 0.00019943486, -0.08234902, -0.01348292, 0.018856114, 0.0013749249, 0.0037652303, 0.00527332, 0.0017161594, 0.03001531, 0.0010911179, 0.0084892465, 0.0036487114, -0.020347558, -0.004164724, -0.00025759035, 0.028763562, -0.0009163392, 0.009934083, -0.009727677, -0.030867565, 0.012370995, 0.0008139689, -0.010160462, -0.018989278, 0.00263666, -0.002413609, -0.00035892034, -0.018989278, 0.0060922825, 0.01163859, 0.0308143, 0.013383047, 0.015087554, 0.0164991, -0.012910312, -0.0068113715, 0.016885277, -0.029402753, 0.008049803, 0.02177242, -0.03563486, 0.008842132, -0.0034289896, -0.0012084692, -0.027019106, -0.03163992, 0.009274918, -0.012144616, 0.0076569673, 0.026646245, 0.004880484, -0.0024652104, 0.00065125833, -0.015473732, -0.012191223, 0.033877086, -0.016365934, 0.020800317, -0.0032675276, -0.006355283, 0.011698514, -0.00990745, 0.005702776, 0.010313601, 0.021892268, -0.013729275, 0.018616417, 0.0049137753, 0.0034223313, 0.015513681, 0.0014298554, -0.01950862, 0.010899526, -0.017497834, 0.020081228, -0.010053931, -0.011132564, -0.029882146, -0.024169384, 0.010140488, -0.013982288, -0.02836407, -0.010919501, 0.02346361, -0.028417336, 0.021372925, 0.030148476, 0.028071107, -0.014834542, 0.0014473333, -0.020467406, 0.0145815285, 0.038671013, 0.019801583, -0.018576467, -0.0076902583, 0.008309474, 0.00288135, -0.0024002928, -0.013576135, 0.014474996, -0.020520672, -0.002866369, -0.06711498, 0.02414275, 0.012064717, -0.011405552, 0.004887142, 0.0126573, 0.009068512, -0.013023502, -0.007743524, -0.019495305, -0.014474996, 0.008036486, 0.010480057, -0.0010877887, -0.0021372926, -0.036859974, 0.026766093, -0.02663293, 0.02990878, 0.0042812433, -0.00062296086, 0.005676143, 0.0017660961, 0.0022571408, -0.0138757555, -0.015793327, -0.017484518, 0.02677941, 0.006222118, -0.021146545, 0.020547304, -0.020773685, 0.026313333, 0.039336834, -0.03592782, -0.04572874, 0.012697249, 0.0066149537, -0.0198149, -0.020787, -0.014435047, -0.01751115, 0.0024835207, -0.0038551164, -0.03020174, -0.011245755, 0.016485782, 0.029748982, 0.0460217, 0.016805379, 0.005699447, 0.022278445, 0.009481323, -0.028710296, 0.0071575996, -0.027724879, 0.02014781, -0.010253677, -0.0038551164, -0.026806043, 0.033797186, 0.0061455485, 0.002108995, -0.007224182, -0.0060922825, 0.0060057254, -0.017377986, 0.017271454, -0.0038018506, 0.00079857174, -0.005992409, -0.00045109523, 0.012850388, 0.006391903, -0.0020141152, 0.022771154, 0.0025301282, 0.007943271, -0.031053996, 0.025221383, 0.011938211, 0.0064385105, -0.028630398, -0.0037951923, 0.011099273, -0.012637325, -0.031879615, -0.0062820422, -0.015114187, 0.012251147, -0.014315199, -0.0038750912, -0.014115452, 0.0038251544, 0.017111657, 0.030041944, -0.014701377, -0.015873225, -0.019641785, 0.015180769, -0.016978493, 0.00843598, -0.002064052, -0.03321126, -0.01095945, 0.0034589516, 0.004188028, -0.015087554, -0.017617682, 0.010872893, 0.025527662, -0.0023187294, -0.0230508, -0.009115119, 0.0033807175, 0.0057826745, -0.022171913, -0.036540378, -0.020347558, 0.021519406, 0.017351354, 0.015660163, 0.004034889, -0.005443105, 0.013403022, -0.007224182, -0.0052766493, -0.0028830145, 0.00045442436, 0.0031743122, 0.013489579, 6.2225863E-06, -0.0015405485, -0.006824688, -0.00097043737, -0.0041414206, -0.024209332, 0.031959515, 0.009354816, 0.052626666, 0.020320924, -0.02982888, 0.0093415, -0.0023270522, 0.017191555, 0.018137025, -0.014421731, -0.0050535984, -0.03920367, 0.016472466, -0.007983221, -0.010606564, 0.0014714693, -0.014514946, -0.018123709, 0.004853851, 0.010653172, -0.035794657, -0.024688724, 0.041946862, -0.013889072, 0.028657032, -0.020880217, -0.015220718, -0.009601171, -0.00020255591, 0.0069778273, -0.020946799, -0.0118782865, -0.0018127037, -0.013083426, 0.00064626464, -0.013795857, 0.0084559545, 0.013662692, -0.015620213, 0.021119913, -0.02135961, 0.038724277, -0.0069378777, 0.01950862, -0.019988013, -0.018962646, 0.0084492965, -0.023397028, 0.011112589, -0.019921431, -0.03321126]
+ },
+ {
+ "Id": 84,
+ "Type": "Climbing",
+ "Brand": "Gravitator",
+ "Name": "Gravity Harness",
+ "Description": "Reach new heights with the Gravitator Gravity harness. With its innovative design and sturdy construction, this harness ensures your safety while climbing. The sleek black and red color scheme adds a touch of style. It offers maximum comfort and freedom of movement, giving you the confidence to conquer any climbing challenge.",
+ "Price": 89.99,
+ "Embedding": [0.011001986, 0.0066230185, 0.0037957875, -0.04346228, 0.019125586, 0.017474946, -0.028483754, -0.038251173, 0.009910654, -0.021171832, -0.0054975827, -0.0014647716, 0.006687816, -0.0023224899, 0.0035741108, 0.0024913053, 0.036013942, -0.0054464266, -0.024541318, -0.008348687, 0.021021774, 0.0137166735, 0.0025237042, -0.018839112, -0.0029022598, -0.0034393996, 0.0396699, -0.0205716, 0.04619061, -0.008512386, 0.026478432, -0.0022849755, -0.006663943, -0.022358656, -0.038469438, 0.010838287, -0.0041845744, 0.0018177491, -0.012400255, 0.009392272, 0.02016235, -0.008062212, -0.007407413, 0.013068696, -0.018880036, 0.00580793, -0.009003486, -0.03590481, -0.0077689164, -0.008123599, -0.016874714, 0.01667009, -0.01849807, 0.0019200614, 0.0041368287, -0.016601881, -0.0021042237, 0.030202601, 0.036204923, -0.02048975, -0.02182663, -0.014623843, -0.005780647, 0.0060398383, 0.0072641755, -0.013164187, -0.018811828, -0.023654612, -0.008730653, 0.016410898, 0.029247686, 0.023709178, 0.02630109, 0.0014673293, 0.0137303155, 0.00680377, 0.0075506503, 0.010735974, -0.009726493, -0.0001444096, 0.024855075, -0.0060739424, 0.011956901, 0.025373459, 0.01501945, 0.005756774, 0.003915152, 0.025496233, -0.012973204, -0.027460631, 0.008676086, -0.0044267136, 0.017202113, 0.018620845, -0.023095304, 0.002513473, 0.0046245176, -0.000965999, -0.004256193, -0.024786867, 0.00804175, -0.006585504, 0.00680377, -0.0035638795, -0.015537833, -0.02853832, 0.008157703, -0.017297605, 0.008232732, -0.018307086, -0.017120264, 0.014773901, 0.014664768, -0.0073869503, 0.016138066, 0.0024827793, 0.029575085, 0.017938763, 0.010585916, -0.030202601, 0.012536671, -0.012236555, 0.0310211, 0.007291459, -0.0024759586, 0.015360491, -0.041306898, -0.002472548, 0.024350336, -0.00713458, 0.0032501218, 0.017488588, 0.012141064, 0.0048461943, 0.0009233688, 0.042098116, 0.0046824943, -0.0047813966, -0.011963722, -0.0024009293, 0.0025612188, -0.0016242083, -0.0071550426, -0.0056646927, -0.009835626, 0.012625342, 0.0053065997, 0.011343027, 0.008178166, -0.0026908144, 0.01642454, -0.007107297, 0.029493235, 0.014842109, 0.012563954, 0.0056305886, -0.0022798597, 0.029738786, -0.017365813, -0.008328224, -0.0086419815, -0.00059639564, 0.01319147, -0.015360491, 0.016028931, 0.026492074, -0.010258516, -0.019821309, -0.0022679234, -0.0029977513, 0.012584417, 0.04515384, -0.007414234, 0.0071209385, 0.020871716, 0.027569763, -0.00022615289, 0.010660945, -0.011008807, 0.017829629, -0.0070527303, -0.0064081624, 0.0137166735, 0.01418731, -0.020926282, -0.01825252, 0.01652003, 0.005572612, 0.010217592, -0.039015103, -0.0028476932, 0.00888071, -0.007639321, 0.014828468, -0.6521797, -0.009719672, 0.0043107597, -0.030911967, 0.028265487, -0.0020257842, 0.02014871, 0.03366758, 0.009112619, 0.026601207, 0.0043312223, 0.029302252, -2.9308221E-05, -0.02679219, -0.004743882, -0.013825807, -0.0021519694, -0.008082674, 0.0054566576, 0.005367987, -0.0396699, 0.0031154105, -0.027774388, -0.005661282, 0.0006867715, 0.007837125, 0.001405942, -0.008341866, -0.019903159, 0.029656935, 0.00032931782, 0.039451636, 0.0035570587, 0.012488926, 0.047745757, -0.042834762, -0.012727655, 0.04313488, -0.0005853118, 0.04174343, -0.024705019, -0.006114867, 0.020557959, -0.0071550426, 0.0030489075, 0.00086453924, 0.020380616, -0.019425701, 0.0061523817, -0.027637972, 0.029465953, -0.0066571226, 0.025673576, 0.026751265, 0.0028886183, -0.015060375, 0.044417195, 0.012727655, -0.008976202, 0.023654612, 0.007782558, 0.0024520855, -0.019848593, -0.032139715, -0.027201438, 0.024705019, -0.01815703, -0.00062708935, -0.024091143, -0.0051667728, 0.027924446, 0.007441517, -0.0055453284, 0.009733314, 0.014937601, 0.037132557, 0.0072641755, 0.0012942511, 0.002712982, 0.022358656, 0.011022449, 0.0034615672, -0.001384627, -0.008171345, 0.011165686, 0.001908125, -0.018675411, -0.0024009293, 0.035059027, -0.0027146873, 0.018961886, 0.030884683, -0.030720983, -0.0069981636, -0.011397594, -0.00059128006, -0.006486602, 0.000260257, 0.02762433, -0.005651051, -0.01476026, -0.019562118, -0.032985497, -0.021267323, 0.004655211, 0.019057378, 0.0068617472, 0.010456321, 0.02398201, -0.0320033, -0.0063263127, -1.5799795E-05, -0.011629502, -0.0015517371, -0.0040924936, -0.025782708, 0.01776142, -0.0016122719, 0.010360829, -0.04117048, 0.042016264, 0.011158865, 0.007598396, 0.015360491, 0.0039356146, 0.0033660757, 0.0027726642, -0.025237042, -0.042507365, 0.0010768373, -0.0008560132, 0.015715174, 0.003343908, 0.0137166735, 0.01841622, 0.04157973, 0.00039219728, -0.0017307836, 0.0252234, -0.00896256, -0.018566279, -0.013450662, 0.014937601, 0.011520369, -0.02380467, -0.037105273, -0.043271296, -0.014855751, 0.0086419815, -0.011936439, -0.02014871, -0.010763258, -0.0020172582, -0.0022508714, 0.0015150751, -0.026833115, 0.0042868867, -0.03516816, -0.003949256, -0.012052393, 0.03402226, -0.0017563617, -0.020285126, -0.008764757, -0.022822471, -0.006404752, -0.012100139, 0.015988007, -0.011922797, -0.0262056, -0.009480943, -0.011963722, -0.017243039, 0.0202442, 0.0144055765, -0.007843945, -0.011049732, -0.010483604, -0.0068515157, 0.007107297, 0.0028511037, -0.011090657, -0.033394746, -0.00090120116, 0.015756099, 0.006561631, 0.005303189, 0.014705692, -0.013375632, 0.003260353, -0.013839448, 0.01890732, -0.016438182, 0.016233556, -0.017815989, -0.021935765, -0.0160835, 0.0075847544, 0.0049144025, 0.016765581, 0.016151708, -0.0207353, 0.029193118, -0.0052042874, 0.016547315, 0.014310085, -0.007352846, -0.008232732, 0.0059170634, -0.01376442, -0.0045733615, -0.024268486, 0.008109958, -0.025919124, 0.024705019, 0.016779223, -0.0071823257, 0.024104785, -0.022945246, -0.0068515157, 0.025932766, 0.008887531, 0.013682569, -0.019712176, -0.020517033, 0.015374133, -0.0021928942, 0.03434966, 0.01691564, -0.014255518, 0.0096446425, 0.008021287, 0.024691377, 0.011431698, 0.021431023, 0.01368939, -0.0066434806, -0.016792864, 0.04842784, -0.0064831916, 0.023190796, 0.0030045721, 0.006087584, -0.010374471, 0.017297605, 0.019371135, 0.023777386, -0.00738013, -0.01111112, 0.00036214304, -0.015074017, 0.018525353, -0.007448338, 0.0140508935, 0.01600165, 0.0046518007, 0.028292771, -1.4880583E-05, -0.006438856, 0.022044897, 0.009849267, 0.01709298, 0.02430941, 0.00244697, 0.025673576, -0.011145224, -0.0034564517, -0.004041337, -0.010749616, -0.0027590226, 0.023886519, -0.02752884, 0.017543154, -0.0030284452, 0.014037252, -0.008437357, -0.0020854664, -0.010483604, -0.0083145825, 0.0074960836, 0.011261177, -0.03956077, 0.008887531, 0.021021774, -0.0043653264, -0.009583255, -0.031921446, 0.020366976, -0.0076938877, 0.047336508, 0.00044974795, 0.0050985646, -0.01153401, -0.014623843, -0.0023992243, -0.014091819, 0.0076938877, -0.01792512, 0.03557741, -0.034786195, -0.0020564778, -0.008328224, -0.020708017, -0.02156744, 0.03492261, -0.010974703, -0.008096316, -0.02960237, 0.024459468, -0.009399093, 0.001066606, -0.0045051533, 0.0079735415, -0.010851928, -0.008389612, -0.009419556, 0.002148559, -0.02514155, 0.03598666, 0.0027351498, -0.013246037, -0.0078030205, 0.0020138477, -0.0144055765, 0.069081284, 0.014364651, -0.009364989, 0.022904322, 0.0077962, -0.027992655, -0.0010342072, -0.017952405, -0.011411236, 0.008034929, 0.020789865, -0.020053217, 0.004361916, -0.024855075, 0.0011228778, 0.019193795, 0.011895514, -0.0052452125, -0.0050985646, 0.009085335, 0.018307086, 0.004239141, 0.013546153, 0.007871229, 0.0070322677, 0.025209758, 0.0075301877, 0.028893003, -0.0009796406, -0.026096465, 0.009235393, -0.012318405, 0.016492749, -0.002895439, -0.03325833, 0.0054873517, -0.02265877, -0.005576022, 0.0022269986, 0.0015594105, 0.014228235, 0.018470787, 0.0060773524, -0.009283139, 0.014910317, 0.0027811902, 0.0052656746, 0.02421392, -0.029193118, -0.005095154, 0.032385264, 0.008014466, -0.012632162, -0.018798186, -0.0019712176, 0.016288124, -0.027024098, -0.008491924, -0.013286961, -0.042179964, -0.010190308, -0.024200277, 0.04324401, 0.0055964845, -0.025482591, -0.013894015, -0.024814151, 0.009678747, -0.020285126, -0.007823483, -0.034868043, -0.017693212, -0.0022048308, 0.0077348123, 0.01758408, -0.00580793, 0.011875051, 0.0018569689, 0.0147466175, 0.017065696, -0.00055461813, -0.00078780495, -0.012563954, 0.0028374621, 0.0007707529, 0.009085335, 0.021267323, -0.0045256154, -0.013068696, -0.007639321, 0.031730466, 0.014037252, 0.024527676, 0.010981523, 0.0001253326, 0.006462729, 0.01957576, 0.004031106, 0.01095424, 0.0021042237, -0.0021843682, -0.0160835, -0.006370648, -0.000605348, 0.03956077, 0.009508226, 0.018538995, 0.02672398, -0.01476026, 0.010251696, 0.02014871, -0.005698797, 0.018729977, -0.023927445, -0.004378968, -0.002455496, 0.03879684, 0.016615523, 0.010565453, -0.03334018, -0.02306802, -0.035440993, 0.03451336, 0.042698346, 0.020257842, 0.011520369, -0.0004953622, -0.0037378105, -0.029684218, -0.0020854664, -0.008157703, 0.0037514523, 0.011963722, -0.017638646, -0.010442679, -0.0021690214, -0.033749428, 0.012898175, 0.010060713, -0.021035416, -0.019534836, 0.009746955, 0.026573922, -0.014678409, -0.020094141, -0.016697373, -0.016151708, 0.013546153, -0.037896488, 0.010074355, -0.007441517, 0.0070800134, -0.035877526, -0.023859236, -0.0012609995, -0.019302927, -0.014855751, 0.0010955946, 0.03841487, 0.02289068, 0.011943259, 0.00058659073, 0.04155245, 0.0054225535, -0.010824645, -0.005327062, -0.018116103, -0.0053065997, -0.010906495, 0.04569951, -0.004904171, 0.008430536, -0.0020291945, -0.0004595529, -0.013402916, -0.0017580669, -0.0047165984, -0.011711352, -0.03451336, -0.060350634, 0.01393494, -0.0056476407, 0.007107297, -0.0057090283, -0.03304006, -0.016383614, 0.03385856, -0.004679084, -0.0003864422, 0.0043107597, 0.022604205, -0.026601207, 0.008423716, -0.010613199, 0.010756437, -0.0015935146, -0.006046659, -0.023354495, 0.0004957885, 0.012516209, -0.0077689164, -0.0010367649, 0.008335045, -0.029220402, -0.026846757, -0.008955739, 0.011827306, -0.016383614, 0.017720496, -0.028292771, -0.0044915113, -0.019712176, -0.0086556235, -0.026355658, 0.015292283, 0.013900836, -0.00978788, 0.03284908, -0.0050064833, 0.016315406, 0.007912153, 0.0102858, 0.019684892, -0.0022542817, 0.007871229, 0.0056203576, 0.010940599, -0.019616684, -0.023695536, -0.008021287, -0.00013940055, 0.00481209, 0.004494922, -0.027283289, -0.032985497, -0.0017648877, 0.0011100888, -0.00837597, -0.032794513, 0.005746543, -0.0013309129, 0.004058389, -0.01733853, -0.027815312, 0.0071141175, 0.002438444, 0.004464228, 0.015278642, 0.008785219, 0.0019337031, -0.019043736, 0.030393584, -0.028265487, 0.0017870554, 0.023941087, -0.014896676, -0.022181313, -0.0059034214, -0.0010248285, -0.0053441143, 0.007059551, 0.020503392, 0.013846269, -0.01924836, 0.015469625, 0.0005226455, 0.004471049, -0.01402361, 0.008246374, 0.026519356, -0.024909643, -0.00406521, -0.0077348123, -0.009235393, 0.013648465, -7.2737676E-06, -0.01128164, 0.0021639059, 0.01792512, -0.009214931, 0.012884533, 0.016206274, -0.011663606, -0.011547652, 0.004849605, 0.0055794325, -0.023299929, -0.013703031, 0.017106622, -0.015797025, -0.029165836, 6.0961098E-05, -0.002794832, 0.008055391, -0.017215755, -0.035059027, -0.004621107, 0.026655773, -0.029083986, 0.008846606, 0.029820634, 0.031839598, -0.0063501853, 0.020380616, 0.02081715, -0.0071209385, 0.010190308, -4.7525946E-06, -0.010483604, -0.03268538, -0.0014707398, 0.0042425515, 0.010544991, 0.0039356146, -0.0038469438, 6.410507E-05, 0.01717483, -0.006902672, -0.008730653, -0.002678878, 0.008444178, -0.0070527303, 0.037678223, -0.035304576, 0.0041607018, -0.014146386, 0.0083009405, 1.6306029E-05, -0.018729977, -0.027569763, -0.021144548, -0.0140508935, 0.0066605327, -0.04692726, -0.004037927, -0.014119102, -0.016274482, 0.030639134, 0.00023915508, -0.009494585, 0.005589664, 0.023299929, 0.017625004, 0.0074960836, -0.00622059, -0.010974703, 0.017911479, 0.0036116254, -0.016465465, -0.012448001, 0.021021774, 0.047309224, 0.0038878687, -0.0310211, -0.010047071, -0.01626084, -0.033394746, 0.020107783, -0.008989844, 0.010585916, 0.021635648, 0.019807668, 0.0037480418, 0.029738786, 0.02995705, 0.00630585, 0.020530675, -0.01451471, 0.009330885, -0.01111794, -0.0052963686, -0.022426864, -0.022754263, -0.023040738, 0.031048384, 0.017488588, 0.008369149, 0.019275643, 0.012843608, 0.0103403665, -0.0014127628, 0.0079598995, 0.040351983, 0.018566279, 0.0123729715, -0.016356332, -0.026969532, -0.015565116, 0.015210434, -0.0028152943, 0.019221077, 0.002620901, 0.0050985646, 0.0064661396, -0.010074355, -0.021103624, -0.017788704, -0.004020875, -0.009549151, -0.010804183, -0.0018569689, 0.015442342, 0.01609714, -0.037732787, -0.011465802, 0.025155192, -0.014446502, 0.0021741372, 0.014105461, -0.02804722, 0.0034717985, -0.016438182, 0.024254844, -0.0048632463, -0.010047071, -0.010995165, -0.023027096, -0.029220402, 0.014896676, 0.0032944572, -0.004177754, -0.038960535, 0.0007357962, -0.011458982, -0.009337706, -0.01898917, -0.016219916, -0.035222728, 0.0074346964, -0.011602218, 0.003874227, -0.008935277, -0.008901173, 0.01609714, 0.014528351, 0.034731627, 0.20647994, 0.0039117415, 0.009828805, 0.039042387, -0.012659446, 0.017106622, 0.0060398383, -0.0103267245, 0.00027112768, -0.003217723, 0.01393494, 0.0046074656, -0.015333208, -0.013634823, -0.0020922872, -0.0074551585, -0.04329858, -0.0020377208, -0.031048384, -0.0003934762, 0.000609611, 0.008348687, -0.003217723, -0.024022935, 0.00083214033, 0.0021178653, 0.0026157852, -0.028074505, -0.01957576, 0.023163512, -0.0016693963, -0.03093925, 0.021840272, -0.022849755, -0.010019788, -0.018116103, 0.030802833, -0.0043209908, -0.013491587, 0.022263164, 0.0038674062, 3.903322E-05, -0.00054012384, -0.022549639, 0.00018490823, 0.0053065997, -0.0013027771, 0.01890732, -0.00030224767, 0.00047873647, -0.024814151, -0.016642807, 0.030339018, 0.023681894, -0.018266162, 0.0059511675, 0.019562118, -0.03702342, 0.011663606, 0.019903159, -0.024514034, 0.010776899, -0.012270659, 0.029575085, -0.007223251, 7.1005825E-06, -0.0014988757, 0.0061421506, 0.0027897162, 0.0072027883, -0.005565791, 0.0027351498, 0.0037753251, 0.01501945, -0.017283963, -0.018211596, 0.013818986, -0.005347525, 0.029820634, 0.0101221, 0.0075029046, -0.002760728, 0.00871019, -0.020626167, -0.017065696, -0.0074619795, -6.453137E-05, 0.014501068, -0.009446839, -0.004440355, 0.004280066, 0.0007123496, 0.0049996627, -0.005739722, -0.025823632, 0.0524112, -0.026314732, 0.025468951, -0.017638646, -4.068514E-05, -0.0013590489, 0.010272158, 0.019712176, 0.008328224, -0.023340853, 0.020380616, -0.0012337163, 0.0005158247, -0.007571113, -0.026000975, -0.0066673537, -0.026601207, 0.020025933, -0.019371135, -0.018197954, 0.006677585, -0.005998913, -0.0054123225, -0.0023446577, -0.023845594, 0.01609714, -0.017952405, 0.011834127, 0.012250197, 0.007352846, -0.014323726, -0.003990181, 0.0033251508, 0.008034929, -0.026014617, -0.019589402, -0.0014477195, 0.018607203, -0.042179964, 0.000533303, -8.131699E-05, -0.0032961622, -0.034977175, -0.012407076, -0.0007349436, -0.00049621484, 0.0031819136, 0.019603044, 0.013498407, 0.01327332, -0.01567425, -0.009337706, -0.0019558708, 7.966507E-05, -0.002769254, 0.0011612449, -0.0032705842, -0.0052383915, 0.003942435, 0.00356729, -0.012393434, -0.026969532, -0.03159405, 0.015469625, -0.0044505866, -0.010163025, 0.015646966, 0.02239958, -0.03732354, -0.015701532, -0.022440504, -0.17515871, 0.010238054, 0.022440504, -0.043571413, 0.00062069483, -0.009098977, 0.029847918, 0.021117266, -0.026805831, -0.0019183563, 0.014228235, -0.009003486, -0.020871716, -0.036177643, -0.005651051, 0.004297118, 0.00788487, 0.0026430686, 0.029138552, -0.0027078665, 0.020421542, -0.029465953, -0.0009804931, 0.015374133, 0.0066059665, -0.018020613, -0.018716335, -0.0037275793, 0.011213432, -0.0074278754, -0.019057378, -0.012666266, 0.02297253, -0.00887389, -0.0011893809, -0.0037787354, -0.0036320877, 0.012066035, -0.032467112, 0.015524192, -0.003690065, 0.019452985, 0.0102858, -0.0061830753, 0.032603532, 0.027815312, 0.0036354982, -0.004668853, 0.020476108, -0.01567425, 0.02530525, -0.028429188, -0.010640482, 0.008989844, 0.021171832, -0.0023668252, 0.017461305, 0.0011706236, 0.021362815, -0.004795038, 0.01111112, -0.010797362, -0.0038981, -0.026164673, -0.0137303155, -0.008560132, 0.0043755574, -0.004082262, -0.019111944, 0.023340853, -0.027351497, 0.022249522, -0.018538995, -0.018729977, 0.024677735, 0.023436345, -0.0074551585, -0.011609039, 0.010858749, -0.010892853, -0.00096685154, 0.011336206, -0.009549151, -0.008123599, -0.014855751, 0.010422217, -0.0071891467, 0.00020569042, -0.018770903, -0.017938763, 0.037869204, -0.024077503, -0.016942922, -0.050583217, -0.014037252, -0.0034393996, 0.029411385, -0.036614172, -0.0017265206, -0.026669415, 0.014664768, 0.0020121424, -0.012884533, 0.022249522, 0.02289068, 0.004702957, 0.017461305, -0.004447176, 0.026041899, -0.0042766556, -0.00025322303, 0.0020598883, -0.0052452125, 0.024227561, 0.003217723, 0.021581082, 0.00564082, -0.021512873, 0.009269497, -0.010858749, 0.0076870667, -0.022604205, -0.036614172, 0.0029159016, -0.015797025, 0.010074355, -0.09854724, -0.007066372, 0.027187798, 0.00514631, -0.0060568904, -0.0021008132, 0.005627178, -0.007250534, 0.0032160177, 0.011431698, -0.0023122588, -0.009801522, 0.017079338, 0.025155192, 0.030748267, -0.0067116893, 0.01774778, -0.026355658, -0.006653712, 0.013696211, 0.008403253, 0.0049928417, -0.024582243, -0.016779223, 0.007332384, -0.0022440506, -0.02447311, 0.0010512592, 0.023449987, -0.0048155007, -0.012168347, 0.0075370087, 0.012004647, -0.02223588, -0.022495072, -0.012536671, -0.041006785, 0.0008960855, 0.024841435, -0.025687216, -0.0046108756, -0.0006317787, 0.017938763, -0.0012541787, -0.01518315, -0.019712176, -0.0037139377, 0.006646891, -0.011875051, -0.018866394, -0.027283289, -0.012134243, -0.0065172957, -0.010128921, 0.0046893153, -0.014200952, -0.0051497207, 0.0075029046, 0.02514155, 0.004198216, -0.018348012, 0.009883371, 0.0021690214, 0.0110156275, 0.010456321, -0.008205449, -0.015878875, 0.010851928, 0.009433197, 0.015496908, -0.01136349, 0.03053, -0.019684892, 0.024991492, -0.012352509, 0.01128164, -0.0411432, -0.0008193513, 0.009515047, -0.010463141, -0.019971367, -0.019998651, 0.044335343, -0.026355658, 0.009351348, -0.0066844057, 0.0026993405, -0.02381831, 0.03227613, -0.0123797925, 0.00072172825, 0.010776899, 0.009733314, -0.0013172713, -0.004389199, 0.000120323566, -0.0049485066, -0.009467301, -0.022454146, -0.013818986, -0.05050137, 0.003782146, -0.06842649, 0.025482591, 0.012904996, -0.011588577, -0.012332046, -0.01501945, 0.011083836, -0.0010325019, -0.003949256, -0.02314987, -0.008335045, -0.030748267, 0.0013368812, -0.01957576, 0.0018024023, -0.025277967, 0.024868717, 0.013784882, 0.0079667205, 0.001281462, -0.008512386, -0.008703369, -0.0041265977, 0.024104785, -0.01949391, 0.0106745865, -0.0065650414, 0.009521868, 0.005234981, -0.018457144, 0.0012396844, -0.012918637, 0.006455908, 0.025428025, -0.0086556235, -0.027310573, 0.00323648, 0.020680733, 0.028511036, -0.010872391, -0.007332384, -0.0044846907, 0.0028835025, -0.008744294, 0.0005158247, -0.00871019, 0.030502716, 0.009460481, 0.0213901, 0.017611364, 0.013887194, 0.01634269, -0.0027487914, -0.015128584, -0.028156355, -0.023122588, -0.0035365964, 0.0027368548, -0.004344864, -0.035086308, 0.049655586, -0.012918637, 0.024050219, 0.0137303155, 0.030066185, 0.004685905, -0.019766742, 0.00622059, 0.03434966, -0.0083009405, -0.018034253, 0.0013002192, 0.007939437, -0.016547315, 0.011765919, -0.0036048046, 0.00012448001, 0.013164187, -0.015878875, 0.0140645355, 0.011274819, -0.026560282, -0.037514523, -0.0075029046, 0.02214039, 0.019098302, -0.025850916, 0.010272158, 0.013075517, -0.0069640595, -0.01609714, 0.01227748, 0.0013087452, -0.017133905, 0.01360754, 0.032712664, -0.019480268, -0.0043278118, 0.01418731, 0.029738786, 0.01153401, -0.0052213394, -0.01650639, -0.013123262, 0.008703369, 0.020285126, 0.01851171, -0.015524192, -0.012604879, 0.005784057, 0.025196116, -0.006333133, -0.017529514, 0.0066912267, -0.01360754, 0.0030472022, 0.0064081624, -0.027774388, -0.0040447474, 0.018729977, 0.01426916, 0.01732489, -0.004835963, -0.026137391, 0.023409061, 0.021949407, -0.005443016, -0.024527676, 0.020776225, -0.008478282, 0.01916651, 0.005780647, 0.016956564, -0.005084923, 0.0054873517, 0.004222089, -0.004494922, 0.0073119216, 0.0010981524, 0.07093655, 0.011595398, 0.0024861896, 0.0207353, -0.014241877, -0.011793202, 0.031321216, -0.0016949744, -0.03053, -0.027665256, 0.004518795, -0.0032859312, -0.012263838, 0.014773901, -0.019330211, 0.010913315, -0.0067798975, 0.027910804, -0.022617847, -0.001940524, 0.04089765, -0.031403065, 0.029411385, -0.011997826, -0.005862497, -0.007141401, 0.012413897, 0.032167, 0.002066709, -0.029711502, -0.009862909, 0.00962418, -0.029629651, -0.017870555, -0.011506727, 0.0005823277, -0.035440993, 0.0031580406, -0.009303601, 0.011813664, 0.016192632, 0.027446989, -0.00514631, -0.024977852, 0.0011390774, 0.015578758, -0.02355912, -0.01725668, 0.0024009293]
+ },
+ {
+ "Id": 85,
+ "Type": "Trekking",
+ "Brand": "Daybird",
+ "Name": "LumenHead Headlamp",
+ "Description": "Illuminate your outdoor adventures with the Daybird LumenHead headlamp. This compact yet powerful headlamp features a bright LED light in a vibrant green housing. With multiple lighting modes, including a red light for preserving night vision, the LumenHead provides exceptional visibility in any conditions.",
+ "Price": 49.99,
+ "Embedding": [0.011247716, 0.015200333, -0.019656975, -0.009158664, -0.0032827945, 0.010504942, -0.004887716, -0.03215149, 0.0057200207, -0.027376516, 0.003896246, 0.0061444626, -0.0017640875, -0.0031186547, -0.01192417, 0.02151391, 0.025585901, -0.010213139, 0.0060980394, 0.00014838894, -0.01063758, 0.013900479, -0.009304566, 0.002152054, -0.004658915, -0.040693387, 0.018131636, -0.018953992, 0.029896641, 0.0034121166, 0.027137768, -0.009530052, 0.0042808964, -0.017548028, -0.011028863, 0.027562208, 0.019099895, 0.0075935344, 0.019285588, -0.0047948696, 0.036820352, 0.0017690614, 0.018383648, -0.0071425647, -0.035016473, 0.006850761, 0.009609634, -0.00688392, -0.00952342, 0.01153952, -0.01327708, 0.009583107, 0.0033491135, -0.00764659, -0.00172927, -0.0014059645, 0.009808592, -0.0027124502, 0.019206006, -0.026063398, -0.0302415, -0.0072088838, -0.022296473, 0.013900479, 0.008157247, -0.006121251, -0.0107635865, -0.012355245, 0.014099436, -0.00096660055, 0.011320666, 0.0042974763, 0.025904233, 0.0050070905, 0.015823733, -0.01730928, -0.037350904, -0.01161247, 0.012879165, -0.01741539, 0.0073348903, -0.016606297, -0.034645088, 0.015730886, 0.002591418, 0.012832742, 0.010518206, 0.008701063, -0.026872491, -0.014470823, -0.023596328, 0.012348613, 0.027986651, 0.01167879, 0.001797247, 0.013157705, -0.013913742, 0.02811929, 0.0117849, -0.027151031, -0.0083230445, -0.005756496, 0.002244901, -0.0074741603, -0.013993326, -0.014736099, -0.0060715117, 0.01567783, 0.023941187, 0.0062671527, -0.009463732, 0.025280833, 0.028304983, -0.040268946, -0.0032098433, -0.0138739515, 0.0013769498, -0.014563669, 0.012222606, -0.0018188007, 0.034406338, 0.018861147, -0.0022482167, -0.011990489, 0.0048015015, 0.023689175, -0.0058559747, -0.009450469, 0.022959664, -0.0060118246, -0.021779185, 0.008681168, 0.019099895, -0.03058636, -0.015558456, 0.01589005, 0.015704358, 0.002225005, -0.045070447, 0.0018370384, 0.0033275597, 0.028411094, -0.017375598, -0.00020351667, 0.0031352344, 0.0059919287, -0.020253846, -0.00080950727, 0.006990031, -0.0073481537, 0.026341937, -0.023994243, 0.037165213, 0.026461313, -0.0074476325, 0.020771135, -0.014855473, 0.04095866, -0.014974848, 0.0051994156, -0.013701522, -0.028702898, 0.010524838, -0.010378935, 0.02554611, 0.022893347, -0.010292721, 0.00143415, -0.015452345, -0.022269947, 0.004519645, 0.05501831, -0.026288882, 0.0119838575, -0.001513733, 0.041595325, 0.035334807, -0.011241084, -0.025559373, -0.021686338, -0.01439124, -0.01668588, -0.008104191, 0.01324392, -0.016062481, -0.013078122, 0.0032711886, -0.003461856, 0.012899061, -0.01335003, 0.0010503284, 0.009430573, -0.00931783, -0.01581047, -0.65958303, -0.012355245, -0.023317788, -0.024073826, 0.011128342, -0.009231616, -0.0021371322, -0.00086712197, 0.010571261, -0.00053179613, 0.012302189, -0.015107486, -0.019444754, -0.00028351406, -0.008210302, -0.021580229, 0.0003289012, -0.0018304066, 0.007792492, -0.004400271, -0.025108403, -0.010113659, 0.005564171, -0.02457785, -0.015187069, 0.0005836079, 0.037165213, -0.019391699, -0.003810031, -0.0002449661, -0.01998857, 0.035467442, 0.004811449, 0.011599207, 0.05082694, -0.014470823, -0.013296975, 0.033796202, -0.013343398, 0.030214973, -0.018755035, -0.010684003, 0.018794827, -0.019895723, -0.011778268, 0.009503524, 0.033981897, -0.003601126, 0.025453262, -0.00910561, 0.021712866, -0.016327757, 0.018052053, -0.0020210738, -0.0062605212, -0.0037735556, 0.036236744, -0.0067247543, -0.00022838633, 0.017468445, -0.019219268, 0.0012799582, -0.0037304482, -0.006844129, -0.0062373094, 0.024683962, -0.018556079, -0.031169968, 0.006044984, -0.015611511, 0.016699145, 0.038014095, -0.005918978, 0.019365171, 0.00820367, 0.02075787, 0.024538059, -0.0060118246, 0.0024985713, 0.0031335764, 0.037563127, -0.014935057, -0.01769393, -0.01161247, 0.034698144, -0.008714327, -0.0020476016, -0.015969634, 0.024723753, 0.014351449, 0.009795328, 0.0017922731, -0.008674536, -0.021991406, -0.020970093, 0.03079858, -0.018105108, -0.001435808, 0.01668588, -0.0049540354, -0.003387247, -0.016553242, 0.0053486335, -0.012706735, 0.024604378, 0.015306443, 0.019391699, -0.008747486, -0.0030705733, -0.039897557, -0.021872032, -0.028596787, -0.019484546, -0.01098244, -0.013111282, -0.027296932, 0.045388777, -0.011758373, 0.049553614, -0.024829863, 0.01383416, -0.014497351, -0.0063235243, -0.01310465, 0.021036413, -0.008296517, -0.017083794, -0.019179478, -0.0235698, -0.005895766, 0.0032479768, -0.0070165587, 0.023980979, 0.00072868087, 0.01651345, 0.044168506, 0.0063964752, -0.019670239, 0.0042676325, -0.007275203, -0.009297935, 0.0035513868, -0.016712409, -0.02374223, -0.030268028, -0.039924085, -0.028915118, -0.0019033576, -0.021394534, -0.008488842, -0.009483628, -0.027151031, -0.0002907677, -0.0006565589, 0.016327757, -0.018184692, -0.004105151, -0.00079375645, -0.0048678205, -0.0003320099, 0.030400665, 0.013303607, -0.018953992, -0.01195733, -0.026633741, -0.0035049634, -0.0023443794, 0.043637954, -0.00030154455, -0.04326657, -0.0074078413, 0.01539929, -0.022442376, 0.017959207, -0.023994243, -0.019802878, -0.02252196, -0.03886298, 0.018715244, 0.004967299, 0.019391699, -0.0032313971, -0.016486922, -0.010179979, 0.019166214, 0.016460394, 0.0018569342, 0.031010801, 0.015001375, 0.016871573, -0.0012036912, 0.018091844, 0.0020011782, 0.0031368923, -0.0075736386, -0.02095683, 0.017720457, 0.011579311, 0.013031699, 0.016420605, 0.02753568, -0.039791446, 0.0010876328, -0.01898052, 0.013144441, -0.0125276735, 0.005899082, -0.005802919, 0.012912325, 0.004897664, 0.022720916, -0.02089051, -0.011526256, -0.0024189884, 0.014775891, 0.016699145, 0.0070298226, 0.019166214, -0.00980196, -0.026341937, 0.0024422, 0.012819478, -0.004307424, -0.0070165587, -0.00076557085, 0.011274244, -0.005332054, 0.020638498, 0.004320688, -0.006857393, 0.006625276, 0.031435244, 0.0027903751, 0.024392158, -0.009496892, 0.0061709904, 0.0027655056, -0.024538059, 0.04064033, 0.018290803, 0.038677286, 0.018277539, 0.0020973408, -0.006787758, 0.007759332, 0.028994702, 0.02666027, -0.0071757245, -0.0023858289, -0.0057962877, -0.024378894, 0.002667685, 0.0012385088, -0.010372304, 0.010332513, -0.024524795, 0.003398853, 0.03528175, 0.021805713, 0.007772596, 0.004174786, 0.01898052, 0.032231074, 0.0051960996, 0.00418805, 0.011672158, -0.002445516, -0.02878248, -0.009158664, -0.016380813, 0.015412554, 0.011997121, 0.010942648, -0.035043, 0.02005489, -0.017044004, -0.023145359, 0.023264732, -0.01835712, 0.018688716, -0.0031385503, -0.01724296, 0.008999499, 0.024339102, -7.1759314E-05, -0.0052358913, -0.019975306, -0.0049440875, 0.009205088, 0.01644713, -0.008389363, 0.01539929, 0.006472742, 0.00938415, 0.030294554, -0.014736099, 0.014165755, -0.015001375, 0.007620062, -0.008608216, -0.019338643, -0.0012733263, -0.017150113, -0.022296473, 0.02693881, 0.006983399, -0.02593076, -0.023304524, 0.0083230445, -0.0039260895, -0.034406338, -0.026063398, 2.7460244E-05, -0.022402585, -0.0025781542, 0.017534764, -0.020107945, 0.010796746, 0.0061345147, -0.0044964333, -0.017707193, -0.0045693847, 0.0014764285, 0.014828946, 0.067221016, -0.00039439127, -0.005328738, 0.053506233, -0.014656517, -0.010876329, -0.009788696, -0.009908071, 0.018569343, 0.0031551302, -0.0047086547, -0.015876787, -0.0006768691, -0.012083336, 0.0052292594, -0.0030092283, 0.010199875, -0.018091844, 0.0030059123, -0.0030407298, 0.0058758706, -0.0038763501, -0.004469906, 0.005779708, 0.025028821, -0.021792449, 0.0302415, 0.008488842, 0.03506953, 0.0032993741, 0.020174263, -0.00660538, -0.0073017306, 0.011081918, -0.012607257, -0.0011920854, -0.0039990405, -0.015439082, 0.024352366, -0.0028583524, 0.029153867, 0.029631365, 0.028278455, -0.014523879, 0.0054381643, 0.009145401, 0.012348613, 0.0005831934, -0.0006611183, -0.019378435, 0.020665025, 0.0051065693, -0.023132095, -0.006124567, 0.0039459853, 0.012162919, 0.025731802, -0.0005454744, -0.0055741183, -0.031090384, -0.00561391, -0.035440914, 0.031700518, -0.0050037745, -0.020810926, 0.0076598534, 0.0019597288, 0.01108855, -0.021991406, -0.009092346, -0.029153867, -0.00258976, -0.019086631, 0.0126603125, 0.0060250885, 0.012355245, 0.0175215, 0.017561292, 0.015903315, 0.016195118, 0.0068043373, 0.004629072, 0.02200467, -0.0037072366, -0.0037768716, 0.01807858, 0.014576933, -0.027376516, -0.002816903, 0.025904233, 0.021500645, 0.023543272, 0.025599165, -0.010146819, -0.018609133, 0.013993326, 0.011254348, 0.021540437, 0.0013993325, -0.009012762, 0.024591114, -0.012030281, -0.01129414, -0.016062481, 0.0150942225, -0.0012451407, -0.008979604, 0.0302415, -0.0015021272, -0.002153712, 0.018648924, -0.026262356, 0.013966798, 0.008992867, -0.0061676744, 0.011625734, -0.004834661, -0.02693881, 0.012269029, -0.035547026, -0.0314883, -0.033345234, 0.027429571, 0.0010942648, -0.010312617, 0.013091386, 0.027190823, -0.010936016, -0.012209343, 0.009702481, 0.0106243165, 0.028994702, -0.00033988527, -0.0041283625, -0.005746548, -0.023264732, -0.008780646, -0.0025416787, -0.037669238, -0.01108855, -0.018370384, 0.0037835035, 0.024683962, 0.0063135764, -0.005322106, -0.008992867, -0.01949781, -0.0018154848, 0.013237288, 0.030639414, -0.013283712, -0.011897643, -0.0011357142, -0.010438623, 0.01161247, 0.0040554116, -0.0016148696, -0.02766832, 0.02443195, 0.007984817, 0.010020813, -0.007414473, 0.019285588, 0.006817601, 0.0036541813, -0.0046489676, -0.024803335, -0.006631908, -0.041966714, 0.0113074025, 0.007036454, -0.0012791292, 0.0012691814, -0.0009491918, -0.014192283, 0.0062174136, -0.011134974, -0.01296538, -0.0096825855, -0.018582607, -0.0015609853, -0.025851177, -0.02492271, -0.02099662, 0.0005533498, -0.011672158, 0.04613155, 0.018436704, 0.00025221973, 0.0077460683, 0.01793268, -0.023025984, 0.016659353, -0.0034286964, 0.014258602, -0.015531928, -0.005666965, -0.032973845, -0.020386485, 0.031063857, 0.009868279, -0.020359958, -0.011559416, -0.031063857, -0.0096825855, 0.0011987174, 0.008568425, -0.00949026, 0.0020078102, -0.017959207, -0.018449968, -0.02648784, -0.03973839, -0.033106484, 0.022269947, 0.004894348, -0.010504942, 0.008110823, -0.016486922, -0.022747444, -0.0054481123, -0.026673533, 0.005842711, -0.015107486, 0.021633284, 0.008289885, -0.012892429, -0.05026986, -0.014245338, -0.0066518034, -0.01977635, 0.0072287796, 0.015638039, -0.0072486755, -0.01998857, 0.025095139, 0.020572178, 0.01898052, -0.015598248, 0.011585943, 0.023596328, 0.01237514, -0.00018413906, -0.027509155, -0.0062140976, 0.0009160323, 0.018887674, 0.014683044, -0.006631908, 0.008767382, 0.0040388317, -0.0037304482, -0.037244793, -0.0017441917, 0.005252471, 0.0020161, 0.02492271, -0.011837956, -0.002220031, 0.0031169967, 0.0081904065, 0.029604837, -0.001438295, 0.0004064116, 0.019099895, -0.0010097079, -0.0007133446, -0.005985297, 0.021673074, 0.026434785, -0.01122782, -0.014775891, -0.0052756825, 0.010047341, 0.019020312, -0.018569343, -0.026461313, 0.0052259434, 0.00046713502, -0.0027688215, 0.0115726795, 0.009987653, -0.00087375386, -0.024935974, -0.021248633, -0.0011895985, -0.045547944, 0.00039874346, 0.0138739515, -0.02374223, -0.009974389, 0.013031699, 0.006741334, 0.026779644, 0.005534327, -0.013966798, 0.008289885, 0.021580229, -0.019630447, -0.0057962877, 0.02162002, 0.012680208, -0.0054182685, 0.012302189, 0.024166672, -0.038942564, 0.011526256, -0.035043, -0.005471324, -0.0072088838, 0.013913742, 0.007049718, 0.017813304, -0.0059355577, 0.0072287796, -0.00952342, 0.020240583, -0.007620062, -0.023251468, 0.01352246, -0.005676913, -4.8936225E-05, 0.033875786, -0.019458018, 0.00064578204, -0.027124504, -0.0039194576, -0.0059455056, -0.0053088423, -0.022269947, -0.027243877, 0.000109530105, 0.0020260478, -0.013442878, 0.0011995464, -0.0037171843, -0.016354285, -0.0064959535, -0.026249092, 0.041250467, 0.014749363, 0.0050667776, -0.010345777, 0.007865443, -0.037801877, 0.007116037, -0.016951157, -0.034008425, -0.00460586, -0.010723795, 0.013257184, 0.03215149, 0.0063699475, -0.021394534, 0.012322085, -0.021580229, -0.06493964, 0.0019763086, 0.004748446, -0.008316413, 0.012753159, 0.0023211678, 0.0077328044, 0.026156245, 0.018781563, 0.021261897, -0.000305275, -0.0065191654, 0.01133393, 0.0071690925, 0.004556121, -0.009205088, -0.017428653, -0.016977685, 0.006810969, 0.008588321, 0.009589739, 0.011811428, -0.031886213, 0.005534327, -0.0017143482, -0.00018662603, 0.037032574, 0.0074675283, -0.012865901, 0.0036873408, -0.02777443, -0.0039327214, 0.0070099267, -0.008230197, 0.0018237747, 0.014550406, 0.016898101, -0.00081489567, -0.026010342, -0.032761626, 0.006565589, -0.018343857, -0.0003440302, -0.002370907, 0.012560833, 0.020439541, 0.008495474, -0.031408716, 0.008289885, 0.014868737, -0.018967256, -0.009994285, -0.011804796, -0.004261001, 0.023516746, -0.017441917, 0.0001310838, -0.020850718, 0.005912346, -0.0039061937, -0.013091386, -0.025439998, 0.018688716, -0.002740636, -0.029764002, -0.02520125, 0.019378435, 0.004304108, 0.0051894677, -0.004559437, 0.0037470278, -0.021368006, 0.030559832, 0.007116037, -0.012269029, -0.037616182, 0.017906152, 0.025519582, -0.0006362487, 0.017892888, 0.20956829, 0.014139228, -0.0041383104, 0.030374138, -0.0026245776, 0.03583883, 0.004632388, 0.0020658392, 0.006837497, -0.013449509, -0.021872032, 0.0051198327, -0.009045922, -0.005391741, 0.012985276, -0.0050568297, -0.03260246, -0.007062982, -0.012879165, -0.031276077, -0.0044267983, -0.005710073, -0.008508738, -0.013568884, 0.011453304, 0.0042974763, -0.00663854, -0.008634744, 0.013781104, -0.005570803, -0.0031567882, -0.03833243, -0.0014557038, -0.0072221477, 0.011950698, 0.0016646088, 0.011738477, -0.009278039, -0.005627174, 0.025028821, 0.018529551, -0.0123950355, 0.014431031, -0.016500186, 0.026872491, 0.004254369, -0.0069369758, 0.017627612, 0.018171428, -0.0022017935, -0.028809007, 0.0012426537, 0.021023149, -0.0015543534, -0.015213597, -0.009476996, 0.021089466, -0.0012161261, 0.0049175597, -0.0059488215, -0.0062041497, 0.028039707, 0.010299353, 0.03536133, -0.002152054, 0.029551782, -0.023264732, 0.014736099, 0.02318515, -0.002241585, 0.009052554, -0.015757414, -0.016486922, 0.014815683, -0.0181449, -0.020426277, 0.021712866, 0.0106309485, 0.007885339, 0.041303523, 0.011393618, -0.015545192, -0.005494536, -0.0079251295, -0.0031733678, -0.028809007, -0.015240124, -9.165504E-05, 0.008163879, -0.003166736, 0.014749363, 0.005405005, -0.014603461, 0.011459936, -0.0069502397, 0.009795328, -0.019908987, 0.018065317, -0.012428195, -0.007699645, -0.037430488, -0.00575318, 0.010451887, -0.011944066, -0.0070762457, 0.029180394, -0.0051960996, 0.014921793, 0.01394027, -0.0075404793, 0.0053121583, -0.032522876, 0.0011191345, -0.0008381074, 0.0094106775, -0.010007549, 0.028039707, -0.015279916, -4.6682413E-05, -0.00041283626, 0.019444754, -0.0036939727, 0.035785776, 0.004602544, 0.0036773928, -0.014364713, -0.0002308733, 0.023423899, 0.0006938634, -0.027164295, 0.00910561, -0.011851219, 0.0006544864, -0.008415891, 0.004337268, 0.013515828, -0.0067347023, -0.003395537, -0.007633326, -0.009092346, -0.014324921, -0.0062638368, 0.019736558, 0.0028467465, 0.035414387, -0.014683044, 0.009748905, -0.017640876, -0.01574415, -0.019723294, -0.020863982, 0.010611053, 0.0096825855, -0.0039227735, -0.0051430445, -0.023516746, -0.027058184, 0.00994123, 0.018118372, -0.0019812824, -0.019670239, -0.0035381229, 0.015916578, -0.0129322205, 0.0006018456, 0.0012467987, -0.16914017, -0.009695849, 0.0322576, -0.03618369, -0.018569343, -0.0018038789, 0.004370427, 0.005756496, -0.012341981, 0.009603003, 0.020028362, 0.03138219, -0.05244513, -0.014868737, 0.009748905, 0.013343398, 0.01992225, 0.025864441, 0.0020194158, -0.011300771, 0.016195118, 0.0024985713, 0.017362336, -0.008581689, 0.0060317204, -0.0044964333, 0.0065291133, 0.009019394, -0.009145401, -0.015134014, -0.0027804275, -4.7381873E-05, 0.02638173, -0.009112242, 0.022415848, -0.018861147, 0.022561751, 0.013237288, -0.012739895, 0.022893347, -0.010425359, 0.0008376929, 0.025970552, 0.011963962, 0.014179019, 0.021699602, -0.004453326, 0.017959207, -0.009470364, -0.0063566836, 0.044539895, -0.031859685, -0.00564707, -0.010193243, 0.019577391, 0.0175215, -0.006124567, 0.025798121, 0.029870113, -0.019962043, 0.0032993741, -0.027721375, -0.027071448, -0.00662196, 0.0002845503, -0.02123537, 0.0144177675, 0.012149655, -0.010677372, 0.021872032, -0.016646089, -0.015982898, -0.017853096, -0.009735641, -0.003382273, 0.009079082, -0.018330593, -0.009987653, -0.012156287, 0.014563669, 0.0026394993, 0.02923345, -0.027509155, 0.028384566, -0.022070989, -0.0011232794, -0.018542815, 0.0077394363, -0.019298851, -0.025625693, 0.028092762, -0.027747903, 0.0039028777, -0.01640734, 0.008886756, 0.016805254, 0.015465609, -0.018105108, 0.010445255, 0.00344196, -0.0100871315, 0.026262356, -0.029259978, 0.029949697, 0.026076661, 0.004108467, 0.008588321, -0.0029727528, 0.01640734, 0.009987653, -0.008216934, -0.0073614176, -0.0028301666, -0.018237747, -0.012262397, 0.003531491, 0.009828487, -0.0074277367, -0.005567487, -0.017017476, 0.035414387, -0.016049217, -0.01842344, -0.00033325338, -0.0040189363, -0.02384834, -0.097780846, -0.024776807, 0.005531011, 0.0073547857, -0.008177143, 0.00011947797, 0.00058775285, 0.018741772, 0.0009914702, 0.013031699, 0.0052657346, -0.0029064335, -0.0060947235, 0.025585901, 0.025585901, -0.009218352, 0.026050134, -0.007765964, -0.025811385, 0.009762168, 0.006824233, 0.006568905, -0.013409718, -0.024312574, -0.0155054005, -0.0075404793, -0.03448592, 0.01887441, 0.028968174, 0.0031435243, -0.008495474, -0.018821355, 0.0023559853, 0.0070231906, -0.0073945774, -0.0010702241, 0.010438623, -0.0063898433, 0.011532888, -0.05016375, -0.006711491, 0.014165755, 0.012673576, -0.011453304, 0.006996663, -0.0037835035, 0.014895265, 0.020081418, 0.037987567, -0.024378894, -0.027588736, 0.0067280703, -0.011811428, 0.0018900938, 0.021076202, -0.020161, -0.0138739515, 0.012428195, -0.019816142, 0.0073149945, -0.005398373, -0.0005396715, -0.013495932, 0.011990489, -0.010173347, -0.006824233, -0.012680208, -0.008747486, 0.02172613, -0.02307904, -0.02569201, 0.0138739515, -0.0007469186, 0.0317801, -0.013860688, -0.015213597, -0.012958748, 0.0054447963, -0.000935928, 0.009967757, -0.023530008, -0.0067280703, 0.03167399, -0.014431031, -0.0064428984, 0.023861604, 0.014099436, -0.024485003, 0.035016473, -0.018675452, -0.0019812824, 0.029976223, 0.0015493794, -0.01870198, -0.025426734, 0.0017541397, 0.010120291, -0.00917856, -0.00016994264, 0.005408321, -0.00027418794, -0.0029362773, -0.07650569, 0.023450427, -0.010856433, -0.006910448, 0.0073282584, -0.017972471, 0.0036508653, -0.012176183, 0.013436246, 0.0036143898, 0.012806214, -0.015518664, -0.005746548, -0.015319707, -0.009032658, -0.016566506, 9.585179E-05, 0.011546152, 0.009702481, 0.005670281, -0.008283253, -0.014590197, -0.009364254, 0.025599165, -0.040454637, 0.00050070905, -0.0042875283, -0.015797205, -0.0018503023, -0.01741539, 0.023622856, -0.019935515, -0.010617685, 0.01835712, -0.0039990405, -0.023702439, -0.00215537, -0.00028620826, 0.005958769, -0.03034761, -0.0076797493, -0.011340562, 0.036475495, -0.010750323, -0.016951157, 0.007036454, 0.0014134253, 0.005895766, 0.032443292, 0.018224483, 0.004164838, 0.020346694, 0.0077328044, -0.00851537, -0.018861147, -0.027005129, 0.009430573, -0.009231616, -0.009748905, -0.014855473, 0.03437981, 0.007109405, -0.007275203, -0.0041383104, 0.018410176, -0.0006051616, 0.002734004, 0.010233033, -0.008197038, 0.0006358342, -0.006903816, -0.023941187, 0.017296016, 0.004320688, 0.005547591, -0.018503023, 0.004108467, -0.006923712, -0.016911365, 0.020558914, -0.0018154848, -0.014669781, -0.04188713, -0.0029362773, 0.016062481, 0.007560375, -0.038173262, 0.02833151, 0.0013752918, 0.008017977, -0.025944024, 0.010677372, 0.01696442, 0.013595412, 0.012806214, 0.016566506, -0.003398853, -0.014298393, -0.014497351, 0.017614348, 0.018370384, 0.019192742, 0.007951657, -0.014974848, -0.025055347, 0.022906609, -0.003020834, -0.024339102, -0.0073348903, 0.0052690506, 0.002735662, -0.02513493, -0.025333889, 0.008177143, -0.0084623145, -0.008183775, 0.0020492596, -0.0048611886, -0.010053973, 0.026792908, 0.020452803, 0.016818518, 0.0064959535, -0.011048758, 0.030214973, -0.009589739, -0.007626694, 0.006688279, 0.033451345, 0.0018420124, -0.0018585921, 0.010252929, -0.022402585, 0.0053585814, 0.0037901353, -0.018118372, 0.022906609, 0.031276077, -0.017614348, 0.0750732, -0.0034883835, -0.029923169, 0.00862148, -0.047060017, 0.0083230445, 0.019073367, 0.0130648585, -0.026753116, -0.015001375, 0.023649383, 0.0274561, -0.019444754, -0.008800542, -0.040056724, -0.0026262356, 0.0055840663, -0.0008895046, -0.002797007, -0.009364254, 0.059528004, -0.0330269, 0.008090927, -0.014072908, -0.033637036, -0.008283253, 0.033000372, -0.0019796244, -0.0003585375, -0.021765921, 0.019577391, 0.0064329505, -0.0032662146, 0.0011340562, 0.019630447, 0.005570803, -0.0019663607, -0.0011066996, 0.0117849, 0.003594494, 0.025294097, 0.03371662, -0.012441459, -0.018197956, 0.0052358913, -0.0025002293, -0.017402126, -0.025625693, 0.006787758]
+ },
+ {
+ "Id": 86,
+ "Type": "Cycling",
+ "Brand": "Raptor Elite",
+ "Name": "ProVent Bike Helmet",
+ "Description": "Stay safe and stylish on your cycling adventures with the Raptor Elite ProVent bike helmet. This sleek helmet features a matte black finish with striking red accents. The ProVent technology ensures optimal airflow, keeping you cool and comfortable. With its adjustable fit system and removable visor, this helmet is perfect for both casual and professional riders.",
+ "Price": 79.99,
+ "Embedding": [0.008763284, -0.01517997, -0.003480124, -0.039560724, 0.015537926, 0.0076297577, -0.0018013786, -0.04915924, 0.022524688, -0.018746268, 0.011123139, 0.0020632164, -0.0069801346, -0.014490574, 0.00756347, -0.0057538054, 0.024049316, -0.012541705, -0.006038844, -0.01606823, 0.013138297, 0.005382592, -0.0204565, -0.0076297577, -0.006628808, -0.020496273, 0.014689438, -0.016770884, 0.028318267, -0.019820135, 0.020323925, 0.026117504, -0.002288596, -0.026594777, -0.0069469907, 0.020058773, 0.012037915, 0.007278431, 0.019197028, 0.023253858, 0.038977392, -0.0114943525, 0.014768984, 0.015842851, -0.007623129, -0.005876438, -0.011308746, -0.0035894995, -0.016187549, -0.0046070213, -0.001779835, 0.0030906817, -0.020443244, 0.00022827958, 0.022697039, -0.021901581, 0.012303067, 0.0005820922, 0.03680314, -0.022286052, -0.022498174, 0.0029150182, -0.029034179, 0.01807013, 0.004119804, 0.00039317115, -0.01651899, 0.0023349975, 0.011752876, 0.025149697, 0.040913, 0.008199835, 0.0017665772, 0.00812029, 0.006217822, -0.01651899, 0.00047520266, -0.0110899955, 0.00035795564, 0.009837151, 0.01563073, 0.0021792206, -0.0056411154, 0.018348541, 0.019661045, 0.009823893, -0.015246258, 0.026316367, -0.0067149824, 0.0046799383, -0.0077026747, 0.0054455656, -0.00021895781, 0.008922376, -0.030625092, 0.027337203, 0.0032779456, 0.01956824, 0.00081575767, -0.010937533, 0.010248137, -0.019753847, -0.012402499, -0.02085423, -0.03675011, -0.015643986, 0.0028702738, 0.0080076, 0.017990585, -0.005631172, -0.012276553, 0.030147819, 0.021503853, -0.014424286, 0.0034370369, 0.0017350905, 0.032560706, 0.017089067, -0.016837172, -0.012879774, 0.0042954674, 0.01267428, 0.02536182, -0.019395892, 0.013085267, -0.0009064895, -0.017751947, -0.0036093858, 0.039481178, -0.00020725382, -0.0013912211, -0.0003509125, 0.0048191436, 0.008882603, 0.0025703202, 0.030837214, -0.019939454, 0.004143005, -0.027390234, -0.008988664, 0.0063039963, 0.0073314616, -0.005230129, -0.0037220756, -0.037678145, -0.0037618484, -0.0075700986, 0.034734953, 0.026793642, 0.0019720704, 0.025375078, -0.039216027, 0.026157277, 0.020668622, -0.0009636629, 0.0022024214, 0.008266123, 0.018640207, -0.014835272, -0.008557791, 0.004192721, -0.01895839, 0.030280394, 0.012707424, 0.03176525, 0.015643986, 0.008411957, -0.0032033713, -0.0013365333, -0.009770863, -0.0018842387, 0.020933775, -0.03531829, -0.010606092, 0.0008414443, -0.009001921, -0.012336211, 0.0013597342, -0.007046423, -0.0031818277, 0.013960269, -0.016532246, 0.014822015, 0.02491106, -0.008325783, 0.0024858029, 0.04040921, -0.0068077855, -0.0011906996, -0.021265216, 0.003659102, 0.030068273, 0.008471617, -0.015246258, -0.6567293, -0.01895839, -0.011832422, -0.031075852, 0.0012992463, 0.008246237, 0.005359391, -0.00236317, -0.005276531, 0.005995757, 0.0049351472, 0.010022758, 0.0016414586, -0.017208384, -0.012594735, -0.030545548, 0.0006492089, -0.006307311, 0.012150605, -0.008325783, -0.039348602, -0.009015178, -0.02613076, 0.002533862, -0.0086174505, 0.019979227, 0.030731153, 0.00355967, -0.019674301, 0.009757605, -0.04610999, 0.03176525, -0.007828622, -0.0039209398, 0.0483903, -0.04308725, 0.0048224577, 0.02597167, -0.010877874, 0.02552091, 0.0043087252, 0.0055317404, 0.007835251, -0.005777006, -0.009923326, 0.018229222, 0.039958455, -0.025295531, 0.0031503409, -0.013708374, 0.018971648, -0.0063437694, -0.0035828706, 0.023253858, -0.00492189, -0.018375056, 0.031234942, -0.00013993, 0.023757648, -0.0052235005, -0.014490574, 0.00572729, -0.00912124, -0.016823914, -0.003463552, 0.021132639, -0.027151598, -0.017036036, 0.0012677595, -0.038977392, -0.0020814457, 0.0073314616, -0.018202707, 0.022060672, 0.021676201, 0.021013321, 0.02496409, -0.0033790348, 0.014212164, -0.00152214, 0.028715996, 0.0063735987, -0.0049848636, -0.00933999, -0.0030260507, -0.008982034, -0.014092846, 0.004371699, 0.019369377, 0.026820157, 0.018613692, 0.022537947, 0.00684093, -0.005011379, -0.015166712, 0.014649665, -0.002764213, 0.008982034, 0.01979362, -0.025255758, 0.00078054215, -0.0072187716, 0.010447001, 0.00500475, 0.023585299, 0.005097553, 0.022829615, -0.021106124, 0.0060255863, -0.024977349, -0.013668601, -0.02746978, -0.018056873, -0.020098545, -0.0028006714, -0.028318267, 0.031500094, 5.888246E-05, 0.014530347, -0.03457586, 0.030386455, -0.0020864173, 0.008637337, -0.0038215078, 0.0017036037, -0.00037742776, 0.022431886, 0.030519031, -0.030969791, 0.0039839135, 0.035424348, 0.019303089, 0.036909204, 0.004815829, 0.018733012, 0.019501952, 0.010639236, -0.0077026747, 0.00026328798, -0.012594735, -0.009857037, 0.00054811954, -0.018481117, -0.0080274865, -0.019727333, -0.030996306, -0.025613714, -0.0061681056, -0.003569613, 0.0042623235, 0.011428065, -0.012243408, 0.0014989392, -0.021318246, 0.027681902, -0.01829551, 0.005110811, -0.027416749, -0.01890536, -0.021941354, 0.01429171, 0.0029481624, 0.009638287, -0.014994363, -0.011693217, -7.9493904E-05, -0.019674301, 0.037174355, -0.0012023001, -0.042503916, -0.00086505944, 0.00408666, -0.012740569, 0.025017122, -0.007974456, -0.008803057, -0.008054001, -0.016810657, 0.01746028, -0.019037936, 0.0039043678, -0.006473031, -0.03730693, 0.00089488906, 0.019263316, 0.0025288903, 0.013695117, 0.036776625, -0.0022057358, 0.0052831597, 0.019422406, 0.008597564, -0.0081004035, 0.00012625808, 0.0012917889, -0.03953421, 0.015431865, 0.022842873, 0.02485803, 0.007152484, 0.039295573, -0.024142118, 0.018746268, -0.017327704, 0.023929996, -0.011394921, -0.02179552, 0.005849923, 0.008789799, 0.020695139, 0.0061548483, -0.03152661, -0.016757626, 0.003133769, 0.004978235, 0.012190377, 0.01184568, 0.026608035, 0.0012967605, -0.02468568, 0.0051340116, -0.0131184105, 0.01117617, -0.018613692, -0.009207414, 0.019886423, -0.011481095, 0.017234901, 0.010566319, -0.054515317, 0.010327683, 0.029166754, 0.017486796, -0.00046277366, 0.030678123, 0.028291753, -0.00772919, -0.011076738, 0.030174334, 0.0025786064, 0.032613736, 0.010679009, -0.0019571555, -0.0050279507, 0.023505753, -0.008604192, 0.04343195, 0.004109861, 0.0118655665, 0.026382655, -0.00140365, -0.002134476, -0.008935633, 0.00047147396, 0.022590978, -0.0008083003, 0.014304968, 0.0026183792, 0.015909139, 0.020469759, 0.0022786527, -0.008047373, 0.005375963, 0.01262125, 0.019011421, 0.010864616, -0.025162954, -0.022657266, -0.012462159, -0.032056917, 0.013542655, -0.024513332, 0.0068873316, -0.020761427, 0.017248157, -0.010804957, -0.02658152, 0.0320304, -0.025600456, 0.031181913, -0.01301235, -0.046030443, 0.008962148, 0.025162954, -0.0021692773, -0.009107982, -0.005611286, 0.008478246, -0.009697946, 0.039401636, 0.02797357, 0.03258722, -0.0113485195, 0.00956537, 0.003289546, -0.0039043678, 0.014782242, -0.021835294, 0.029776605, -0.017195128, -0.028291753, 0.01345648, -0.03157964, -0.040753912, 0.015710276, 0.01284663, -0.003191771, -0.027337203, 0.00095620553, 0.0029249615, 0.018348541, -0.010513289, -0.0032961748, -0.023015222, 0.0011094967, 0.0004905318, -0.019037936, -0.024924317, 0.009923326, 0.0030061645, -0.0127140535, -0.0029001033, 0.0012694168, -0.010029387, 0.08601541, -0.00044661594, 0.00040352868, 0.006529376, -0.017380735, -0.01902468, -0.0045573055, 0.0011476123, 0.013244358, 0.0013282474, -0.009890181, 0.0040104287, -0.007802107, 0.007861766, 0.012044544, -0.01228981, 0.005849923, -0.011580528, -0.018083388, -0.0072187716, -0.004239123, -0.003927569, 0.014437543, 0.0020317296, 0.008458359, 0.0016920032, 0.031049335, 0.032719795, 0.015590956, 0.0075038103, -0.001218872, 0.0024344297, -0.0063802274, -0.008657224, -0.019448923, -0.0038579663, -0.006310625, -0.025719775, 0.036007684, 0.015365576, 0.019329604, 0.029007664, 0.002971363, 0.00956537, 0.0013365333, 0.010983935, -0.008140177, -0.008378813, 0.010234879, -0.032401614, 0.007755705, 0.0013282474, -0.008186578, 0.0012089289, -0.011322004, 0.022537947, 0.027257659, -0.021556884, -0.01423868, -0.032931916, -0.015060651, -0.012548333, -0.00013154041, 0.010884503, 0.01095742, -0.009379763, -0.0027907281, -0.01674437, -0.009446051, -0.02463265, -0.0097244615, -0.011487724, -0.0069469907, 0.013383563, 0.002518947, 0.013880724, 0.026687581, -0.048310753, 0.0101685915, 0.027178112, 0.013330532, 0.0069204755, 2.1572755E-06, -0.0074640377, 0.013032236, -0.008325783, -0.0144110285, -0.007888282, -0.008763284, 0.010122189, 0.03075767, -0.024659166, 0.022392113, -0.010360827, -0.02179552, -0.00021377906, 0.027787963, 0.022524688, 0.0062642233, -0.020894002, 0.010692267, -0.0049716057, 0.0042026644, -0.00047354546, 0.04292816, 0.014450802, -0.013814435, 0.015683759, 0.007490553, -0.02513644, 0.008272752, 0.010062531, -0.01134189, -0.014119361, -0.025560683, -0.00472634, 0.017884525, -0.010665752, 0.027602356, -0.021013321, -0.017102323, -0.035053138, 0.031234942, -0.011414807, -0.0043087252, 0.0074110073, 0.032772828, -0.02057582, 0.0077026747, -0.008047373, 0.0007755705, 0.033170555, -0.0107585555, -0.009028437, -0.034125105, -0.020045515, -0.020880746, -0.003576242, -0.0022687095, -0.019157255, -0.023280373, 0.007762334, 0.02041673, 0.012800228, -0.020151576, -0.015524668, -0.017142097, -0.018547405, -0.03208343, 0.019833393, -0.02168946, -0.001887553, -0.017579598, -0.010751926, -0.022710295, -0.041072093, -0.019661045, -0.023015222, -0.0026564947, 0.0076761595, 0.016333383, -0.0047031394, 0.0116070425, 0.017831493, -0.004699825, 0.007391121, -0.03775769, -0.005349448, -0.035742532, 0.013211214, 0.0069072177, -0.0030823958, 0.002141105, -0.013476366, -0.020257637, 0.009499081, 0.0106856385, -0.018268995, -0.013814435, -0.033966012, -0.034947075, -0.008405329, -0.0017748633, -0.012322954, -0.019037936, -0.0007821993, 0.024924317, 0.00628411, -0.007556841, 0.03513268, -0.001337362, -0.025560683, -0.005793578, -0.009777492, 0.0381289, 0.011752876, -0.018123161, -0.013078638, -0.031897824, 0.047329687, 0.008020857, 0.004242437, 0.0025570625, -0.01678414, -0.026104245, 0.017208384, 0.0030011928, -0.022842873, 0.02552091, -0.0074971817, -0.033833437, -0.0072320295, -0.019037936, -0.040223606, -0.022697039, 0.007967827, -0.014318225, 0.025401592, -0.015073909, -0.011514239, 0.030810699, -0.024380755, 0.024884544, -0.00053817633, 0.0028785598, 0.013058752, -0.015776563, 0.000111550406, -0.031924337, -0.011746247, 0.0007192257, 0.0080274865, 0.020125061, -0.013197957, -0.017526569, 0.017818235, 0.003208343, -0.0077490765, -0.021782262, -0.0005564056, 0.025560683, 0.029034179, 0.0039408263, -0.025401592, -0.014464059, 0.008372185, 0.015776563, 0.0031055964, 0.018706495, -0.018202707, 0.0064796596, 0.016227322, -0.03102282, -0.004259009, 0.018998163, 0.007106082, 0.020138318, -0.0039176256, -0.003864595, -0.01718187, 0.008471617, 0.03385995, 0.0048357155, 0.015869366, 0.010433744, -0.0012321296, 0.009260445, 0.015378835, -0.016532246, 0.020204606, 0.01495459, -0.012667652, -0.0054621375, 0.006695096, 0.0045440476, -0.028371299, -0.008219722, -0.006506175, 0.008491503, 0.0026680953, 0.0037021893, 0.014689438, -0.013575799, -0.013337161, -0.011560641, -0.0037220756, -0.032666765, 0.0024128861, 0.0073049464, -0.0320304, -0.030545548, -0.0071325973, 0.0035795562, -0.011507611, 0.0009371477, -0.0047495407, -0.006529376, 0.0051638414, -0.03274631, 0.0065923496, 0.024698937, 0.010274652, -0.01034094, 0.028291753, -0.0046136505, -0.008080517, 0.012004771, -0.017208384, -0.0073380903, -0.02980312, -0.0036657308, 0.008696996, 0.008597564, -0.025825836, 0.0072187716, 0.003316061, 0.012727311, -0.0045440476, -0.010460258, 0.0134167075, 0.0027857565, -0.0027459837, 0.012216893, -0.02562697, -0.0071922564, -0.014318225, -0.0090615805, -0.0014865102, -0.022272794, -0.011414807, -0.031924337, -0.0140795875, -0.011540755, -0.033329647, -0.013376934, 0.0007573413, -0.020695139, -0.009154384, -0.012906289, 0.0030890245, 0.020695139, 0.008166691, -0.021251958, -0.002305168, -0.040223606, -0.029405393, 0.007384492, -0.018971648, 0.014729211, -0.00900855, 0.006499546, 0.06400777, 0.024513332, -0.018706495, 0.0034171504, 0.012495303, -0.04642817, 0.0070530516, -0.002871931, 0.016094746, 0.013151554, 0.023505753, -0.010877874, -0.011196056, 0.012402499, 0.012429015, 0.010944162, -0.017393991, 0.00062890816, -0.008869345, -0.0021046465, -0.021384533, -0.007391121, -0.018865587, 0.018162934, 0.0010365798, 0.019767106, 0.0244603, -0.01267428, -0.006217822, -0.00082445797, 0.005521797, 0.03632587, 0.024924317, 0.006333826, -0.02379742, -0.028901603, 0.0042888387, 0.021715974, 0.0035232115, 0.01902468, 0.0065824063, 0.020244379, -0.0022289366, 0.007815365, -0.031950854, -0.0039507695, -0.01979362, 0.010075788, -0.009664802, -0.0039938567, 0.012541705, 0.0167974, -0.04120467, 0.0009794064, 0.017831493, -0.010553062, -0.03735996, -0.003553041, -0.01262125, -0.016717853, 0.006416686, 0.01563073, 0.008438473, -0.017659144, -0.005067724, 0.013589056, -0.007165741, 0.02534856, 0.0051406403, -0.011355148, -0.02035044, -0.0047064535, -0.0054190503, 0.010208365, -0.0040966035, -0.002141105, -0.018123161, 0.016108003, -0.010049272, -0.0038380797, -0.027867509, 0.014172391, -0.018322024, 0.0031619414, 0.004268952, 0.20671275, 0.017248157, -0.009552112, 0.02407583, -0.0147424685, 0.009638287, -0.0040734024, -0.0105729485, 0.0083987, -0.006927104, 0.010148705, 0.008796428, -0.004328612, -0.006353712, 0.040992547, 0.0035165825, -0.018494373, -0.0123096965, -0.027894024, -0.008537904, -0.0112756025, -0.008769913, 0.012077688, -0.017380735, -0.011209314, 0.02296219, -0.0061747343, -0.011355148, 0.025215985, -0.003110568, 0.0028371299, -0.016479217, -0.004063459, -0.018361798, -0.015816336, -0.011945112, 0.005538369, 0.00035836993, -0.018746268, 0.021503853, 0.0016132861, 0.027840992, 0.025600456, -0.01545838, 0.012216893, 0.01573679, -0.012269923, -0.011361777, -0.009306846, -0.009068209, -0.03229555, -0.012488674, 0.02430121, 0.011812536, -0.011613672, -0.014212164, 0.020589078, -0.018388312, -0.01517997, -0.0077093034, -0.004020372, 0.006178049, -0.007066309, 0.023200827, -0.0040071146, 0.03431071, -0.0025719774, -0.022935675, 0.004709768, -0.008014229, 0.020098545, -0.002182535, 0.012077688, 0.016306868, -0.012031286, -0.027496295, -0.0050312653, 0.005515168, 0.0019786991, 0.017937554, 0.010327683, -0.004693196, -0.0014442515, 0.0033110895, -0.0016671452, -0.026687581, 0.009412907, -0.00928696, 0.011507611, -0.002290253, 0.011852308, -0.014318225, -0.02285613, -0.013091896, 0.00789491, 0.0041595767, -0.020125061, 0.049079694, 0.0036093858, -0.0030028499, -0.043219827, 0.015073909, 0.009386392, -0.008670481, -0.0039242543, 0.017553084, 0.00029001036, 0.038394056, -0.0008799742, -0.015869366, -0.0041562626, -0.010526547, 0.01223015, -0.01134189, 0.024036057, -0.017778464, -0.015909139, -0.009001921, 0.009744348, -0.009280331, 0.037704658, 0.004802571, 0.027496295, -0.018335283, 0.01657202, -0.022644008, -0.01462315, 0.026144018, -0.0041794633, -0.025706517, -0.001740062, 0.02106635, -0.0021278474, -0.006413372, -0.013642087, -0.004265638, 0.038234964, -0.021649687, 0.014159134, 0.007682788, -0.012859887, 0.013947012, 0.013814435, 0.014185649, 0.021384533, -0.022895902, 0.006940362, -0.0037320189, 0.011103253, -0.0020715024, -0.006413372, -0.009949841, 0.0016878602, -0.020483017, -0.019501952, 0.004799257, -0.022219764, -0.010029387, -0.014132618, 0.001862695, -0.0353448, 0.019316345, 0.011043594, -0.022763327, -0.0160152, -0.009790749, -0.16842476, 0.014053073, 0.020019, -0.03401904, 0.011375034, 0.0015204828, 0.0025835778, 0.003347548, -0.042742554, 0.012707424, 0.027125081, -0.011500982, -0.036697082, -0.028795542, 0.010029387, -0.004391585, 0.01667808, 0.031049335, 0.016837172, -0.00021139682, 0.019223543, -0.015723532, 0.018998163, -0.007311575, 0.008577677, -0.023121282, 0.011394921, 0.030890245, 0.009644915, -0.021358019, 0.013496253, -0.020323925, 0.044625133, 0.023757648, 0.01462315, -0.034947075, 0.010831472, 0.004404843, -0.005243387, 0.018759526, -0.007556841, 0.016359897, 0.03279934, 0.013642087, 0.010261395, 0.032878887, -0.013144926, 0.0006400943, 0.038738754, -0.0061846776, 0.032056917, -0.012919547, -0.009333362, 0.0024642593, 0.028795542, 0.020125061, -0.025653487, -0.0022521375, 0.028397813, -0.011633558, 0.00581015, -0.027655387, 0.008929004, -0.0016845458, -0.022750068, -0.024102345, 0.002290253, 0.0076098717, -0.029034179, 0.008193207, 0.007344719, 0.0029282758, -0.011394921, 0.004143005, -0.0058698095, 0.010513289, -0.02346598, -0.0074640377, 0.015551183, -0.02285613, 0.01662505, 0.016890202, -0.011003821, -0.0013431621, -0.031606156, -0.008650594, -0.020642107, -0.0007809564, -0.0049583483, -0.0008509732, -0.00332269, -0.030943274, -0.006605607, 0.0076761595, 0.026846671, 0.016094746, 0.010838101, -0.0116203, 0.012084316, -0.012137347, 0.017327704, -0.008471617, -0.021358019, 0.019714074, 0.038287994, 0.011242459, 0.022590978, 0.009101354, 0.019820135, 0.017751947, -0.0023333405, 0.03157964, 0.0106856385, 0.0030376513, 0.006695096, 0.0042059785, -0.0112756025, -0.017089067, -0.0006301511, -0.01206443, 0.034231164, -0.026700838, -0.0039341976, 0.011971627, 0.011249087, -0.02357204, -0.09439422, -0.021676201, 0.018666724, 0.01613452, -0.0053859064, 0.0023979712, -0.009320104, 0.04064785, -0.0063470835, 0.0176724, -0.0054289936, -0.018361798, 0.006678524, 0.030651608, -0.0024858029, -0.012959319, 0.039269056, -0.011388292, -0.019780362, 0.013211214, 0.020138318, -0.0094659375, -0.0064531444, 0.0147424685, -0.013774663, -0.010771813, -0.009704575, 0.013184699, 0.019833393, -0.010553062, 0.004487703, -0.009088095, 0.017592857, 0.002659809, -0.008312525, -0.016333383, -0.030572062, 0.00023718704, 0.017977327, -0.024274694, 0.01134189, -0.002076474, 0.02330689, -0.039295573, -0.0040734024, -0.02207393, -0.010281281, 0.017619371, 0.016439443, -0.014384513, -0.0006595664, -0.019077709, -0.0022836244, 0.0080274865, 0.017089067, -0.010659123, -0.001588428, 0.0033409193, 0.0042291796, 0.010393971, -0.017486796, 0.018613692, -0.033011463, 0.020774685, 0.0093532475, 0.0032878886, -0.006572463, -0.0091344975, 0.015060651, -0.0046766237, -0.020615593, 0.014318225, -0.0133040175, 0.017712174, 0.0025056894, -0.008610821, -0.0105000315, 0.008252866, -0.003355834, -0.0036292723, -0.0013448194, -0.021106124, 0.022617493, -0.026833415, 0.0017268044, 0.049742576, 0.015763305, -0.011109882, 0.010393971, -0.023611814, 0.02052279, 0.029087208, 0.036113746, 0.00011372549, -0.039189514, -0.0056842025, -0.0026100932, -0.022365598, -0.0068807025, 0.0014541948, -0.023267116, -0.0018146362, -0.07546235, 0.010327683, 0.012859887, 0.00878317, 0.020483017, 0.024500074, 0.010745297, -0.0008832886, -3.588878E-05, 0.0002655666, -8.8233055E-06, -0.0073977495, 0.016664824, 0.0010581234, -0.02396977, 0.014822015, 0.015962169, 0.00711934, 0.027337203, -0.008292639, -0.00018840315, -0.014185649, -0.019873166, -0.018136417, -0.02752281, -0.0055814562, 0.007245287, 0.0100559015, 0.003117197, -0.0098702945, -0.00029373905, -0.019475438, 0.011832422, 0.033117525, -0.021702716, -0.030545548, -0.015352319, 0.011812536, -0.0005854066, -0.036776625, -0.025481138, -0.006678524, 0.00984378, -0.036935717, -0.021649687, -0.015643986, -0.0010233222, -0.01674437, 0.007848509, 0.010307796, -0.0015635701, -0.0023482551, -0.013827694, -0.03208343, -0.00014604093, -0.0024410584, -0.017897781, -0.022246279, 0.0049450905, -0.025892124, 0.026608035, 0.00020373227, 0.011235829, -0.0060355295, 0.0030906817, 0.016770884, -0.018786041, -0.006605607, 0.004792628, 0.016386414, -0.022431886, 0.0039573982, 0.038685724, 0.016890202, -0.00071839703, -0.011474467, 0.025719775, 0.004580506, -0.016638307, 0.007623129, 0.004285524, 0.0054886527, -0.026687581, 0.025560683, 0.0051804134, 0.013536026, -0.022140218, 0.009598514, -0.0026680953, 0.02797357, -0.034734953, 0.0026150646, -0.020429986, -0.000120147146, 0.011428065, -0.0067580696, -0.019143997, -0.011182799, 0.020589078, 0.006128333, 0.00472634, -0.00029560341, -0.026144018, 0.006012329, -0.015060651, 0.0030061645, 0.003775106, -0.014835272, -0.01779172, 0.013668601, 0.011189428, -0.013907239, -0.012163863, 0.008590935, -0.025003863, -0.00026660238, -0.0045241616, -0.015948912, -0.010625979, 0.0052400725, 0.013284131, 0.0127869705, 0.017844751, -0.001082153, 0.010181849, 0.008531276, 0.004570563, -0.0135625405, 0.018931875, 0.0056477445, 0.0083589265, -0.0018428086, -0.022312567, -0.005293103, -0.025892124, 0.01095742, -0.0052201864, 0.039162997, -0.0036723595, 0.060189575, -0.0046235933, -0.0026299795, 0.008597564, 0.0023416264, -0.007106082, 0.017486796, 0.0073248325, -0.022259537, -0.018931875, -0.0013912211, 0.0052699023, -0.006015643, 0.017327704, -0.037121326, 0.015233001, 0.013058752, -0.008186578, -0.019210285, -0.0095786275, 0.019037936, -0.02419515, 0.024022799, -0.007901539, -0.025706517, -0.0012395871, 0.020867487, 0.020589078, 0.0014575091, -0.015034136, 0.013947012, 0.01512694, -0.01779172, -0.0127140535, -0.0028437586, 0.022564461, -0.034178134, 0.01234284, 0.0060620448, 0.023015222, 0.031685703, 0.021649687, 0.0013671917, -0.018812558, 0.0025819207, -0.023439465, -0.0034171504, -0.023545526, -0.00097029173]
+ },
+ {
+ "Id": 87,
+ "Type": "Trekking",
+ "Brand": "XE",
+ "Name": "Nomad 2-Person Tent",
+ "Description": "Embark on your next camping expedition with the XE Nomad 2-person tent. Designed for rugged outdoor conditions, this tent features a durable waterproof fabric in earthy tones. The spacious interior and easy-to-use setup make it ideal for comfortable camping. With its innovative ventilation system, you'll stay cool and dry throughout the night.",
+ "Price": 229.00,
+ "Embedding": [0.030444123, 0.002805369, 0.016610695, 0.007445717, -0.0060703093, 0.022681003, -0.016028792, -0.028777763, 0.015632039, -0.011168576, -0.0007968108, 0.02201975, 0.015751064, -0.0044436255, -0.015460113, 0.007591193, 0.014798859, -0.005855402, -0.004992466, -0.0078160195, -0.0014564114, -0.0044833003, -0.011565329, 0.014362431, -0.020445965, -0.027111404, 0.03142278, 0.004195655, 0.039833926, -0.006152966, 0.02986222, -0.016121367, -0.004440319, -0.018925082, 0.004394031, 0.008986439, -0.011750479, 0.008278897, 0.03753276, -0.011419852, 0.032084033, -0.005868627, 0.0023805136, 0.023474509, 0.0003124424, 0.010024607, 0.0034881136, -0.008034233, -0.014084705, 0.009026114, 0.0028086754, 0.0028913321, -0.007564743, 0.00229951, -0.020842718, 0.0022317313, -0.032454334, -0.0064670616, 0.029650617, -0.02655595, -0.00440395, 0.0048172334, -0.024955716, -0.002656587, -0.012590271, -0.008682262, -0.012028206, -0.010123795, -0.009343515, 0.019057333, 0.030100271, 0.019916963, 0.016108142, 0.012067881, 0.0018977983, -0.03163438, -0.012636559, 0.0013853266, -0.009766718, 0.01290106, 0.014798859, -0.04012488, -0.034094244, 0.00018876728, 0.020340165, 0.025947597, 0.009488991, 0.0029210884, -0.02368611, -0.02475734, 0.02032694, 0.016795846, -0.0030169704, 0.013965679, -0.02363321, 0.01501046, 0.002312735, 0.007082028, 0.0035013387, -0.042584743, -0.02994157, 0.016941322, -0.0015721308, -0.016584244, -0.023210006, -0.011988531, 0.025246669, 0.011809992, 0.00925094, 0.016822295, -0.014613708, 0.016980996, 0.02381836, -0.025524395, -0.0068902643, -0.016174266, 0.019850837, -0.009707205, 0.015222061, -0.007763119, 0.016980996, 0.020525316, 0.0035740766, -0.009131914, -0.0015589057, 0.009369966, -0.03023252, -0.022271026, 0.014745959, -0.007167991, 0.0068836515, 0.035549004, 0.030708624, -0.0051577794, -0.016200718, 0.03639541, -0.006642294, -0.0038914783, -0.02201975, -0.008576461, 0.024334138, 0.02790491, -0.0083384095, -0.0028020628, 0.027058505, 0.021146895, -0.014005355, 0.019850837, 0.020049214, -0.006063697, 0.015420438, -0.017271947, 0.029994471, 0.013714403, -0.0017572818, 0.0074126543, 0.014190505, 0.008986439, -0.013978904, -0.016848745, -0.020710468, 0.017232273, -0.0018597762, -0.009766718, 0.00078317244, 0.031316977, 0.015261737, -0.00070754153, -0.034993548, -0.00070712826, -0.022442952, 0.03655411, -0.021477522, 0.016861971, 0.0072737914, 0.032798186, -0.0029012507, -0.005032141, -0.0063910177, -0.00415598, -0.005885158, 0.006209173, 0.021715574, 0.023090981, -0.04046873, -0.011638066, -0.0033128813, 0.010461034, 0.02809006, -0.010282496, 0.01104955, 0.012253032, -0.009469153, 0.010950362, -0.6597726, 0.0030864018, -0.012696072, -0.034861296, 0.0026185648, 0.007769732, 0.01662392, 0.016980996, -0.002274713, -0.0074523296, -0.014838534, 0.017126473, -0.0071150903, -0.032110482, 0.00091666303, -0.01683552, -0.017655475, -0.01193563, 0.01941441, 0.004185736, -0.013013474, 0.00794827, -0.011327277, -0.010950362, -0.0176158, -0.012563821, -0.002016824, -0.004301456, -0.025524395, 0.03142278, -0.027534606, 0.0441453, 0.0015696511, 0.00373939, 0.048615377, -0.028619062, -0.0040667104, 0.036289606, -0.00018794072, 0.034252945, -0.015592364, -0.006751401, 0.002692956, -0.0044932193, 0.015513013, 0.0053660744, 0.016610695, -0.0042254115, -0.0043146806, -0.0052073733, 0.010573448, -0.007260566, -0.006655519, -0.00800117, 0.008999663, 0.010441197, 0.032533683, -0.00096377736, -0.0009522054, 0.014362431, -0.019705363, 0.0081995465, -0.0043113744, -0.030073822, -0.026939478, 0.022681003, -0.041420937, -0.0028466973, 0.02402996, -0.030920226, -0.010791661, 0.043060843, -0.003531095, 0.028989365, 0.0076440936, 0.035734154, 0.0099254185, 0.0013200279, -0.0043808063, 0.0020002925, 0.013939229, -0.011056162, -0.007882144, -0.010844561, 0.03681861, -0.013965679, 0.0030169704, 0.0010720576, 0.0020631116, -0.00016758649, 0.0052073733, 0.009409641, 0.0003500512, -0.019559886, -0.022085875, 0.030840876, -0.021093994, 0.015129486, 0.039781027, -0.014864984, -0.0015060054, -0.025061518, 0.012484471, -0.046129063, 0.03531095, 0.0038914783, 0.014653383, 0.008054071, 0.034517445, -0.020260815, -0.0024896204, -0.032639485, -0.020961745, -0.019705363, 0.0034484384, -0.022707453, 0.031158278, 0.006298442, 0.02355386, -0.039701674, -0.0005215639, -0.018105127, -0.009112077, -0.017258722, 0.022509078, 0.023580309, 0.00489989, -0.019718587, -0.016465219, -0.019506985, -0.021940399, 0.01568494, 0.006387711, -0.004747802, -0.005594207, 0.015579139, -0.0013605296, -0.025749221, 0.026198873, -0.023910936, -0.015367537, -0.003431907, -0.0053627677, -0.039939728, -0.005372687, -0.021728799, -0.017404199, -0.008173096, -0.025312794, -0.011724029, -0.003405457, -0.0054850997, 0.00055627973, -0.0012448102, 0.020895619, -0.024585415, 0.003408763, -0.0055082436, -0.029174516, 0.00039096628, 0.043722097, 0.0042518615, -0.008801287, -0.00883435, -0.020472417, -0.004589101, -0.015103036, 0.02801071, 0.015393987, -0.046658065, -0.0040766294, -0.016200718, -0.018528331, 0.010824724, -0.009006276, 0.006103372, -0.0061364346, -0.039146222, 0.0062190914, 0.011512428, -0.00028103284, -0.0022664473, -0.021213021, -0.0072804037, 0.019255709, -0.02395061, -0.00014619908, 0.028566163, 0.0054222806, 0.027349455, -0.013714403, 0.006152966, 0.0035211763, -0.0009910541, 0.009918806, -0.004810621, 0.0149972355, 0.020538542, 0.020009538, 0.027772658, 0.01058006, -0.013568927, 0.020670792, -0.014005355, 0.023183556, -0.019612785, 0.0028962914, 0.0046188575, 0.021292372, 0.009991544, -0.0047411895, -0.05112814, -0.021953624, -0.016557794, 0.014428557, 0.010236208, 0.021662673, 0.027746208, 0.009164977, -0.009429478, 0.003334372, -0.00017750531, -0.0057727452, -0.008695487, -0.027772658, -0.0025028454, -0.0024995392, 0.022350376, -0.00022420635, -0.024096087, -0.00031223576, 0.01412438, 0.013793753, 0.020088889, 0.013066374, 0.01511626, 0.010249433, -0.007406042, 0.025550844, 0.00143988, 0.039966177, 0.021609772, 0.011234702, -0.027719757, 0.003984054, 0.0065497183, 0.012762197, -0.0077300565, -0.0033542097, -0.011142125, -0.0047544143, 0.003580689, 0.0063149733, -0.0063810986, 0.024942491, 0.003914622, 0.015962666, 0.009760105, 0.0093501285, 0.02994157, -0.010269271, -0.008358248, -0.009998157, 0.004635389, 0.025643421, -0.03359169, -0.034570348, -0.04089193, -0.016187493, -0.0042485553, 0.00974688, -0.017496774, 0.015129486, -0.005941365, -0.008563236, -0.015473338, 0.006113291, 0.005614044, 0.01008412, 0.023963837, 0.0010654451, -0.015751064, 0.019573111, 0.008265672, -0.0029508448, -0.021715574, -0.015499788, 0.020631118, 0.016121367, 0.032427885, 0.020829493, -0.017999327, -0.017364524, -0.004033648, 0.008669036, 0.010877624, 0.03684506, -0.018713482, 0.04089193, 0.0033277594, 0.003000439, 0.010487485, -0.010474259, -0.033353638, 0.009475767, -0.0063414234, -0.012021593, -0.024043186, -0.013529252, 0.0005666118, 0.009654305, -0.027799107, 0.021503972, -0.021027869, -0.008721937, -0.025299568, -0.008219385, -0.021332046, 0.020855943, -0.018885408, 0.0034781948, -0.025286343, -0.013939229, 0.013152337, 0.088079, -0.0071283155, 0.0067580133, 0.012934123, 0.0067117256, -0.030285422, -0.01315895, -0.026979154, 0.013648277, -0.0022714066, -0.014812084, -0.0007711872, 0.007439105, -0.015592364, 0.0031872431, 0.02290583, -0.014613708, -0.015050136, -0.010718923, -0.00038270061, -0.014798859, -0.025259893, 0.019348284, 0.0076837684, 0.024122536, -0.011624841, -0.009336903, 0.018091902, 0.017311623, -0.009932031, 0.0130266985, -0.010176695, 0.00074597687, 0.020697242, -0.015420438, -0.0077300565, -0.0011315704, -0.011671129, 0.023514183, -0.0047081267, -0.0018300198, 0.0120348185, 0.0026995684, -0.010652798, 0.004334518, 0.007855695, -0.029253867, 0.014256631, 0.006989452, -9.634674E-05, 0.0109701995, 0.0131324995, -0.018753156, -0.011499203, -0.0069696144, 0.014706284, -0.0089137005, -0.012788648, -0.017986102, -0.037823714, 0.0012282789, -0.040389378, 0.015486563, -0.009918806, -0.019652462, -0.04046873, -0.0018349792, 0.022733904, -0.019890513, -0.02145107, -0.0026251774, -0.031264078, -0.0062290104, 0.0087748375, 0.015777515, 0.0022482628, 0.004205574, -0.01404503, 0.005227211, 0.015393987, 0.003812128, 0.018515104, 0.0035178699, -0.001894492, 0.019745037, 0.005521469, 0.009660917, -0.0067348694, 0.015142711, 0.003974135, 0.023580309, -0.015645264, 0.015830414, -0.018118354, 0.009826231, 0.010090732, 0.0016167654, 0.00487344, -0.0009621242, -0.0070357397, 0.018753156, -0.027217204, -0.006665438, -0.006602619, 0.02816941, -0.003898091, 0.007525068, 0.0075713554, 0.00066414673, 0.0028516569, -0.005805808, -0.005495019, 0.00049965986, -0.021940399, -0.009138527, 0.0110760005, -0.010004769, 0.0072737914, -0.0024416796, -0.010791661, -0.016504893, -0.034411646, 0.020710468, 0.0051214104, 0.0011175189, 0.0023540633, 0.0030963207, -0.01829028, 0.005551225, 0.014018579, -0.0065497183, 0.027666857, -0.005551225, -0.006850589, -0.007961495, -0.032427885, -0.0058653206, 0.003246756, 0.00091831613, -0.0053330115, -0.0019754956, 0.01412438, 0.008642587, 0.01933506, -0.009264166, -0.018673806, -0.04385435, 0.009026114, -0.020340165, 0.035839953, -0.015155936, -0.0020763369, 0.00489989, -0.001365489, -0.0036997148, -0.03888172, -0.010289108, -0.0042981496, -0.008034233, 0.027243655, -0.0030401142, -0.0040766294, 0.0067976885, 0.0028450442, 0.0040204227, 0.023448057, -0.022125551, -0.0089137005, -0.039886825, 0.012471246, -0.003038461, 0.015023685, -0.0059711216, -0.019348284, 0.03308914, 0.008503723, -0.016094916, -0.03348589, 0.018753156, -0.028883563, -0.002349104, -0.016147817, -0.01839608, -0.015724614, -0.002301163, 0.0019490455, 0.027640406, 0.008748387, 5.310694E-05, 0.019559886, 0.017602574, -0.025577296, 0.008748387, 0.0031095457, 0.019652462, -0.009138527, 0.017906751, -0.025154093, -0.013390388, 0.004503138, 0.0006529881, -0.011082613, 0.00076126837, -0.0006352169, -0.015989115, 0.016531345, -0.007617643, -0.017324848, 0.017919976, -0.011307439, -0.014759184, 0.000501313, -0.0065927, -0.050413985, 0.0013985517, 0.011036325, -0.021358496, 0.005951284, -0.020657567, -0.010725535, 7.8588455E-06, -0.01678262, 0.024082862, -0.0072737914, 0.0120348185, 0.011056162, -0.0057264576, -0.011340502, -0.008404535, -0.00457257, -0.0017787726, 0.020763367, 0.009231103, 0.013674728, -0.014335982, 0.0039906665, 0.0059380587, 0.00036988882, -0.017351298, 0.0010472606, 0.019097008, 0.0061364346, 0.0046684514, -0.0266353, -0.0126101095, 0.014322756, 0.0050916537, -0.012484471, -0.011419852, 0.018898632, -0.0018746544, 0.02355386, -0.026066624, -0.006357955, 0.014441782, 0.001783732, 0.017602574, -0.017681925, 0.01493111, 0.00457257, 0.006113291, 0.030497024, -0.0019473924, -0.009965094, 0.020710468, 0.014507907, -0.0110231, 0.016861971, 0.0033112282, 0.021583322, -0.01501046, -0.02806361, 0.010249433, 0.012801873, 0.025074743, -0.028936464, -0.01511626, -0.0069431644, 0.020564992, 0.0062786043, -0.004860215, -0.01579074, -0.0067480947, -0.01495756, -0.02022114, -0.011942243, -0.012980411, -0.01493111, -0.0028748007, -0.013820203, -0.0113537265, 0.009475767, -0.016491668, 0.013767303, -0.013198625, -0.010910687, 0.009819618, -0.002583849, -0.023990287, 0.0153807625, 0.0222049, 0.020115338, -0.0045064446, 0.008655812, 0.018568005, -0.020472417, 0.017245498, -0.022376828, -0.019864062, -0.032692384, 0.034173593, -0.009482379, -0.027508156, -0.0019077171, 0.0036864898, 0.01271591, 0.015235286, -0.014719509, -0.031131826, 0.018488655, 0.0047709458, 0.004096467, 0.023064531, -0.020922069, 0.0009497257, 0.001205135, 0.014693058, -0.005412362, -0.026674977, 0.0037360836, -0.004417175, 0.015354312, 0.014798859, -0.018991208, 0.007901982, -0.022257801, -0.0040204227, 0.0022284251, 0.0110231, 0.029095165, 0.02671465, 0.013330876, -0.008536786, 0.014031805, -0.016200718, -0.026622076, -0.0066522127, -0.021305596, -0.008536786, -0.018991208, -0.0051875357, 0.053826056, -0.015883315, -0.016174266, 0.0126431715, 0.010513934, -0.04364275, 0.0060471655, 0.015645264, 0.016385868, 0.023395158, 0.032216284, 0.0029491917, 0.037691463, 0.011552103, 0.0053660744, -0.02801071, -0.023249682, -0.011690967, -0.016253617, 0.009026114, -0.010732149, -0.040918384, -0.015195611, 0.0009579914, 0.021675898, 0.0055809817, -0.0054321997, -0.016121367, -0.0036864898, 0.00044758612, 0.0119290175, 0.029571269, 0.008569849, 0.011942243, -0.02975642, -0.0003911729, -0.017986102, 0.0031326897, 0.0073333043, -0.025630195, 0.028645512, 0.00969398, -0.0011142126, -0.001747363, -0.022495853, -0.012411733, -0.025841797, -0.004212186, 0.016213942, -0.006027328, 0.023487734, 0.014005355, -0.020128565, -0.02105432, 0.032824636, -0.017933201, -0.03882882, 0.00919804, -0.022138776, -0.00972043, -0.009164977, 0.008622749, -0.0026169117, -0.016134592, 0.0039080097, -0.005643801, 0.014613708, 0.022786804, 0.039146222, -0.040177777, -0.0037955965, -0.009832843, 0.003689796, 0.024810242, -0.0003000439, 0.010963587, -0.011393402, 0.023130657, -0.013740853, -0.00019951265, -0.010421359, 0.0018498574, 0.012867998, 0.0059380587, 0.032507233, 0.20250235, 0.01587009, 0.011095838, 0.03308914, 0.008569849, 0.022032974, 0.011307439, 0.008735162, 0.012444796, -0.006546412, -0.027137853, 0.012543984, -0.006334811, -0.00609676, 0.017271947, -0.019216035, -0.04411885, -0.009376578, -0.02311743, 0.01193563, 0.01274236, -0.027032053, 0.010963587, -0.019784713, 0.017404199, -0.0038914783, -0.014574032, -0.016055241, 0.008100359, -0.00078193255, 0.010904075, -0.024995392, 0.015539464, 0.0027243656, -0.0130266985, 0.016451994, 0.025286343, 0.00933029, -0.011876117, 0.024849916, -0.0034385195, -0.0020366616, -0.0016208983, 0.020816268, -0.0018201009, 0.020525316, -0.022654554, 0.0104478095, 0.0005860361, 0.019189583, -0.031872433, -0.018925082, -0.0027111403, 0.0069233268, -0.011968693, -0.018237378, 0.022495853, -0.0030467266, 0.006715032, 0.024426714, 0.0041989614, 0.031343427, -0.0077829566, 0.013912779, -0.00489989, 0.03737406, -0.0064736744, 0.003038461, 0.012028206, -0.011955468, -0.004218799, -0.014349206, -0.012709297, 0.029174516, -0.008298734, 0.00083565945, 0.0030087046, -0.01016347, -0.010057669, 0.016518118, 0.0099254185, 0.0004612245, 0.009217877, -0.0110760005, -0.000578597, -0.039622325, -0.012087719, -0.013416839, 0.0059909592, -0.010851174, 0.0069762273, -0.0062058666, -0.0054222806, -0.010295721, -0.006751401, 0.020948518, -0.010871012, 0.02003599, -0.0014059908, 0.0011299173, -0.048218623, 0.015235286, 0.0009728696, -0.007293629, -0.0347555, 0.011380177, -0.016266841, 0.026185649, 0.013978904, -0.003901397, 0.004837071, 0.0030830957, -0.00041700315, -0.0049726283, 0.004893278, 0.0030252358, 0.030179622, -0.01868703, 0.00028185942, -0.018250603, 0.007855695, -0.027561057, -0.0031095457, 0.012345607, -0.010546997, -0.021001419, -0.013595377, 0.03179308, 0.009416253, -0.020287266, -0.02207265, 0.0008538439, 0.016108142, -0.016332967, 0.023461282, -0.010765211, 0.0055809817, -0.02196685, -0.0040534856, 0.02016824, -0.0031756712, -0.009502216, 0.008741775, 0.018792832, 0.037400514, -0.02035339, 0.023672884, 0.0013886329, -0.004761027, -0.016385868, -0.02540537, 0.00025375612, 0.012788648, 0.0016878502, 0.0073002414, -0.029306766, -0.03531095, -0.030814424, 0.014719509, -0.017126473, -0.012729134, -0.009674142, 0.017060347, -0.014084705, -0.008907088, 0.0024152293, -0.16875196, 0.009449316, 0.018356403, -0.008543398, -0.0053065615, -0.006533187, 0.00025478934, 0.0019821082, -0.035575453, 0.017232273, 0.01952021, -0.0078094066, -0.018250603, 0.009343515, 0.012100943, 0.014521132, 0.008768225, 0.016597468, -0.0019473924, 0.010421359, 0.021332046, -0.010976812, 0.021543648, -0.01949376, 0.00841776, 0.008166484, 0.022297477, 0.0130795995, -0.007802794, -0.020260815, -0.009951869, -0.014441782, 0.051868744, 0.006493512, 0.024968943, -0.01182983, -8.456816E-05, 0.0038418842, -0.017047122, 0.022323927, -0.016280068, -0.0033988443, -0.0063810986, -0.0012712603, -0.008893863, 0.017298399, -0.034279395, -0.00045915807, -0.008106971, -0.022839705, 0.025947597, -0.012762197, -0.00049842004, -0.011261151, 0.04586456, 0.0040799356, 0.008437598, 0.0052701924, 0.021041095, -0.00188292, -0.026899803, -0.024889592, 0.008166484, -0.009634467, -0.02824876, -0.01232577, 0.012577047, 0.021398172, -0.019004432, 0.030153172, -0.007663931, 0.01182983, 0.007736669, -0.02824876, 0.015579139, 0.01399213, -1.8210309E-05, -0.02295873, 0.017364524, -0.014309531, -0.022152001, 0.027455255, -0.011254539, 0.04105063, -0.011300826, 0.009727043, -0.028910015, -0.0047411895, -0.01952021, 0.002988867, 0.012001756, -0.029386116, 0.018184477, 0.0020746836, 0.01850188, 0.01589654, 0.016848745, -0.011128901, 0.014653383, -0.009760105, 0.014468232, -2.0263811E-05, -0.01571139, 0.023487734, 0.026648527, 0.005855402, 0.02811651, 0.00038394047, 0.030206071, -0.0026251774, 0.004562651, 0.013178787, 0.022614878, 0.0130266985, 0.020657567, -0.0032632872, 0.0036368957, -0.019731812, -0.007353142, 0.0037989027, 0.032216284, -0.023897711, -0.012140619, -0.0038716407, 0.009508829, -0.019612785, -0.09045951, -0.00037753457, 0.03345944, 0.023831585, -0.0025640114, 0.0076044183, -0.011697579, 0.025987273, -0.0077168313, 0.007591193, -0.00022028016, -0.010388296, -0.0030202765, 0.00017233926, 0.03684506, -0.0024780484, 0.023077756, -0.034993548, -0.02801071, 0.00839131, -0.003812128, -0.035575453, 0.0044733817, -0.017576125, -0.012100943, -0.0061661913, -0.030364772, -0.01188273, 0.01941441, 0.011677741, -0.020617893, -0.008536786, 0.015565913, -0.02097497, -0.0035211763, -0.016399093, -0.03197823, 0.010540385, 0.026648527, -0.022032974, -0.014402106, 0.0037129398, 0.01850188, -0.032322083, -0.011895955, -0.014574032, -0.0125043085, 0.011142125, 0.030549923, -0.041526735, -0.023858035, -0.013912779, -0.009608017, -0.02551117, 0.006903489, -0.015142711, -0.020102113, 0.023434833, -0.0017523224, 0.0048172334, -0.018356403, 0.008014396, 0.0059612026, 0.0218875, -0.010765211, -0.014402106, -0.004423788, -0.0052734986, 0.0076573184, -0.0030682173, -0.003431907, -0.007994558, 0.009389804, 0.026807228, -0.018488655, 0.0042584743, -0.037955966, 0.0036997148, 0.0019788018, 0.004036954, -0.0016837174, -0.018052228, 0.019017657, -0.012411733, 0.0070357397, 0.01912346, 0.014481457, -0.01579074, 0.0031541805, -0.010051057, -0.01104955, 0.02145107, 0.02975642, -0.003298003, -0.003752615, -0.009905581, 0.00504206, -0.018938307, -0.017390974, -0.007935045, -0.0026797308, -0.013397001, -0.078239545, 0.015962666, 0.016690046, -0.018144803, 0.02207265, 0.0055446126, 0.00033517298, 0.0011142126, -0.012583659, -0.007048965, -0.030073822, 0.013000249, 0.0049726283, -0.0115983905, -0.018911857, -0.008457435, 0.014759184, 0.019268934, 0.018779607, 0.022112325, -0.010930524, -0.0037327774, -0.01321185, 0.0072142784, -0.03179308, 0.012649784, -0.025048291, -0.00933029, 0.011009875, 0.022945505, 0.012596884, -0.008900476, 0.021146895, 0.03136988, -0.035575453, -0.034676146, -0.0037955965, 0.0013679687, 0.009819618, -0.025220219, -0.020551767, -0.016967772, 0.019255709, 0.013555702, -0.050281737, -0.0005719845, 0.015261737, 0.012867998, 0.0040303417, 0.0036633457, 0.042796344, 0.0033922317, 0.012008368, -0.005435506, -0.012272869, -0.027693307, -0.005719845, -0.013674728, -0.005448731, -0.021861048, 0.053640906, 0.026727878, 0.022323927, -0.0021193183, -0.0108313365, 0.0049792407, -0.019983089, 0.0066786627, -0.0042518615, -0.0056636385, -0.0045924075, -0.009270778, 0.036686357, -0.0017738132, -0.005904996, 0.0141772805, 0.017285174, -0.025206992, -0.016954547, 0.032374986, 0.02295873, -0.018250603, -0.052133247, 0.006186029, -0.0083053475, 0.009674142, -0.014005355, 0.015155936, -0.021861048, 0.014838534, -0.022337152, 0.015261737, 0.0070357397, -0.0051544732, 0.016042016, 0.013013474, 0.0046089385, 0.009508829, 0.020485641, 0.0057264576, 0.013555702, 0.006090147, -0.0061463537, -0.032401435, 0.011347114, -0.02110722, -0.025286343, -0.012993637, -0.010765211, 0.029174516, -0.00462547, -0.015856866, -0.025907923, 0.0039047033, -0.009343515, -0.015473338, 0.010196533, -0.02402996, -0.021953624, 0.017800951, 0.012709297, 0.034649696, 0.008378085, -0.003162446, 0.018356403, -0.026913028, -0.0050023845, 0.015248512, -0.0024515982, 0.0064075487, 0.0063414234, 0.001292751, 0.01193563, -0.004423788, -0.009634467, -0.01600234, 0.016716495, 0.01930861, -0.0056867823, 0.06474997, 0.021041095, -0.02264133, 0.032427885, -0.007935045, 0.025193768, 0.025907923, 0.002089562, 0.009131914, -0.02371256, 0.030549923, 0.008920313, -0.0015398947, 0.016108142, -0.026331125, 0.011135513, 0.01229932, -0.0061165974, -0.02024759, 0.006209173, 0.030338323, -0.034226496, 0.006715032, -0.0014390534, -0.0064075487, -0.0041625923, 0.03160793, 0.011347114, -0.0031310364, -0.014600483, 0.0064042425, -0.008153259, -0.015856866, -0.015856866, -0.0059083025, -0.002496233, -0.014335982, 0.0119290175, -0.017033897, 0.012186906, 0.008140034, 0.040045526, -0.010745374, -0.009079014, 0.016451994, 0.0110231, -0.014547583, -0.0034980325, -0.021530421]
+ },
+ {
+ "Id": 88,
+ "Type": "Bags",
+ "Brand": "Green Equipment",
+ "Name": "Alpine AlpinePack Backpack",
+ "Description": "The AlpinePack backpack by Green Equipment is your ultimate companion for outdoor adventures. This versatile and durable backpack features a sleek navy design with reinforced straps. With a capacity of 45 liters, multiple compartments, and a hydration pack sleeve, it offers ample storage and organization. The ergonomic back panel ensures maximum comfort, even on the most challenging treks.",
+ "Price": 129.00,
+ "Embedding": [0.02501344, 0.016288131, 0.016662264, -0.020523848, -0.020737639, 0.01803854, -0.015726933, -0.04013909, 0.011063637, -0.0118653495, 0.00873867, 0.011805221, 0.0037179433, -0.004703382, -0.0131614525, -0.012687106, 0.028033225, 0.004088735, 7.979287E-06, 0.012252844, -0.004539699, 0.023570357, 0.0034640676, -0.016087703, -0.0067510903, -0.032202132, 0.005672118, -0.010208476, 0.03468744, -0.024492327, 0.012272887, -0.0018238967, -0.014885135, -0.0035743031, 0.003744667, -0.0011758455, 0.007589548, -0.006914773, 0.0105158, 0.008291047, 0.019067403, 0.0017754599, 0.010235201, 0.010682823, -0.01925447, 0.007896871, -0.015459696, -0.024398794, -0.0107496325, 0.016328217, 0.0053180284, 0.000121613986, 0.0014288861, 0.012379782, 0.0072020534, 0.014364022, -0.00419229, 0.0066742594, 0.025120335, -0.01803854, -0.023009159, -0.008631775, -0.01741053, -0.005678799, -0.00026494105, -0.032736607, -0.0040486497, -0.010188434, 0.007455929, 0.018519565, 0.018840251, 0.013368561, 0.015005392, 0.012961024, -0.0017044749, -0.016368303, -0.019388089, 0.013415328, -0.024011299, 0.02891511, 0.021552714, -0.0544363, -0.001257687, -0.016809246, 0.010168391, 0.009894473, -0.0056587565, 0.00016566644, -0.022220807, -0.012453273, -0.010054815, -0.01704976, 0.010235201, 0.0038047954, -0.037119303, -0.005050791, 0.021151857, 0.014577812, 0.0035609412, -0.034794338, -0.0014163593, 0.009446849, -0.0033421402, -0.010074858, -0.043933865, -0.013234942, -0.0085181985, -0.0051643667, 0.027351769, 0.023917766, -0.045590736, 0.0047167437, 0.040807184, -0.034072794, -0.015379525, -0.021405732, 0.021512628, -0.009620554, 0.014671344, -0.02792633, 0.008925736, 0.006480512, 0.03623742, -0.014497641, -0.009213016, 0.020978153, -0.008752031, -0.01704976, 0.017771302, -0.00789019, -0.004085395, 0.04179596, 0.021726418, 0.010362138, -0.029449584, 0.017557511, 0.0051643667, -0.0009002567, -0.0213122, 0.0006781154, -0.0029947315, 0.026202647, -0.032496095, -0.012125907, -0.0013654171, 0.015072201, 0.0022848817, 0.015366162, 0.0074225245, -0.0010823123, 0.0361038, -0.014858411, 0.01826569, 0.013401966, -0.029609928, 0.013562309, -0.018439395, -0.0042223544, -0.051683754, -0.0059426962, -0.0070216684, -0.0025554597, 0.004553061, -0.012446592, 0.022982433, 0.02479965, 0.005622011, -0.0021111772, 0.0005511776, 0.012085821, -0.019094126, 0.030705601, -0.007475972, 0.017383806, 0.01839931, 0.0034473652, 0.010088219, 0.002927922, -0.010281967, -0.00930655, 0.0044728895, 0.0012827405, 0.0063702767, 0.011611474, -0.01576702, -0.013789461, 0.007308949, -0.0055251378, 0.0020259952, -0.012887534, 0.011377641, -0.006764452, -0.025106974, 0.0044161016, -0.64778394, 0.0042991852, -0.009533701, -0.02117858, 0.04286491, 0.027325045, 0.021766502, 0.032228857, 0.0055184565, -0.0013888004, 0.005728906, 0.02422509, -0.0097942585, -0.019441536, 0.009186293, -0.019722136, 0.024986716, -0.010395543, 0.023850957, -0.0021763162, -0.04355973, 0.0040954165, -0.03629087, -0.016448475, 0.008625094, 0.0077164858, 0.021713056, -0.020203164, -0.0074292053, 0.015379525, -0.022220807, 0.05160358, -0.025026802, 0.027739264, 0.04433472, -0.024746202, -0.007582867, 0.034233138, 0.020737639, 0.021860037, -0.0049438956, -0.018573014, -0.015726933, -0.013555627, -0.018225605, 0.0068479637, 0.03190817, -0.0018856954, -0.016475199, -0.029690098, 0.03589001, -0.021272114, 0.0023583719, -0.02771254, 0.0019107489, -0.015807105, 0.023543634, 0.010956742, 0.0029730184, 0.005521797, 0.0020510487, 0.009359998, -0.012413187, -0.0108698895, -0.03388573, 0.028888386, -0.039818402, -0.035221916, 0.0026890785, -0.0024418836, 0.005792375, 0.03174783, 0.0060562724, -0.0040686927, 0.016395027, 0.019481622, -0.0037713908, 0.0109300185, -0.010328733, 0.015860552, 0.025000079, -0.0027625689, -0.005251219, -0.009981325, 0.038535662, -0.02145918, 0.0064905332, 0.0031517337, 0.030892668, 0.00023153634, 0.03923048, 0.024345346, 0.0023784146, -0.037493438, -0.028193567, 0.011250704, -0.03289695, 0.01762432, 0.016835969, -0.013709289, 0.0038883071, -0.013368561, 0.01505884, 0.008772074, 0.009293187, 0.007723167, 0.0033504914, 0.019107489, 0.045109708, -0.010255244, 0.0034907912, -0.028113397, -0.018933784, -0.012920938, 0.011571389, -0.02891511, 0.021713056, -0.0068045375, 0.020550571, -0.049973432, 0.020096269, -0.012219439, 0.01606098, -0.0033638533, -0.026256096, 0.029315965, 0.0036644957, -0.024492327, -0.022782005, -0.030732324, -0.011912117, -0.0015858882, 0.020510487, 0.0076697194, 0.018212244, 0.025080249, 0.004215673, -0.022180721, 0.003261969, -0.04184941, -0.024813011, -0.004255759, -0.014684707, -0.0361038, -0.012526763, -0.01144445, -0.034500375, -0.026042305, -0.0007273874, -0.015499781, 0.018319137, -0.011023551, 0.010609333, 0.01030869, 0.024893183, -0.023784148, -0.0059660794, -0.016608818, -0.0006985758, -0.0049672793, 0.024478965, 0.009239741, -0.028220292, 0.010068177, -0.028540976, 0.013722652, -0.010555886, 0.022007016, 0.003851562, -0.042009752, 0.012827405, -0.0132149, -0.022100551, 0.008478113, -0.028380634, -0.02088462, -0.014203679, -0.0180519, 0.03190817, 0.012419868, 0.0052913046, -0.0049672793, -0.0055652233, 0.012032373, 0.035489153, -0.004135502, 0.01670235, 0.03575639, -0.0056086495, 0.00419229, 0.010248562, 0.023677252, 0.006861326, 0.012593572, -0.02720479, -0.014043337, -0.0050407695, 0.012479996, 0.020751, 0.017383806, 0.018385947, -0.039658062, 0.021512628, -0.010041453, 0.030785773, -0.023209587, -0.0006493039, -0.0024752885, 0.034580547, 0.0015900638, -0.0030932752, -0.0071686488, -0.010923337, -0.028220292, 0.008404623, 0.0064504477, 0.01492522, 0.039738234, -0.0020426975, -0.03270988, -0.003063211, -0.0026339607, 0.010636057, -0.03148059, -0.030892668, 0.0001570021, -0.029235795, 0.042036477, -0.0028093355, -0.026616866, 0.021940207, 0.013388604, 0.0057021827, 0.019628603, 0.0044962727, 0.020697553, 0.011464493, -0.010829804, 0.041395105, -0.00078835094, 0.01001473, 0.021044962, 0.014858411, -0.0076229526, 0.028888386, 0.019147575, 0.0029596565, 0.011598112, -0.013488818, 0.013842908, 0.010268605, 0.00533139, 0.00802381, -0.011384322, 0.00022443784, -0.01797173, 0.030384917, 0.010956742, 0.0155131435, 0.009273145, -0.0030414981, 0.010823123, 0.0057856943, -0.012306292, 0.028754767, -0.028006501, -0.01867991, -0.0312668, -0.010616014, 0.010114944, 0.024986716, -0.02359708, 0.008818842, -0.0030030827, 0.011918797, -0.0071218824, 0.00021097157, 0.015873915, 0.0008372053, 0.019949287, -0.02294235, -0.034286585, 0.009600511, 0.039551165, 0.01094338, -0.0021829973, -0.01612779, 0.029823717, -0.027632369, 0.016020894, 0.0084179845, 0.006617471, -0.016515285, 0.0023466803, 0.0038248382, -0.021940207, 0.021338923, 0.013882994, 0.012172673, 0.0007946143, -0.009460212, -0.00078501046, -0.00030440034, -0.009192973, 0.039871853, 0.007375758, -0.018385947, -0.023329843, 0.01655537, -0.004883767, 0.010562566, -0.014203679, 0.010094901, -0.013842908, 0.01762432, -0.0009887791, -0.017089846, -0.009500297, 0.019307917, -0.00789019, -0.01108368, -0.02650997, -0.011604793, 0.013228262, 0.0831109, 0.0069014113, 0.0074292053, 0.024492327, 0.011851988, -0.026309542, -0.016648903, -0.011183894, 0.00017485273, -0.012346378, -0.0010280297, 0.01968205, 0.012232802, -0.01634158, 0.0018573013, 0.01890706, 0.0036544744, -0.039604615, -0.014604535, -0.015686847, 0.0142972125, -0.011090361, -0.0039250525, 0.019134212, 0.017838111, 0.0049906624, 0.015913999, 0.013388604, 0.032496095, -0.017170016, 0.010716228, 0.0044027395, -0.004509635, 0.0009470233, -0.017891558, 0.0005511776, 0.0054382854, -0.022768645, 0.026603503, 0.008364537, 0.015940724, 0.017771302, 0.018466119, -0.027445303, 0.02920907, 0.0033571725, -0.01612779, 0.020363506, 0.016194599, -0.016809246, 0.026269456, 0.006153146, -0.023770785, -0.00802381, 0.016448475, 0.022007016, 0.008645137, 0.0041755876, -0.022407873, -0.034420203, -0.0062500197, -0.01151126, 0.024772927, -0.03490123, -0.010489076, -0.015406248, -0.024746202, 0.018172158, -0.022180721, -0.016942864, -0.022474684, -0.016501922, -0.024839737, -0.0010330403, 0.029877165, -0.0006768628, 0.0071285632, -0.010936699, 0.008858927, 0.014965306, 0.01428385, 0.0049205124, -0.013909717, -0.018172158, 0.005578585, -0.0047668507, 0.005448307, -0.013649161, 0.008157428, 0.015219182, 0.035195194, -0.00660745, 0.034206413, -0.0045797843, -0.01471143, 0.009346635, 0.009386721, 0.029022004, 0.023917766, -0.026282819, 0.0339659, -0.0007703959, -0.009353316, -0.024251813, 0.013989889, 0.0052345167, -0.012252844, 0.00013309685, -0.0024352027, 0.015032115, 0.024839737, -0.038615834, -0.0063702767, 0.01172505, -0.023784148, 0.029583203, -0.002067751, -0.014470916, 0.020336783, -0.027004361, 0.008003767, -0.043533005, 0.02096479, 0.0107496325, -0.005678799, 0.038134806, 0.015072201, -0.0012760595, -0.015526505, 0.017570872, -0.005251219, 0.017517425, -0.021485904, -0.0041455235, -0.01456445, -0.024492327, -0.026456524, 0.015686847, -0.0031667657, -0.005224495, -0.0015073871, 0.01570021, 0.0142170405, 0.033671938, -0.008571646, -0.015259268, -0.016582094, -0.009560426, -0.010990147, 0.03332453, -0.024826374, -0.0005344752, -0.009152888, -0.01115049, -0.011912117, -0.014364022, -0.024786288, 0.0065072356, 0.017744577, 0.017570872, -0.008611732, -0.01571357, 0.010742952, 0.016822608, -0.017223464, 0.003098286, -0.02451905, -0.013669204, -0.013194857, 0.008618413, 0.019508345, -0.003530877, -0.018385947, -0.023423376, 0.00213122, 0.019134212, -0.0003574303, -0.03332453, -0.011036913, -0.035408985, -0.00012098765, -0.025828514, -0.0030364874, -0.016568732, -0.02835391, -0.0075695054, 0.03209524, 0.023690615, 0.0014723121, 0.013829546, 0.018172158, -0.03971151, 0.014110146, 0.013662523, 0.009480254, -0.0025203847, -0.013234942, -0.038455494, -0.021686332, -0.0107496325, -0.0037146027, 0.0052178144, 0.02053721, -0.019722136, -0.027418578, -0.010569247, -0.012961024, -0.011731731, 0.005548521, -0.011397684, -0.005892589, -0.007355715, -0.0019090787, -0.01867991, -0.0064203837, 0.009981325, -0.017798025, 0.016381666, -0.016849332, 0.009059355, -0.0006760276, -0.0032001704, 0.024198366, -0.004292504, 0.009894473, 0.027191427, -0.023503548, -0.02252813, -0.02955648, 0.0040486497, 0.013776098, -0.0012192716, 0.0049071508, 0.003744667, -0.013869632, -0.002821027, 0.01471143, 0.014511002, -0.018599737, 0.035783116, 0.03701241, 0.026483247, -0.021632884, -0.01940145, -0.0029830397, 0.029796993, -0.010996828, 0.00930655, -0.0015098925, -0.016020894, -0.021165218, 0.015887275, -0.009587149, 0.004456187, -0.0021913485, -0.024572497, 0.013629118, -0.010562566, 0.009239741, -0.0017028046, 0.012867491, 0.022341063, 0.0017821408, -0.014497641, 0.0016368304, 0.008972502, 0.0085783275, 0.020216525, -0.0046165297, 0.021432456, -0.021285476, -0.01769113, 0.0017420552, -0.008631775, 0.020710915, -0.00032235536, -0.01741053, -0.011524622, 0.008224238, -0.016822608, 0.008571646, -0.009553744, -0.0016017554, -0.012606935, 0.0048269792, 0.01456445, -0.034874506, -0.027338408, -0.0006772803, -0.030384917, -0.029342689, 0.011043594, 0.019067403, 0.017437253, -0.016007533, -0.02295571, -0.01668899, 0.00073365076, -0.048396733, -0.010068177, 0.02294235, 0.0067277066, -0.033003844, 0.021058323, -0.006690962, -0.010101582, 0.011851988, 0.008197513, -0.021071685, -0.008778756, -0.014470916, -0.008164109, -0.024545774, -0.0035275365, 0.00760291, -0.004426123, 0.016782522, -0.011344236, -0.025066888, -0.002812676, 0.014043337, 0.005872546, 0.03319091, -0.03794774, -0.012366421, -0.009299869, 0.010689504, 0.0077565718, 0.0009988006, -0.015165734, -0.005642054, 0.0012459954, 0.03289695, -0.013301752, 0.02031006, 0.011337556, -0.013375242, 0.012773958, 0.0014773229, 0.018599737, 0.041020975, 0.013295071, 0.015579953, 0.014176955, -0.025280679, 0.0041321614, 0.013482138, -0.025601363, -0.0008693573, -0.025253953, 0.014444193, 0.044682126, -0.0014931902, -0.02259494, 0.0053848377, 0.0119655635, -0.014444193, -0.01520582, 0.0033237678, 0.01392308, 0.012520082, 0.03409952, -0.0035743031, 0.028968556, 0.02295571, 0.019762222, 0.009647278, -0.012887534, 0.004392718, 0.015085563, -0.001648522, -0.031453867, -0.030010784, -0.023423376, 0.022047102, 0.021806588, -0.015018754, 0.0064036814, -0.0071152016, -0.028701318, -0.020871257, -0.0017220123, 0.01890706, 0.017771302, 0.007803338, -0.011624836, -0.00348077, -0.0009854387, 0.044815745, 0.013502181, -0.0010931689, 0.022461321, 0.02608239, 0.0062500197, -0.011217299, -0.033805557, -0.0053614546, -0.012112545, 0.004937215, 0.011090361, -0.026109114, 0.006243339, -0.002117858, -0.013829546, 0.013295071, 0.010422267, -0.01648856, -0.02025661, 0.0074960147, -0.03327108, 0.0047568292, -0.00073573855, 0.039257206, -0.003667836, -0.022220807, 0.029930612, -0.00746261, -0.0018038539, 0.012687106, 0.0180519, -0.022688473, -0.0050641526, 0.0054115616, 0.0027174724, 0.024679393, 0.015112286, -0.0036845384, -0.024772927, 0.013662523, -0.016528646, -0.04583125, -0.039738234, 0.015593315, -0.004790234, -0.0056453943, 0.029663375, 0.1832181, 0.013034514, 0.0043993993, 0.0070884777, -0.0071218824, 0.01101019, 0.005578585, 0.002502012, 0.010829804, 0.0051176003, -0.0057155443, 0.02501344, -0.022087188, -0.00433259, 0.01691614, -0.030384917, -0.04184941, -0.010535843, -0.032015067, 0.016809246, -0.014791601, 0.0012059098, 0.022755282, -0.0029396138, -0.01357567, -0.015459696, -0.008010447, -0.008117342, 0.010762995, 0.020764362, 0.0049672793, -0.037546884, 0.0031417122, -0.023316482, 0.015072201, 0.008992545, 0.021285476, -0.0009946249, -0.01769113, 0.0062299767, -0.01968205, 0.012112545, 0.025106974, 0.0026773869, -0.012640339, -0.01790492, -0.033217635, 0.014003251, -0.005591947, -0.0070483917, -0.0010981795, -0.0030114339, 0.011377641, 0.0038114763, 0.00703503, 0.010602652, 0.02552119, -0.01172505, -0.003971819, 0.015873915, 0.007502696, 0.031079734, 0.0035108342, 0.020497125, 0.0061297626, 0.022969073, -0.0075160577, -0.007275544, 0.008832203, -0.010469033, -0.0018957168, 0.009994687, -0.0017771301, 0.032522816, -0.018372586, -0.0013178155, 0.028514253, 0.030251298, -0.0034507057, 0.021338923, -0.002365053, -0.012553487, 0.0059727607, 0.00092948583, -0.015793743, -0.030144403, 0.0039818403, -0.009740811, 0.010475715, -0.006700983, 0.0024218408, -0.027632369, 0.009346635, 0.00966064, -0.0107897185, 0.021512628, -0.0143372975, 0.005127622, -0.009620554, 0.013555627, -0.004386037, 0.020644106, -0.021365646, 0.0025320763, -0.022194084, 0.015793743, 0.0042524184, 0.016809246, 0.000109087225, -0.023075968, -0.0057389275, -0.040700287, 0.0054683494, -0.011544664, -0.00038436285, 0.006203253, -0.0036578148, -0.016381666, 0.013361881, -0.014364022, -0.004740127, -0.022581577, 0.022568217, -0.012186035, -0.0040486497, -0.014738154, -0.019281194, 0.006714345, 0.008471432, -0.026362991, -0.00312668, 0.021579437, 0.0132616665, -0.018158795, 0.01471143, 0.004960598, -0.023984576, -0.016328217, -0.01392308, 0.01676916, 0.00017203421, 0.005344752, 0.024452241, 0.009099441, 0.042116646, -0.0057656514, 0.0065907477, -0.016020894, -0.01328839, -0.02202038, 0.0029763589, 0.0011683294, -0.025334125, 0.0018289074, -0.016942864, -0.024024662, -0.062640496, -0.02096479, 0.010876571, 0.016822608, -0.010923337, -0.0018790144, 0.0143372975, -0.018319137, -0.013842908, 0.016234685, -0.16953553, 0.004960598, 0.024412155, -0.024398794, -0.0153528005, 0.02358372, 0.00097374705, -0.0005094217, -0.022741921, -0.007141925, 0.043319218, 0.0129343, -0.0120256925, -0.028327186, 0.010535843, 0.001215096, 0.011604793, 0.013749375, 0.0032235538, 0.0053881784, 0.0228889, 0.0043192278, 0.0050841956, 0.0075494624, -0.0034340033, -0.0060796556, 0.009259783, 0.008224238, -0.012747234, 0.009627235, 0.0009670661, -0.011751774, 0.029663375, -0.0015733615, 0.022835454, -0.01691614, -0.0027759306, -0.016822608, -0.0074692913, 0.026723761, -0.014738154, 0.00881216, 0.010562566, 0.0007215415, -0.0044528465, 0.01158475, 0.018185519, 0.0042223544, 0.01940145, -0.003333789, 0.00703503, -0.026055668, -0.014390745, 0.008337813, 0.029823717, 0.0029913909, 0.0065974286, 0.0076630386, 0.020991514, 0.0051844097, -0.023329843, -0.005478371, -0.012553487, 0.004229035, -0.0077766143, 0.0039551165, -0.0047367867, -0.007629634, -0.0118653495, 0.015379525, -0.014404107, -0.009994687, 0.0040486497, -0.009420126, 0.011290789, -0.0062867645, -0.009446849, -0.0024352027, 0.0131614525, -0.005939356, 0.002749207, 0.03743999, -0.028514253, 0.0013445392, 0.005458328, 0.010368819, -0.02068419, -0.0012000639, -0.0056153303, -0.011664921, 0.01762432, -0.036745172, -0.0153928865, -0.00019479117, 0.0154730575, -0.005692161, 0.0048637246, -0.020149715, 0.010048134, -0.004576444, 0.0057155443, 0.009199655, -0.02323631, 0.022113912, 0.042089924, -0.0025387574, 0.009266464, -0.014617898, 0.0020026118, -0.014885135, 0.003667836, 0.006530619, 0.00867186, 0.00018643998, -0.008905693, 0.016742436, 0.018466119, -0.05547853, -0.0046198703, -0.037119303, 0.025481107, -0.0049472363, -0.006837942, 0.021165218, -0.0053347307, 0.014136869, -0.0916625, 0.0009228049, 0.024118194, 0.019735496, 0.0019424834, 0.0060562724, -0.015579953, 0.026002219, -0.0023500207, 0.011771817, 0.002096145, 0.0070884777, -0.007983724, -0.0056587565, 0.03468744, -0.0029396138, 0.011678283, -0.03730637, -0.034046073, 0.011457812, -0.009867748, 0.0040753735, -0.010776357, -0.020924704, 0.00080797623, -0.025427658, -0.029048728, 0.004085395, 0.03361849, -0.00046933605, 0.041983027, -0.011384322, 0.017076483, -0.036050353, -0.001513233, -0.024064746, -0.03444693, 0.019762222, 0.02323631, -0.018893698, -0.0015332758, -0.003530877, 0.009573787, -0.049332064, -0.009473573, 0.005939356, -0.008651817, -0.0037179433, 0.0066608973, -0.018212244, -0.009460212, -0.029609928, 0.0059226537, 0.00011754279, 0.0041455235, -0.006437086, -0.0012284579, 0.024412155, 0.010595971, -0.0016385006, -0.005130962, 0.01790492, 0.009400083, -0.0005561883, -0.016822608, -0.02152599, -0.0012351389, 0.00028352241, 0.0034573865, 0.0038281789, -0.02010963, 0.0017253528, -0.00788351, 0.026282819, -0.013789461, 0.0070216684, -0.03717275, -0.0009403423, -0.00319683, 0.014992029, -0.023824234, -0.027004361, 0.015539867, -0.007402482, 0.0077565718, 0.025000079, 0.009032631, -0.019174298, -0.0072020534, -0.017437253, -0.0008643466, 0.009005907, 0.033859003, -0.0045463797, -0.022915624, -0.013562309, -0.0037346457, -0.02330312, -0.0155131435, -0.009045993, -0.024185004, -0.00059084565, -0.083324686, 0.031587485, -0.009359998, -0.0052345167, -0.017196741, -0.008892331, -0.009226378, -0.0047668507, 0.016729074, -0.010669461, -0.022060465, -0.02749875, 0.017303634, -0.010455672, 0.0051910905, -0.006941497, 0.013381924, 0.022728559, 0.02465267, 0.0103755, -0.024144918, 0.0038114763, -0.0052378573, 0.0034974723, -0.04214337, 0.010054815, 0.002956316, 0.01734372, 0.014951944, -0.0050441097, 6.7801106E-05, -0.0016084363, 0.0106561, 0.031934895, -0.014698069, -0.03717275, 0.02565481, 0.021365646, 0.013114685, -0.024545774, -0.010094901, -0.0028110056, 0.026844017, -0.012466635, -0.041181315, 0.0053380714, 0.004128821, 0.005705523, 0.0050908765, -0.0037413265, 0.023744062, 0.007582867, 0.01264702, -0.02423845, -0.010609333, -0.009500297, -0.00088104897, 0.012239482, -0.0012309633, 0.0053347307, 0.027097894, 0.007482653, 0.019348003, 0.00931323, 0.0002177569, 0.011658241, -0.009486935, 0.0036344314, 0.017116569, -0.019094126, 0.001840599, -0.0067043235, 0.052619085, 0.0036411125, -0.0038849667, 0.009266464, 0.0053982, 0.0035910055, -0.0291289, 0.01556659, -0.0053113475, -0.006841283, -0.037894294, 0.0022782006, 0.0074358867, -0.005227836, -0.013595713, 0.016809246, 0.005862525, 0.015686847, -0.00930655, -0.011524622, -0.013695927, -0.013989889, 0.022341063, 0.013094643, 0.017504063, -0.01342869, 0.0073490343, 0.024679393, 0.009560426, 0.0002643147, -0.004469549, -0.02323631, -0.0030665516, -0.014417469, -0.011811903, -0.030304745, -0.03190817, 0.0083979415, 0.015873915, -0.019521708, -0.011618155, 0.009720768, -0.02707117, -0.0046165297, 0.0018907061, -0.025000079, -0.0119856065, 0.0154329715, 0.012707149, 0.036344316, 0.0007420019, -0.009099441, 0.0021713055, 0.0015207491, 0.0154329715, -0.005505095, 0.007275544, 0.018706633, -0.00021984469, -0.020764362, 0.016461836, -0.00980762, -0.02358372, 0.0029229114, 0.0017103207, 0.018145435, -0.01356899, 0.06686285, 0.0062867645, -0.013976527, 0.026028942, 0.021739779, 0.00901927, 0.027632369, 2.774156E-05, 0.00369456, -0.032041788, -0.01243991, 0.00038060482, 0.00077832956, 0.030304745, -0.02707117, 0.00048979645, 0.01642175, 0.021392372, -0.03113318, -0.0033220975, 0.02578843, -0.014056698, 0.0037914335, 0.018893698, -0.003644453, -0.0024285219, 0.036050353, 4.86195E-05, 0.028113397, -0.014470916, 0.014470916, 0.0028477507, -0.024358708, -0.024906546, 0.0030531897, -0.022741921, -0.016087703, 0.019481622, 0.0061798696, 0.016542008, 0.009480254, 0.017357083, -0.0132416235, -0.033778835, 0.01385627, 0.008571646, -0.013736013, -0.0048637246, -0.015873915]
+ },
+ {
+ "Id": 89,
+ "Type": "Jackets",
+ "Brand": "Legend",
+ "Name": "Summit Pro Down Jacket",
+ "Description": "Defy the coldest temperatures with the Legend Summit Pro down jacket. This high-performance jacket is filled with premium down insulation for exceptional warmth. The sleek design in deep navy blue is complemented by contrasting silver zippers and emblems. Equipped with weather-resistant fabric and a removable hood, this jacket is your ultimate companion for extreme winter adventures.",
+ "Price": 239.99,
+ "Embedding": [-0.0025709753, -0.005977055, -0.017564123, -0.020554334, -0.02529557, 0.0324613, -0.03321559, -0.009314103, 0.0017409225, -0.033915997, -0.0025187815, 0.014910648, -0.00094201753, -0.019153515, -0.018129839, -0.015880445, 0.021443315, -0.022844136, -0.0057548094, -0.012593907, 0.01947678, 0.02456822, 0.017564123, -0.0060511366, -0.015947793, -0.028043332, 0.024514344, -0.012533295, 0.018695554, 0.007401446, 0.02388128, 0.0062363413, -0.008633898, -0.00574134, -0.0021601582, -0.008088387, -0.020055965, -0.022803728, 0.003909499, -0.027518025, 0.030036805, -0.013657991, -0.014749014, 0.0063070557, -0.0047479705, -0.021173928, -0.012243702, -0.014493096, -0.0040744995, 0.01764494, 0.008344306, 0.0013789318, -0.02716782, -0.0051116445, -0.018008614, -0.008047978, -0.0045593986, -0.011314312, 0.022642095, -0.019369025, -0.009320838, -0.013711869, -0.010856352, 0.020715967, 0.0044078673, -0.03825315, -0.03733723, 0.00053835585, -0.0002813846, 0.021833928, 0.043748673, 0.038199272, 0.014412278, 0.01667514, -0.022184134, -0.031733952, -0.0024649038, 0.023032706, -0.005882769, 0.0023807199, 0.03709478, -0.032111097, -0.012236968, -0.0009150787, 0.018884126, -0.005202563, -0.010546556, 0.009125532, -0.032865383, -0.01950372, 0.0016626314, 0.020931479, 0.007057976, 0.01670208, -0.030467827, 0.018008614, 0.028204964, 0.0040206215, 0.001701356, -0.008957163, -0.007704508, -0.011745334, 0.002709037, -0.015126158, -0.02855517, -0.015880445, 0.004279908, 0.021914745, 0.013954318, 0.0010893393, -0.029821295, 0.024649037, 0.020689027, -0.03868417, 0.01880331, -0.0049601137, 0.018035553, 0.00059265445, 0.01009533, -0.017011877, 0.007852672, 0.01053982, 0.02621149, -0.017186979, 0.015085749, 0.00928043, -0.034912735, 0.00094791036, 0.015355138, 0.0098326765, 0.04108173, 0.035397634, -0.00626328, 0.0022578114, -0.014277585, 0.015355138, -0.025793938, 0.020715967, 0.0068828734, 0.013240439, 0.02666945, 0.013954318, -0.009536349, -0.0051453183, -0.0011928855, -0.004182255, -0.01573228, -0.009172674, 0.002562557, -0.0007214558, 0.008674306, -0.03386212, 0.033080895, 0.0052194, -0.014883708, 0.005485421, 0.013462685, 0.020177191, -0.011987783, 0.020365762, 0.019126575, -0.0058221566, -0.013334725, -0.0060477694, 0.006596648, 0.019315148, 0.009300634, 0.0035424572, -0.00660675, 0.00481195, 0.0043977653, 0.013132684, -0.020298416, 0.007246548, 0.037983764, 0.03060252, -0.0148433, -0.004650317, -0.0015430903, -0.010654311, 0.0042260303, -0.021712704, 0.0027494451, 0.031653136, -0.024554752, 0.003606437, 0.025093528, 0.0026231695, 0.005276645, 0.0016415855, 0.026413532, 0.013429011, 0.006293586, 0.011119005, -0.64308393, -0.009334307, -0.014277585, -0.032138035, 0.022332298, 0.0059736874, 0.02086413, 0.0066471584, -0.014870239, 0.015058811, 0.015934324, 0.015530241, -0.0034650082, -0.017254326, -0.0020220967, -0.023935158, -0.027302513, -0.009859615, -0.0026602102, -0.00787961, -0.019584537, 0.020231068, -0.017766165, -0.003528988, -0.0010851301, -0.012371662, 0.014331462, -0.0077449162, -0.009745125, -0.0028639352, -0.038522538, 0.014654729, -0.0009403338, 0.02226495, 0.050941344, -0.039761726, -0.005778381, 0.039465398, 0.026831083, 0.04474541, -0.015516771, 0.012007987, 0.01853392, -0.0016289579, -0.003737764, 0.008034509, 0.029902112, 0.005667258, 0.009347777, -0.0093410425, 0.020446578, -0.009273695, -0.009785533, 0.0064282804, -0.009011041, -0.008633898, 0.029309457, -0.0032629669, -0.011981049, 0.005673993, -0.008216346, 0.024069853, -0.010681249, -0.027666187, -0.039707847, 0.024258424, -0.035882533, -0.019800046, 0.02040617, -0.0125602335, 0.004630113, 0.027747003, -0.013530032, 0.020029027, 0.007394711, 0.0017931164, 0.016850244, 0.0022174031, -0.01573228, 0.018197186, 0.007401446, -0.0063238926, -0.010640841, -0.02763925, 0.027491085, -0.011408598, 0.016244119, 0.008526143, 0.019840455, 0.00393307, 0.014479626, 0.0055392985, -0.009926962, -0.020715967, -0.02965966, 0.026992716, -0.016715549, 0.01241207, 0.012896969, -0.016244119, 0.002296536, -0.014937586, -0.0013073755, -0.014048604, 0.012748806, -0.0068761385, 0.0032225586, -0.007704508, 0.033727426, -0.01922086, -0.019786578, -0.020365762, -0.027962515, -0.026157612, -0.010115534, -0.02551108, 0.018520452, -0.012863295, 0.02530904, -0.023167402, 0.020837191, -0.011435537, 0.029902112, 0.01101125, -0.044395205, 0.037444986, 0.019449841, -0.0097047165, -0.017025346, -0.021093111, 0.02040617, 0.017564123, 0.037391108, 0.0055392985, 0.005492156, 0.0079941, 0.019369025, 0.010573494, 0.0362058, -0.018062491, -0.019517189, 0.024716385, -0.0064686886, -0.009024511, -0.01763147, -0.043667857, -0.030952726, -0.021214336, -0.010364718, 0.015126158, -0.023113525, 0.010189616, -0.010142473, 0.031383745, 0.0319764, -0.015745752, 0.016419223, -0.01600167, -0.019773107, -0.021295153, 0.0042664385, -0.0030491399, -0.017496776, -0.0031602625, 0.00696369, -0.0076910383, 0.016998406, 0.011873293, -0.011752068, -0.03429314, -0.0015111004, -0.0023621994, -0.0035896003, 0.017362082, 0.00017983779, -0.009603696, -0.00429001, -0.017052285, -0.0045156227, -0.014264115, 0.010310841, 0.0017114581, -0.035316817, -0.012836357, 0.0324613, 0.01195411, 0.03599029, 0.021039233, -0.0108698215, -0.0019800046, -0.022480462, 0.013449215, 0.02345026, 0.0119608445, -0.006179096, -0.036124982, 0.031949464, -0.0064316476, 0.033781305, 0.033996813, -0.0071994048, -0.03687927, 0.008115325, -0.021604948, 0.023584953, -0.023746585, 0.02481067, -0.019732699, -0.004488684, 0.012701662, -0.008196142, -0.004973583, -0.025686182, -0.029740479, 0.010580229, 0.033942938, 0.01601514, 0.02157801, -0.0040610298, -0.017510245, 0.011240231, -0.0030339868, 0.018399227, -0.023733117, -0.024541281, -0.01600167, -0.004128377, 0.01066778, -0.0010472473, -0.02761231, 0.019261269, -0.00765063, 0.007987366, -0.0069030775, 0.015206974, -0.005636952, -0.014493096, -0.033969875, 0.03453559, -0.0054113395, 0.020042496, -0.007428385, 0.007280221, -0.020608211, 0.02203597, 0.02107964, 0.030737216, 0.012216764, 0.0013351562, 0.0044381735, -0.013186562, 0.013705134, 0.0028572006, 0.011112271, 0.0064417496, -0.0181029, 0.0086675715, -0.00275618, 0.027989453, 0.011475945, -0.010021248, -0.0073340987, -0.0034481713, 0.006498995, 0.04967522, -0.02831272, -0.018722493, -0.0155437095, -0.01764494, -0.019786578, 0.0032562322, -0.000120909084, -0.0064350152, -0.015058811, 0.016526978, -0.014021666, 0.047924194, 0.020392701, 0.021914745, 0.041943774, -0.016513508, -0.03087191, 0.011435537, 0.021052703, -0.0015936007, -0.0056133806, -0.017321674, 0.01811637, -0.0041889893, 0.053446654, 0.015772691, 0.021173928, 0.0008771959, -0.0086675715, 0.012816153, 0.004357357, 0.008842674, -0.029821295, -0.0059467484, 0.0055931765, 0.004896134, -0.0164731, -0.015193505, -0.02877068, 0.036825392, 0.019571066, 0.0060578715, -0.023935158, 0.012681458, -0.0041149077, -0.011637579, -0.02089107, 0.016984938, -0.012216764, 0.0050544, -0.0040273564, -0.01392738, -0.008290428, 0.024177607, 1.3745647E-05, -0.018587798, -0.017995145, -0.009502675, 0.022669032, 0.09498634, 0.025335979, -0.004451643, 0.005532564, 0.00047058784, 0.001926127, -9.186565E-05, -0.015503301, 0.025187815, -0.0056100134, -0.005835626, 0.022413114, -0.019166984, -0.011664517, -0.009630634, -0.002448067, -0.0067212405, -0.021362498, -0.020931479, -0.008452061, -0.016217181, -0.0071185883, -0.0018655146, 0.008916755, 0.0009697982, 0.009260226, 0.013765747, 0.013711869, 0.005030828, 0.00028980296, -0.0042361324, -0.010088596, 0.0051385835, 0.0045088883, -0.009839411, -4.1171174E-05, -0.0084318565, -0.026952308, 0.028878435, -0.010600433, 0.027558433, -0.011166149, 0.009583492, 0.0016878867, 0.030198438, 0.006131953, -0.004609909, 0.028258841, 0.023221279, -0.023342503, 0.01667514, 0.0006200142, -0.012499621, -0.017321674, -0.00025697125, 0.009866349, 0.00020867077, -0.0025608733, 0.014681667, -0.017968206, -0.019571066, -0.0155437095, 0.023571484, 0.008398183, -0.011853089, -0.02019066, 0.01716004, 0.021860868, 0.003731029, -0.0058423607, -0.0058389935, -0.008768592, -0.0015792894, 0.010890026, 0.02113352, -0.0014412279, -0.009314103, -0.03130293, 0.017510245, -0.014722075, 0.03879193, 0.0025137304, 0.001998525, 0.0040677646, 0.01265452, 0.01485677, -0.008977368, -0.008640633, -0.0003910341, -0.012910439, 0.008856143, 0.0004108173, 0.01135472, 0.005263176, -0.008681041, 0.004764807, 0.0016399018, 0.0028100577, 0.024285363, -0.0020911274, 0.030548643, -0.012418805, -0.010371453, 0.0107957395, 0.021847399, -0.014546973, -0.0015195189, 0.016890652, -0.0067145056, -0.0049331747, 0.023854341, -0.0040744995, -0.0019244433, -0.006216137, -0.016311467, -0.0038892948, 0.0012391866, 0.027329452, 0.019436372, -0.016998406, -0.01573228, -0.040058054, 0.03291926, 0.0053574615, -0.0027881698, -0.0042832755, -0.0069300164, -0.019665353, -0.030952726, -0.006768383, -0.012216764, 0.028016392, -0.014048604, 0.0076641, -0.023477199, -0.0020709233, -0.011785742, 0.009145736, -0.0042293975, -0.0051318486, 0.01171166, 0.0022157195, -0.0008308948, 0.017510245, -0.0029009762, -0.019975148, -0.00835104, -0.0032444464, -0.027046595, 0.014991464, -0.005273278, -0.006165627, -0.0034279672, -0.014654729, -0.013146154, -0.038387846, -0.018210655, 0.0011827834, 0.030710276, 0.023059646, 0.00608481, 0.003956642, 0.0047883787, -0.010459004, -0.009677778, -0.007401446, 0.00019246538, 0.0028622516, -0.013004724, 0.025349448, 0.010344514, 0.009960636, -0.0062296065, -0.012795948, 0.0056335847, 0.0083577745, -0.006142055, -0.02877068, -0.0055561354, -0.025686182, 0.0033808243, -0.0064215455, -0.009098593, 0.019059228, -0.033511914, -0.0076910383, 0.049540523, 0.023813933, 0.0012770693, 0.02598251, 0.016607795, -0.022251481, 0.01530126, 0.016082486, -0.0066976687, -0.0007130374, -0.007462058, -0.028824557, 0.008283693, 0.030440887, -0.019382494, 0.023827404, 0.001169314, 0.001174365, 0.002547404, 0.04245561, 0.005960218, -0.01415636, 0.033915997, -0.03480498, 0.008829204, -0.0055190944, -0.027464146, -0.046038475, 0.010122268, -0.0017038815, 0.009765329, 0.014775953, -0.0065057296, -0.012479417, 0.0047041946, -0.023598423, 0.017442899, 0.00030348287, 0.004451643, 0.024231486, -0.0028639352, -0.01531473, -0.010526352, 0.002843731, 0.016217181, 0.003919601, 0.04245561, -0.005680728, -0.013886971, 0.0066101174, -0.0066976687, -0.0049601137, 0.0064417496, 0.027410269, 0.006397974, 0.036259677, -0.0045223576, -0.030009866, -0.0042866427, -0.0044247042, -0.012331254, 0.01573228, -0.0018318411, -0.013240439, 0.015597587, 0.027935576, -0.0020321987, 0.016526978, 0.0060039936, 0.0033067425, 0.0050813383, -0.012223498, 0.006175729, -0.028178025, -0.010991046, 0.033915997, 0.002865619, -0.009374716, -0.010533086, 0.002171944, -0.021604948, 0.026157612, 0.007859406, 0.019113107, -0.017065754, -0.008074917, 0.0100145135, -0.010708189, 0.0064888927, -0.0064114435, -0.018251063, -0.017658409, 0.027437206, -0.019207392, 0.0024194445, -0.009630634, -0.020177191, -0.017806573, -0.0101963505, -0.012849826, -0.025147406, -0.008512673, -0.014129421, -0.027773943, -0.016984938, -0.025201283, 0.0044752145, 0.0060140956, 0.013402073, -0.008728184, -0.014412278, -0.00054382783, -0.018210655, 0.015031872, -0.00062085607, 0.033053957, 0.0036300085, 0.025672713, 0.0065225665, -0.0057851155, 0.002970007, -0.01392738, -0.025928631, -0.034239262, -0.0036131716, 0.0011356404, -0.011071863, -0.013617583, 0.009186144, -0.0052227676, -0.010836148, 0.0060713408, -0.020594742, 0.016176773, -0.004098071, -0.0024463832, 0.04760093, -0.008795531, -0.0012156151, -0.0084318565, 0.0023201075, 0.021429846, -0.028905373, -0.010492678, -0.013873502, -0.01229758, 0.0075024664, -0.008856143, -0.00014868977, -0.00996737, -0.0023504137, -0.00067094545, -0.0024649038, 0.023854341, 0.005913075, 0.022386175, 0.01414289, 0.018924534, -0.020689027, -0.04690052, 0.0155437095, -0.023073114, -0.032434363, -0.019880863, 0.0108698215, 0.042563364, 0.0048893993, -0.022440054, -0.0038724581, 0.010331045, -0.033942938, -0.011428802, -0.018008614, 0.008297162, 0.012789214, 0.018466573, -0.009004307, 0.02226495, 0.028258841, 0.0070175673, 0.012223498, -0.013267378, -0.007684304, -0.020284945, -0.0063710352, -0.025187815, 0.0008679357, -0.021928215, 0.009273695, 0.006310423, 0.0016500038, 0.017591061, -0.04504174, -0.015516771, -0.012162886, 0.021295153, 0.011422068, 0.022547808, 0.016594324, -0.05010624, -0.020015556, -0.018008614, 0.008499203, -0.013018194, 0.020298416, 0.006064606, 0.01625759, -0.025578428, -0.028124148, -0.049271137, -0.011698191, 0.011260435, 0.0006663153, 0.008586755, -0.007145527, 0.013516562, 0.017092694, -0.025080059, -0.03251518, 0.010708189, -0.019867394, -0.015772691, -0.00029295988, -0.0137253385, -0.0067111384, 0.0049028685, 0.022157194, 0.020177191, -0.01927474, -0.020971887, 0.0062094023, -0.031922523, 0.0071387924, 0.016998406, -0.01670208, -0.009953901, -0.008485734, -0.024420056, 0.03275763, 0.0024564853, -0.016877182, -0.022534339, 0.014695137, -0.01045227, -0.018075962, -0.019140044, -0.0024918425, 0.008196142, 0.022830665, 0.03151844, 0.21314009, 0.005663891, -0.014021666, 0.026103735, 0.006374403, 0.032595996, 0.0036805188, -0.010337779, 0.014196768, -0.0107957395, 0.019153515, 0.009334307, -0.019584537, -0.0004806899, 0.050213996, -0.029282518, -0.04983685, -0.012439009, -0.020029027, 0.0067616487, -0.0020103108, 0.0066471584, 0.020298416, -0.014237177, -0.005697564, 0.006384505, 0.0004369143, 0.010863087, 0.03221885, 0.0126343155, -0.022399645, -0.01808943, 0.02483761, -0.010755331, 0.007859406, 0.0009950533, 0.019369025, -0.0065427707, -0.00393307, 0.0062700147, -0.004886032, 0.010883291, 0.008990837, -0.007973896, 0.001968219, 0.016580855, -0.015422485, 0.0062767495, 0.0046570515, 0.013334725, -0.022938421, -0.036098044, 0.033619672, 0.019732699, -0.0042159283, -0.009246756, 0.01136819, -0.011900232, 0.02107964, -0.0079941, -0.02828578, 0.012425539, -0.008681041, 0.0118328845, -0.02644047, 0.035613146, 0.011603905, -0.0038017435, 0.0021349029, -0.005902973, -0.01171166, -4.9747407E-05, -0.018008614, 0.011361456, -0.005286747, -0.028959252, 0.017900858, 0.0040744995, 0.010789005, 0.015355138, 0.0058423607, -0.008910021, -0.016540447, 0.008081651, 0.020971887, -0.033565793, 0.016500039, -0.0064686886, -0.017873919, -0.0008001677, 0.008458795, 0.00095548696, -0.007724712, -0.00076691504, -0.00023445208, -0.00016184349, -0.01971923, 0.025847815, 0.010034718, -0.0031855176, -0.019369025, 0.012048395, -0.012014722, 0.017900858, -0.009442063, 0.00510491, 0.0077853245, 0.017766165, 0.015166566, -0.014102482, -0.0036131716, -0.042482547, 0.014587381, -0.012385131, -0.0057682786, 0.010297371, 0.020244537, -0.010297371, 0.01949025, -0.019880863, 0.00696369, -0.008505939, 0.020123312, -0.013287582, -0.011314312, -0.036394373, 0.021362498, 0.023261687, -0.0046435823, -0.03264987, 0.01530126, 0.009926962, 0.036529064, -0.02595557, -0.0076236916, -0.003757968, 0.020608211, -0.020150252, -0.017793102, -0.0034060795, -0.015530241, 0.0058794017, 0.019086167, 0.025847815, 0.007172466, -0.024325771, 0.015368608, -0.019907802, -0.00028769838, 0.016782897, 0.0013031663, -0.016607795, -0.004599807, -0.008782062, 0.0014176564, -0.010115534, -0.034266204, -0.011900232, -0.020473517, -0.0029582211, -0.030063745, 0.031895585, 0.015193505, -0.030009866, -0.013886971, 0.025672713, -0.17154652, 0.029524967, 0.0068963426, -0.0093410425, 0.01738902, -0.0017173509, 0.004886032, -0.0068593016, -0.031006603, 0.006303688, 0.02089107, -0.0021163826, -0.00800757, 0.008108591, 0.008209611, -0.024002505, -0.0005080497, 0.008081651, 0.022009032, 0.01808943, 0.03221885, -0.016095957, -0.001414289, 0.016661672, -0.0046671536, 0.013307787, 0.0020524028, -0.0019059229, 0.011347986, -0.028635986, 0.008957163, -0.03340416, 0.02666945, -0.00019414905, 0.016823305, -0.017900858, 0.0011129108, 0.021685766, -0.008687776, 0.03760662, -0.000772387, 0.023100054, 0.030548643, -0.002405975, 0.0062363413, -0.000735767, 0.0030390378, 0.007165731, 0.016405752, -0.010957372, 0.017079223, -0.041916832, -0.00869451, 0.0035997024, 0.022413114, 0.010714923, 0.0009950533, -0.005182359, 0.031707015, -0.012728602, 0.026817614, -0.030063745, 0.007233078, 0.0004928966, 0.0053473595, -0.0002197199, 0.009044715, 0.031599257, -0.019530658, -0.0047109295, -0.0078055286, 0.009873085, -0.020284945, -0.00551236, 0.01717351, 0.0003247393, -0.026629042, 0.012203294, 0.0055561354, -0.03542457, 0.0016643151, 0.0202176, -0.015018403, 0.015395546, -0.0009849513, -0.0031181707, -0.03480498, -0.009765329, 0.0027275574, -0.0042361324, 0.0057952176, -0.029902112, -0.007946958, 0.021672295, 0.033754364, 0.0062363413, 0.0081220595, -0.006566342, -0.000118173106, -0.004347255, 0.00510491, -0.010802474, -0.015705343, 0.010176146, 0.01880331, 0.0033454672, 0.007953692, 0.021604948, 0.010075126, -0.0021365867, 0.01252656, -0.00975186, 0.00040934407, 0.017618, 0.00082373916, 0.0076910383, 0.011119005, -0.027666187, -0.0049971547, -0.0037815394, 0.027329452, -0.014897178, -0.016311467, 0.0044819494, -0.007057976, -0.011550027, -0.09859615, -0.016122894, 0.016432691, 0.029632723, 0.022211073, 0.016297998, -0.010317575, 0.014169829, -0.02807027, 0.01883025, -0.0062801167, -0.011637579, 0.0053945025, 0.0066471584, 0.03383518, -0.0010851301, 0.011273904, -0.028824557, -0.022009032, 0.02807027, 0.004138479, -0.0025894959, -0.009799003, -0.012600642, -0.016863713, -0.0031484768, -0.007468793, 0.0074822623, 0.019584537, 0.010115534, 0.017362082, 0.007428385, -0.013779216, -0.013886971, -0.024204547, -0.03062946, -0.033754364, -0.000689045, 0.029174762, 0.0035592942, 0.008303897, 0.011994518, -0.012607376, -0.0613128, -5.1615236E-05, -0.0016567386, -0.0079941, -0.0121426815, 0.0070377714, -0.003852254, -0.0031013337, -0.011900232, -0.017456368, -0.0039027643, 0.01969229, -0.0074822623, 0.005061134, 0.0078863455, -0.00870798, -0.00037019857, -0.024164138, 0.016607795, -0.0091592055, 0.003727662, -0.0057985852, 0.012587172, -0.010142473, 0.006502362, 0.0154898325, -0.007051241, -0.011341251, 0.008391448, -0.024015974, 0.023921689, -0.009105328, -0.019557597, -0.03264987, -0.01438534, 0.014695137, -0.017092694, -0.00064737396, -0.029336395, 0.0012989572, -0.016109426, 0.020715967, 0.017954735, 0.029498028, -0.022332298, -0.009724921, -0.019584537, 0.009859615, 0.040758464, 0.030548643, -0.020042496, -0.004973583, -0.0060309325, -0.005956851, -0.029282518, -0.016419223, -0.0040374584, -0.0192478, -0.013792685, -0.075913645, 0.034724165, 0.0107957395, -0.020810252, 0.002139954, 0.007233078, -0.02297883, -0.0008805633, 0.026521286, -0.017240858, -0.012607376, -0.017820042, -0.0032141402, -0.014062074, 0.0006924123, 0.007960427, 0.004774909, -0.005697564, 0.03844172, -0.0022544442, -0.023140462, -0.010741862, -0.021699235, 0.019409433, -0.034670286, -0.015287791, -0.014331462, 0.016365344, 0.0056201154, 0.0047109295, 0.0060208305, 0.009792268, 0.008647367, 0.045984596, -0.02971354, -0.034670286, 0.012351458, 0.0151800355, 0.0057447073, -0.027881699, -0.0036771514, -0.0117790075, 0.0027747003, -0.027033124, -0.01623065, -0.005653789, 0.01264105, 0.020244537, 0.012499621, -0.012465947, 0.005987157, 0.029255578, 0.015031872, -0.018264532, -0.006822261, -0.014600851, -0.0027932208, 0.002604649, 0.015476363, -0.01485677, 0.011496149, 0.0033336813, 0.020136781, 0.011523088, 0.019800046, 0.0025827612, -0.019571066, 0.007286956, 0.004842256, 0.012095539, -0.019072698, -0.019800046, 0.020352293, -0.0059837895, 0.008903286, -0.02828578, -0.005929912, 0.00063811376, -0.036556005, 0.023126993, -0.019732699, -0.0006953588, -0.04358704, 0.026615573, -0.004687358, 0.000537514, -0.03458947, -0.0030878645, -0.005263176, 0.016163303, -0.0111594135, 0.007630426, -0.0376605, 0.018156778, 0.0051554204, 0.011819416, -0.0012383447, -0.023490667, -0.0101963505, 0.005407972, -0.0011760487, 0.010263697, -0.014789422, 0.0029144457, -0.012203294, -0.012991255, -0.0032225586, -0.030521704, -0.0132135, 0.0031804666, 0.007933488, -0.0021180662, 0.009442063, 0.0108698215, -0.0019042392, -0.0144526865, -0.004623378, -0.016850244, -0.031006603, 0.01461432, 0.009192878, 0.009132266, 0.028231904, 0.014883708, 0.024945365, 0.008647367, -0.023019237, 0.0034245998, -0.0021551072, 0.0246221, 0.03087191, -0.0032545484, 0.015058811, 0.0018671983, -0.0055527682, 0.01368493, 0.00063643005, 0.033969875, -0.0060982797, 0.05872667, 0.008391448, -0.033727426, 0.015637996, -0.0073475684, 0.01738902, 0.012735336, -0.00051015423, -0.015920853, -0.030306194, 0.018264532, 0.008061447, -0.014425748, 0.023935158, -0.027302513, 0.009226552, 0.028258841, 0.0088494085, -0.047223784, -0.0128700305, 0.03803764, -0.017079223, 0.011846354, -0.0073138946, -0.0063440967, -0.0048624603, 0.026063327, 0.00742165, -0.004832154, 0.00870798, 0.021847399, 0.007172466, -0.016984938, -0.03321559, 0.008990837, -0.00996737, 0.0076169567, -0.00016089642, 0.001993474, 0.01531473, -0.00069030776, 0.020689027, -0.011556762, -0.011583701, 0.027235165, 0.003283171, -0.013489624, -0.020958416, -0.010485943]
+ },
+ {
+ "Id": 90,
+ "Type": "Navigation",
+ "Brand": "B&R",
+ "Name": "TrailTracker GPS Watch",
+ "Description": "Navigate the trails like a pro with the B&R TrailTracker GPS watch. This rugged and reliable watch features a built-in GPS that tracks your location, speed, and distance accurately. The sleek camo design with a vivid orange strap adds a sporty touch. With its long battery life and water-resistant construction, you can trust this watch to guide you through any outdoor expedition.",
+ "Price": 199.00,
+ "Embedding": [-0.015196159, -0.0043258397, -0.016492898, -0.012042112, 0.010981757, 0.0062540635, -0.016465882, -0.021031484, 0.009043403, -0.019599669, -0.006804502, 0.0035086242, -0.02222016, -0.0062979637, -0.0062034098, 0.0122447265, 0.01706022, -0.012717497, 0.012555404, -0.013136235, -0.023597946, 0.016141698, -0.0018556198, -0.024016684, -0.012028604, -0.018654129, 0.006912564, -0.018735176, 0.013993974, -0.003792286, 0.016168714, 0.0010941235, -0.022963084, -0.021099022, 0.002627247, 0.008023572, -0.0028585664, -0.004977586, 0.0019265353, 0.0115896035, 0.014831451, 0.0150340665, -0.013257804, 0.002068366, -0.021328652, 0.014736897, 0.014264127, -0.01140725, -0.022936068, -0.00030117942, -0.010981757, -0.0015153947, -0.01319702, -0.012717497, 0.0210585, 0.006098725, 0.025083793, 0.0019906969, 0.014142558, -0.03149995, -0.00060784636, -0.001121983, -0.029689917, 0.006132494, -0.00095398107, -0.012717497, -0.021679852, 0.01770859, 0.00277752, 0.024489453, -0.00017739405, 0.0052713784, 0.017924713, 0.022368746, 0.014831451, -0.022004038, -0.010414434, -0.011366727, 0.013122727, 0.013717066, 0.020085946, -0.010367157, -0.0059906635, 0.031689055, 0.014183082, 0.005926502, -0.00046263862, 0.013737327, -0.017492468, -0.013352358, -0.017627545, -0.0007425012, -0.014210097, 0.018329944, 0.0048019863, 0.0017745736, -0.016763052, 0.021720376, -0.01167065, -0.015115112, 0.003785532, 1.6897811E-05, 0.006308094, -0.010178049, -0.044602413, -0.0077264025, -0.0028399932, -0.009171726, 0.01600662, -0.004464294, -0.0396586, 0.026002316, 0.008597649, -0.0017095678, 0.0015204601, -0.0036707167, 0.016587451, -0.010900711, 0.00996868, -0.028014963, 0.04292746, -0.0101105105, 0.044008076, -0.013966958, -0.010542757, 0.0238681, -0.004552094, 0.019734744, 0.034525674, -0.008692203, -0.003258732, 0.01228525, 0.008631418, 0.0137305735, -0.021841945, 0.011245158, 0.0054537323, 0.00970528, -0.038956195, 0.0037585166, 0.0058724713, 0.015520344, -0.005024863, -0.016344313, -0.011427511, 0.010549511, 0.0153717585, 0.020437146, 0.023314284, 0.0032334048, 0.021315144, -0.018113822, 0.021598807, 0.012386558, -0.022314714, -0.008867803, -0.006899056, 0.00089319644, -0.019370036, -0.0042988244, 0.005240986, 0.017316867, 0.027055915, 0.010792649, 0.03936143, 0.030365301, -0.0057677864, -0.0019974506, -0.0014740274, 0.0039442475, 0.016425358, 0.02569164, -0.025070285, 0.01425062, -0.010691342, 0.0238681, -0.0050147325, 0.009225757, -0.0019299121, -0.006054825, -0.0034748549, -0.014439728, 0.011042542, -0.00454534, -0.010893958, -0.01049548, 0.0060885944, -0.023746531, 0.016141698, -0.015439297, 0.012447342, -0.011616619, 9.202118E-05, 0.005754279, -0.6535564, -0.0014866908, -0.022449791, -0.016303789, 0.030122163, 0.01565542, 0.023435853, 0.013784604, -0.0221121, 0.02028856, 0.00794928, 0.013966958, -0.012420327, -0.035228074, -0.011218142, -0.020882899, 0.01084668, -0.012048866, 0.029230656, 0.0027572585, -0.033904318, -0.009590465, -0.0247461, -0.004146863, 0.006135871, 0.004670286, 0.008982618, -0.015493328, -0.015668929, 0.031121733, -0.032175332, 0.0053794403, -0.00088559836, 0.005528025, 0.05084297, -0.049762353, -0.0025343816, 0.04344075, 0.010853434, 0.04041503, -0.011792219, -0.021166561, 0.015939081, -0.015614897, -0.016817082, 0.004011786, 0.028717363, -0.0023638469, 0.0017644429, -0.038794104, 0.013102465, 0.00255802, -0.0054098326, 0.01140725, 0.00047234725, -0.006318225, 0.0071860948, 0.021868961, -0.00039362273, -0.00013212216, -0.03201324, 0.014898989, 0.006976725, -0.01589856, -0.023949146, 0.039604567, -0.042765368, -0.0019518621, 0.0030780663, -0.016763052, 0.025137823, 0.035849426, 0.0010063234, 0.009509418, 0.009712034, 0.010164542, 0.019167421, -0.0074089714, -0.0069226944, 0.00524774, 0.03171607, 0.0016133256, -0.013872405, -0.008145141, 0.029230656, -0.0018421122, 0.0049742092, -0.007402218, 0.018856745, 0.027879886, 0.0030054625, 0.019464592, -0.027136963, 0.0043359706, -0.023976162, 0.0029531203, -0.014304651, 0.018856745, 0.0021933122, -0.017100744, -0.030986656, -0.0008450753, 0.003836186, -0.0024448931, -0.001801589, 0.026556132, 0.021720376, 0.016925143, 0.026123885, -0.024773115, -0.019086376, -0.026245454, -0.011778711, 0.003998278, -0.0016791755, -0.021099022, 0.0112586655, -0.0107656345, 0.03911829, -0.040361, 0.010954742, -0.008381526, 0.029689917, -0.012339281, -0.018816222, 0.017438436, 0.02679927, -0.010677834, -0.012379804, -0.01088045, 0.0009784638, -0.0022135738, 0.008834033, 0.008597649, -0.01606065, 0.0024786624, 0.010400927, -0.014115543, 0.0009835291, -0.017168282, -0.013338851, 0.01670902, 0.001936666, -0.005068763, -0.01600662, -0.022355238, -0.016020129, -0.009097434, -0.03020321, -0.005605694, 0.014574804, -0.03236444, 0.011609865, -0.005332163, 0.00870571, -0.020707298, -0.020842375, -0.010015957, 0.003967886, -0.007895249, 0.02146373, -0.006909187, 0.0029767586, -0.014358682, 0.014088527, -0.024529977, 0.0011777023, 0.05038371, -0.009198741, -0.03271564, 0.01706022, -0.0061797714, -0.021490745, 0.032742657, -0.009468895, 0.016952159, -0.028447209, -0.022652408, 0.0051363017, -0.0031844394, -0.00856388, 0.011089819, -0.027582716, -0.013980466, 0.011522065, 0.002780897, -0.0059805326, 0.03366118, -0.018519051, 0.032040257, 0.003402251, 0.007219864, -0.020099452, 0.0031253432, 0.005041748, -0.008570634, 0.0119137885, 0.0013009601, 0.0130619425, 0.024165269, 0.008840787, -0.010549511, 0.025029762, -0.039010227, 0.0099416645, -0.019856313, 0.021706868, -0.012386558, 0.014804436, 0.014669359, 0.0057812943, -0.026880316, -0.0064330404, -0.013440158, 0.007820956, 0.00036808473, 0.011697665, 0.041144446, 0.014750404, -0.025083793, 0.011069558, 0.0145477895, 0.014088527, -0.019964376, -0.018613607, 0.029392747, -0.00033853666, 0.030149179, 0.014980036, -0.019505113, 0.028717363, 0.03412044, 0.017235821, 0.024070716, 0.01689813, -0.0018843237, -0.0067909947, -0.0133928815, 0.029365733, 0.011954311, 0.0138859125, 0.013872405, 0.01512862, -0.018329944, 0.030797549, 0.02925767, 0.03060844, -0.00022794238, 0.013784604, 0.012501373, -0.028825425, -0.004410263, -0.016587451, 0.011947557, 0.00012842864, -0.008509849, 0.020126468, 0.0008923522, 0.021747392, 0.027933916, 0.010164542, 0.024894685, -0.0024178778, -0.005967025, -0.0054132096, -0.016384836, -0.009401357, -0.009225757, -0.005264625, -0.003647078, 0.046196323, -0.01670902, 0.00896911, 0.003967886, 0.030176194, -0.0072333715, 0.033526104, 0.0025630854, -0.01918093, -0.00050738285, -0.009543188, -0.011832742, 0.016074158, 0.012568912, -0.0017779506, -0.026110377, -0.020396622, 0.003647078, -0.014615328, 0.022584869, -0.014020989, 0.020383114, -0.003734878, 0.014183082, 0.013102465, 0.006456679, 0.030743517, -0.024003176, 0.01049548, -0.0059535173, -0.017911205, 0.025948286, -0.0122379735, -0.02785287, 0.022963084, -0.003694355, -0.02169336, -0.008482833, 0.0071455715, 0.005615825, 0.0015972852, -0.023152191, 0.0033009434, -0.028744379, -0.00809111, 0.021355668, 0.006595133, -0.0046095015, 0.012967389, 0.01014428, -0.0135549735, -0.006132494, -0.02662367, 0.0011489984, 0.08472028, -0.007699387, 0.006402648, 0.011535573, -0.019505113, -0.012393312, -0.027798839, -0.020207515, 0.023125177, 0.012096142, -0.0019045852, 0.012521635, -0.0018421122, -0.012839066, 0.0036572088, 0.004754709, 0.00970528, -0.028258102, -0.0061595095, 0.012582419, 0.0140480045, -0.010549511, 0.0017593774, 0.027420623, 0.024529977, -0.008293726, 0.025705148, 0.015628405, 0.020855883, -0.01835696, 0.008496341, -0.018735176, -0.011785465, -0.0067437175, 0.0031692432, -0.0021629198, 0.0019569276, 0.0030206586, 0.025218869, 0.00900288, 0.023260254, 0.018654129, 0.0089623565, -0.010988511, 0.012413573, 0.0074562486, 0.008557126, -0.0032874357, 0.0018657506, -0.0035964241, 0.014183082, 0.003738255, -0.0029058433, -0.011792219, 0.0058657173, 0.011123588, 0.020518191, 0.010644065, -0.009928157, -0.031391885, -0.0031911933, -0.022449791, 0.029743947, 0.0059940405, 0.009171726, -0.008476079, 0.0042279093, -0.0030527394, -0.020437146, -0.01812733, -0.009070418, -0.006672802, -0.012643204, -0.006709948, 0.016492898, 0.009043403, 0.003387055, -0.010785895, 0.0130686965, 0.016465882, 0.011150603, 0.0050214864, -0.0071388176, -0.0065579866, -0.0021240853, -0.0073346794, -0.006456679, -0.010623803, 0.0058792247, 0.005470617, -0.0011008773, -0.0008687137, 0.02855527, -0.001980566, -0.010097004, 0.00090417144, 0.009029895, 0.022719946, 0.029527824, 0.01023208, 0.03179712, -0.005173448, -0.016614467, 0.006676179, 0.03898321, 0.011961065, -0.008928588, 0.0054064556, 0.0058994866, 0.0011447773, 0.007902003, -0.0068382714, 0.011400496, 0.0072806487, -0.007888495, 0.012785035, -0.003869955, -0.0074427407, 0.008449065, -0.017695082, -0.028041977, -0.02885244, 0.034984935, 0.0035322628, 0.008766495, 0.023787053, 0.009651249, 0.0027049163, -0.0010392484, 0.0054165865, 0.015493328, 0.013413142, -0.004467671, -0.026015824, -7.175964E-05, -0.023665484, -0.034039397, 0.012190696, -0.0003851804, 0.0058826017, -0.0265021, 0.025934778, 0.035633303, 0.015804006, -0.01210965, -0.01741142, -0.019478098, -0.012974143, -0.02011296, 0.035228074, -0.02311167, 0.003599801, -0.03487687, -0.019383544, 0.00055508193, -0.046250354, -0.03671392, 0.010664326, 0.028663332, 0.019261975, -0.01337262, 0.0069699716, -0.006855156, 0.008462572, 0.0018775698, -0.004629763, -0.024408408, -0.0047243168, -0.03487687, 0.00027353087, 0.016465882, -0.0055820555, -0.025232377, -0.018748682, -0.026353516, 0.003201324, -0.0021291508, 0.0117449425, 0.006797748, -0.058677435, 0.0019603046, -0.01728985, 0.0013938254, -0.0033887434, -0.04157669, -0.008422049, 0.03998278, 0.029311702, 0.0015753352, -0.0030324778, 0.015331236, -0.005663102, 0.013696805, -0.0078074485, 0.019397052, -0.016114682, -0.008651679, -0.041198473, 0.00996868, 0.020869391, 0.0023148814, -0.012595927, -0.0016133256, -0.02204456, -0.028258102, 0.015547358, -0.002758947, 0.0038159243, 0.0077196485, 0.011859758, -0.0101037575, -0.017803144, -0.020747822, -0.010157788, 0.0025934777, 0.0050890245, 0.0008450753, 0.010995265, -0.008422049, -0.0122514805, 0.01847853, -0.004261678, 0.023935638, -0.0027015393, 0.010333388, 0.008590895, -0.008482833, -0.0036774704, -0.03782155, 0.018775698, 0.0076386025, 0.003978017, 0.006807879, -0.004666909, -0.024773115, 0.025326932, 0.019140406, -0.009988941, -0.018897267, 0.013257804, 0.03149995, 0.0009548253, -0.015020559, -0.0030240356, -0.015331236, 0.03587644, -0.025164839, 0.0138859125, 0.008820526, -0.0020666777, -0.020666776, 0.020815361, -0.041171458, 0.009982188, -0.00039298955, -0.016114682, 0.014736897, 0.028420193, 0.011468034, -0.016790068, 0.008894818, 0.023503393, 0.007956034, -0.0015500082, 0.0019518621, 0.011373481, 0.005831948, 0.002222016, 0.008550372, 0.02920364, -0.005919748, -0.018897267, 0.0070172483, -0.0069632176, 9.771974E-05, 0.038496934, -0.020450654, -0.027353086, 0.011731435, -0.006720079, 0.010313126, 0.017776128, -0.023665484, -0.02497573, 0.0071320636, -0.0094553875, -0.026380531, -0.015506836, -0.00065681175, -0.038713057, -0.03525509, -0.018910775, 0.030770533, 0.014358682, 0.014736897, -0.003051051, 0.009637741, 0.012778281, -0.060298357, -0.003687601, 0.016546927, 0.0153717585, -0.012879589, 0.0226389, 0.016398344, -0.04552094, 0.0023368315, -0.012906604, -0.027420623, -0.042603277, -0.0091312025, 0.00015998178, 0.020477667, 0.000902483, -0.0068484023, -0.017424928, 0.027474655, -0.012690481, -0.03928038, -0.0041603707, 0.0070982943, 0.005967025, 0.03179712, -0.028933486, 0.011008773, -0.019896837, 0.018951299, 0.021544777, 0.017208805, -0.015925575, -0.0008830657, 0.0042279093, -0.0047817244, -0.016303789, 0.00900288, -0.0007175964, -0.014331666, 0.004285317, -0.01911339, 0.0072401254, 0.009549942, -0.005538156, 0.009813341, 0.028366163, -0.0043325936, -0.012325773, -0.0051869554, -0.023611454, -0.0022237045, -0.016344313, 0.0135549735, 0.018397482, 0.023854593, -0.03125681, -0.008840787, -0.016641483, -0.030932626, -0.021625822, 0.030149179, 0.0026610163, 0.022355238, 0.024354378, 0.0019383545, 0.042089984, -0.022976592, 0.028663332, 0.0013524581, -0.014858467, -0.004403509, 0.0010679523, 0.0034816088, -0.0012334215, -0.029095579, -0.023354808, 0.01800576, -0.0068247635, 0.0038868396, 0.0038159243, -0.02885244, -0.022517331, 0.019207945, -0.002043039, 0.030581426, 0.020545207, 0.0028771395, -0.024759607, -0.0259753, -0.016587451, 0.023746531, -0.010779141, 0.0014039562, -0.0015643601, 0.008286972, 0.01102228, -0.016384836, -0.0249217, -0.00765211, -0.0058859787, 0.004278563, 0.008638172, -0.011920542, 0.024489453, -0.0006969127, -0.027312562, 0.0049100476, 0.00047530208, -0.009050157, -0.007071279, -0.010563019, -0.01993736, 0.013784604, -0.002090316, 0.006503956, 0.001111008, -0.007706141, 0.00053904153, 0.001012233, -0.025448501, 0.027028902, 0.028123025, 0.004460917, -0.031229794, -7.74582E-05, -0.014588312, 0.014142558, -0.015007051, -0.0036639627, -0.020666776, 0.01442622, -0.009509418, 0.008813772, -0.0062506865, 0.019356528, -0.014534282, -0.009934911, 0.008395034, 0.20931527, -0.0022017546, -0.024246315, 0.023489885, 0.012454096, 0.04522377, 0.009725542, 0.007030756, 0.010178049, -0.008834033, 0.008401787, 0.024097731, -0.027353086, -0.0073279254, 0.0023503392, -0.024475947, -0.034930903, -0.015736466, -0.008246449, 0.0054841246, 0.0070982943, 0.009036649, 0.0037686473, -0.03625466, 0.0236925, -0.0065208403, -0.0072468794, -0.014075019, 0.017438436, 0.029635886, -0.029987086, -0.033336997, 0.009110942, -0.014966528, -0.006976725, 0.019018836, -0.0046973014, 0.012528389, -0.0015289024, 0.003836186, 6.986012E-05, 0.021868961, 0.0015550735, -0.013683297, 0.03366118, 0.0066120173, -0.0005495944, -0.0058049327, -0.005750902, -0.009522926, -0.03095964, -0.016276775, 0.00034212464, 0.0114207575, -0.008550372, -0.004991094, 0.007287402, -0.027542192, 0.0054908786, -0.005528025, -0.029879024, 0.004092832, -0.010157788, 0.019167421, -0.023733024, 0.019005328, 0.004771594, 0.01205562, 0.015506836, -0.011468034, 0.007091541, -0.015425789, 0.006281079, 0.012116404, 0.009016387, -0.028231086, 0.0034545935, 0.010421188, 0.0114207575, 0.0041603707, -0.0007479887, -0.011771957, 0.011481542, -0.024584008, 0.012501373, -0.033634163, -0.006794371, -0.011339711, 0.008536864, 0.0031219663, 0.019518621, -0.013305081, -0.008482833, -0.008043833, -0.020423638, 0.00747651, -0.032931764, 0.031121733, -0.007929018, 0.0054503554, -0.0063857636, 0.0077264025, -0.005254494, -0.0010561331, -0.027798839, 0.0044744243, -0.010063234, 0.01635782, 0.010644065, -0.03185115, -0.011555835, -0.032040257, 0.022139115, -0.008334249, 0.013831881, 0.0075305407, 0.0059839096, -0.004373117, 0.009907896, -0.01864062, 0.03209429, -0.017424928, 0.002539447, 0.0058859787, -0.0044811782, -0.0087935105, -0.0067437175, 0.0016673564, 0.004089455, -0.008685449, -0.010684588, -0.012271742, 0.020693792, -0.014615328, -0.004953948, -0.005933256, -0.0017036583, -0.017722098, -0.0201805, 0.00454534, 0.014817943, 0.006814633, 0.0002547467, -0.0086246645, 0.04473749, -0.022017546, 0.003358351, 0.005470617, -0.028041977, 0.008658433, 0.010157788, -0.01747896, -0.014196589, 0.0031270317, 0.007165833, -0.00209707, -0.05219374, -0.029068563, -0.00214097, -0.01205562, -0.004845886, 0.00017486136, 0.039901737, -0.021328652, -0.018627113, 0.02557007, -0.17279045, 0.033634163, 0.021531269, -0.020612745, 0.004464294, 0.004140109, 0.039739642, 0.008253203, -0.013541466, 0.011974573, 0.019950869, -0.007665618, -0.035633303, -0.0032350933, 0.007206356, 0.0025597084, -0.016722528, 0.027163979, 0.01953213, 0.010508988, -0.007922264, 0.003299255, 0.029392747, -0.02204456, 0.008219433, -0.0057812943, -0.017033206, -0.008651679, 0.0024448931, -0.015925575, 0.012528389, -0.010353649, 0.011893527, -0.018897267, 0.010792649, -0.00275557, -0.02122059, 0.0016977487, -0.017114252, 0.025664624, -0.015061081, 0.0052882633, 0.026177917, 0.0022895546, 0.0079762945, 0.024259822, -0.015844528, -0.006284456, -0.0037483857, -0.028231086, 0.0035491472, -0.01818136, -0.013467173, -0.010130772, 0.008908326, 0.012893097, 0.0045081936, -0.009759311, 0.00255802, -0.021490745, -0.02692084, -0.0084693255, -0.00489654, -0.020626253, -0.020680284, -0.012305511, -0.003007151, 0.0047310707, 0.0073549408, 0.0015103293, -0.03587644, -0.01302142, 0.009293295, -0.003920609, 0.004980963, 0.008780003, -0.010644065, 0.008253203, 0.01565542, 0.007841218, 0.012400066, 0.015506836, -0.04192789, -0.0014495447, 0.002818043, -0.01442622, -0.016020129, 0.026164409, -0.0054503554, -0.0069362023, 0.0094553875, -0.018302929, -0.012568912, -0.007935772, 0.016668499, 0.009651249, 0.024597516, -0.020842375, 0.0074157254, -0.028150039, -0.00038011503, -0.002630624, -0.015614897, 0.015317728, 0.037011087, 0.004268432, 0.053463463, 0.0028433702, 0.023098161, 0.010792649, -0.033634163, 0.006098725, -0.012096142, 0.009023141, -0.0007365916, 0.014628835, 2.9653615E-05, -0.01635782, 0.01495302, -0.015993113, 0.027015394, -0.012947127, -0.02346287, 0.012568912, -0.022368746, -0.01284582, -0.10222625, -0.02216613, 0.034687765, 0.008935342, -0.011900281, 0.013095712, -0.001804966, 0.0198293, 0.021895977, 0.032526534, -0.0069294483, -0.015871543, -0.008894818, 0.005078894, 0.0053659324, -0.0012958946, 0.041414596, -0.029581856, -0.0065579866, 0.026515609, -0.0042211553, -0.011083065, -6.104846E-05, 0.00642291, 0.010502234, -0.019842807, -0.034984935, -0.002576593, 0.034525674, 0.016600959, 0.0028990894, -0.0006855156, 0.0094486335, -0.01941056, -0.018924283, 0.0035964241, -0.028312132, -0.0070172483, 0.014075019, -0.03430955, -0.006102102, -0.0057812943, 0.011116834, -0.029338717, -0.022193145, -0.0016437179, -0.0049134246, 0.0070645255, 0.0040286705, -0.020720806, -0.0074494947, -0.015493328, -0.01377785, -0.011035788, -0.0038834629, -0.029527824, -0.0050012246, 0.017789636, -0.0005609915, -1.9944959E-05, -0.014588312, 0.004987717, 0.009259526, 0.030446349, -0.008347756, 0.014156066, -0.017614037, 0.02569164, 0.028420193, -0.0055415323, -0.013845389, 0.019248467, -0.007874987, 0.034903888, -0.018681144, -0.005237609, -0.020693792, -0.007490018, 0.013798112, -0.021531269, -0.011522065, -0.013406388, 0.024611022, -0.02850124, -0.0072333715, 0.012785035, -0.01158285, 0.008111372, -0.0122447265, -0.02557007, 0.026961362, 0.037389304, -0.008097864, 0.009306803, -0.028231086, -0.010508988, 0.004893163, 0.005470617, -0.01805979, -0.034903888, -3.181696E-05, -0.008016818, -0.07396815, 0.011528819, 0.007179341, -0.0147098815, 0.01783016, 0.01316325, -0.002049793, -0.035552256, 0.039199337, -0.013176758, 0.0102726035, -0.016546927, 0.013575235, -0.013642774, 0.003343155, -0.017492468, 0.006709948, -0.008820526, 0.02762324, 0.020774838, -0.018424498, 0.012785035, -0.00542334, 0.009853865, -0.018248899, 0.006858533, -0.004261678, 0.013325343, -0.0029176625, -0.026718223, 0.0015913754, 0.00926628, -0.0020447276, 0.022787483, -0.0038935936, -0.015587882, -0.00040755252, 0.021747392, -0.009279788, -0.018194867, -0.001070485, -0.005612448, 0.030527394, -0.008888064, -0.025934778, -0.023935638, -0.0047412016, -0.019018836, 0.02076133, 0.024097731, -0.0026458201, 0.02321973, 0.011704419, -0.019032344, -0.021315144, -0.027312562, -0.013581989, 0.0039510014, -0.011798973, -0.017168282, 0.04722291, 0.029230656, 0.003738255, 0.0063925176, 0.02041013, 0.001556762, -0.020815361, -0.0033076971, 0.003954378, -0.0010932792, -0.017397914, -0.0014850023, 0.050626848, -0.01067108, -0.0042042704, -0.01993736, -0.0019282236, -0.0094553875, -0.025651116, 0.023611454, 0.017749114, 0.024759607, -0.047871277, 0.00602781, 0.0070645255, 0.0034377088, -0.009786326, -0.014412712, -0.0058015557, 0.014534282, -0.030878594, -0.008401787, -0.0014968216, -0.003515378, -0.022746962, 0.019869821, -0.0056833634, -0.0064296634, 0.01870816, 0.027218008, -0.01163688, 0.0024584008, -0.0014216851, -0.01131945, 0.008374772, 0.013041681, -0.013244296, -0.026691208, -0.015682437, -0.008138387, 0.007111802, -0.011305942, -0.0065242173, 0.007348187, -0.02192299, 0.004319086, -0.0037551397, -0.013467173, -0.013757589, -0.0013288197, 0.025462007, 0.027366593, -0.00021253516, 0.0048796553, 0.0035525241, -0.031878162, 0.008509849, -0.009414865, -0.017114252, 0.0066964407, 0.027650256, 0.009988941, 0.017505975, 0.0060345633, -0.009104188, 0.012474358, -0.010346896, 0.021382684, -0.049005922, 0.0742383, 0.029284686, 0.014318159, 0.0010004138, -0.016087666, 0.007206356, 0.020855883, 0.0068247635, -0.047763214, -0.028663332, -0.0009877504, 0.00092527724, 0.0042380397, 0.026137393, -0.010617049, 0.030824564, 0.017033206, 0.0094553875, -0.026637178, -0.020801853, 0.0477362, -0.0066424096, 0.008658433, 0.0039037243, 0.020653268, -0.012474358, 0.0042042704, 0.012751265, -0.0068281405, -0.014480251, 0.035930473, -0.03249952, -0.010623803, 0.011616619, 0.002002516, -0.020626253, -0.006220294, 0.012325773, 0.0068754177, 0.028447209, 0.018667636, -0.022841515, -0.0013963581, -0.00077753677, 0.00015934861, 0.0044811782, -0.011535573, -0.021801421, -0.009414865]
+ },
+ {
+ "Id": 91,
+ "Type": "Footwear",
+ "Brand": "WildRunner",
+ "Name": "Trailblazer Trail Running Shoes",
+ "Description": "Conquer any terrain in the Trailblazer Trail Running Shoes by WildRunner. These lightweight shoes come in vibrant blue and feature a rugged outsole for excellent traction, a breathable mesh upper for maximum comfort, and quick-drying materials to keep you dry on your adventures.",
+ "Price": 89.99,
+ "Embedding": [-0.010315921, -0.03368355, -0.018523283, -0.006726034, -0.0020902085, 0.01343205, -0.021712812, -0.033069666, 0.017148716, -0.01443962, 0.001799948, 0.0019033741, 0.011990757, -0.0025756438, -0.00040974258, 0.0077936584, 0.023461046, -0.0033997165, 0.0024438591, -0.0013445395, -0.013198507, -0.00017275914, -0.009895544, -0.020471698, -0.013945844, -0.0059419973, 0.024835613, -0.022406768, 0.018563319, -0.03330988, 0.002587321, 0.010636209, -0.0065025, -0.020805331, 0.0036899769, 0.010075705, 0.0063256747, -0.00036115732, 0.0053514675, 0.00077778107, 0.029760031, 0.015200303, -0.007113048, 0.011416908, 0.0064491187, 0.011350182, 0.006319002, -0.021953028, -0.014399584, 0.012664694, -0.023567809, 0.0072865365, -0.0155072445, -0.011063258, 0.009742073, 8.877756E-05, 0.0012135886, 0.017469004, 0.016067747, 0.005605028, -0.013425377, 0.0050812247, -0.04369253, 0.01748235, -0.0036632863, -0.0057384814, -0.027464638, 0.002595662, -0.0020935447, 0.017695874, -0.0030393933, -0.01879019, 0.008073909, 0.0011602074, -0.0002024733, -0.021459252, -0.016334653, -0.0065191817, 0.0012911583, 0.007526752, 0.010676244, -0.02049839, -0.024782231, -0.011129985, 0.015026813, -0.011917357, 0.0084075425, -0.0031911961, -0.034377508, -0.010829715, 0.0033713577, 0.0065792357, 0.014519692, 0.0074600256, -0.0043305517, -0.0108964415, -0.012117537, 0.012497879, 0.009641983, -0.01532041, 0.00076026533, 0.0060587684, -0.012391116, -0.01235108, -0.04419965, -0.011730523, -0.010089051, 0.027811617, 0.02623687, -0.0002781662, 0.00031069538, 0.015280374, 0.011210056, -0.02339432, 0.0018866925, -0.01773591, 0.005298086, 0.018323105, 0.009074807, -0.018870262, 0.037527, -0.02364788, 0.014025915, -0.0010375974, 0.005338122, 0.021766193, -0.014146023, 0.0022269979, 0.020685224, -0.0060053873, 0.018429866, 0.011843958, 0.04115692, -0.0372334, -0.01853663, 0.0031811872, -0.026276905, 0.014599764, -0.021192344, 0.009375077, -0.006939559, 0.011216729, -0.02691748, -0.014599764, 0.001543885, 0.022179898, 0.02447529, 0.002342101, 0.012684712, -0.010436028, 0.015240339, -0.0036866406, 0.021953028, -0.02643705, 0.006759397, 0.0015280375, 0.027264459, 0.027651472, -0.01006236, 0.007867058, 0.003171178, -0.00023687916, 0.024795577, -0.008420887, 0.039155126, 0.019270621, 0.039128434, 0.015894258, -0.013351978, -0.01532041, 0.007760295, 0.03371024, -0.02922622, 0.025209282, 0.012331062, -0.003753367, 0.009541893, 0.026370322, -0.010783006, 0.018856917, -0.004814319, -0.006218912, 0.019297311, 0.014252786, -0.010969841, -0.019230586, 0.013365323, -0.024381872, -0.004714229, -0.016374689, -0.012851529, 0.0058185533, -0.00086744485, 0.0020902085, -0.6713222, -0.012511224, -0.013338633, -0.044893607, 0.025596295, 0.02211317, 0.028131904, -0.0052413684, -0.021832919, 0.008367507, -0.008147309, 0.017202098, -0.0151335765, -0.021312453, -0.011964066, -0.012077501, 0.016147818, 0.001482163, 0.018830225, 0.007473371, -0.033496715, 0.0004891888, -0.004567431, -0.020872056, -0.007146411, 0.018803535, -0.010409338, -0.009995634, -0.013825736, 0.008294107, -0.041717425, 0.03707326, 0.021005511, 0.0038467841, 0.055302944, -0.0097754365, -0.00026190162, 0.041477207, 0.03803412, 0.03541844, -0.016134474, -0.004674193, 0.010075705, 0.0038501206, 0.002383805, 0.013532139, 0.036886424, -0.015987676, 0.021165654, -0.010082378, 0.0053814943, 0.015226993, 0.005021171, -0.010536118, 0.009461821, 0.0022203252, 0.028959312, 0.033950455, 0.017348897, 0.007273191, -0.033576787, 0.008901319, 0.00046166414, -0.03330988, -0.026770683, 0.0151335765, -0.016868467, 0.0027024243, -0.0034430888, 0.001411266, 0.008314125, 0.022953926, 0.01245117, 0.021499287, 0.00087578566, 0.026770683, 0.009515203, -0.0043405606, -0.0026290251, 0.020298209, 0.016694976, 0.016641596, 0.0051779784, -0.022660328, 0.021179, -0.0013737323, 0.02143256, -0.0112701105, 0.020031303, -0.004190426, 0.022219934, 0.0446267, -0.05023173, -0.028345428, -0.011230074, 0.019177204, -0.018309759, 0.02012472, 0.024408564, -0.020818677, -0.02120569, 0.010736298, -0.0054749115, -0.008807901, 0.009094826, 0.03541844, 0.017268825, -0.0051379423, 0.014372894, -0.021806229, 0.005615037, 0.0017715893, -0.016241236, -0.023461046, 0.011690487, -0.026730645, 0.010115742, 0.0030810973, 0.033363264, -0.05626381, 0.023367628, 0.000603041, 0.011430254, -0.019123822, -0.022139862, -0.009621965, 0.020858712, -0.008787883, 0.0023287558, -0.024915684, -0.007867058, 0.0047475924, 0.019057095, 0.009008081, -0.007660205, -0.0020968812, -0.004093672, 0.00015524343, 0.023888096, -0.015253684, -0.011036567, 0.013038363, 0.0048543545, 0.0029576533, -0.024168348, -0.027891688, -0.00480431, -0.0010442701, -0.024368526, -0.013705628, 0.0220331, -0.017589113, -0.026343632, 0.0039502103, 0.019457456, -0.018109579, -0.010783006, -0.014733217, -0.004163735, -0.0068661594, 0.03016039, -0.011737196, 0.021018855, -0.012544587, 0.011750542, -0.013745665, -0.012117537, 0.020671878, -0.011950721, -0.049911443, -0.013732319, -0.022633638, -0.02754471, 0.028932622, 0.011817268, -0.003996919, -0.030427296, -0.023033997, 0.018283067, 0.014626455, -0.0036566136, 0.015307065, -0.025529569, 0.007273191, -0.0050011533, 0.014906706, 0.018216342, 0.042011023, -0.016694976, 0.023727953, -0.00584858, 0.008360834, -0.01710868, 0.008834592, 0.0019267284, -0.02256691, 0.008787883, -0.0035098153, 0.015480554, 0.01967098, 0.02251353, -0.011883995, 0.010949823, -0.035712037, 0.020391626, -0.025009101, -0.003936865, -0.021485941, 0.015360447, -0.0034430888, 0.0022203252, -0.018936988, -0.024315147, -0.013905808, -0.016388034, 0.001381239, 0.000786956, 0.023300903, -0.0018916971, -0.025035793, 0.018296413, -0.010089051, 0.0066192714, -0.034697793, -0.007533425, 0.03192197, -0.026316943, 0.021032201, -0.0021118945, 0.001247786, 0.030907726, 0.013812391, 0.029573197, 0.015894258, 0.014052606, -0.012718076, 0.022473494, -0.030453986, 0.04070318, 0.007079684, 0.03718002, 0.023474392, -0.0048710364, -0.012971637, 0.017308861, 0.025009101, 0.0058886157, -0.010709607, -0.004233798, 0.002709097, -0.0077269315, 0.018016161, -0.010162449, 0.0009366736, 0.0077869855, -0.022606947, 0.01838983, -0.00682946, 0.017749256, 0.0069462312, 0.022326695, 0.012991655, 0.010682917, -0.0024104957, 0.010302575, -0.012731421, -0.006832796, -0.0127647845, -0.00078779005, -0.011657124, 0.015373792, -0.008220708, 0.013091744, -0.0041770805, -0.013018345, 0.02208648, 0.01343205, 0.0072865365, 0.0004896059, 0.01836314, -0.007339918, -0.012484533, 0.013945844, -0.004784292, -0.014906706, -0.019537527, -0.030000245, 0.014746563, 0.01235108, 0.043425623, 0.008714484, 0.01192403, 0.007393299, 0.007920438, 0.013905808, 0.0055449745, 0.0140125705, -0.012711403, 0.025289353, -0.030907726, 7.350344E-05, 0.0069795945, -0.01733555, -0.03277607, 0.038728077, -0.012784802, 0.0018549975, -0.002792505, -0.004337224, -0.016388034, -0.010909787, -0.015840877, 0.017495696, -0.013318615, -0.0035631964, 0.00086661073, 0.015026813, -0.0020902085, 0.020084685, 0.0003355093, -0.006879505, -0.007887076, -0.02797176, 0.0082874345, 0.08994736, -0.004030282, -0.0151335765, 0.006879505, -0.0018716791, -0.025689712, -0.038220953, -0.008254072, -0.0020268182, -0.013652247, -0.0028859223, -0.015800841, 0.011123312, -0.012698058, 0.018643392, 0.008140637, -0.0121442275, -0.03541844, -0.0050478615, -0.018189652, 0.003970228, -0.009415112, 0.014906706, 0.021953028, 0.026650574, 0.006779415, -0.0014262795, 0.0017765937, 0.026597193, -0.012744767, -0.00081531476, -0.010295903, -0.022139862, 0.005531629, 0.0018499929, 0.011443599, -0.017989472, -0.012964964, 0.030053627, 0.0060687778, 0.03541844, 0.015120231, 0.0020518408, -0.005788526, 0.0037600398, -0.014733217, -0.00325125, 0.020338245, 0.0050144983, -0.022526875, 0.0309878, 0.001921724, -0.024421908, 0.00083116227, -0.011410236, 0.029092764, 0.00832747, 0.009488512, 0.00033863712, -0.045187205, -0.006685998, -0.027331185, 0.016187856, -4.722987E-05, -0.003466443, -0.010109069, -0.0078070033, 0.019911196, -0.017549077, -0.0011685482, -0.0067827515, -0.005992042, -0.020445008, 0.0031828552, 0.018002817, 0.0034497613, -0.01770922, 0.005798535, 0.018696772, 0.028532263, 0.0015614007, 0.023260867, 0.005988706, -0.0054415483, 0.000879122, -0.0121375555, -0.03707326, -0.009868853, -0.004784292, 0.011183366, -0.00013887459, -0.008721157, 0.020458354, 0.017775947, -0.002332092, 0.008300779, 0.013919153, 0.027731543, 0.007780313, 0.018283067, 0.002065186, -0.015667388, 0.007960474, 0.004674193, -0.006635953, 0.005768508, 0.014239441, -0.00034718646, 0.0043405606, -0.010082378, 0.0014946741, 0.0012386112, 0.024528671, 0.0069595766, -0.02887924, 0.022380076, -0.0021719483, 0.0048209913, 0.0057518263, -0.016788393, 0.006105477, -0.02669061, 0.04329217, -0.0012235977, -0.006472473, 0.020885402, 0.018296413, -0.023100723, -0.021245725, 0.018429866, 0.019003715, 0.029039385, 0.021739502, 0.015854223, -0.021699466, -0.018309759, -0.02143256, 0.0062622842, 0.00062305894, -0.009748746, -0.021072237, 0.02407493, -0.0008991399, 0.037820596, -0.010829715, -0.015453863, -0.02296727, 0.012170918, -0.02933298, 0.027050933, -0.0069795945, 0.016281273, -0.03755369, -0.009875526, -0.018229688, -0.0041937623, -0.020858712, -0.007800331, 0.022433458, 0.011123312, -0.011223402, -0.023661226, 0.033416644, 0.022139862, -0.009335041, 0.0075134067, -0.015440518, -0.0026857427, -0.04692209, 0.010042342, 0.012651349, 0.020685224, 0.0007606824, 0.0032779407, 0.0035531875, 0.0097354, -0.020711914, -0.0069262134, -0.0047909645, -0.04278505, -0.0033263173, -0.011123312, 0.0034080574, -0.0009466826, -0.019590909, -0.0059052976, 0.03888822, 0.002609007, -0.007226483, 0.015160266, 0.03453765, 0.001236943, 0.023741297, -0.0006330679, -0.009061462, -0.015440518, 0.0052213506, -0.037260093, -0.008641085, 0.017442314, -0.011136658, -0.012544587, 0.004490695, -0.01101655, -0.015600662, 0.0013403691, -0.011603743, -0.01640138, 0.014546382, 0.013038363, -0.0024054912, -0.017815983, -0.02015141, -0.035071462, -0.013718974, -0.0074600256, -0.007052994, 0.0102758845, -0.032242257, -0.0116437785, -0.003679968, -0.0013328623, 0.0073666084, -0.0137857, 0.01838983, 0.01028923, -0.022780435, 0.0014429612, -0.014973433, -0.00640241, -0.015360447, 0.011977412, -0.003669959, -0.0026623884, -0.014693181, 0.025943274, -0.02228666, -0.016988574, -0.019310657, 0.0301337, 0.010436028, 0.010809697, -0.009121516, -0.015934294, -0.0033513398, 0.032829452, -0.035311677, 0.010496083, -0.004180417, -0.005057871, -0.009722055, 0.017348897, -0.016107783, 0.014960087, -0.006675989, -0.018429866, 0.007526752, 0.006308993, -0.011590398, -0.006319002, -0.015533935, 0.032188877, 0.002278711, 0.0024572043, 0.029279599, 0.01685512, -0.007666878, 0.002647375, 0.008621067, 0.028799169, -0.02248684, 0.006165531, 0.010222504, 0.016347999, -0.0072531733, 0.014279476, -0.0040769908, -0.034751173, 0.02083202, 0.0001317849, 0.0028091867, -0.0073265727, -0.031841896, -0.03528499, -0.012344407, -0.013418704, -0.028478881, -0.02580982, -0.0031945324, -0.027784925, -0.015347101, -0.011096621, 0.0057818536, 0.020698568, -0.00074858824, -0.0060554324, -0.011190038, 0.017589113, -0.025689712, 0.015267029, 0.00059219793, 0.023888096, -0.009014754, 0.0030660839, -0.0017916072, -0.04948439, 0.006809442, -0.021125618, -0.01702861, -0.031841896, -0.0094017675, -0.009128189, 0.011623761, -0.0057384814, -0.0034197345, 0.010242522, 0.014479656, -0.025209282, -0.027037589, -0.005982033, -0.005725136, -0.0029576533, 0.029760031, -0.0049310904, 0.003179519, 0.008494287, 0.0033796986, 0.015814187, 0.007827021, -0.020805331, 0.010222504, 0.010556136, 0.01748235, -0.03144154, 0.01124342, 0.0019334011, -0.0062322575, -0.0030360569, -0.0047409195, -0.009822144, 0.021939682, 0.015080195, 0.0029576533, 0.020138066, -0.016307963, -0.014599764, -0.006228921, -0.0016222886, -0.0074800435, -0.009675346, 0.015480554, 0.04318541, 0.0023070697, -0.025596295, -0.0140125705, 0.0022837154, -0.044439867, -0.028719097, 0.013625557, 0.0009942253, 0.008734502, 0.004961117, -0.0023671235, 0.024315147, -0.011910685, 0.023701262, 0.003426407, -0.0011176693, 0.001001732, 0.007960474, -0.012831511, -0.0037200039, -0.027624782, -0.010282557, 0.039048363, 0.0016639928, 0.015467209, -0.0005450723, -0.037847284, -0.021792883, -0.015560626, -0.00037241742, 0.042011023, 0.019043751, 0.023861406, -0.048256624, -0.020858712, -0.009575256, -0.028078523, 0.019150512, -0.0036833042, -0.00017265488, 0.0100223245, -0.01725548, -0.0034297435, -0.032589234, -0.02887924, -0.0019817778, 0.020458354, 0.005218014, -0.016508143, -0.0077069136, 0.0007944627, -0.03445758, 0.017575767, -0.0013587188, 0.028612334, 0.017495696, -0.0013036695, -0.025716403, 0.0026807382, -0.01989785, 0.0031878597, 0.006035414, 0.0050111623, 0.0012969968, 0.014266131, -0.008807901, 0.023634536, -0.0055449745, -0.01733555, -0.015373792, -0.01343205, -0.0030143708, 0.018256377, 0.000511709, 0.018443212, -0.014479656, 0.026303597, 0.0036866406, -0.022206588, -0.00095669157, 0.0023554463, -0.029493125, -0.018443212, 0.041370448, 0.18480578, -0.005418194, -0.006535863, 0.04814986, 0.017869364, -0.009895544, 0.0051579606, 0.008914663, 0.012210954, -0.008894646, 0.01677505, 0.013025017, -0.030854346, -0.003906838, 0.010929805, -0.006939559, -0.05167302, -0.01733555, -0.019550873, -0.004784292, -0.014813289, -0.0034430888, 0.013138453, -0.02143256, 0.022406768, 0.009261642, 0.010903114, -0.010642881, -0.0051579606, 0.014546382, -0.0162012, -0.030080318, 0.0050878976, 0.020178102, 0.015040159, -0.006575899, 0.036005635, 0.020458354, -0.0037266766, 0.0005087898, -0.019510835, 0.0027474647, 0.010729626, -0.008387525, -0.0024255093, 0.025676368, -0.018176306, 0.0007131398, 0.0016656609, -0.0073732813, -0.032162186, -0.007359936, -0.0064858184, 0.0022019753, -0.005805208, -0.0030610794, 0.036512755, -0.021926336, 0.013351978, 0.003363017, -0.033736933, 0.0218863, -0.032615926, 0.02839881, -0.016067747, 0.011190038, 0.005104579, 0.0001503432, 0.0100289965, 0.0009792118, -0.0058852797, 0.00023750473, -0.011623761, 0.02930629, 0.0021736166, -0.01245117, 0.006972922, 0.0036165777, 0.0019317329, 0.018523283, 0.0025639667, 0.013959189, 0.010002307, -0.0050878976, -0.02538277, -0.0251559, -0.004240471, -0.016441416, 0.008861283, 0.020685224, 0.013345305, 0.011937375, -0.0041670715, -0.005595019, -0.014506347, 0.013999226, -0.018496593, 0.03416398, -0.014586419, 0.01199743, -0.035178225, -0.001971769, -0.013812391, -0.0059319884, -0.013118435, 0.011350182, 0.022980615, 0.0023788007, 0.004127036, -0.015013468, -0.014946742, -0.03149492, 0.0008211533, 0.006635953, 0.0061888853, -0.008347488, 0.0069262134, -0.035578582, 0.016494798, -0.024501981, 0.011363528, 0.0078070033, -0.0039635557, 0.00065225177, -0.00300603, -0.009682019, 0.0060487594, 0.010976514, 0.021045547, -0.025449498, -0.0018182978, -0.017175408, 0.014332858, -0.01320518, -0.012491206, -0.007386626, 0.015694078, -0.0121442275, -0.012377771, -0.004160399, 0.0023187469, -0.021125618, -0.010089051, 0.030827655, 0.032135494, -0.033897076, 0.008354161, -0.0075000613, -0.022700364, 0.0058852797, 0.01257795, -0.017148716, -0.030240461, -0.016374689, 0.013905808, -0.01989785, -0.029626578, -0.036165778, 0.003201205, 0.01026254, -0.018896952, 0.015560626, 0.019777743, -0.016748358, -0.012658022, 0.008013856, -0.17049962, 0.020591807, 0.006562554, 0.0035031426, 0.035685346, -0.018283067, 0.013592193, 0.019177204, -0.02387475, -0.0087812105, 0.013745665, 0.010462719, -0.024942376, 0.005364813, 0.00090247625, 0.0022670338, 0.0086544305, 0.014239441, 0.015333756, -0.0016189524, 0.0009366736, -0.0046274844, -0.0019133831, -0.0118973395, -0.011877322, -0.027784925, -0.010876424, 0.0011802254, 0.009615293, -0.0057484903, -0.010249195, -0.009908889, 0.0073666084, -0.019777743, 0.018029507, -1.3866606E-05, -0.011410236, 0.015200303, -0.013371996, 0.02669061, 0.008914663, 0.013071726, 0.019684326, 0.00243385, 0.031228013, 0.007126393, -0.015694078, 0.011803922, -0.002353778, -0.01594764, 0.006182213, -0.007827021, -0.00827409, 0.00744668, 0.0284255, 0.022139862, 0.014719872, 0.0015480554, 0.016561523, -0.020044649, -0.024782231, -0.018189652, 0.015600662, 0.0023754644, -0.03144154, 0.02404824, 0.01969767, -0.0053181043, -0.030080318, 0.008968045, -0.040035915, -0.018696772, -0.0025706394, -0.004630821, 0.021272417, 0.0106495535, 0.006939559, -0.016267927, -0.0038934927, -0.01921724, -0.009795454, 0.020044649, -0.028719097, 0.013078399, 0.006135504, 0.030427296, -0.000342599, 0.026810719, -0.029066075, -0.019003715, -0.0046174754, -0.010742971, -0.019564217, -0.012938273, -0.0024672132, 0.020538425, 0.02120569, -0.024261765, -0.0025572942, -0.016961884, 0.01398588, 0.004560758, -0.006228921, 0.018923642, 0.020458354, 0.022900544, 0.037740525, 0.0120174475, 0.025542915, -0.0013245215, -0.020364936, -0.0036065688, 0.002617348, 0.013718974, 0.02049839, -0.0028342092, 0.0051279333, -0.022780435, 0.02797176, -0.016307963, 0.041103538, 0.00058552524, -0.032509163, 0.0096553285, -0.0004558256, -0.021699466, -0.095659144, -0.014519692, 0.021686122, -0.007580133, -0.016761703, 0.0023871416, -0.010916459, 0.030080318, 0.0055349655, 0.023287557, 0.030507367, 0.0032445772, 0.004550749, 3.9149705E-05, -0.0048009735, 0.007359936, 0.030053627, 0.0008053058, -0.02691748, 0.026490431, -0.016241236, -0.0065492084, -0.012664694, -0.01816296, -0.008887974, -0.008707812, -0.037740525, -0.0060721138, -0.004170408, 0.022019753, 0.0048109824, 0.010642881, 0.017015263, -0.007686896, 0.008867955, -0.0013453736, -0.026517121, -0.0154939, 0.003322981, -0.02012472, -0.02407493, -0.01398588, 0.0010067364, -0.028639024, -0.00940844, -0.014079297, 0.008160654, 0.02422173, 0.0045874487, -0.008480942, -0.008007183, 0.0001170842, -0.0027024243, -0.018443212, 0.0358188, -0.02077864, -0.019417418, -0.01235108, -0.008761193, 0.021752847, -0.009795454, -0.00025189263, 0.0004020273, 0.029359672, 0.0017932754, -0.018216342, -0.011496981, 0.027624782, 0.007953802, -0.006228921, 0.0003467694, 0.011577052, -0.0033596805, 0.047455907, 0.013692283, 0.0010893105, -0.03579211, -0.018176306, 0.008120618, -0.01768253, -0.008741175, -0.0063857287, 0.030107008, -0.027104314, 0.005451557, 0.011423581, -0.012671367, -0.011964066, 0.023100723, -0.030373914, 0.013245216, 0.022500185, 0.0040769908, -0.014826634, -0.012638004, -0.014626455, 0.009194915, -0.012457842, -0.0025172583, -0.004567431, 0.002238675, -0.0063823923, -0.07126393, 0.041717425, -0.0151335765, -0.020418316, 0.0042671612, 0.005328113, 0.008574358, -0.009888872, 0.0115169985, -0.010696262, -0.0038401117, -0.012718076, 0.010636209, -0.012471188, 0.0075134067, -0.0017048627, -0.0037166674, -0.010315921, 0.007887076, -0.0020885402, 0.0011235079, 0.018456558, 0.0018983696, 0.0036833042, -0.023981513, -0.0055282926, 0.010803024, 0.033790313, 0.0090347715, 0.003099447, 0.0075134067, 0.004594121, 0.019884504, 0.032882832, -0.012190936, -0.0066426257, 0.006429101, 0.014065952, 0.001104324, -0.012230972, -0.015907604, -0.035151534, -0.00591197, -0.016307963, -0.010516101, -0.011990757, 0.018176306, 0.00013136785, 0.012064156, 0.028639024, -0.026944172, 0.030026937, 0.0148800155, -0.028585644, -0.008707812, -0.017041955, 0.0052647227, -0.012658022, 0.0026340296, -0.032375712, 0.03061413, 0.018483248, -0.00898139, 0.01733555, 0.01443962, 0.0071197203, 0.0010667903, 0.0001385618, 0.017535731, -0.00093583955, -0.027704854, 0.01554728, 0.002609007, 0.005921979, 0.0033296538, -0.013151798, -0.007453353, -0.014853325, -0.016107783, 0.031361468, 0.014733217, -0.0018383157, -0.04897727, 0.010496083, -0.013865772, -0.0094017675, -0.015267029, -0.021712812, -0.023274213, 0.0063256747, -0.029146146, -0.008194017, -0.01280482, -0.0014546383, -0.0038167574, 0.0024488636, -0.0013487099, 0.010676244, 0.007980493, 0.018576665, -0.007226483, 0.005338122, 0.00077361066, -0.006972922, -0.0244486, 0.004240471, 0.0079070935, -0.004901063, -0.019991267, 0.00018579166, 0.0012102524, 0.0046508387, -0.01702861, -0.0069462312, -0.0069462312, -0.0016781721, 0.010042342, -0.0068027694, -0.0036666226, 0.010976514, 0.021846265, 0.028292047, 0.0076201693, 0.0006726868, -0.02027152, 0.0074800435, -0.0024588725, -0.0044406503, 0.006319002, 0.014226096, 0.013945844, -0.017669184, 0.012871547, 0.018456558, 0.002023482, 0.0054548937, 0.011303473, 0.027264459, -0.021926336, 0.058399055, 0.014973433, 0.00666598, 0.0026607201, 0.006342356, 0.00562171, 0.01227768, 0.012364426, -0.01733555, -0.018549975, 0.0013128445, -0.003127806, -0.028532263, 0.01081637, -0.056584094, 0.012991655, 0.013311942, -0.0053414586, -0.0019233921, -0.0057584993, 0.031601682, -0.004937763, 0.024795577, -3.9618873E-05, -0.0056617456, -0.020244827, 0.016681632, 0.011223402, 0.005164633, -0.005901961, 0.026383668, 0.0010692925, -0.025663022, -0.018523283, -0.0063023204, -0.019804433, -0.00021029281, 0.030667512, 0.0005500768, 0.025102518, 0.015080195, -0.007626842, -0.00037241742, -0.002493904, -0.0016306295, 0.0032045415, -0.0244486, 0.0027791597, 0.018109579]
+ },
+ {
+ "Id": 92,
+ "Type": "Ski/boarding",
+ "Brand": "Daybird",
+ "Name": "Blizzard Snowboard",
+ "Description": "Take on the slopes with the Daybird Blizzard Snowboard. This powerful board features a sleek design in icy white, with a durable wood core, a versatile medium flex, and a precision base that allows for smooth rides and easy turns. Strap on and carve your way to glory.",
+ "Price": 449.99,
+ "Embedding": [-0.020163737, -0.008261259, -0.020920692, -0.031974856, 0.0017716681, -0.00942932, -0.027146, -0.041058328, 0.008378718, -0.03829152, -0.007987189, 0.008522279, -0.008098122, -0.0031110232, -0.013364186, 0.020163737, 0.011700188, -0.006023019, 0.0016248447, -0.010231954, -0.023309018, -0.0031893288, -0.0032545838, -0.012241802, -0.008913808, -0.009435846, 0.016013531, 0.001810821, 0.010179751, 0.019706953, 0.042128507, -0.009755595, 0.010153648, -0.022134433, -0.030147722, -0.017853716, -0.0035433362, -0.014995555, 0.00057342666, 0.014316905, 0.016274549, -0.006626626, -0.0061404775, 0.017018454, 0.0051975455, -0.0017602486, 0.0012218964, -0.021847311, 0.013533847, 0.010225429, -0.009246606, 0.011856799, -0.008672364, -0.004414488, 0.015843868, -0.00888118, 0.012424516, -0.0039838064, 0.02685888, -0.03810881, -0.013964529, -0.026780574, -0.0016378957, 0.02535802, 0.006365607, -0.0077783735, -0.020059329, -0.018963048, -0.0012855198, -0.0029625683, 0.01124993, 0.0079088835, 0.030513149, 0.0022610791, -0.007967613, -0.029208053, -0.007093198, -0.006199207, -0.014525721, -0.019197965, 0.020581366, -0.020398654, 0.001031026, 0.028059568, 0.0189761, 0.019706953, 0.0021158874, 0.0069822646, -0.032653507, 0.007628287, 0.0017586171, 0.003018035, 0.00070271274, 0.023230713, -0.012541975, 0.020516112, 0.0059838663, 0.025149204, -0.0010481554, -0.015974378, 0.0379783, 0.023269866, -0.0009788221, -0.013253252, -0.025736498, -0.0036151165, -0.0023328594, 0.00235733, 0.024588013, -0.0026314002, -0.031766042, 0.015126065, 0.021260018, -0.03539421, 0.030878577, -0.0028809998, 0.027459225, -0.0024062712, 0.017109811, -0.027641937, 0.03675151, 0.008685416, 0.017840665, -0.03187045, 0.0009935045, 0.005298691, -0.02142968, -0.019341527, 0.026676167, 0.0156089505, 0.01763185, 0.018506264, -0.022982745, -0.028242283, -0.028268384, -0.012300532, 0.01111942, 0.022473756, -0.009977461, 0.019576443, -0.007863205, 0.009977461, -0.031792145, -0.013990631, 0.00467877, 0.014186396, -0.011439168, -0.014356058, 0.013305456, -0.023204612, 0.02495344, -0.007974138, 0.02548853, 0.019041354, 0.018362705, -0.002339385, 0.0084309215, 0.024901235, -0.013990631, -0.0036934223, 0.012424516, -0.0071976054, 0.017266423, -0.0061306893, 0.022343248, 0.021494934, -0.008254734, -0.015622002, 0.00969034, -0.016757436, -0.0026689218, 0.027041594, -0.02658481, 0.03380199, 0.009638135, 0.0077196443, 0.017162016, -0.0029364666, -0.026506504, 0.0019494875, -0.0061959443, -0.011328235, 0.013161896, 0.009474998, -0.004682033, -0.029625684, -0.011537051, -0.003758677, -0.01504776, -0.0062938267, -0.009481524, 0.017135913, 0.011876375, 0.002383432, -0.6598567, -0.006522218, 0.013625205, -0.020711876, 0.011634933, 0.0017504602, -0.00028426628, -0.012985707, 0.0037488888, -0.010525601, 0.012267904, 0.008920332, 0.0012373944, 0.0046461425, 0.004303555, -0.0035629126, 0.025266662, -0.004065375, -0.0162615, -0.0014657861, -0.010434244, 0.022852235, -0.022212738, -0.0052236477, -0.009109572, -0.006424336, -0.0084309215, -0.0072106565, -0.012985707, 0.01776236, -0.0063851834, 0.03476776, 0.008554906, 0.01425165, 0.038187116, -0.014865046, -0.007948036, 0.042833257, 0.01214392, 0.037508465, -0.013253252, -0.007895832, 0.0059186113, -0.0076413383, -0.014943352, 0.0029690939, -0.0008948066, -0.01038204, 0.0053280555, -0.016248448, 0.021286119, -0.0062285718, 0.020176787, -0.018675927, 0.0021648284, 0.014225549, 0.05507506, 0.0036771086, 0.008163377, -0.00078020286, -0.017449137, 0.02834669, -0.003872873, -0.008868129, -0.020189838, 0.017945074, -0.031635534, -0.0005970815, 0.02385716, -0.012940029, 0.0037129987, 0.014303855, -0.0040327474, 0.022904439, 0.0030408741, 0.028581608, 0.037821688, -0.0003611446, -0.00359554, -0.003124074, 0.0094032185, 0.00882245, -0.02101205, -0.027093798, 0.024470555, -0.015896073, 0.009135674, 0.019211017, 0.008411345, -0.002929941, 0.023674445, 0.02779855, -0.010623483, -0.025279714, -0.0037913045, -0.0022790243, -0.018010328, -0.016052684, 0.019863565, -0.022760877, 0.00022941144, 0.007967613, 0.018793385, 0.008789823, 0.01667913, 0.006864806, -0.009814324, -0.015269626, 0.019237118, -0.0074847266, 0.005908823, -0.019080507, -0.028111773, -0.0113869645, -0.015909122, -0.020803234, 0.0095011005, -0.028816525, 0.012796468, -0.028294485, -0.0052530123, 6.5305794E-05, -0.01003619, 3.357054E-05, -0.026728371, 0.00027978, -0.004283978, -0.012189599, -0.012907402, -0.01295308, 0.000463717, -0.003947916, -0.0006647834, -0.0045874133, 0.013390287, 0.04218071, 0.018336602, -0.0021354638, 0.021077303, -0.003947916, -0.026519556, 0.010936706, -0.0039935946, -0.0013573001, -0.003173015, 0.010153648, -0.016874894, -0.0022986007, -0.012078665, -0.018597621, -0.013807918, -0.02209528, 0.011197725, -0.009736017, 0.0111259455, -0.0067342967, -0.0037684652, -0.019576443, 0.0014902567, 0.004629829, -0.00089725363, -0.0017618799, 0.01159578, -0.014068937, 0.004724448, -0.01478674, -0.016705232, 0.017188117, -0.022473756, -0.043172583, -0.0003429956, -0.0083330395, -0.008718043, 0.013546899, -0.0011664297, -0.011569678, -0.016170142, -0.0059447135, -0.016365906, -0.016900996, 0.0036510066, 0.02278698, -0.0325752, -0.005305216, 0.023687497, -0.005461828, 0.019028302, 0.023765802, -0.012117818, 0.0054226746, -0.002458475, 0.03850034, 0.0006782422, 0.0007451284, -0.0013499589, -0.030617557, -0.0004991993, -0.0023818007, 0.00935754, 0.028085671, 0.012940029, -0.0044079623, 0.0012161866, 0.00067579513, 0.0006431677, -0.00746515, 0.019615596, -0.024300892, 0.0142124975, 0.019485086, 0.024588013, -0.025397172, 0.008098122, -0.01656167, 0.01911966, 9.310281E-06, -0.026493452, 0.016535569, -0.0031909603, -0.00339325, 0.0039185514, 0.010401617, 0.037926096, -0.0049626282, -0.010271107, -0.004551523, -0.012417991, 0.016170142, 0.028398894, -0.008026342, 0.012946554, 0.015230473, 0.0043818606, -0.009657712, -0.0029625683, -0.014499619, -0.008470074, -0.017436085, 0.04760991, -0.0044732173, 0.020998998, 0.019863565, -0.0012504453, -0.012039512, 0.021233916, 0.021886464, 0.021912565, 0.009409743, -0.023556987, 0.011680611, -0.040092554, -0.01269206, -0.002841847, -0.0029119959, 0.0020473697, -0.02766804, 0.008019816, 0.013847071, 0.023126304, 0.017984226, 0.00447648, 0.0065939985, 0.0053606825, 0.0038500337, 0.03706473, -0.007021418, 0.0012969393, -0.047427196, 0.0010987279, -0.020059329, -0.0126202805, -0.0065091676, -0.00086952036, -0.012626806, -0.0045449976, -0.013064013, -0.016979301, 0.01927627, -0.0007369715, 0.04270275, -0.0031159173, -0.030460946, 0.000331576, 0.027328715, -0.0052725887, 0.010656111, -0.014525721, -0.009096521, 0.004456904, 0.037195243, 0.013344609, 0.022447655, -0.009866527, 0.010577804, 0.013507746, -0.020255093, 0.012059089, -0.00084912824, 0.019706953, -0.0005142895, -0.0070997234, 0.007967613, -0.007582609, -0.0311918, 0.020920692, 0.0037880419, -0.008855077, -0.023047999, -0.006675567, 0.016274549, -0.011001961, -0.03706473, -0.010192801, -0.046148203, -0.015021658, 0.022408502, -0.0042383, -0.017044557, 0.02548853, 0.01126298, -0.023909362, -0.022695623, 0.006424336, -0.008711517, 0.086919405, 0.02863381, -0.019158812, 0.03294063, -0.016796589, 0.008698466, -0.018284397, -0.0006382736, 0.020529164, -0.0013727981, 0.01139349, 0.01979831, 0.02618023, -0.022082228, -0.0038598222, -0.0077522714, -0.009279234, -0.008398294, 0.0082351575, -0.008098122, -0.024979541, 0.013272828, -0.009076945, 0.0060523837, 0.017409984, 0.0053378437, 0.009266183, 0.0110280635, 0.011152047, -0.012672484, -0.023309018, -0.003256215, -0.009892629, 0.0073868446, -0.012352736, 0.011556627, 0.010003562, -0.016365906, -0.011961207, -0.015635053, 0.02564514, 0.0044275387, 0.012222226, -0.01802338, 0.0026069297, 0.0005126581, 0.013716561, 0.012894351, 0.0039055005, -0.023922414, 0.02401377, 0.004460166, -0.025840905, 0.009553304, 0.0025661455, 0.0035172342, -0.0008401557, 0.00834609, 0.02197782, -0.043381397, -0.033567075, -0.02685888, -0.00052774826, -0.004629829, 0.013573, -0.0064895907, -0.0151521675, 0.021690698, -0.012026462, 0.034950476, -0.0036281676, -0.011895952, -0.009899155, 0.0033149444, 0.008789823, 0.009553304, 0.011099843, 0.004411225, 0.015987428, 0.01269206, 0.019837463, -0.013187997, 0.016600823, -0.00052081497, -0.007458625, -0.008535329, 0.010140598, 0.008391769, 0.020946795, 0.017801512, 0.025710395, 0.018362705, -0.003422615, -0.025605988, -0.008215581, 0.01885864, 0.034846067, 0.010055766, 0.010819248, -0.0114195915, 0.011882901, -0.006577685, 0.0052040713, 0.00746515, 0.0034063011, -0.015230473, 0.0026999179, 0.0271199, 0.01207214, 0.002810851, 0.009788222, -0.014721486, -0.0048353816, 0.0038924494, -0.0036314302, 0.027041594, 0.0037129987, 0.016444212, -0.0137557145, -0.017853716, 0.019863565, -0.036386084, 0.02021594, -0.0027341766, -0.015452339, 0.011367388, -0.009709916, -0.026728371, -0.025188357, 0.020007124, 0.024092076, 0.00447648, 0.021246966, 0.01280952, -0.008189479, -0.01789287, -0.0031518075, -0.016887944, -0.0066070496, 0.0009804536, -0.023126304, 0.031844348, 0.01981136, 0.005053985, -0.0007222892, -0.024118178, -0.018545417, 0.039962046, -0.004022959, 0.024992593, -0.04560006, -0.0014388686, 0.0011925317, -0.012372312, 0.0023295968, -0.005344369, -0.0067081945, -0.012920452, 0.037821688, 0.042102404, 0.013292405, -0.007934985, 0.008620161, -0.002841847, -0.011080267, -0.019693902, -0.010160174, -0.025592936, -0.021312222, 0.012137394, 0.012633331, -0.0079088835, 0.00011052533, -0.02631074, 0.0065091676, -0.0032350072, -0.00019362326, -0.014943352, -0.02454886, -0.022225788, 0.0121961245, -0.022617318, -0.009964409, 0.009931782, -0.03296673, -0.011628407, 0.045991592, -0.0070997234, 0.009461948, 0.015269626, 0.027981263, -0.022969693, 0.00291689, 0.017853716, 0.017853716, -0.021455782, -0.0070866724, -0.029782295, -0.01355995, 0.020581366, 0.018819487, 0.0073215896, -0.018558469, -0.00026203884, -0.0072106565, 0.010649585, -0.011543576, 0.0077131186, 0.0019804835, -0.004854958, -0.025070898, -0.030748067, -0.020698827, -0.019746106, 0.018545417, 0.01586997, -0.019928819, 0.029547378, -0.035890147, -0.020516112, 0.019458985, -0.021051202, 0.018232195, 0.0032969993, 0.02863381, 0.03946611, -0.017305575, -0.009912206, -0.0010057398, -0.0055792863, 0.002810851, 0.021847311, 0.010975859, -0.03377589, -0.01451267, -0.0026281376, -0.0070083668, 0.000112462585, -0.0014127666, 0.0026721845, -0.001251261, -0.0020408442, -0.0071976054, -0.022408502, 0.009272709, 0.025292765, -0.006120901, 0.002088154, -0.0047733895, -0.010310261, -0.0028761057, 0.0054911925, -0.006779975, 0.019315423, 0.012032988, -0.012026462, 0.00603607, 0.011217302, -0.0016109782, -0.010355938, -0.0108975535, 0.038839664, -0.011935105, 0.010603907, 0.011843748, 0.002585722, 0.0189761, 0.013507746, -0.0053280555, 0.024392249, -0.0031860662, -0.0012121081, -0.009005164, 0.004013171, -0.015504543, -0.013860121, -0.02766804, -0.006522218, -0.00025571728, -0.016731333, 0.032914527, -0.0015995585, -0.013742663, -0.010832299, -0.018232195, -0.02362224, -0.010884503, -0.013344609, -0.012626806, -0.019315423, -0.022708675, 0.0033002621, 0.014473517, 0.019184913, 0.023961566, 0.0013507745, 0.001823872, 0.0223824, -0.042807154, 0.014029784, 0.017605748, 0.009416269, -0.0010318417, -0.0028793686, 0.0018467112, -0.007256335, -0.013083589, -0.007850153, -0.015765563, -0.045808878, 0.009396693, 0.008176428, 0.014734536, -0.013533847, 0.016861843, -0.0037815163, 0.034402337, -0.0057619996, -0.02414428, -0.013494695, 0.0033671483, -0.012137394, 0.015165218, -0.0025873533, 0.016731333, 0.007204131, 0.010884503, 0.0021354638, -0.03012162, -0.025971415, -0.020790182, 0.003106129, -0.00111912, -0.032888424, -0.024274789, -0.006013231, -0.0051094517, 0.002564514, -0.025110051, -0.0011264612, 0.015909122, 0.018010328, 0.0058631445, 0.02414428, -0.019915769, -0.018245244, -0.010551703, -0.02957348, -0.0057130586, -0.023047999, 0.014838944, 0.06817823, -0.0035792263, 0.0017439348, -0.00052244635, 0.0012398415, -0.06306225, 0.006903959, 0.0057619996, 0.012437567, 0.037508465, -0.004179571, 0.005080087, 0.016835742, 0.0016566565, 0.0013589314, -0.017827615, -0.02196477, 0.0020196363, -0.0125876535, -1.6670565E-05, -0.014186396, -0.0043590213, -0.03267961, 0.012320109, -0.016626926, -0.0023377535, 0.026480403, -0.0079415105, -0.006352556, -0.0024927338, 0.0013197785, 0.023295967, 0.02604972, 0.012613755, -0.025371071, -0.010153648, -0.0008948066, -0.021664597, -0.011471796, -0.011537051, -0.004623303, 0.010075343, 0.002735808, -0.007687017, -0.030539252, -0.033045035, -0.014395211, -0.006838704, -0.005673906, 0.0125876535, 0.03458505, -0.0050735613, -0.027563632, 0.0040392727, 0.037873894, -0.018480163, 0.008052444, -0.0048875855, -0.033462666, 0.0011990571, -0.00022941144, 0.010891028, 0.0021827733, -0.01383402, -0.0048092795, 0.004959366, -0.04868009, 0.016744385, -0.018532366, -0.023948515, -0.040510185, 0.0038141436, -0.011406541, 0.0189761, -0.004179571, -0.0003458505, -0.028424995, 0.014029784, 0.005566235, -0.0015408292, -0.038213216, 0.023113254, 0.0210251, 0.010075343, 0.019967971, 0.1981658, -0.020046277, -0.00024878397, 0.02834669, -0.0025433062, 0.026689218, -0.0044699544, 0.0019201228, -0.0072693857, -0.022186635, 0.0051388163, 0.0076021855, 0.00063093245, -0.0064439126, 0.022199687, -0.00623836, -0.0073803193, -0.015896073, -0.00085891644, -0.004613515, 0.00854838, -0.016848791, 0.012796468, -0.016326753, 0.0036151165, 0.013494695, -0.01884559, -0.0018858641, 0.0121961245, -0.00081690867, -0.008711517, -0.012665959, -0.0112238275, -0.011935105, 0.007824052, -0.012202649, 0.02114256, -0.018336602, -0.009422795, 0.028581608, 0.0072171823, -0.0060817483, 0.018728131, -0.009298811, 0.017423034, 0.03377589, -0.0080067655, 0.02209528, -0.0025318866, -0.0014502882, -0.016052684, -0.02129917, 0.013742663, 0.009298811, 0.00957288, -0.009279234, 0.014199447, -0.03769118, 0.031766042, -0.010577804, -0.011413067, 0.0151521675, -0.021416629, 0.050689936, -0.009644661, 0.021207813, 0.0030327174, 0.002004954, 0.014669281, 0.017344728, 0.014695384, 0.013455542, -0.010277633, 0.012398414, -0.02362224, -0.03502878, 0.027354816, -0.0036151165, 0.0129791815, 0.020907642, -0.022473756, 0.018232195, -0.011935105, 0.0068713315, -0.013096641, -0.036542695, 0.021638496, -0.012333159, -0.023139356, 0.0006080933, 0.0065939985, 0.01003619, 0.005008307, -0.00056730903, 0.025188357, 0.025658192, -0.007882781, 0.0142386, -0.019106608, -0.021103406, -0.0065581086, -0.00052448554, 0.01091713, 0.00031199955, -0.019315423, 0.009736017, 0.014564874, -0.00759566, 0.007608711, -0.018884743, -0.0047048717, -0.058520515, 0.023400376, -0.011745866, -0.0142386, 0.011008486, 0.021090355, -0.015830817, -0.015504543, -0.0114195915, 0.019224068, 0.007125825, 0.029547378, -0.00036073674, -0.015530645, -0.008319989, -0.006903959, 0.030356538, -0.005432463, -0.017122863, -0.0047994913, 0.0017961387, -0.009390167, -0.02548853, -0.0009421163, 0.018349653, 0.035211496, -0.0023247027, -0.021664597, -0.023100203, -0.012385363, 0.003326364, 0.014160294, 0.009533728, 0.051107567, -0.018427959, 0.0012406571, -0.030852474, -0.0057261097, -0.010010088, -0.03012162, 0.007980663, 0.007771848, -0.0112890825, 0.02278698, 0.021990871, -0.031766042, -0.015008607, -0.0049756793, 0.011915528, -0.03134841, 0.014029784, 0.013546899, -0.025318867, -0.013586052, -0.009970935, -0.16527739, 0.022251891, 0.026650066, -0.01213087, 0.020803234, -0.013390287, 0.017396932, -0.006502642, -0.015778612, 0.014564874, 0.026911084, 0.01777541, -0.026193282, -0.0033540973, 0.011745866, 0.013246726, -0.015674205, 0.04541735, -0.017671002, 0.009259658, 0.018127786, -0.019237118, -0.005171444, 0.006026282, 0.02970399, -0.02129917, 0.008378718, -0.001352406, -0.0028124824, -0.035472516, -0.0009282497, -0.006528744, 0.012665959, 0.011647983, 0.04165867, -0.0141472425, -0.012796468, 0.0015636684, -0.016600823, 0.034506746, 0.007080147, 0.018793385, 0.024588013, -0.018467112, 0.009416269, 0.0140167335, -0.022578165, 0.0006611128, -0.006019756, -0.020268144, 0.032810118, -0.00037317595, -0.019524239, 0.0017276211, 0.014499619, -0.001253708, 0.008463549, 0.015204371, 0.019628648, -0.0026575022, -0.0022741302, 0.007974138, -0.007367268, 0.0034519795, -0.0022480283, -0.014160294, 0.017840665, 0.012150446, -0.041397654, -0.00075369305, 0.015452339, 0.026010567, 0.006636414, 0.002163197, 0.018414907, 0.017997276, -0.027981263, -0.008470074, 0.009481524, -0.019733055, -0.0043655466, 0.053926576, -0.005445514, -0.0007235127, 0.017135913, -0.00039112102, -0.03578574, 0.0040947394, -0.0062024696, -0.050220102, -0.00031648582, -0.0298345, -0.00491695, 0.002013111, 0.0018042956, 0.014264702, 0.028790422, -0.008293887, 0.009957884, 0.0018826013, 0.0073346407, 0.004287241, -0.031009085, 0.018610671, 0.022486808, 0.010460346, 0.007745746, 0.031035189, 0.016470315, 0.012398414, -0.009135674, 0.022277992, 0.009037792, 0.020568317, 0.0032431642, 0.0298345, -0.010225429, -0.029103646, -0.0040196963, -0.024979541, 0.022565113, 0.00078835967, -0.035603024, 0.035864044, -0.019785259, -0.0024959964, -0.09819544, -0.030852474, 0.017527442, 0.004111053, -0.01898915, 0.010910604, -0.000803042, 0.01979831, 0.0039903317, 0.0030425056, 0.002326334, -0.028816525, -0.008078545, -0.006574422, 0.020659674, -0.0076543894, 0.013057488, -0.009970935, -0.022317145, 0.008855077, -0.004049061, 0.000927434, -0.0189761, -0.0075499816, -0.012365786, -0.006740822, -0.019354576, 0.016666079, 0.020490011, 0.030147722, 0.007282437, 0.0016093468, 0.014225549, -0.0026575022, -0.015661154, 0.016887944, -0.021886464, 0.007934985, 0.01425165, -0.041997995, 0.0069757393, -0.006652728, -0.023896312, -0.034689456, -0.023034949, -0.0017308838, -0.008215581, 0.011909003, 0.026937187, 0.0014290804, 0.0029723567, -0.008900756, -0.023517834, -0.009207454, 0.009977461, -0.018897792, 0.012665959, -0.012104767, -0.015139116, 0.01600048, -0.017788462, -0.0062644617, 0.017436085, 0.032757916, -0.002172985, -0.0050507225, 0.0037195242, 0.009553304, 0.025344968, -0.010486448, -0.018923895, 0.021220865, -0.023243764, 0.021899514, -0.014878097, -0.015687257, -0.026023619, -0.022839183, 0.00779795, -0.00627425, -0.02996501, -0.017162016, 0.041684773, -0.024627166, 0.024796829, 0.015974378, 0.013279354, -0.0040555866, 0.0049300008, -0.026963288, 0.014617078, 0.02685888, 0.012333159, -0.034846067, -0.022356298, 0.011380439, 0.0043231314, -0.014630129, -0.007634813, 0.003885924, -0.013729612, 0.008685416, -0.06394971, 0.03406301, -0.008352616, -0.009716441, 0.013612154, -0.011693662, -0.0039935946, -0.027615836, -0.009129148, -0.007732695, -0.0020718402, -0.0154784415, -0.0070475196, 0.01247672, -0.0054781414, -0.023478681, 0.021729851, -0.013455542, 0.025893109, -0.0072171823, -0.016326753, -0.004342708, 0.009200929, 0.0008784929, -0.00895296, -0.0061045876, -0.020542214, 0.024627166, 0.01275079, -0.013311981, 0.0023491732, -0.018545417, 0.027850753, 0.03173994, -0.028947035, -0.027067695, 0.019994074, 0.0005921874, 0.001645237, -0.0298606, -0.0028793686, -0.011856799, 0.018362705, -0.022225788, -0.01491725, -0.0060556466, 0.0058794585, 0.020398654, 0.033149444, 0.00813075, 0.024379198, 0.029730093, 0.010453821, -0.041293245, -0.0055368706, -0.026389046, 0.03458505, -0.00491695, -0.020855438, -0.011915528, 0.029442972, 0.011550101, -0.0066462024, -0.02401377, 0.00970339, 0.007145402, -0.0024780515, -0.00511924, 0.005771788, 0.0009258026, -0.011400015, -0.001310806, 0.01641811, 0.008457024, 0.0049463147, 0.022760877, 0.0059806034, -0.0020946795, -0.021625444, 0.024783777, 0.00015294096, 0.02157324, -0.031270105, -0.00786973, 0.0074977777, 0.01044077, -0.031270105, 0.0020228992, -0.0044177505, 0.009540253, -0.010780095, -0.009018214, -0.0055988627, 0.0049267383, 0.025762599, 0.030774169, -0.0041828332, -0.0026672904, -0.012959605, 0.032288082, 0.0014111353, 0.015804715, -0.006401497, -0.036255572, -0.022356298, 0.014708434, -0.0041175787, -0.00955983, -0.017423034, -0.002427479, 0.00902474, 0.01104764, -0.019197965, 0.010923656, 0.0005061326, -0.0038891868, 0.0016615506, -0.013148844, -0.018506264, 0.028451098, 0.014982505, -0.0014331588, 0.019171864, -0.015073861, 0.009096521, -0.019628648, -0.019341527, -0.007889306, 0.008209055, 0.015452339, 0.012489771, -0.0033377835, 0.008946435, 0.016718283, 0.009409743, -0.011112894, -0.012887825, 0.04526074, 0.0007206578, 0.05455302, 0.032549098, -0.017135913, -0.0028304274, -0.017018454, 0.019733055, 0.030721964, -0.000758995, -0.012744265, -0.02821618, 0.019824412, -0.0062611992, -0.00922703, 0.005067036, -0.020098481, -0.011015012, 0.0025090475, 0.001292861, -0.0379783, -0.007406421, 0.02249986, -0.012215701, 0.03429793, -0.03729965, -0.009657712, -0.011210777, -0.0063231913, 0.0032790543, -0.033201646, -0.010088393, -0.0013891117, -0.0010261319, -0.0040033828, -0.005947976, 0.014160294, 0.029938906, -0.010610432, 0.013820969, -0.008665839, 0.024522757, 0.005181232, 0.02385716, -0.024405299, -0.007302013, 0.0052725887, -6.566265E-05, 0.0042644017, -0.04056239, -0.018545417]
+ },
+ {
+ "Id": 93,
+ "Type": "Climbing",
+ "Brand": "Raptor Elite",
+ "Name": "Summit Climbing Harness",
+ "Description": "Conquer the highest peaks with the Raptor Elite Summit Climbing Harness. This durable and lightweight harness, available in bold red, provides maximum comfort and safety while scaling tricky routes. Its adjustable waistband and leg loops ensure a snug fit, while the gear loops provide easy access to your equipment.",
+ "Price": 109.99,
+ "Embedding": [0.006174597, -0.0055425246, 5.3681528E-05, -0.048880246, 0.007591662, 0.036401916, -0.021911833, -0.029469512, 0.003396538, -0.03757091, 0.010092764, 0.0062085795, 0.00776837, -0.0028324306, -0.017317416, 0.0004570629, 0.026791701, -0.019410731, -0.019301986, 0.003907973, 0.007639237, 0.009725755, -0.0049478333, -0.010147137, 0.0027134924, -0.036075685, 0.03384644, -0.014095888, 0.035477597, -0.012831744, 0.027661651, 0.0024416335, 0.003724468, -0.027947102, -0.024902282, 0.003880787, -0.010996696, -0.014571641, -0.009814109, -0.008570354, 0.027661651, -0.007333396, -5.8991274E-05, -0.0024841113, -0.0012794363, 0.0019522873, -0.007068333, -0.021218592, -0.014952243, 0.007802353, -0.023719696, -0.009684976, -0.03498825, 0.012641442, -7.757538E-05, 0.003551158, -0.0105209425, 0.017439753, 0.03811463, -0.011846255, -0.0032062368, 0.00767322, -0.020158343, -0.0017076142, 0.019410731, -0.01534644, -0.012689018, -0.014734756, 0.012892912, 0.022645853, 0.036483474, 0.01553674, 0.022224471, 0.0060420656, -0.0046963636, -0.0014943748, -0.00034152283, 0.0100791715, -0.005573109, -0.012457938, 0.03194343, -0.021639975, -0.002479014, 1.7349594E-05, 0.027838359, -0.015577519, -0.0047337445, 0.014925058, -0.0075236973, -0.011941405, 0.01189383, -0.004570629, 0.013246329, 0.018459225, -0.04610728, -0.00035001844, 0.01756209, -0.0057498175, -0.0067522973, -0.026587809, 0.013137585, -0.008590744, -0.006602775, -0.010786004, -0.044258643, -0.021599196, -0.0039011764, -0.00059808977, 0.017833948, -0.005804189, -0.01613483, 0.011635564, 0.0072586345, -0.026112055, 0.017263046, -0.013756064, 0.03757091, 0.025473187, 0.009338356, -0.025704267, 0.01788832, -0.0042681857, 0.025867382, -0.012811354, -0.0069595897, 0.012546292, -0.02226525, -0.0023634739, 0.030584134, -0.01071804, 0.0077887597, 0.0032792988, 0.0091956295, 0.0008614531, 0.006334314, 0.044693615, 0.009005329, 0.0005471162, -0.010405403, 0.0037210698, 0.0047643287, 0.0035477597, -0.015958121, -0.009406321, -0.001524959, 0.0091208685, -0.003551158, 0.015659077, 0.0116287675, -0.002864714, 0.019668996, -0.02226525, 0.040751662, 0.03093755, 0.0070887227, -0.009814109, 0.011615175, 0.02415467, -0.017480532, -0.005770207, -0.0019896678, -0.009997614, -0.006422668, -0.010656872, 0.024521679, 0.016678547, 0.01981852, -0.011105439, -0.009161647, -0.0037652468, 0.019383544, 0.025717858, -0.0025384831, 0.013858011, 0.025106177, 0.031644385, -0.019696184, 0.011683139, -0.014503676, 0.00010263738, -0.004383726, -0.012811354, 0.026315948, 0.03868553, -0.0123288045, -0.01765724, 0.012967673, 0.0062969336, 0.007822742, -0.009433506, 0.0040608933, 0.017942693, -0.0031892457, -0.006680934, -0.6463719, -0.0061406144, -0.0025282884, -0.021191407, 0.030828808, 0.00091497536, 0.034172673, 0.016039679, -0.0066979253, 0.018472817, 0.011132625, 0.023447836, 0.007802353, -0.046297584, -0.021612788, -0.025337256, -0.016814478, -0.008101397, -0.0036361138, -0.011771494, -0.030720064, 0.0030584135, -0.021925427, 0.0036089278, 0.00040545219, -0.013987144, 0.010588907, 0.001374587, -0.00659258, 0.0093043735, -0.030067602, 0.031046296, -0.0055255336, 0.021884648, 0.04803748, -0.0400992, -0.0047337445, 0.040452614, 0.00884901, 0.044313014, -0.00518571, 0.004006522, 0.0146124195, -0.0062255706, -0.0032877945, 0.0002106907, 0.027117932, -0.024073113, 0.010588907, -0.029415142, 0.01152682, -0.019179652, 0.0020015617, 0.013959958, -0.011350112, -0.016297946, 0.040588547, 0.00026017753, -0.0064770402, -0.0072246525, -0.021041885, 0.0059537115, -0.029741371, -0.035994127, -0.024494493, 0.017847542, -0.023774067, -0.016474653, 0.0014867288, -0.019940855, 0.023502208, 0.018010657, -0.0012845336, 0.0026608198, 0.015930936, 0.029986044, 0.0029683602, -0.015101766, 0.012926894, 0.026465472, 0.016297946, 0.004941037, -0.007292617, -0.0007781963, 0.004801709, -0.008549965, -0.0053896043, -0.0036768927, 0.022849746, 0.017358195, 0.022673039, 0.0073062098, -0.018418446, -0.011458856, -0.02106907, -0.00065628457, -0.017589275, -0.0026404303, 0.013545373, -0.01950588, -0.011023882, -0.0066843326, -0.03517855, -0.029034538, 0.03254152, 0.010391809, 0.01825533, -0.004281779, 0.0400992, -0.026886852, -0.019356359, -0.007265431, -0.016583398, -0.019397138, -0.0020967124, -0.02613924, 0.017086336, 0.00039589463, 0.012423955, -0.045482006, 0.037190307, 0.00084063894, 0.017820356, 0.0020678274, -0.011880238, 0.015849378, 0.013429834, -0.01567267, -0.013035638, -0.0108539695, -0.003972539, -0.006993572, 0.020783618, 0.003755052, 0.009141258, 0.014884279, 0.01048696, 0.0022462348, 0.018690305, -0.014394932, -0.013851215, -0.0024450317, 0.009956835, -0.00859754, -0.028191775, -0.046759743, -0.035341665, -0.006456651, 0.010099561, -0.02318957, -0.013008452, -0.01673292, -0.0065653943, -0.009263595, 0.019750554, -0.021191407, 0.01438134, -0.016569804, -0.002305704, -0.025500372, 0.013905587, 0.010588907, -0.023760475, -0.0020695264, -0.012519105, -0.0013626931, -0.003751654, 0.012036556, -0.016243573, -0.043225575, -0.0020882168, -0.020620503, -0.020443795, 0.01765724, 0.006320721, 0.0012666929, -0.023203164, -0.02743057, 0.013660913, 0.016080458, -0.00033982372, 0.00990926, -0.021694345, -0.008291699, -0.0032996882, 0.014626013, 0.0067421026, 0.038277745, -0.012546292, -0.00023108014, -0.030720064, 0.029986044, -0.0111122355, 0.021572009, 0.008665505, -0.019152464, -0.001555543, 0.018445631, 0.018989349, 0.031698756, 0.019601032, -0.04173035, 0.03308524, -0.011751104, 0.021164222, 0.00077904586, -0.01816018, -0.0037040785, 0.013022045, -0.0038705922, -0.006062455, -0.024209041, -0.0054677636, -0.030203532, 0.019533068, 0.028055847, 0.023869218, 0.041567236, -0.012362787, -0.020335052, 0.01871749, -0.009440303, 0.017684426, -0.022618666, -0.01650184, 0.021599196, -0.0025333858, 0.038359303, 0.0033795468, -0.0069527933, 0.007707202, 0.0047201514, 0.014204632, 0.012763779, 0.03697282, 0.012655036, -0.0016311539, -0.017086336, 0.036836892, -0.017140709, 0.02779758, -0.011805476, 0.014653198, -0.01318516, 0.029795744, 0.012186078, 0.031318154, 0.012002573, -0.0024076512, 0.007945078, -0.008298495, 0.0202399, 0.0036055297, 0.03167157, 0.01627076, -0.0008707983, 0.03313961, 0.018812642, 0.006392084, 0.012960876, 0.0035307684, 0.009229613, 0.019791333, 0.0044618854, 0.019465102, -0.030230718, -0.019342765, -0.009148055, -0.0100791715, -0.025459593, 0.0105957035, -0.01627076, 0.01014034, 0.002723687, 0.013484205, -0.00044984164, -0.002479014, 0.018989349, -0.013722082, 0.033955187, -0.013728878, -0.043415878, 0.02936077, 0.02203417, -0.0038162204, -0.017915506, -0.020946734, 0.012260839, -0.009664587, 0.057090383, 0.010840377, 0.008536371, -0.014109481, 0.0057430207, 0.007462529, 0.0054371795, 0.022523517, -0.019329173, 0.03148127, -0.0059503135, -0.002937776, 0.0009583029, -0.020090379, -0.019465102, 0.04540045, -0.0032351217, -0.012505513, -0.041268192, 0.012226857, 0.0012777372, 0.0048730723, -0.009854888, 0.004281779, -0.013728878, -0.005029391, -0.011153014, -0.0024858105, -0.021232186, 0.020348644, -0.0061236233, -0.003340467, 0.010561721, 0.007510104, -0.0041764337, 0.089224115, 0.017059151, -0.010752022, 0.016787292, 0.009535453, -0.030828808, -0.0081625655, -0.026098462, 0.0006019128, -0.0032436175, 0.013015249, -0.015930936, 0.005430383, -0.00075058563, -0.009086886, 0.009718958, -0.0013295603, -0.01507458, 0.00030732807, 0.0002482837, 0.009467489, 0.008393646, 0.01189383, 0.012131707, 0.0061270217, 0.022985676, 0.0256363, 0.01659699, 0.022713818, -0.0200496, -0.0045808237, -0.0070819263, 0.0007365679, 0.01035103, -0.006864439, -0.006762492, -0.02405952, -0.029795744, 0.015373625, -0.003751654, 0.01659699, 0.021735124, 0.013545373, 0.007279024, 0.024331378, 0.0033778478, 0.0050735683, 0.021612788, -0.0075984583, -0.0057532154, 0.020960327, 0.009875277, -0.018826233, -0.012790965, -0.009018921, 0.031970616, -0.0019573846, -0.006473642, -0.017317416, -0.029306397, -0.0125123095, -0.017453346, 0.017222267, -0.00507017, -0.01401433, -0.011207386, -0.013457019, 0.009650993, -0.021816682, -0.00030180594, -0.029877301, -0.007911096, 0.010194711, 0.0063377125, 0.021680754, 0.001748393, -0.00753729, -0.014503676, 0.034553275, 0.014299782, -0.0056206845, 0.0048798686, 0.0058653574, -0.0077751665, 0.0016600388, -0.008087805, 0.0053352322, -0.011173404, 0.00046088593, -0.007238245, 0.028273333, 0.0013873304, 0.03153564, 0.0074149533, -0.0023634739, 0.0154959615, 0.004601213, 0.006504226, 0.022781782, 0.004342947, 0.00827131, -0.02047098, -0.01987289, 0.003724468, 0.038739905, 0.017507719, 0.025880974, 0.017276637, -0.0023957572, -0.01571345, 0.018839827, -0.003010838, -0.0074353428, -0.0077751665, -0.013756064, 0.0043633366, 0.0057430207, 0.008148973, 0.028137404, -0.013484205, -0.026587809, -0.041594423, 0.035477597, 0.011458856, -0.0109287305, 0.019043721, 0.0016914726, -0.025092583, -0.014530862, 0.0032894935, -0.0090461075, 0.01617561, 0.007965468, -0.0023838633, 0.00039079727, -0.00024955804, -0.030502576, 0.010731633, -0.0070887227, -0.0029734576, -0.0005432932, 0.01690963, 0.008210141, 0.008665505, -0.030393833, -0.012281229, -0.02184387, 0.008957753, -0.028137404, -0.0006486385, -0.01131613, -0.0032843961, -0.02743057, -0.013762861, 0.0044041155, -0.020090379, -0.018839827, 0.014394932, 0.02147686, 0.015006616, 0.0040439023, -0.027457757, 0.026764516, 0.012308415, -0.008522779, 0.0005509392, -0.029850116, 0.0023243942, -0.015985308, 0.035640713, 0.0044211065, 0.0070003686, -0.0028392272, 0.006045464, -0.0050022053, 0.010656872, 0.00776837, -0.02664218, -0.014490084, -0.052930944, -0.017494125, -0.006344509, 0.002490908, -0.0069663865, -0.046569444, -0.015251288, 0.048336525, 0.025146956, -0.0026880056, 0.0043769297, 0.022795375, -0.026220798, 0.020036006, -0.013987144, 0.00013104452, 0.010018003, -0.007448936, -0.02618002, 0.0094538955, 0.013844418, -0.013640524, -0.008203344, 0.006402279, -0.010514146, -0.014666792, 0.010908341, -0.004424505, -0.010344234, 0.03319398, -0.027498536, -0.00021249602, -0.0046080095, -0.014177445, -0.021979798, 0.009650993, 0.0010288163, -0.013830826, 0.012274433, -0.019301986, 0.011696733, 0.00931117, -0.007720795, 0.021041885, -0.0019964643, 9.756658E-07, 0.016297946, 9.3186034E-05, -0.034770764, -0.036265988, -0.020933142, 0.0025163947, -0.0032877945, 0.03134534, -0.008923771, -0.0006257004, -0.0029853513, 0.0016294548, -0.010283066, -0.021205, 0.016461061, -0.00055646134, 0.0337377, -0.011819069, -0.026560621, 0.018608747, 0.0059367204, -0.008189752, 0.007822742, 0.011499635, -0.013266718, 0.0025554744, 0.030855993, -0.03278619, 0.015563927, 0.0023719696, -0.019832112, -0.012872523, -0.0056818523, -0.011540414, -0.023529394, 0.0004995409, 0.025921753, 0.004207018, -0.01341624, 0.0016744813, -0.002908891, -0.001524959, -0.004672576, 0.0056376755, 0.026696552, -0.0013346577, -0.009766534, -0.007374175, -0.003840008, -0.009392727, -0.0039317603, 0.0035205737, 0.002205456, 0.015618298, -0.015088174, 0.013436629, -0.009684976, -0.00707513, -0.008706284, -0.0034475117, 0.015591112, -0.035531968, -0.022741003, 0.0102286935, -0.033248354, -0.030257903, 0.007618848, 0.0046080095, 0.019492289, 0.0021137036, -0.013558966, -0.004359938, 0.013756064, -0.04412271, 0.01073843, 0.012498717, 0.037951514, -0.012988063, 0.024277007, 0.017439753, -0.008053822, 0.021218592, -0.013314294, -0.02382844, -0.018771863, 0.021368116, -0.005940119, -0.004084681, -0.016393095, 0.007713998, 0.011322927, 0.011268554, 0.0018180569, -0.015414404, -0.000759506, 0.0045604343, 0.00024042527, 0.043062463, -0.021177813, 0.0016693841, -0.01733101, 0.008026636, -0.0029173866, -0.0153872175, -0.02627517, -0.011751104, 0.0024297396, -0.008706284, -0.037869956, 0.005916331, -0.0043803276, -0.011907423, 0.016624177, 0.007177077, 0.002477315, 0.015142545, 0.018282516, 0.002723687, -0.0045060627, -0.0256363, -0.022836154, 0.023570172, 0.0108539695, -0.0119210165, -0.018975757, 0.016529026, 0.04170317, 0.006273146, -0.034063928, -0.0077275913, -0.003510379, -0.059374, -0.0055799056, -0.0062187742, 0.013273515, 0.03240559, 0.013341479, 0.020538945, 0.01926121, 0.025446, 0.009868481, 0.0065416065, -0.014585234, 0.008781045, -0.0148435, -0.018581562, -0.027362606, -0.012016167, -0.029605443, 0.029061724, 0.016189203, 0.0034118302, 0.025513966, -0.014313375, 0.006232367, -0.013280311, -0.00085635576, 0.035640713, 0.027308235, 0.029523885, -0.025649894, -0.012383176, -0.003410131, 0.013824029, -0.0031161834, 0.017412568, 0.008081008, 0.012682221, 0.007815946, -0.008801434, -0.030203532, -0.02388281, -0.0007828689, -0.011723918, 0.00010661969, -0.015577519, -0.0017534904, 0.018975757, -0.03705438, -0.017222267, 0.023216756, -0.003167157, -0.014163853, -0.0030822011, -0.03506981, 0.011676343, -0.008393646, 0.031644385, -0.012621053, -0.030611321, -0.005804189, -0.018105809, -0.027484942, 0.01270261, 0.017983472, -0.011567599, -0.02618002, 0.006161004, -0.016828071, 0.024086704, -0.004716753, -0.0032792988, -0.03936518, 0.014911464, -0.02637032, -0.022251656, -0.019764148, -0.0066367574, 0.0032283254, 0.0040506986, 0.04950552, 0.2037855, 0.018513596, -0.0058687557, 0.032079358, 0.009399524, 0.010752022, 0.009229613, 0.0010619491, 0.007503308, -0.0074149533, 0.010018003, 0.020022413, -0.013973551, -0.0077751665, 0.025785824, -0.00059978885, -0.052659083, 0.006103234, -0.039528295, 0.0035137772, -0.0050803646, 0.005892543, 0.014544455, -0.02147686, 0.0017568886, 0.00095490465, -0.00021154026, -0.024970246, 0.00048892136, 0.008060618, -0.013273515, -0.021272965, 0.012274433, -0.0077411844, -0.006147411, -0.011540414, 0.039202064, 0.006833855, -0.008094601, 0.021218592, -0.013355073, 0.021055477, 0.017602868, -0.022537109, 0.0010976306, 0.00039759374, -0.00015716847, 0.007251838, 0.0041866284, 0.013198753, -0.03148127, -0.0067658904, 0.022944897, 0.017181488, 0.0010882855, -0.014653198, 0.03743498, -0.013314294, -0.00013858436, 0.013198753, -0.017276637, 0.0015997201, 0.0069595897, 0.012988063, -0.012077335, 0.0362388, -0.007020758, 0.016461061, 0.0110374745, 0.0013015248, 0.0069527933, 0.000952356, -0.014313375, 0.016569804, -0.019274801, -0.010500553, 0.0073877675, -0.016352318, 0.014109481, 0.017983472, 0.027063562, -0.01283854, 0.010378216, -0.004295372, -0.007279024, -0.007890707, 0.021966206, 0.006820262, -0.0044924696, -0.0053794095, 0.0004130982, -0.008380053, -0.014367747, -0.013198753, -0.01341624, 0.038250558, -0.014707571, 0.03088318, 0.0005781251, -0.004924046, -0.01866312, 0.0202399, 0.0020372432, 0.010065579, -0.023502208, 0.008760655, 0.011397688, 0.011261758, -0.005810986, -0.028980168, -0.010038393, -0.03460765, 0.008882992, -0.009997614, -0.003911371, -0.008216937, 0.012756983, 0.00074166525, 0.009868481, -0.024236228, 0.015822193, -0.024032334, 0.015115359, -0.011771494, 0.0033438653, -0.0088626025, -0.002191863, 0.019356359, 0.011499635, -0.025799416, 0.0040914775, 0.019057315, 0.03341147, -0.017969878, -0.015251288, -0.029632628, -0.004669178, -0.04219251, 0.0120705385, 0.008291699, -0.010283066, -0.0048051076, 0.020688469, 0.041431308, 0.02318957, 0.0070411474, -0.0024705185, -0.007815946, -0.012845336, 0.0067115184, 0.0030822011, -0.009664587, -0.007197466, -0.0097121615, -0.0031688563, -0.010541332, -0.039202064, -0.020593317, -0.019234022, -0.0040574954, -0.015577519, 0.017575683, 0.009277187, -0.026533436, -0.008400442, -0.00659258, -0.173881, 0.017779578, 0.021422487, -0.043959595, -0.014925058, 0.010575314, 0.027253862, 0.0043973187, -0.032133732, 0.008393646, 0.022360401, -0.017140709, -0.020389423, -0.034063928, 0.014938651, -0.0039351587, 0.012906505, 0.0009820906, 0.02424982, 0.00047447887, 0.017072743, -0.027484942, 0.004499266, 0.017371789, 0.003639512, -0.025717858, -0.0031416703, -0.015196917, 0.015292067, -0.019179652, -0.013796843, -0.0033455645, 0.02442653, -0.011254962, -5.925676E-05, 0.0044618854, -0.022156507, 0.0067522973, -0.029034538, 0.036537845, 0.0038162204, 0.031046296, 0.029333584, -0.0103374375, 0.02802866, 0.026220798, -0.01816018, -0.0006541607, 0.023923589, -0.015604706, 0.012566681, -0.01690963, 0.0118122725, -0.007408157, 0.020525353, 0.006031871, 0.006949395, -0.008692691, 0.030584134, -0.017140709, 0.017765984, -0.022292435, 0.0094538955, -0.02272741, -0.02654703, -0.011703528, -0.0039861323, 0.0120705385, -0.0179291, 0.017670833, 0.0133007, 0.022428365, -0.02677811, -0.02180309, 0.008475204, 0.029116096, -0.003982734, 0.007503308, 0.00318075, -0.024127483, 0.011030678, 0.024467308, -0.02041661, -0.0016107644, 0.0037788397, 0.004213814, -0.005393002, 0.001690623, -0.0029020945, -0.032188103, 0.024521679, -0.024358565, -0.007136298, -0.021028291, -0.005240082, 0.013402647, -0.004254593, -0.018921385, -0.0055357283, -0.03710875, 0.010507349, 0.0044754785, -0.025500372, 0.017059151, 0.0426003, 0.012886115, 0.018078621, 0.004325956, 0.0031824491, -0.00023171729, 0.01654262, 0.014394932, -0.008536371, 0.013368665, -0.005746419, 0.0024926069, 0.003884185, -0.026560621, 0.007020758, 0.003598733, 0.024236228, -0.025935346, -0.015890157, -0.0065416065, -0.0024314388, -0.00044304517, -0.10548128, 0.00013624807, 0.029578257, 0.009848092, -0.021626381, 0.008040229, -0.016977593, 0.015292067, 0.0003151865, 0.017045557, 0.0015988706, -0.0028834043, 0.02051176, 0.026533436, 0.019628217, -0.008067415, 0.019070907, -0.02637032, -0.017127115, 0.033221167, 0.010690854, 0.0013669409, -0.0023600757, -0.0057192333, -0.013001655, -0.03637473, -0.020158343, 0.00039695657, 0.02147686, -0.012892912, 0.010534535, 0.005216294, 0.025269292, 0.0021205, -0.010283066, -0.008685894, -0.0555136, 0.0019098093, 0.019138873, -0.0070547406, -0.011404484, 0.007380971, 0.00066435535, -0.019628217, -0.015156138, -0.016297946, -0.0054541705, -0.0073401923, 0.0034356178, -0.027648058, -0.0024484298, -0.016393095, -0.00873347, -0.0011672945, -0.006738704, -0.009365542, 0.0028477227, 0.012301618, 0.009209223, 0.00487647, -0.017127115, -0.0043735313, -0.008325681, 0.0003406733, 0.019138873, -0.008570354, -0.010976306, 0.007911096, -0.014680385, 0.020552538, -0.01497943, 0.019111685, -0.027403384, 0.020919548, -0.013538577, 0.015631892, -0.03941955, -0.018608747, 0.007945078, 0.010201508, -0.014462898, -0.020960327, 0.036782518, -0.026723737, -0.0072858203, 0.01224045, 0.003308184, -0.03107348, 0.015414404, -0.024603236, 0.022537109, 0.0055323304, 0.024671203, 0.00896455, -0.0153872175, -0.012389973, -0.00022322171, -0.00707513, -0.027240269, 0.0026319346, -0.04194784, 0.0038875833, -0.07590303, 0.03743498, 0.0027389792, -0.02369251, -0.0040608933, -0.0036497067, 0.007109112, -0.004801709, 0.013518187, -0.007204263, -0.009984021, -0.020797212, 0.0017568886, -0.0076052547, -0.0053624185, 0.0012072237, 0.0025571734, -0.0052536745, 0.034770764, -0.01239677, -0.022808967, -0.005933322, -0.022754597, 0.025853788, -0.023964368, -0.0034356178, 0.0036157244, 0.014626013, 0.016705735, 0.0051551256, 0.0008724974, -0.016257167, -0.012430752, 0.04936959, -0.009392727, -0.029741371, 0.004040504, 0.021544823, 0.014394932, -0.010208305, -0.0093791345, 0.009052904, 0.006144013, -0.012634646, -0.0069867754, 0.00024615982, 0.014055109, 0.013497798, 0.025378035, 0.007374175, 0.010249083, 0.0139123835, 0.006575589, -0.011689936, -0.017643647, -0.024630424, -0.0023702704, -0.010045189, 0.0009854888, -0.033248354, 0.03262308, -0.017398974, 0.01516973, 0.011873441, 0.0118122725, 0.0021103052, -0.033030864, 0.00025954036, 0.00032410686, 0.0021680754, -0.028246148, -0.0060012867, 0.015985308, -0.012627849, 0.009684976, 0.002521492, 0.013049231, 0.020919548, -0.012940487, 0.010058782, -0.015482369, -0.018187365, -0.04208377, 0.011968591, -0.017589275, 0.0014578437, -0.008203344, 0.006076048, -0.014027923, 0.0018231543, -0.007856725, 0.013198753, -0.013008452, -0.013035638, 0.008121787, 0.0067658904, -0.008923771, -0.007238245, 0.011846255, 0.024766352, 0.0060828445, -0.01083358, -0.01690963, -0.0066673416, -0.008386849, -0.0025826602, 0.017453346, -0.026125647, -0.032759007, 0.009549047, 0.013219142, -0.0036632996, -0.0016387999, 0.008400442, -0.005134736, -0.023407057, 0.013885197, -0.019274801, -0.00917524, 0.023216756, 0.006392084, 0.016896036, 0.0008028335, -0.0052196924, 0.0075304937, 0.021694345, -0.013518187, -0.012022963, 0.010745226, 0.01627076, 0.022958491, 0.0064532524, -0.002365173, -0.00262174, -0.008033433, 0.00285282, -0.01281815, 0.0077819633, -0.0117375115, 0.06867158, 0.0071566873, -0.018785454, 0.020620503, -0.018309701, 0.031127853, 0.03977297, -0.012790965, -0.019641811, -0.021911833, 0.006446456, -0.000880993, -0.0015623396, 0.013558966, -0.020253494, -0.0009625507, 0.021680754, 0.004958028, -0.018635932, -0.038250558, 0.045563564, -0.029197654, 0.019301986, -0.00977333, -0.0065076244, 0.010249083, 0.022645853, 0.024317786, -0.0015309058, -0.013042434, 0.0035035824, 0.0001233985, -0.020919548, -0.018282516, -0.010901545, 0.0063818893, -0.016189203, 0.014503676, 0.016896036, 0.008414036, 0.010296659, 0.005688649, -0.014802721, -0.007326599, 0.016896036, 0.019152464, -0.018758269, -0.014721164, -0.0017959684]
+ },
+ {
+ "Id": 94,
+ "Type": "Bags",
+ "Brand": "Gravitator",
+ "Name": "Gravity Hiking Backpack",
+ "Description": "Embark on unforgettable hikes with the Gravitator Gravity Hiking Backpack. Available in tiger stripes, this backpack offers a spacious main compartment, multiple pockets, and a hydration system compatible design. The lightweight and durable construction ensures maximum comfort on the trails.",
+ "Price": 79.99,
+ "Embedding": [0.0069351937, 0.0128364, 0.008088225, -0.020462053, 0.028135322, 0.016013188, -0.039944537, -0.040924106, 0.0030662466, -0.025210228, -0.0043060104, -0.0030764504, 0.0085576, 0.019115148, 0.0047311694, 0.0003452291, 0.02631224, 0.0053467997, -0.0017601582, 0.0012176554, 0.010972504, 0.014149291, 0.00422438, -0.014285342, -0.019632142, -0.0010008243, 0.037958194, -0.019346435, 0.031727064, 0.0006543197, 0.00999974, -0.008244683, -0.023672853, -0.029903984, -0.010571153, 0.0045543034, -0.00053059845, 0.0053842138, 0.009741243, 0.0033043358, 0.023645643, 0.034584135, 0.009020173, 0.008802492, -0.009489548, 0.012938439, -0.012713955, -0.02695168, -0.02542791, -0.00031164155, 0.00048085483, 0.005210749, -0.007040633, 0.016557392, -0.005452239, 0.008652836, 0.003115565, 0.02155046, 0.036026273, -0.025727222, -0.002957406, -0.0052685705, -0.028489053, 0.0010458911, -0.0028859794, -0.024475554, -0.01719683, -0.026244214, 0.020611709, 0.018135583, 0.02476126, 0.0066460855, 0.019686563, 0.009945319, 0.015101648, -0.012897624, 0.00542843, 0.0044964817, -0.0064964294, -0.00042473385, 0.008748071, -0.020842995, -0.0017720627, 0.004673348, 0.0077549, 0.003232909, 0.010040555, 0.018693391, -0.020761363, -0.02174093, -0.0075100083, -0.013754744, 0.0071698814, 0.028597895, -0.003775412, -0.005523666, 0.0035067115, 0.008469167, 0.0067447224, -0.019931454, -0.023033414, 0.0027312215, -0.014434998, -0.0054964554, -0.03553649, -0.008618823, 0.01272756, -0.008924938, 0.016135635, 0.011958872, -0.014870361, -0.001534824, 0.009829676, -0.03227127, -0.006476022, 0.005567882, 0.024951732, 0.0074487855, 0.015183278, -0.053413574, 0.021128701, -0.0019234193, 0.03439366, -0.006788939, -0.007850136, 0.032053586, -0.035482068, -0.01395882, 0.027346227, -0.01692473, 0.004891029, 0.02553675, 0.020475658, -0.007339945, -0.011054134, 0.020421237, -0.004027106, -0.0014838049, -0.01778185, 0.0008192814, -0.009074594, 0.0061358945, -0.014026846, -0.007904556, -0.010816045, -0.0016904322, 0.012081318, 0.01780906, 0.015346539, 0.002663196, 0.02096544, -0.004564507, 0.011387459, 0.010877267, -0.0068977796, -0.011190184, 0.0014446903, 0.03281547, -0.016761469, -0.015332934, -0.01780906, 0.0019608333, 0.012843203, -0.0011555821, 0.035101127, 0.023047019, 0.0008554199, -0.007639257, 0.0012703751, 0.005452239, 0.006166506, 0.02944141, -0.011251408, 0.0011088146, 0.01861176, 0.0043468256, 0.025727222, 0.004067921, -0.015156068, -0.002601973, -0.011571127, 0.0107684275, 0.005139322, 0.008795689, -0.02802648, -0.019264804, 0.010727611, -0.01617645, 0.01767301, -0.0433186, 0.0035679343, -0.0027550303, -0.026529921, 0.015917953, -0.66218686, -0.01692473, -0.009890899, -0.026870048, 0.021373592, -0.005479449, 0.027577514, 0.024870101, 0.012952044, 0.006615474, -0.009407918, 0.033495728, -0.0021394, -0.039318703, -0.015659457, -0.009686823, -0.0012899324, -0.0045815133, 0.014611864, 0.0059080096, -0.04481516, 0.011373853, -0.021836165, -0.0010714007, -0.00278054, 0.008251485, 0.007605244, 0.0003537323, -0.015496195, 0.042611137, -0.022135478, 0.047318496, -0.00034905554, -0.0035611317, 0.050121143, -0.033495728, -0.0040475135, 0.04636614, -0.0026836037, 0.03091076, -0.014339763, -0.016054004, 0.0075372187, -0.0074555883, -0.006965805, 0.0058603915, 0.026720393, -0.01393161, -0.004241386, -0.020094715, 0.026992494, 0.017428117, 0.0142989475, -0.0017295468, 0.0046937554, -0.009877293, 0.027128546, 0.022570841, -0.013945215, -0.006890977, -0.0017108398, 0.021754535, -0.0039692842, -0.010122186, -0.027196571, 0.023305515, -0.036706526, -0.007394365, 0.0034352846, -0.0056733214, 0.02412182, 0.023645643, 0.008088225, 0.021305569, 0.011782006, 0.030121665, 0.0008171556, 0.009550772, 0.009598389, 0.030012824, 0.009618797, 0.0067345183, -0.0038570424, 0.0010739516, 0.02639387, 0.00045279434, -0.009890899, -0.00065474486, 0.053331945, 0.0053842138, 0.0070610405, 0.021428013, -0.013339789, -0.021890586, -0.032761052, 0.013734336, -0.017319277, 0.010503128, 0.022584446, -0.005955627, -0.0054318313, -0.008829702, -0.00139027, -0.0012695248, 0.0013366999, 0.017101595, -0.0074964035, 0.01246226, 0.026733998, -0.017768245, -0.008516785, -0.0240674, -0.016326105, -0.0021734128, 0.007475996, -0.03267942, 0.023223884, 0.0031665843, 0.022557236, -0.030801918, 0.020530077, 0.00054505386, 0.015686667, 0.005550876, -0.012843203, 0.03406714, 0.015673062, -0.027455067, -0.03561812, 0.015822718, -0.0020645722, 0.013849979, -0.00084776705, 0.0015535309, 0.011394261, 0.033332467, 0.00842155, -0.005462443, 0.016802283, -0.027264597, -0.023999374, -0.0068875756, 0.0045475005, -0.028353004, -0.016380526, -0.019400856, -0.029142099, -0.022938179, -0.014979201, -0.00577536, 0.0038298322, -0.02157767, -0.01401324, 0.0031444759, 0.009081396, -0.025904087, -0.01941446, -0.024965337, 0.0052209524, -0.018870257, 0.020638919, 0.014911177, -0.019740982, 0.017400907, -0.0264755, -0.020502867, -0.007822925, 0.024217056, -0.01697915, -0.04383559, -0.0012703751, -0.0073807603, -0.00922425, 0.037386782, 0.0054828506, 0.0006220076, -0.004176762, -0.022978993, 0.009564376, -0.007945371, -0.013319381, -0.0025101388, -0.02802648, 0.0036903801, 0.011271816, 0.0027686353, -0.003358756, 0.01794511, -0.00729913, 0.0033162402, 0.0023162663, 0.02323749, 0.0023757885, 0.0029182914, -0.023523197, -0.014067661, -0.01537375, 0.002746527, 0.0024115017, -0.0012057509, 0.010067765, -0.016285291, 0.007904556, -0.016720653, 0.011196988, -0.0018400882, -0.012026898, -0.0155098, 0.015931558, 0.008509982, 0.0007984486, -0.01863897, -0.015319329, -0.028380213, -0.007836531, 0.01727846, 0.0070610405, 0.030420976, -0.002144502, -0.017455328, 0.015292119, 0.013088095, -0.006241334, -0.02002669, -0.020149136, 0.027019704, -0.017727429, 0.026570737, 0.013285369, -0.009850084, 0.029604672, 0.019672956, 0.021006256, 0.031672645, 0.031536594, 0.0128568085, -0.009659613, -0.015822718, 0.047862697, -0.0015730882, 0.02786322, 0.012938439, 0.0061971177, -0.026856443, 0.009700428, 0.024489159, 0.0078093205, 0.0058297804, 0.0068841744, 0.0101017775, -0.005265169, 0.007503206, -0.0022737503, -0.007890951, 0.007469193, 0.00620392, 0.031482175, 0.0013035375, 0.021087887, 0.028053692, 0.0025594572, 0.017360091, 0.01697915, -0.006717512, 0.010734415, -0.01708799, -0.00812904, 0.00087667786, -0.013883992, 0.0014804036, 0.010673191, -0.043019287, 0.012904426, -0.014829546, -0.0016241074, -0.008169855, 0.014475813, -0.004564507, -0.008843307, 0.013659508, -0.00027911688, -0.038175877, 0.0027550303, 0.014775125, 0.011924859, -0.0016946838, -0.010720809, 0.01778185, -0.0039964947, 0.025836062, 0.004176762, -0.0010297351, 0.004040711, -0.016271684, -0.015754692, -0.014326158, 0.019482486, -0.004714163, 0.0385024, -0.008135842, -0.019577721, 0.011965674, -0.017319277, -0.027006099, 0.024094611, 0.010679994, -0.03414877, -0.0187206, 0.020230766, 0.009693625, 0.011986082, -0.012305802, 0.010020147, -0.01537375, -0.001698085, 0.01246226, 0.0022363362, -0.0060100476, 0.026842838, -0.0032873293, -0.014108476, -0.026040139, -0.019781798, 0.00030611447, 0.07254233, -0.0032686223, -0.01633971, 0.02224432, 0.0037277942, -0.0232647, -0.003438686, -0.019713772, -0.015169673, -0.0033213422, 0.01789069, -0.0023434763, -0.0003246089, -0.025114993, 0.0037413992, 0.025577566, -0.0017567569, -0.035101127, -0.011128962, 0.0123942355, 0.01789069, -0.0050712964, -0.005200545, 0.015400959, 0.014149291, 0.013482642, 0.0071494738, 0.014747915, 0.021890586, -0.015224094, 0.0055848886, -0.0041223415, 0.005914812, -0.011047332, -0.02955025, 0.00125677, -0.018965492, -0.0085576, 0.006377385, -0.011972478, 0.020761363, 0.029958403, 0.009033779, -0.004663144, 0.015128857, 0.001938725, 0.0021189924, 0.030665869, -0.01355747, 0.01401324, 0.026040139, 0.02312865, -0.013523458, -0.020679733, 0.0064726206, 0.03379504, 0.0058705956, -0.0034778006, -0.0208566, -0.061495, -0.0026325844, -0.022951784, 0.037849355, -0.0024132025, 0.0097140325, -0.018135583, -0.012101726, 0.0072855246, -0.016666234, -0.0052549653, -0.035019495, -0.025795247, -0.013625495, -0.0026682978, 0.0050576916, 0.0004583214, 0.008836505, 0.0025288458, 0.020244371, 0.0093603, -0.000105173705, -0.004190367, -0.020679733, -0.012571101, 0.0031325715, 0.0066834996, 0.017128807, -0.0008996364, 0.002200623, -0.0058569903, 0.008659638, -0.0055848886, 0.027659144, 0.0017201933, 0.0040917303, 0.0043094116, 0.018230818, 0.011863637, 0.023006205, -0.003203998, 0.014747915, -0.0045066853, -0.003826431, 0.0041597555, 0.02946862, 0.0011487796, 0.013142515, 0.017251251, 0.0104895225, 0.017877085, 0.024978941, -0.01719683, 0.022312345, 0.0049318443, -0.012013293, 0.008714058, 0.019836219, -0.0028791768, 0.007965779, -0.033196416, -0.02099265, -0.035046708, 0.014965597, 0.0342304, 0.024638815, 0.014230922, 0.008428352, -0.013883992, -0.023808904, -0.0056597167, -0.010666389, 0.01548259, 0.005288978, -0.0047617806, -0.014503024, -0.004993067, -0.054583613, 0.012550694, 0.024951732, -0.022652471, -0.022448394, 0.015047227, 0.010611968, -0.00033247433, -0.042719975, -0.021291962, -0.034801815, -0.0060814745, -0.026012927, 0.0355637, 0.0013953719, 0.010666389, -0.021087887, -0.016775073, -0.012319407, -0.01991785, -0.012047306, 0.008938543, 0.01991785, 0.018502919, 0.0006921588, 0.003989692, 0.031373333, 0.014258132, -0.01240784, 0.01606761, -0.0075236135, -0.017441723, -0.018911073, 0.020013085, 0.0038502398, -0.013081292, -0.0155370105, -0.024135426, -0.00262068, -0.0022448394, -0.0057175383, -0.02251642, -0.006741321, -0.051753756, 0.0026104762, -0.016598208, -0.0077549, 0.0022431388, -0.027182966, -0.014530234, 0.04674708, 0.0057821623, -0.0096392045, 0.0168431, 0.03403993, -0.014149291, 0.0030220302, 0.007714085, 0.0104283, 0.001163235, -0.0077685053, -0.02794485, -0.013516655, 0.015346539, -0.006761729, -0.0077617024, 0.007441983, -0.016679838, -0.018394079, -0.019958664, -0.015020017, -0.0024302087, -0.01088407, -0.01473431, -0.0130404765, -0.017441723, -0.0030220302, -0.038203087, 0.004639335, 0.009142619, -0.018489314, 0.019672956, -0.013761546, 0.0075100083, 0.0040577175, 0.01085686, 0.026720393, 0.008754874, 0.00031334217, 0.031917535, -0.009489548, -0.008190263, -0.014244527, -0.0042958064, -0.0008473419, 0.01789069, 0.00063518755, -3.3215547E-05, -0.029523041, 0.010639179, -0.0014480916, -0.012176554, -0.013380604, -0.0012992859, 0.019115148, 0.0020169544, -0.008700454, -0.02069334, -0.0078093205, 0.019659352, -0.003377463, 0.028407423, -0.012992859, -0.010550746, -0.031781483, 0.036815368, -0.022162689, 0.0052311565, 0.0057719587, -0.01542817, -0.019931454, 0.010278644, 0.015332934, 0.009101803, 0.01382277, 0.015700271, 0.0008605218, -0.0016249577, -0.00251354, -0.0021785146, 0.005629105, -0.0002757156, 0.013251356, 0.026611552, -0.023387145, 0.0010697, 0.008244683, 0.0096256, 0.011196988, 0.009006568, -0.01761859, 0.0035951445, 0.031400543, -0.001291633, 0.011237803, 0.009618797, 0.009054186, -0.022502815, 0.0041291444, 0.012278592, -0.023305515, -0.029169308, -0.018802231, -0.02548233, -0.04797154, 0.00580257, 0.0058229775, 0.0095847845, -0.004635934, -0.036053482, -0.01761859, 0.024162635, -0.037822146, -0.0009736141, 0.047264077, 0.020434842, -0.01366631, 0.001548429, -0.0028060493, -0.024339503, 0.008081422, -0.010754822, -0.0068467604, -0.02500615, 9.109032E-05, 0.0064930283, 0.0008469167, 0.013033674, -0.014543839, 0.0011946968, 0.024489159, -0.008197065, -0.031182861, 0.008714058, 0.009503154, -0.005040685, 0.036162324, -0.02310144, 0.006741321, -0.02232595, 0.009693625, 0.0025237438, -0.013829572, -0.017128807, -0.016666234, 0.013754744, 0.02492452, -0.018761417, 0.023047019, 0.0002249091, -0.013999635, 0.0047209654, 0.0036733737, 0.008373932, 0.009564376, 0.01944167, 0.026094558, 0.008149448, -0.014312552, -0.004673348, 0.0014055757, -0.0017924703, -0.02337354, 0.00014753017, 0.0058739968, 0.05839304, -0.0068195504, -0.019809008, -0.011618745, 0.0020526676, -0.031645436, 0.012162949, 0.006442009, 0.0012287095, 0.015754692, 0.022870153, 0.014462208, 0.041087367, 0.022217108, 0.011251408, 0.03232569, -0.008231078, -0.01120379, 0.0131017, -0.009700428, -0.01459826, -0.033359677, -0.03564533, 0.0019251199, 0.011530312, 0.008312709, -0.00655085, 0.013060885, 0.0017482538, 0.003775412, -0.00020365116, 0.03569975, 0.019278409, 0.018217213, -0.0062719453, -0.028298583, -0.025359884, 0.010843255, 0.016693443, 0.0065372447, 0.004360431, -0.007999792, 0.018570945, -0.020788575, -0.033604566, 0.0013043878, 0.0035203164, -0.0043332204, 0.007741295, -0.016584601, 0.0055338694, 0.008006594, -0.030665869, 0.005625704, 0.033196416, -0.0005620602, -0.011081344, 0.0016326106, -0.025523145, 0.00898616, -0.014571049, 0.025291858, 0.010754822, -0.019237595, 0.0029029856, -0.021863377, -0.011659561, 0.022026638, 0.0058093723, -0.015006412, -0.021781746, -0.01548259, -0.016135635, -0.014897571, 0.0074487855, -0.007945371, -0.029740723, 0.01318333, 0.002355381, -0.011754796, -0.004540698, -0.0071766838, 0.00035351972, -0.009054186, 0.034910657, 0.19961385, -0.0022312345, 0.0114146685, 0.021972217, -0.0004045388, 0.011190184, 0.01564585, 0.007816123, 0.004700558, -0.0078841485, -0.0076256515, 0.016679838, -0.0066392827, -0.008612021, 0.005887602, -0.011911254, -0.053549625, -0.011319433, -0.023169465, -0.0031036607, -0.011013319, -0.0024880304, 0.0032108007, -0.022842942, 0.0038366348, -0.0065100347, -0.0003815802, -0.020842995, -0.011904452, 0.015618641, -0.0049318443, -0.02550954, -0.013047279, -0.024244267, -0.0009736141, 0.0061971177, 0.01633971, 0.021754535, -0.0068467604, 0.01639413, -0.027319016, 0.01545538, 0.013734336, -0.007979384, 0.0010705504, 0.011693573, -0.030693078, 0.016448552, 0.010972504, -0.0045338958, -0.0028842785, -0.014407788, 0.01048272, 0.018217213, -0.02318307, -0.00288768, 0.03284268, -0.02722378, -0.00010357936, 0.016530182, -0.01088407, 0.025944903, -0.001967636, 0.0011878943, -0.00014274713, -0.0104283, -0.025373489, 0.023931349, 0.006163105, -0.0005833181, -0.013843177, -0.00072872255, 0.0012014994, 0.03227127, -0.025686406, -0.010557548, 0.0037448003, 0.009020173, 0.0038536412, 0.016883913, -0.001976139, -0.014108476, 0.016883913, -0.010503128, -0.01882944, -0.010088173, -0.011945267, 0.017931506, -0.00038115503, 0.012496273, 0.012999661, -0.022026638, 0.02171372, -0.021332778, -0.010972504, 0.022366764, -0.034475293, 0.023155859, -0.02655713, 0.010373879, -0.015863532, 0.015264909, -0.012945241, -0.024951732, -0.030420976, 0.016965544, -0.0028842785, -0.0035305202, -0.010666389, -0.007265117, -0.015659457, -0.029659092, 0.0099725295, -0.008972555, -0.017877085, 0.014489419, -0.0030169282, -0.013550667, 0.020053899, -0.03436645, 0.017482538, -0.022679681, 0.019700168, 0.01034667, -0.0039794883, -0.011965674, 0.022829337, 0.013360197, 0.0024455145, -0.040978525, 0.0020271582, 0.021781746, 0.030420976, -0.038121454, -0.0012958846, -0.0045577046, -0.014924781, -0.022625262, -0.03439366, -0.0061358945, -8.359689E-05, 0.010645981, 0.010339866, -0.0025237438, 0.0451961, -0.02182256, -0.0068603656, -0.010754822, -0.0059012068, -0.024666024, 0.01246226, -0.0057583535, -0.021931402, -0.007129066, 0.010339866, -0.0091970395, -0.048597373, -0.03542765, 0.009353498, -0.014407788, -0.00933309, -0.0009549071, 0.01783627, -0.025904087, -0.012203764, 0.010217421, -0.17479818, 0.012441853, 0.024475554, -0.022938179, 0.009319485, -0.0002840062, 0.01206091, 0.0021615084, -0.011054134, -0.023740878, 0.010367077, -0.0051597296, -0.043781172, -0.031890325, 0.0009081396, 0.0028230557, 0.001160684, 0.003433584, 0.021210331, -0.0016266584, 0.019836219, -0.014965597, 0.011523509, 0.0074351807, 0.015414565, -0.007904556, 0.0014633973, 0.0109520955, -0.018353263, 0.014040451, -0.006717512, -0.020598102, 0.029767932, -0.017468933, 0.03387667, -0.013360197, 0.0063943914, 0.0060474616, -0.014883966, 0.006373984, 0.0045917174, -0.0002240588, 0.015605036, -0.0035101126, 0.026529921, 0.007428378, 0.0030543422, -0.005003271, 0.022910967, -0.029033257, 0.020598102, -0.010156198, 0.0007023627, 0.010571153, 0.015251303, -0.009802466, 0.00807462, 0.006275347, 0.028625105, -0.02099265, -0.011659561, -0.009952121, -0.010013345, -0.018203607, -0.01542817, -0.014516628, 0.010414694, -0.01882944, -8.471293E-05, 0.01235342, -0.033740617, 0.00081375433, -0.004962456, -0.011931662, 0.011911254, 0.026747603, -0.016108423, -0.00051401724, 0.00075125595, -0.011645955, -0.01091128, 0.04212135, -0.030257715, 0.0041971696, -0.0032261065, 0.018679786, -0.011761598, -0.012162949, 0.00074913015, -0.03265221, 0.011809216, -0.02802648, 0.0011759897, -0.02489731, -0.013326184, -0.0026938075, 0.023604827, -0.021019861, -0.0035883419, -0.014149291, 0.015264909, 0.015741087, -0.007339945, 0.019809008, 0.031563804, 0.012230974, 0.016652627, 0.015142463, 0.017414512, -0.008924938, -0.003527119, 0.0050100735, 0.004826405, 0.020638919, 0.00087752816, 0.01545538, -0.002943801, -0.035999063, 0.009020173, -0.021564065, 0.008231078, -0.02944141, -0.01642134, 0.011639153, -0.0195233, -0.011353446, -0.10388845, 0.0012975852, 0.021972217, 0.0072447094, -0.0020917822, 0.0039862907, -0.007686875, -0.0031597817, -0.0059250155, 0.007945371, -0.0008052511, -0.0045134877, -0.011503102, 0.0045168893, 0.026829233, -0.0045815133, 0.02398577, -0.024584394, -0.0038366348, 0.010217421, -0.014271737, 0.014761521, -0.0070746457, -0.022366764, 0.0077617024, -0.0066324803, -0.023700062, 0.0014846552, 0.03110123, -0.00030207547, 0.0045338958, 0.014516628, 0.0032601191, -0.011591535, 0.0059352196, 0.008972555, -0.03409435, 0.021618485, 0.018924678, -0.021985821, -0.00095660775, -0.0015016616, 0.019536907, -0.021346383, -0.0072379066, -0.0208566, -0.0012117032, -0.0071834866, -0.0010807542, -0.015700271, -0.022393975, -0.033767827, -0.0015535309, -0.014924781, -0.00024106515, -0.011890847, -0.020462053, 0.027101334, 0.03589022, 0.008339919, -0.0171152, 0.0073195375, 0.014979201, 0.008312709, -0.006890977, -0.015945163, 0.004989666, 0.004880825, -1.057583E-05, 3.1700918E-05, -0.009775256, 0.028298583, -0.00484001, 0.042175774, -0.015768297, 0.0039114626, -0.03387667, 0.009577982, 0.00064326555, -0.012918031, -0.018244423, -0.020013085, 0.02412182, -0.02457079, 0.015999584, 0.011169777, 0.0005565331, -0.014434998, 0.016570996, -0.014666284, -0.003358756, 0.01623087, 0.018407684, -0.013686718, -0.014584654, -0.0054998565, -0.003751603, -0.007612047, -0.00815625, -0.009407918, -0.043019287, 0.0036903801, -0.07134508, 0.041032944, 0.018992703, -0.014190107, -0.009367103, -0.008489575, -0.016775073, -0.0011470789, -0.0017567569, -0.020829389, 0.015673062, -0.024625208, 0.0025730622, -0.014421393, 0.0131153045, -0.04195809, 0.001588394, 0.023713669, 0.016965544, 0.0050202776, -0.03866566, 0.019033518, 0.007816123, 0.021128701, -0.034937866, 0.0043672333, -0.017332882, 0.013407814, 0.0030662466, -0.00502708, -0.0011453783, -0.00729913, 0.0068535632, 0.006581461, 0.0007929215, -0.028271373, 0.003241412, 0.01008137, 0.015618641, -0.0066800984, -0.000147105, -0.0034471892, 0.0232647, -0.010666389, -0.023700062, 0.004340023, 0.034420874, 0.0050815004, 0.013605088, 0.015033622, 0.028298583, 0.017319277, 0.02500615, -0.018203607, -0.0114146685, -0.022094663, 0.0128364, 0.005265169, -0.013713929, -0.017128807, 0.039264284, -0.010754822, 0.009768453, 0.015264909, 0.0058195763, 0.004952252, -0.0068841744, -0.0038808512, 0.031618223, -0.017877085, -0.008924938, 0.006476022, 0.029849563, -0.010067765, 0.01235342, 0.0037413992, -0.010850058, 0.0017856677, -0.0012644229, 0.010319459, 0.018040346, -0.012897624, -0.029250938, -0.0041597555, 0.019945059, 0.006152901, -0.018775022, 0.004289004, 0.0015662857, -1.3306148E-05, -0.016530182, -0.004210775, -0.0061052833, -0.017604984, 0.01719683, 0.029903984, -0.015523405, 0.007680072, 0.0031223677, 0.03246174, 0.011231, 0.009836478, -0.008244683, -0.0143533675, 0.006078073, -0.003120667, -0.0026853043, -0.021278357, -0.018353263, 0.0063943914, 0.019006308, -0.022475606, -0.024543578, -0.0013349992, -0.017387303, -0.0033995714, -0.003652966, -0.034502503, 0.0008031253, 0.030448187, 0.00933309, 0.031618223, -0.0077685053, -0.028244162, 0.011196988, 0.012088121, 0.021019861, -0.0054318313, 0.010176606, 0.015224094, 0.004180163, 0.0040203035, 0.019292014, -0.0016921328, -0.005101908, 0.009686823, 0.00082395814, 0.027291806, -0.0019030117, 0.061495, -0.0023111643, 0.016598208, 0.011679968, 0.0019285212, 0.014503024, 0.044107694, 0.016666234, -0.036516055, -0.0075848363, 0.0018298844, -0.012877216, -0.0075712316, 0.014924781, -0.034448083, 0.024978941, -0.011353446, 0.011625548, -0.020530077, -0.0016649226, 0.025101388, 0.00598964, 0.020502867, -0.0067855376, 0.0069862125, -0.015128857, 0.010945293, 0.025210228, 0.0077480976, -0.04340023, 0.012938439, -0.0006853563, -0.02548233, -0.027346227, 0.00443866, -0.012931636, -0.023060624, 0.014938386, 0.0039862907, 0.01697915, 0.009013371, 0.016625417, -0.005278774, -0.034883447, 0.009537167, 0.00032779758, -0.0361079, 0.007040633, -0.0047685835]
+ },
+ {
+ "Id": 95,
+ "Type": "Cycling",
+ "Brand": "AirStrider",
+ "Name": "AeroLite Cycling Helmet",
+ "Description": "Stay safe and stylish on your cycling adventures with the AirStrider AeroLite Cycling Helmet. This helmet, in a glossy grey, features a lightweight design, adjustable straps, and excellent ventilation to keep you cool. The aerodynamic shape reduces air resistance, enabling you to pick up speed with confidence.",
+ "Price": 129.99,
+ "Embedding": [0.016035018, 0.0137253385, -0.005601637, -0.023879966, 0.025074627, -0.0017637857, 0.0031492617, -0.024902064, 0.027211744, -0.025472848, 0.023561388, -0.0038229183, -0.0179863, 0.00044094643, 0.0066171, -0.010738684, 0.024344556, -0.000200977, 0.0007968561, -0.0051569575, -0.005960036, 0.0103471, -0.013207652, 0.00032396909, -0.0023577982, -0.022791496, 0.015862456, -0.028565696, 0.034645196, -0.015955374, 0.012318293, 0.014097012, 0.0045463527, -0.01818541, -0.02729139, 0.01825178, 0.013174467, 0.0015165571, 0.010386922, 0.03159217, 0.021371175, -0.003117736, 0.008389181, 0.0135063175, -0.018530535, 0.024610037, 0.016858008, -0.017349146, -0.0022167617, 0.009218808, -0.010001975, 0.01947299, -0.021557013, -0.009623666, 0.0009349889, -0.016154485, 0.012908987, 0.0033168462, 0.046857297, -0.01811904, -0.019632278, -0.010413471, -0.035308897, 0.0103072785, 0.012218737, -0.0016940971, -0.002566864, 0.008734306, 0.01292226, 0.02260566, 0.031963844, 0.019619005, 0.013924449, 0.00803742, 0.0109311575, -0.022048151, 0.0044368417, -0.01791993, 0.0085285595, 0.009510837, 0.010327189, 0.0046392707, -0.007944502, 0.016247403, 0.022698577, 0.0026083454, -0.004748781, 0.012869164, -0.021105696, 0.015716443, -0.012663417, 0.00025593973, 0.004536397, 0.006431264, -0.010844876, 0.027795803, 0.0025502716, 0.013453221, -0.0048184698, 0.0058239773, -0.0036802227, -0.0038262368, 0.0017206451, -0.0071746088, -0.03719381, -0.03039751, 0.00093250006, 0.019950856, 0.012968719, -0.011276281, -0.009378096, 0.021676477, 0.041653883, -0.017110214, -0.0021769395, -0.010174538, 0.017654449, 0.030158577, -0.018225232, -0.016990747, 0.002324613, 0.022034876, 0.022406548, -0.015397865, 0.002926922, 0.007718844, -0.03554783, -0.0027726113, 0.019964129, -0.0013473133, 0.010917883, -0.0014734165, 0.008740944, 0.0062188795, -0.0014427203, 0.0043107388, -0.014097012, 0.02571178, -0.019048221, -0.0013780094, -0.0019545997, 0.010652402, -0.02271185, -0.0003747837, -0.022380002, -0.00874758, 0.006474404, 0.012543951, 0.00097066286, 0.020720748, 0.029893097, -0.026813524, 0.025074627, 0.023056976, 0.005495445, 0.024875518, 0.0019048222, 0.016605802, -0.021968506, -0.0012958763, 0.009344911, -0.018557083, 0.0427689, 0.005800748, 0.019313702, 0.007181246, 0.0028157518, -0.0054257563, -0.014243025, -0.0061657834, -0.012603683, 0.029123204, -0.020813666, -0.0012610321, -0.00086447067, 0.008276353, 0.014415588, 0.011282919, -0.015769538, -0.011986442, 0.007990961, -0.0067398846, 0.012829342, 0.021264983, -0.009238719, 0.011694414, 0.034114238, 0.021132244, -0.014773986, -0.011986442, 0.0027444041, 0.013924449, 0.009484288, -0.025871068, -0.6588163, -0.01234484, -0.003939066, -0.036158435, 0.011170089, -0.0059965393, 0.0015903937, 0.0091524385, -0.0076524736, -0.0068228473, -0.0010478181, 0.024344556, -0.0034777937, 0.0012610321, -0.019619005, -0.028512599, 0.011402385, -0.00096153695, 0.019964129, -0.0026149824, -0.026893169, -0.008707758, -0.021543738, 0.0038959254, 0.0030364324, 0.017375695, 0.025127724, -0.0068361214, -0.02729139, 0.013121371, -0.027344486, 0.04356534, -0.02016324, -0.0022034876, 0.048503276, -0.036291175, 0.004543034, 0.030716088, -0.0015381273, 0.008754217, 0.007320623, -0.005989902, 0.008508648, -0.015822634, 0.00014954015, 0.020282706, 0.017269503, -0.027092278, 0.023282634, -0.023388827, 0.01934025, -0.003379898, 0.000276473, -0.0005778348, 0.004838381, -0.014309396, 0.04385737, 0.0103471, 0.011780694, 0.009318364, -0.014959822, 0.020667652, -0.034671746, -0.009962154, -0.012696602, 0.023999432, -0.03963623, -0.029362136, 0.002658123, -0.033503633, 0.028273666, 0.023229538, 0.0024042572, 0.034220427, 0.01907477, 0.042689256, 0.012769609, 0.0069423136, 0.023534842, 0.0074135414, 0.04860947, 0.0027145375, 0.013373577, -0.008860409, 0.002462331, -0.016579254, -0.0019064815, -0.0075396444, 0.017707545, 0.022101246, 0.017415516, 0.032123134, 0.0034479273, -0.019526087, -0.009610392, 0.01534477, -0.003283661, 0.0054589417, 0.032335516, -0.012636869, -0.0008694484, -0.022127794, -0.004406975, 0.011720961, 0.011143542, 0.0060629095, 0.033716016, -0.02062783, 0.011528488, -0.02782235, -0.010891335, -0.014813809, -0.028512599, -0.021729574, -0.005843888, -0.028406408, 0.013804982, 0.0131014595, 0.007479911, -0.047441356, 0.0159421, -0.015291673, 0.02386669, -0.008940054, -0.01669872, 0.012895713, 0.011588221, 0.027769255, -0.029149752, -0.017282777, 0.023773773, 0.028220572, 0.019180961, 0.010074982, 0.029786905, 0.018225232, -0.0017388968, -0.009975428, 0.011667865, -0.017999575, -0.020946406, 0.01452178, -0.022034876, -0.03026477, -0.021636656, -0.015756264, -0.013141282, -0.0050839502, 0.009716584, -0.002566864, -0.012046175, -0.009836051, 0.000421865, 0.0020923177, 0.0049014324, -0.013791709, -0.016751816, -0.024769325, -0.004655863, -0.02960107, 0.021172065, 0.0019794884, 0.0023826868, -0.011409022, -0.031459432, 0.018371247, -0.018026121, 0.033636373, -0.010698861, -0.03785751, 0.011362563, -0.0018782741, -0.033025768, 0.035654023, -0.0057011927, -0.0069954097, -0.018344698, -0.024716228, 0.024344556, -0.004078443, -0.013990819, 0.002067429, -0.022592386, -0.0006699233, 0.0079511395, 0.0015057719, 0.01729605, 0.016048292, -0.014176656, 0.031963844, 0.032229327, 0.0032537947, -0.0035342083, -0.010473203, -0.003637082, -0.029760357, 0.0042576427, 0.008774129, 0.0140837375, -0.0028588925, 0.034724843, -0.020349076, 0.019273879, 0.0024108943, 0.018742919, -0.012318293, -0.010672314, 0.009477652, 0.007473274, 0.008030783, 0.01330057, -0.037804414, -0.011409022, -0.0067299292, 0.0035408454, -0.0031758097, 0.015862456, 0.015782813, 0.009398008, -0.007247616, 0.017959751, 0.008369271, 0.005508719, -0.004556308, -0.018530535, 0.030583346, -0.006849395, 0.017043844, 0.0100417975, -0.04096363, 0.016101388, 0.01418993, 0.008847136, 0.011588221, 0.012139093, 0.03759203, 0.0043439236, -0.016725268, 0.053308472, -0.011143542, 0.027477225, 0.010712136, 0.01278952, -0.011966531, 0.024756052, 0.015769538, 0.05184833, -0.012689965, -0.0016194307, 0.018424343, -0.0058405697, -0.021756122, 0.00719452, -0.008196709, 0.021995055, -0.00872767, 0.008701121, 0.013446584, -0.0017588079, 0.015822634, 0.0020226291, 0.0069555873, 0.016194306, -0.017349146, 0.011070535, 0.004536397, -0.027012635, 0.005614911, -0.013964271, -0.023176443, -0.005402527, 0.0006554048, 0.016658898, -0.013546139, 0.01663235, -0.0011772398, -0.026627688, 0.022021603, -0.007878132, 0.04083089, -0.013579325, -0.041706976, -0.00011552547, 0.046060856, -0.010586033, -0.009909057, -0.010904609, 0.005704511, -0.013738613, 0.02970726, 0.014933275, 0.01201299, -0.025698507, 0.011130268, -0.002284791, -0.01983139, 0.011999716, -0.022127794, 0.029786905, -0.017548257, -0.02191541, 0.016884556, -0.008017509, -0.023548115, 0.006414671, 0.017309325, -0.010864787, -0.024145447, 0.011515214, -0.015490783, 0.013977545, -0.0033035723, -0.0032189502, -0.009464378, -0.0032969352, 0.00215371, -0.026574591, -0.03068954, 0.0179863, -0.0023096798, -0.016260676, -0.0057609254, -0.0129288975, -0.007917954, 0.07539645, -0.002802478, -0.017083665, 0.013738613, 0.010599307, -0.024264913, 0.0037665037, 0.006510908, 0.0031260322, 0.0042510056, -0.034300074, 0.011428933, -0.0069157653, -0.008767491, 0.016127937, 0.01709694, 0.012159004, -0.0059567173, -0.01818541, 0.010181175, 0.0004372131, -0.0054788524, 0.013287296, 0.0027941817, 0.018543808, -0.021756122, 0.025764877, 0.020840215, -0.0010876402, 0.005847207, 0.00023312501, 0.0074002673, -0.018742919, 0.0070418688, -0.027039183, 0.004543034, -0.019658826, -0.019088043, 0.016446514, -0.012729787, 0.02848605, 0.014097012, 0.0019512812, 0.016220855, 0.010001975, -0.010493115, 0.018145587, 0.009238719, -0.0059268507, -0.024238365, 0.021769395, 0.0111966375, -0.0044833007, 0.0073538083, -0.0016907785, 0.029282492, 0.015265125, -0.021835767, -0.0066901073, -0.004758737, -0.020481816, -0.0027609966, 0.010579395, 0.0016750157, 0.0016003493, -0.0057941107, 0.015703168, 0.0042178207, -0.021570286, -0.02455694, 0.0013290615, -0.012384662, -0.015596976, 0.016273951, -0.0034877493, 0.011163453, 0.030981567, -0.029096656, -0.00063134567, 0.007778577, 0.0025502716, 0.0011830472, -0.014866904, -0.009471015, -0.0007391971, -0.008521922, 0.010499751, 0.0031227136, -0.007758666, 0.014641246, 0.016658898, -0.0024971755, 0.008634752, -0.017813737, -0.030981567, -0.005482171, 0.022552563, 0.03568057, 0.005266468, -0.0037830963, 0.018517261, -0.00668347, 0.010625854, 0.0046857297, 0.03395495, 0.001858363, -0.0065075895, 0.015889004, 0.0029518106, 0.003650356, -0.008409093, 0.010294004, 0.025140997, -0.013453221, -0.025260463, 0.005226646, 0.022353454, -0.0069555873, -0.00054547936, -0.025048079, 0.008156886, -0.048290893, 0.015039467, 0.008249804, 0.0056845997, 0.019565908, 0.031273596, -0.0045131673, 0.0058837105, 0.020734021, 0.023441922, 0.024238365, -0.0064511746, -0.0066735144, -0.02808783, -0.014030641, -0.024357831, -0.005100543, -0.0244242, -0.013844805, -0.0154111395, 0.024185268, 0.02062783, 0.015397865, -0.011030712, -0.01647306, -0.018849112, -0.011734235, -0.038707048, 0.036025696, -0.018849112, -0.0009656851, -0.017667724, -0.018198684, -0.004254324, -0.027636513, 0.003092847, -0.022340178, -3.0385067E-05, 0.019021673, 0.028857723, -0.01085815, 0.029202849, 0.014322669, -0.021105696, 0.01265678, -0.020203061, -0.007990961, -0.028140927, -0.0038063258, -0.0014642905, -0.0005446497, -0.012802795, -0.016048292, -0.01709694, 0.0054854895, 0.00366363, -0.02109242, -0.018915482, -0.04693694, -0.012583773, -0.00408508, -0.007280801, -0.01336694, -0.023176443, -0.0010801735, 0.034565553, 0.008050694, 0.0040087546, 0.01292226, 0.016433239, -0.004081762, 0.003144284, -0.011614769, 0.01587573, -0.0019678737, -0.02184904, -0.011004164, -0.024716228, 0.024171993, 0.0147076165, -0.015796086, -0.0103072785, -0.013081549, -0.013619146, 0.012557224, 0.00093664817, -0.027769255, -0.00066453073, -0.010831602, -0.019313702, -0.023813596, -0.029149752, -0.055007547, -0.030928472, 0.016711993, -0.009530747, 0.011402385, -0.009789592, -0.004028666, 0.013778435, -0.02184904, 0.020853488, -0.015862456, 0.0152385775, -0.006414671, -0.030344414, -0.023601212, -0.036052242, -0.0095904805, -0.013645695, 0.02445075, 0.00632839, -0.011190001, -0.0073670824, 0.006427945, 0.030822279, -0.000730486, 0.004838381, -0.007917954, 0.048131604, 0.025154272, -0.005226646, -0.029202849, 0.0073604453, 0.038707048, 0.032282423, -0.0068759434, 0.0037266817, -0.009404644, 0.0009855961, 0.036078792, -0.030211674, 0.0041846354, 0.0017803782, 0.0117740575, 0.013546139, -0.03310541, -0.0025502716, -0.01465452, 0.025472848, 0.027795803, 0.0015754604, 0.013585961, 0.018105766, 0.0005255683, 0.0061989683, -0.0010353737, -0.0075529185, 0.021105696, -0.0067066997, -0.010566122, -0.007154698, -0.009875872, 0.025658684, -0.023521567, -0.0074069044, -0.0074467263, 0.011017438, -0.013818257, 0.0026000491, 0.004075125, 0.00047081296, -0.016353594, -0.0052631497, 0.010592669, -0.015119111, -0.0017886745, 0.01703057, -0.03878669, -0.026574591, -0.006089458, -0.012689965, -0.008648025, -0.0070816907, -0.012251922, -0.010373648, 0.019526087, -0.0291763, 0.018464165, 0.03172491, 0.016446514, -0.0010353737, 0.022380002, 0.01099089, -0.034512457, 0.024941888, -0.0004749611, -0.019632278, -0.026786976, 0.009258631, 0.0041381763, -0.001825178, -0.017189858, 0.011847065, 0.0012792839, 0.010937794, 0.003912518, -0.036158435, 0.008648025, -0.0070153205, -0.00042373166, 0.031300142, -0.025884343, 0.011349289, -0.0019645554, 0.009205534, 0.009351549, -0.025831247, -0.023349004, -0.01867655, -0.009517474, 0.005558497, -0.013778435, 0.00930509, -0.016167758, -0.027238293, -0.018888934, -0.01363242, 0.021397723, 0.0076524736, -0.026056904, -0.017043844, 0.01072541, -0.037751317, -0.024344556, 0.010247545, -0.0050142617, -0.019061495, 0.0010138034, 0.02600381, 0.053706694, 0.013340392, -0.028884271, 0.008030783, -0.0027709522, -0.038468115, 0.009398008, -0.00546226, 0.009457741, 0.014004094, 0.03214968, -0.013313844, 0.015012919, 0.007380356, 0.013386851, 0.0050043063, -0.0067066997, 0.01123646, 0.014840357, -0.026773702, -0.013406762, -0.031778008, -0.024278186, 0.022552563, 0.003650356, 0.012875801, 0.014800535, 0.00495121, -0.020574734, 0.014309396, -0.008701121, 0.023959609, 0.028220572, -0.022512741, -0.02098623, -0.004602767, -0.019645553, 0.007333897, 0.017136762, 0.014866904, -0.013008541, 0.010174538, -0.005508719, -0.013532866, -0.01112363, -0.011276281, -0.025764877, 0.020787118, -0.0018152226, -0.008282989, 0.024649858, 0.0113691995, -0.01878274, 0.02560559, 0.020017225, -0.028857723, -0.030503703, 0.004124902, -0.022220712, -0.006849395, 0.013420036, 0.019698648, 0.0016891193, 0.0070285946, -0.0033251424, -0.00646113, -0.0029584477, 0.028220572, -0.0097298585, -0.01778719, -0.022220712, 0.0064578117, -0.009988702, 0.011448844, -0.008435641, 0.0064644488, -0.051901426, 0.009789592, -0.020574734, -0.028459502, -0.009530747, 0.023946336, -0.008296263, 0.0028190704, -0.0018948666, 0.20399517, 0.009696673, -0.010400197, 0.022167617, -0.036742494, -0.0036835412, 0.0148801785, 0.007818399, -0.008336086, 0.0037034522, -0.0001291106, 0.0082630785, -0.005850525, -0.0056746444, 0.032547902, 0.0034744754, -0.028990464, -0.009477652, -0.029840002, -0.007844947, -0.008701121, -0.007267527, 0.008256442, -0.03461865, -0.005764244, 0.0291763, -0.009338275, -0.032335516, 0.009796228, 0.00040340584, 0.00013367354, -0.02795509, -0.026282564, -0.011156815, -0.019977404, -0.016207581, -0.0053925714, 0.0022184209, -0.0131943775, 0.03788406, -0.0061226427, 0.007280801, -0.005027536, -0.015490783, -0.006856032, -0.0024208499, -0.02009687, 0.009510837, -0.029415233, -0.010824965, -0.032786835, -0.010765232, -0.0069754985, 0.01418993, -0.0019147777, 0.0012626913, 0.023879966, -0.017534982, 0.0070219575, 0.0026017083, -0.0114156585, 0.007201157, 0.00899315, 0.011024076, -0.0031476025, 0.015955374, -0.005555178, -0.008017509, 0.010917883, 0.0018915482, 0.00023872498, -0.003812963, -0.0056215483, 0.022499466, -0.023428649, -0.019101318, 0.010240908, 0.008780765, -0.010632492, 0.005415801, -0.018875659, -0.024331283, 0.0074201785, 0.023999432, 0.0176279, -0.01871637, -0.005475534, 0.007818399, 0.0131014595, -0.013897901, 0.0032289058, -0.002802478, 0.008694485, -0.004320694, 0.0052863793, -0.011156815, -0.013539502, 0.018530535, -0.010001975, 0.002351161, -0.032229327, 0.0012792839, 0.0050507654, -0.004984395, 0.0003179543, 0.017813737, -0.014309396, 0.025950713, -0.004453434, -0.023202991, -0.007426815, -0.03323815, 0.016645623, -0.0030082252, 0.0024639904, -0.005429075, -0.0063648936, -0.023163168, 0.023110073, -0.016260676, 0.023309182, 0.01647306, 0.026986087, 0.012338203, 0.0053062905, -0.014163381, -0.01871637, 0.0005450645, 0.0051702317, -0.029415233, -0.005037491, -0.0027145375, -0.008209983, 0.004161406, -0.02422509, -0.0007080861, 0.016419966, -0.014269574, 0.0040021176, 0.0017040526, -0.0002553175, -0.012616958, 0.01452178, 0.0024805828, 0.030556798, -0.02382687, -0.0042178207, -0.0010644107, -0.0061657834, -0.00546226, 0.0048483363, -0.019725196, -0.00401871, -0.018026121, -0.010114805, 0.0076126517, -0.02022961, 0.0024988346, -0.011276281, 0.017136762, -0.016247403, 0.024344556, 0.013041726, -0.013041726, -0.019101318, -0.037379645, -0.16905795, 0.010771869, 0.014216478, -0.031300142, 0.0017156673, 0.004207865, 0.013307207, 0.0034545641, -0.029627617, -0.0044368417, 0.018875659, -0.0070219575, -0.031857654, -0.037963703, 0.015291673, -0.0056315036, 0.0057343775, 0.031193951, 0.027742706, 0.00052930164, 0.021928685, -0.024729503, 0.022048151, -0.0070352317, 0.025592314, -0.0017438746, 0.0074135414, 0.027079005, 0.0033964904, -0.009318364, -0.008508648, -0.0014128537, 0.02877808, 0.013751887, 0.018039396, -0.0057542888, -0.011608132, -0.013526228, -0.014415588, 0.03257445, 0.005502082, 0.010672314, 0.033344343, 0.016924378, -0.00096817396, 0.02930904, -0.023189716, -0.005389253, 0.034008045, -0.012192189, 0.030848827, -0.0244242, -0.022061424, -0.014004094, 0.004450116, 0.017004022, 0.0044202493, 0.0007591081, 0.029627617, -0.031459432, 0.009338275, -0.037167262, -0.0008594929, -0.016499609, -0.010884698, -0.020057047, 0.001296706, 0.013353666, 0.002113888, 0.019101318, 0.009006424, 0.0030181808, 0.0032670686, -0.009066157, 0.019658826, 0.0061491905, -0.014734165, 0.0067830253, 0.007380356, -0.021371175, 0.016433239, 0.04505203, -0.028167475, 0.015358044, -0.025048079, -0.00094909256, -0.017574806, 0.01623413, -0.028432956, 0.004778648, 0.0061292797, -0.005558497, -0.031671815, 0.0052432385, 0.0010154627, 0.020521637, 0.010771869, -0.027769255, -0.0010071665, 0.00057036814, 0.0065075895, -0.00552863, -0.019818114, 0.028937368, 0.0359726, 0.009105979, 0.01676509, 0.0016103048, 0.025592314, 0.0039888434, 0.0056680073, 0.020481816, -0.010632492, 0.0032073355, -0.0031608765, 0.014110286, -0.0032687278, -0.031937297, 0.0053427937, -0.04696349, 0.02904356, -0.024105623, -0.0070684166, -0.014322669, 0.0022333541, -0.00044177604, -0.08468826, -0.03137979, 0.024145447, 0.011116994, -0.009544021, 0.0040452583, -0.019194236, 0.023163168, -0.013021816, 0.011800606, -0.0045928117, -0.021570286, -0.014468684, 0.021676477, 2.5251753E-05, -0.010864787, 0.03722036, -0.005482171, -0.015782813, -0.008083879, -0.0034512456, -0.00495121, -0.0065872334, -0.0055385856, -0.015265125, -0.01987121, -0.013924449, 0.024729503, 0.009597118, 0.0069821356, 0.0155040575, 0.0067266105, 0.007479911, -0.009643577, 0.0029783587, -0.016499609, -0.015663346, -0.0022698578, 0.013884627, -0.028698435, -0.002737767, 0.005900303, 0.023561388, -0.029760357, 0.0015530606, -0.00990242, -0.0034744754, 0.017800463, 0.0068892175, -0.0065042707, -0.018570356, -0.012152367, 0.019725196, -0.0016111344, 0.031857654, -0.0019745107, 0.023972884, -0.011289556, -0.0007545452, 0.0053461124, -0.00014694757, 0.013327118, -0.018331423, 0.00094245555, 0.0032969352, -0.0099953385, -0.02848605, 0.0030513657, 0.009039609, 0.0048184698, -0.011926709, 0.009477652, -0.020216335, 0.04372463, -0.0042178207, -0.01838452, -0.01574299, -0.002639871, -0.0029783587, -0.0058206585, -0.013280659, -0.0206942, 0.01607484, -0.044175945, -0.0038229183, 0.037751317, 0.02131808, -0.0063848044, 0.010732046, -0.024888791, 0.01878274, 0.036556657, 0.04760064, 0.008269716, -0.032123134, -0.015198755, 0.009358185, -0.008774129, 0.00996879, 0.0028174112, -0.02231363, -0.0079975985, -0.06881253, 0.0041945907, -0.006570641, 0.0050574024, 0.009032972, 0.02960107, 0.01587573, -0.003550801, 0.0065971888, -0.0011672843, 0.0069954097, -0.024543667, 0.0035076602, 0.011999716, -0.0073538083, -0.022154342, 0.015304947, 0.007778577, 0.021477368, -0.010327189, 0.0061757388, 0.019313702, -0.020747297, 0.015716443, -0.031406336, 0.011070535, -0.0014352537, 0.009132527, 0.009092705, 0.004124902, 0.013486407, -0.030556798, 0.0011598177, 0.029733809, -0.02271185, -0.036954876, 0.010141353, 0.002724493, 0.0115550365, -0.030370962, -0.009862598, -0.00732726, 0.0065507297, -0.0065971888, -0.03108776, -0.019300427, 0.012139093, -0.0064511746, 0.029946193, 0.006670196, -0.0013149577, 0.008429004, 0.009052883, -0.032494806, -0.0022764949, -0.012995267, -0.0027941817, -0.026521496, -0.007267527, -0.041706976, 0.027742706, 0.0020740659, 0.006623737, 0.003945703, 0.017707545, 0.020428719, -0.015066015, 0.02287114, -0.009690036, 0.0073670824, -0.016287224, 0.009922331, 0.020853488, -0.005073995, 0.006132598, 0.008847136, 0.010320552, -0.013658969, -0.008229894, 0.0043804273, 0.008103791, -0.025857795, -0.021397723, 0.022034876, 0.01703057, 0.017773915, -0.038494665, 0.018769467, -0.003832874, 0.011521851, -0.020070322, -0.026123276, -0.01369879, -0.0063317083, 0.017720819, -0.0023378872, -0.029494876, -0.007778577, 0.017468613, 0.023614485, 0.021264983, 0.002513768, -0.004562945, 0.009524111, -0.024357831, 0.021557013, -0.0061757388, -0.022818044, -0.016619075, -0.0014286166, 0.012643506, 0.0031758097, -0.022021603, 0.012139093, -0.016565979, -0.0005807385, 0.0032936167, -0.009338275, -0.0049678027, -0.004562945, 0.009962154, 0.0034446088, 0.0140837375, -0.016220855, 0.005133728, 0.010632492, 0.013207652, -0.021689752, 0.016738541, 0.0102608185, 0.012318293, 0.005717785, -0.013320481, -0.0049744397, 0.013658969, -0.0061624646, 0.0007362934, 0.027211744, -0.04109637, 0.057025198, 0.011269645, 0.0052963346, 0.00056746445, 0.0035176158, 0.011475392, -0.004894796, -0.0064843595, -0.032654095, -0.027503774, 0.0020209698, -0.008249804, -0.03281338, 0.0076325624, -0.044069752, 0.005193461, -0.000497361, 0.000132118, 0.0030015882, -0.02686662, 0.016446514, -0.0264684, -0.0033251424, -0.01729605, -0.0067830253, 0.005697874, 0.020136692, 0.013658969, 0.012066086, -0.011409022, 0.011030712, 0.01729605, -0.0063582566, -0.012324929, -0.009451103, 0.014004094, -0.011594858, 0.015716443, 0.012225375, 0.024716228, 0.0163005, 0.03881324, -0.0097298585, -0.024769325, 0.0009316704, -0.02946833, -0.010692225, -0.026229467, -0.024264913]
+ },
+ {
+ "Id": 96,
+ "Type": "Trekking",
+ "Brand": "B&R",
+ "Name": "Explorer Camping Tent",
+ "Description": "Experience the great outdoors with the B&R Explorer Camping Tent. This spacious tent, available in forest green, comfortably fits up to six people with a separate sleeping area and a generous living space. Its sturdy construction and weather-resistant materials ensure durability and protection from the elements.",
+ "Price": 279.99,
+ "Embedding": [0.01782123, -0.0024562161, 0.013369235, -0.0053794943, -0.020616977, 0.020550728, -0.012746486, -0.028566968, -0.0017837792, -0.0012355611, -0.029785967, 0.024605222, -0.020047229, -0.0075326166, -0.01964973, 0.019596728, 0.006300368, -0.008135491, -0.002683122, -0.010692738, -0.006638243, -0.0034946837, -0.005144307, 0.008546241, -0.009844739, -0.033681463, 0.014044984, -0.0030574342, 0.022326225, 0.009400865, 0.0052867443, 0.0038756207, -0.005313244, -0.026261471, 0.006187743, -0.0017986855, -0.020153228, 0.012223111, 0.022750225, -0.00047244478, 0.021120477, -0.0093346145, -0.012839236, 0.03468846, -0.006326868, 0.018748729, 0.007943367, -0.007824116, 0.00886424, -0.011023988, 0.014190734, 0.001021077, -0.011388362, 0.003650371, 1.3547592E-05, 0.012819361, -0.010792113, 0.00461762, 0.032515462, -0.034529462, -0.0076783667, -0.00031634342, -0.028328469, -0.0055616815, -0.0105999885, -0.0076121166, -0.017807981, 0.00014440414, 0.0047898698, -0.0059558684, 0.030130466, 0.024485974, 0.019848479, 0.025082223, 0.009281615, -0.03776246, -0.016323982, 0.011216112, 0.011454612, 0.006333493, 0.010401239, -0.014892983, -0.040677454, -0.0043294327, 0.0020769353, 0.022273226, 0.0076121166, 0.014508734, -0.03497996, -0.014309985, -0.012971736, 0.0070489924, -0.016058981, 0.011944862, -0.016535982, -0.0017489981, 0.0061281184, 0.0039484957, -0.003630496, -0.042055454, -0.015648233, 0.019861728, 0.003938558, -0.008453491, -0.01799348, 0.015793983, 0.006532243, -0.0089039905, 0.011818987, 0.008672115, -0.01896073, 0.013183735, 0.015462733, -0.032912962, -0.0088178655, -0.0036801836, 0.00025671846, -0.010454238, 0.003703371, 0.0024413099, 0.020908477, -0.002115029, 0.024684723, -0.024909973, -0.012766361, 0.007101992, -0.021345727, 0.005025057, 0.017754981, -0.0110306125, -0.01888123, 0.04600395, 0.01792723, 0.007877116, -0.032011963, 0.032939464, -0.0032346528, -0.0073471167, -0.043115452, -0.010758989, 0.0046209325, 0.031084465, -0.011176363, -0.016469732, 0.023558473, 0.01930523, 0.007413367, 0.019146228, 0.0016943419, -0.00432612, 0.0087317405, -0.01900048, 0.029017469, 0.028142968, -0.00043807764, -0.0008488272, -0.0085727405, 0.010904738, -0.03691446, -0.012077361, -0.0038424958, 0.0128988605, 0.0084866155, 0.0035874336, 0.008274616, 0.024035474, 0.013567985, 0.0018367792, -0.022723725, -0.00095482706, -0.019212479, 0.039219957, -0.026009722, 0.009228615, 0.013687235, 0.037550457, 0.010646364, -0.010255489, 0.011076988, 0.012143612, -0.016575731, 0.007843992, 0.01820548, 0.01768873, -0.032117963, -0.008764866, 0.013501735, -0.013302986, 0.024393223, -0.01737073, 0.023796974, -0.005545119, -0.011176363, 0.009705614, -0.66440725, 0.0076054917, -0.015157984, -0.010917988, 0.022856224, 0.016867232, 0.017291231, 0.03336346, -0.014972484, -0.0052900566, -0.013938985, -0.0006492493, 0.011176363, -0.03805396, 0.01328311, -0.013700485, 0.00441887, 0.0031319654, 0.023717474, 0.018867979, -0.01312411, 0.005227119, -0.02742747, -0.023386225, -0.0003550582, 0.003196559, 0.0045348075, -0.00938099, -0.011891861, 0.0112889875, 0.007320617, 0.042373452, -0.008254741, -0.0056345565, 0.048309445, -0.019874979, -0.012839236, 0.02822247, 0.0134884855, 0.05331794, -0.01947748, -0.008446866, 0.01907998, 0.0005900384, 0.014945984, 0.014230484, 0.022379225, -0.0033009027, 0.0067508677, 0.0031932464, 0.00928824, -0.009705614, -0.011129987, 0.0024247472, 0.01825848, -0.010493988, 0.020192977, 0.0010566864, -0.0037563709, 0.0007887882, -0.013978735, 0.012753111, -0.00056643685, -0.021637226, -0.012839236, 0.021319227, -0.039484955, -0.013395735, 0.006366618, -0.01824523, -0.0032942777, 0.049899444, -0.012269487, -0.0015394827, 0.00895699, 0.021226477, 0.01768873, 0.003511246, -0.016284233, 0.021266226, 0.024764223, -0.011043862, -0.012905486, -0.025545971, 0.02761297, -0.004773307, -0.0069893673, -0.0036801836, 8.882925E-06, 0.005505369, 0.008844365, 0.010209113, -0.0029116843, -0.000104343635, -0.025466472, -0.0019013729, -0.006472618, 0.020961476, 0.02822247, -0.020948227, -0.0086588655, -0.016920231, 0.013978735, -0.020736227, 0.009268365, 0.016310733, 0.013203611, 0.00883774, 0.03569546, -0.015449483, -0.009970614, -0.023200724, -0.016204732, -0.001374686, 0.008307741, -0.023306724, 0.019954478, 0.0021912165, 0.021027727, -0.048759945, 0.011772612, -0.000233531, 0.016787732, -0.023227224, 0.025492972, 0.013978735, 0.0076319915, -0.02616872, -0.005064807, 0.0032677776, -0.014137735, 0.007393492, 0.009559864, -0.007380242, -0.013514985, 0.024499223, 0.010606613, -0.030130466, 0.022975475, -0.03553646, -0.013912485, -0.002808997, -0.002509216, -0.014283484, -0.0098381145, -0.01927873, -0.020325478, -0.0013987016, -0.03331046, -0.019941228, 0.0023916224, 0.0035344337, 0.009612865, 0.0018814979, 0.017410481, -0.023518724, -0.011606988, -0.023081474, -0.022312975, 0.0044685574, 0.05649794, 0.00033228478, -0.015568733, -0.009639365, -0.0041472455, -0.0071549923, 0.0030557779, 0.02644697, 0.0057306187, -0.03667596, 0.007108617, -0.016774481, -0.015422983, 0.010089864, -0.011163113, -0.019980978, -0.013090986, -0.030236466, 0.017807981, 0.008387241, 0.008778116, -0.008506491, -0.021146977, -0.0085727405, 0.015807232, 0.0039087455, -0.012004487, 0.030289467, 0.006184431, 0.016138483, 0.0064991177, 0.032992464, -0.00902324, 0.016045732, 0.008135491, -0.014720734, -0.012951861, 0.015886733, 0.012507986, 0.03686146, 0.008307741, -0.009546614, 0.020762727, -0.029335467, 0.019782228, -0.016231231, 0.0040014954, 0.0041538705, 0.02779847, 0.007267617, 0.0033671525, -0.037735958, -0.012342362, -0.013713735, 0.019530479, 0.0050051818, 0.01925223, 0.03736496, 0.014800234, -0.014866483, 0.00091756147, 0.0022707162, -0.009261739, 0.0025506222, -0.047858946, 0.0078042415, -0.0051012444, 0.021438476, 0.007108617, -0.01896073, -0.008102366, 0.030315967, 0.007095367, 0.031932466, 0.005521931, 0.016774481, 0.021941977, -0.019901479, 0.031667463, 0.010460864, 0.028328469, 0.03672896, 0.011434738, -0.015846983, -0.008075866, 0.013899235, -0.007101992, -0.008168616, 0.00060411653, -0.0068104924, -0.011553987, 4.637495E-05, 0.015078483, 0.0134884855, 0.012408611, 0.009109365, 0.016496232, 0.007857242, 0.015277233, 0.020895228, 0.01702623, 0.010248864, 0.00863899, 0.0039021207, 0.016217982, -0.023558473, -0.042240955, -0.029944967, -0.010434364, 0.0024114973, 0.031693965, -0.02745397, 0.016721481, -0.01783448, -0.016615482, -0.0057670563, -0.006091681, -0.004216808, -0.013196985, 0.0002770075, 0.009705614, -0.008532991, 0.027665969, 0.0036868085, 0.0022127475, -0.009758614, -0.014203984, 0.026036222, 0.008082491, 0.023849973, 0.01845723, -0.0042267456, -0.011805737, 0.0036768708, 0.015356733, 0.0011121706, 0.011004113, -0.023743974, 0.026036222, 0.012998235, 0.00051550724, 0.006088368, -0.011613612, -0.01925223, 0.023452474, -0.015078483, -0.011010738, -0.037046958, -0.019437728, -0.004673932, 0.0060353684, -0.01349511, 0.009241865, -0.011123363, -0.0018897791, -0.0024611847, -0.00467062, -0.024061974, 0.00930149, -0.007333867, -0.014429234, -0.026380721, -0.00862574, 0.0057604313, 0.0947639, -0.006287118, -0.0027576531, 0.012276111, 0.008214991, -0.02758647, -0.040968955, -0.03490046, 0.0008778115, -0.007194742, 0.0005867259, -0.012024362, 0.033495963, -0.0077512413, -0.02716247, 0.015263983, 0.0015138108, -0.010566863, -0.0012082331, 0.010308488, 0.0017672168, -0.030978465, -0.010023614, 0.026234971, 0.024949722, -0.011626862, -0.003590746, 0.032197464, 0.009294865, -0.010891488, -0.010063364, -0.01900048, 0.011156487, 0.012017737, -0.0013514985, -0.016310733, 0.0025555908, -0.013740235, 0.024300473, -0.005710744, 0.0071483674, 0.014455734, 0.01845723, -0.011189613, -0.005230432, -0.003035903, -0.021822726, -0.0055020563, -0.00891724, 0.00022545678, 0.01767548, 0.015263983, -0.012567611, 0.011249238, -0.015356733, 0.006187743, 0.0043360577, 0.002201154, -0.010527113, -0.04648095, -0.007009242, -0.04367195, 0.025863972, -0.020775978, -0.014455734, -0.028990967, 0.0070821173, 0.005336432, -0.016350482, -0.013064486, -0.011434738, -0.029176468, -0.015873482, 0.0019659665, 0.030607466, -0.00951349, 0.008195116, -0.008566116, 0.01345536, 0.019146228, -0.0024164661, -0.004292995, 0.02777197, -0.013369235, 0.020060478, 0.006747555, 0.023571724, -0.032117963, -0.007824116, 0.010341614, 0.013037985, -0.013150611, 0.039961956, -0.020722978, 0.019318478, 0.00931474, -0.0057769935, 0.011587112, 0.010063364, -0.01815248, 0.026287971, -0.01762248, -0.0060486184, -0.000156826, 0.03752396, 0.009520114, -0.014972484, -0.012534486, -0.014508734, -0.0026019658, 0.012395361, -0.021120477, 0.0034814337, -0.010474114, 0.0028752468, 0.01750323, -0.0076982416, 0.014230484, 0.00973874, -0.0070556174, -0.020961476, -0.04653395, 0.017635731, 0.010917988, 0.0027377782, 0.010957738, 0.005223807, -0.020577228, 0.014932734, -0.013249985, -0.016138483, 0.01844398, -0.022339476, -0.023187475, -0.014707483, -0.033495963, -0.01827173, 0.025333973, 0.0040876204, 0.012799486, -0.03651696, 0.022657475, 0.016072232, 0.015237483, -0.011368487, -0.01800673, -0.019676229, 0.0017059356, -0.02604947, 0.028063469, 0.0075988667, 0.008870865, -0.005820056, 0.0029414967, 0.006267243, -0.038663458, -0.013435485, -0.014959234, 0.016072232, 0.020365227, -0.024326973, 9.264638E-05, 0.010798738, 0.012216487, 0.0042698076, 0.015316983, -0.031322967, -0.003370465, -0.024684723, 0.0068899924, -0.002949778, 0.008539615, -0.003782871, -0.013190361, 0.019358229, 0.01868248, -0.013938985, -0.01668173, 0.0068502426, -0.021425227, 0.0007188117, -0.010189239, -0.021478226, -0.025439972, 0.00028156218, 0.0015709514, 0.039034456, 0.008267991, 0.014773734, 0.017953731, 0.023571724, -0.025426721, 0.023863224, 0.0035741837, 0.005979056, 0.014150985, 0.0014541859, -0.040385954, -0.019066729, 0.0068436177, 0.006184431, -0.011050488, 0.017529732, 0.004130683, -0.021743227, 0.006936367, 0.009944114, 0.00032048402, 0.009778489, -0.012196612, -0.0012065768, -0.019265478, -0.008857615, -0.039405458, 0.0110306125, 0.010407863, -0.007850616, 0.021252977, -0.015118233, 0.00110803, -0.015952982, -0.00865224, 0.042028952, 0.026036222, -0.0015866858, -0.0004430464, -0.02737447, -0.0046474324, 0.0024794035, 0.0026665595, -0.007466367, 0.01750323, 0.0032909652, 0.007241117, -0.0075259916, 0.005306619, 0.01326986, -0.014097985, -0.014747234, 0.0119647365, 0.012415236, 0.0029381842, -0.00468387, -0.014733984, -0.009241865, 0.035509963, -0.00025050752, -0.0108583635, 0.0056478065, 0.0056676813, -0.017092481, 0.019212479, -0.03543046, -0.0008260538, -0.004531495, -0.025598971, -0.00075400696, -0.011653362, -0.0020719664, -0.010546989, 0.024552222, 0.02681797, -0.0040809955, -0.00934124, 0.015489233, 0.027745469, 0.0056511187, 0.0043758075, 0.009619489, 0.031720467, 0.00014885531, -0.015369983, -0.00044056203, 0.016893731, 0.032806963, -0.011977986, -0.015555483, 0.0048196823, 0.019172728, 0.008519741, -0.012117112, -0.0017241543, -0.010606613, -0.013925735, -0.020881977, 0.00049231976, -0.020378478, -0.01346861, -0.010288614, -0.022869475, -0.006078431, -0.0056842435, -0.012686861, 0.048574448, -0.0022723726, -0.0017307793, 0.0079698665, 0.004322808, -0.033495963, 0.005611369, 0.009606239, 0.015409733, -0.001808623, 0.014826734, 0.024035474, -0.012143612, -0.005892931, -0.024737723, -0.006253993, -0.041286953, 0.0136607345, -0.0018467167, -0.016906982, -0.010381363, 0.006088368, -0.0026914033, 0.02750697, -0.0067111175, -0.040624455, 0.010586739, 0.012030987, -0.0017009669, 0.016959982, -0.028805468, -0.0040710582, 0.007333867, 0.02861997, -0.00211006, -0.00859924, -0.011004113, -0.004766682, 0.007207992, 0.0078837415, -0.021809475, 0.012892236, -0.021769727, -0.0054093064, 0.013064486, 0.011381738, 0.014945984, 0.011818987, 0.024936473, 0.021239726, 0.025280973, 0.0008446866, -0.011805737, -0.0058531812, -0.025638722, -0.014071484, -0.014733984, 0.008473366, 0.032064963, -0.007188117, -0.02705647, 0.0060254307, -0.0021349038, -0.039802957, 0.012302611, 0.025585722, 0.037444457, 0.031402465, 0.016376982, 0.00014957991, 0.032303464, -0.004557995, 0.028566968, -0.024936473, -0.022975475, -0.012329112, 0.007088742, 0.0015792326, -0.003918683, -0.030289467, -0.008632366, 0.02713597, 0.010063364, -0.00469712, 0.012931986, -0.022511724, 0.004183683, 0.012242987, 0.025148472, 0.028487468, 0.007174867, 0.033681463, -0.022365976, 0.0075458665, -0.01791398, 0.012415236, 0.0051906817, 0.0010848426, 0.01762248, 0.0009515146, 0.01922573, -0.025108723, -0.032117963, 0.005704119, -0.019941228, 0.00094571774, 0.0001949197, 0.0032876527, 0.017211732, 0.0031170591, -0.02647347, -0.014654484, 0.019503979, -0.0049289945, -0.01827173, -0.0058531812, -0.014349734, -2.166062E-05, -0.02713597, 0.005425869, 0.011765987, -0.0017340918, 0.003928621, -0.014084734, 0.005833306, 0.012507986, 0.029282467, -0.033389963, -0.010984238, 0.00070224924, -0.0054755565, 0.0036801836, -0.0065355552, 0.016085483, -0.015396483, 0.019517228, -0.015237483, -0.018549979, -0.007234492, 0.010527113, 0.025400221, 0.0074597416, 0.012183362, 0.20468578, 0.010911363, -0.00025982392, 0.04502345, 0.005260244, 0.03365496, -0.0034880587, -0.008884115, -0.004306245, 0.006187743, -0.032170966, 0.015449483, -0.00844024, -0.0067906175, 0.015250733, -0.024247473, -0.022511724, -0.016297482, -0.03574846, 0.0011775924, 0.005336432, -0.015263983, 0.0019643104, -0.01800673, -0.007870492, -0.015568733, -0.0068833674, -0.013713735, 0.023518724, 0.019530479, -0.001795373, -0.04624245, -0.0075524915, -0.0018715605, -0.021849226, 0.020895228, 0.01888123, -0.0020587165, -0.0065090554, 0.016641982, -0.0061380556, -0.004663995, 0.0012156862, 0.016628731, -0.005336432, 0.007419992, 0.0045348075, -0.0017721856, 0.020444727, 0.009811615, -0.05323844, -0.0005834134, 0.0032197465, 0.022286475, 0.00894374, -0.0006720227, 0.038636956, -0.005959181, 0.016244482, 0.015369983, -0.00061819464, 0.03792146, -0.013952235, 0.015860233, -0.0019046854, 0.039511457, -0.0014955921, 0.029441468, 0.01848373, -0.008493241, -0.0024098412, -0.009824865, -0.022100976, 0.022644226, -0.008513115, 0.0065719928, 0.0078108665, -0.014137735, 0.020404978, 0.008347491, -0.010831863, -0.004316183, -0.01770198, -0.012647111, 0.004124058, -0.040915955, 0.00020992945, -0.019530479, 0.014349734, -0.0068899924, 0.017238231, -0.010639738, 0.006638243, -0.020802477, 0.0055418066, 0.020206228, -0.00914249, 0.032700963, -0.029997967, 0.0012719986, -0.030315967, 0.015157984, -0.013203611, -0.016310733, -0.034131963, 0.015091733, 0.0053794943, 0.00956649, 0.010937863, -0.004892557, 0.005697494, 0.007188117, 0.010951113, -0.0069893673, -0.0006401399, -0.0032909652, 0.023147725, -0.005405994, 0.0033290589, -0.024008974, -0.0061082435, -0.018973978, 0.0044420576, 0.003049153, -0.008181866, -0.014124485, -0.008062616, 0.034131963, -0.0015585296, -0.030978465, -0.01764898, -0.015568733, 0.024949722, -0.002115029, 0.016310733, -0.00936774, -0.014111235, -0.028169468, -0.007466367, 0.0039617456, 0.01722498, -0.0067972424, 0.011196238, 0.0056014312, 0.010447614, 0.002956403, 0.012647111, -0.0074266167, -0.009957364, 0.0045083077, -0.008976866, -0.023637975, -0.0010657957, -0.0007788507, 0.010593363, -0.03776246, -0.048441947, -0.020656727, 0.029891968, -0.0069827423, -0.019358229, -0.010129614, 0.009778489, -0.030342467, -0.0006115696, 0.0076121166, -0.16938782, 0.017953731, 0.011096863, -0.0105138635, -0.022577975, 0.011004113, 0.0074464916, 0.0011560612, -0.024830472, 0.010407863, 0.02734797, -0.013885985, -0.03513896, 0.00011065808, 0.014455734, -0.002209435, -0.002929903, 0.01847048, 0.015608483, -0.0070688673, 0.01878848, 0.0047468073, 0.008360741, -0.008095741, 0.007923491, -0.015475983, 0.01905348, -0.00461762, -0.0012604048, -0.029335467, 0.002423091, 0.0005618822, 0.022829724, -0.01648298, 0.0155289825, -0.009188865, -0.020404978, -0.011779237, -0.015634982, 0.011527487, -0.005959181, -0.01800673, 0.0066150553, 0.0039683706, -0.00457787, 0.014296735, -0.01847048, -0.0020438102, -0.016840732, -0.012574236, 0.009950739, -0.031905964, 0.016019233, 0.005150932, 0.020126728, 0.001854998, 0.0025241221, -4.3243606E-05, 0.0029448092, 0.0067508677, -0.018920979, -0.028672969, 0.0011337019, -0.01809948, -0.017980231, 0.0041406206, 0.010652988, 0.02724197, 0.0019162791, 0.014654484, -0.015051983, -0.003709996, -0.0017374044, -0.02750697, 0.006707805, 0.0021398726, 0.015740983, -0.016337233, -0.0014839984, -0.010076614, -0.0057471814, 0.041604955, -0.022286475, 0.024671473, -0.03405246, 0.0049952446, -0.032515462, -0.0004997729, -0.0076982416, -0.016072232, 0.0053695566, -0.02585072, 0.0032594963, -0.0061082435, 0.021676976, 0.02777197, 0.010189239, -0.014296735, -0.0050151194, -0.0014334827, 0.009586364, 0.0032992463, -0.005170807, 0.016151732, 0.024658224, -0.0075591165, 0.010063364, -0.003650371, 0.029865468, 0.000607015, 0.0043559326, 0.0036404335, 0.015051983, -0.0075458665, 0.0032611527, -0.012415236, -0.016800981, -0.011388362, -0.00034222228, -0.010785488, 0.020285727, -0.011666612, -0.034237962, -0.010639738, 0.009612865, 0.0004484292, -0.08358091, -0.008718491, 0.019795477, 0.003229684, -0.01329636, -0.008294491, -0.00899674, 0.024353473, 0.0011693112, 0.011891861, -0.00440562, -0.012388736, 0.0075193667, 0.01356136, 0.02827547, 0.00068817113, 0.024538973, -0.01685398, -0.028752469, 0.01312411, 0.0031452153, -0.023425974, 0.016628731, -0.01817898, 0.0043559326, -0.019821977, -0.029149968, -0.00931474, 0.02716247, 0.022114225, -0.003656996, -0.021425227, 0.007923491, -0.022975475, -0.0049886196, -0.011375112, -0.04425495, 0.0003823863, 0.017065981, -0.017980231, -0.008665491, -0.0019295291, 0.010527113, -0.04497045, -0.026089221, -0.01717198, -0.024048723, 0.011792487, 0.01942448, -0.034264464, -0.024764223, -0.0026284659, -0.019119728, -0.022498475, 0.008168616, -0.0146809835, -0.0026980282, 0.026102472, 0.009857989, -0.0018169043, 0.009274989, 0.010341614, 0.0062374305, 0.011580487, -0.014906233, 0.012401986, -0.010321738, 0.006929742, -0.0025141847, -0.0053894315, 0.006267243, -0.012189986, 0.007413367, 0.018867979, -0.01942448, -0.009175614, -0.03845146, -0.018947478, 0.0049554943, -0.0026433722, -0.0066912426, -0.021160226, 0.033469465, -0.010639738, 0.011507613, 0.022339476, 8.7781154E-05, -0.016708232, -0.0091623645, -0.013872734, 0.0011883581, 0.003236309, 0.019702729, 0.0013192017, -0.011693113, -0.009433989, -0.0008687022, -0.026950471, -0.023929473, -0.013620985, -0.012461611, 0.015939733, -0.079605915, 0.014402734, 0.020736227, -0.01786098, 0.025678473, -0.008347491, 0.007472992, -0.005704119, -0.007578992, -0.0114479875, -0.0020703103, -0.0071483674, 0.014349734, -0.0016090451, -0.028964467, -0.013819735, 0.00955324, -0.0058564935, 0.0022243413, 0.021822726, -0.015648233, -0.0037795582, -0.0035609335, -0.004958807, -0.034423463, 0.017529732, -0.023651224, 0.004064433, -0.0037066834, -0.014919483, 0.007930117, 0.0016496232, 0.0004910776, 0.04457295, -0.015966233, -0.043830954, -0.009202115, 0.01962323, 0.014786984, -0.026155472, -0.016549231, -0.017529732, 0.029600468, 0.01861623, -0.041313455, -0.007095367, 0.015290483, 0.007877116, 0.0067839925, 0.00449837, 0.025400221, 0.010089864, 0.013991985, 0.0023386225, -0.0050349943, -0.024525722, -0.012156862, -0.016085483, -0.008161991, -0.0054954314, 0.04674595, 0.01873548, 0.024432974, 0.01848373, 0.0035311212, 0.004504995, -0.014230484, 0.023425974, 0.0044354326, -0.023690974, -0.00089851464, 0.015767483, 0.033787463, 0.012362236, 0.007201367, 0.006651493, 0.015833732, -0.011474487, -0.007837366, 0.03553646, 0.00910274, -0.0136607345, -0.027665969, -0.0041406206, 0.008069241, 0.010997488, -0.012097237, 0.010222363, -0.012633861, 0.014998984, -0.020153228, 0.0027129345, -0.005866431, 0.007227867, 0.0058366186, 0.010003739, 0.008506491, 0.011785862, 0.016602231, 0.015608483, -0.0026533096, 0.0059823683, -0.011958112, -0.024883473, 0.011156487, -0.008393866, 0.0034184963, -0.020603728, 0.0005685072, 0.024459474, -0.0017026231, -0.015422983, -0.033045463, 0.005412619, -0.011507613, -0.008751615, 0.0075326166, -0.03747096, -0.0066084303, 0.021928726, -0.0017274668, 0.033416465, 0.012739861, 0.0057902434, -0.00060080405, -0.0016206389, 0.0016852325, 0.008831115, -0.01881498, 0.0028835281, 0.010003739, -0.007327242, -0.0059094937, -7.774015E-05, -0.022829724, -0.01772848, 0.0038159958, 0.008877491, -0.01845723, 0.07372292, 0.01784773, 0.0042631826, 0.03678196, -0.00070431957, 0.024989473, 0.042770952, -0.0026135596, -5.3362244E-05, -0.042081952, 0.03662296, 0.0036735584, 0.0017639044, 0.016191483, -0.026380721, 0.00089934276, 0.025559222, 0.0030276217, -0.020484477, -0.006174493, 0.031137466, -0.03786846, 0.024432974, -0.004322808, -0.00882449, -0.012362236, 0.017953731, -0.00449837, 0.0061214934, -0.004491745, 0.016959982, -0.016575731, -0.028089968, 0.0077843666, -0.007320617, -0.014548484, -0.029335467, 0.014627984, -0.0028851843, -0.012454987, 0.0124682365, 0.021862475, -0.0010136239, 0.00023932786, 0.03336346, 0.011136613, -0.0018053105, -0.004965432, -0.031614464]
+ },
+ {
+ "Id": 97,
+ "Type": "Bags",
+ "Brand": "Quester",
+ "Name": "Gravity Waterproof Dry Bag",
+ "Description": "Keep your essentials dry and secure with the Quester Gravity Waterproof Dry Bag. This versatile bag, in vibrant orange, features a roll-top closure system, adjustable shoulder straps, and durable PVC-coated fabric to withstand water, sand, and dirt. Ideal for adventures on land or water.",
+ "Price": 49.99,
+ "Embedding": [0.02063212, -0.0016778104, 0.008643369, -0.010124895, 0.0033283117, 0.021765452, -0.018966256, -0.0316787, 0.012248187, -0.023677098, 0.005332126, 0.018665854, 0.00070235913, 0.022448182, 0.0068750973, -0.016344571, 0.02569798, 0.007093571, 0.0048644557, -0.027937336, 0.013757022, -0.0050795157, -0.0025005008, 0.0010198288, -0.017846579, -0.02709075, 0.02075501, -0.012760235, 0.018420072, -0.022803202, 0.007469073, 0.0012075797, -0.03140561, 0.0007787396, 0.0006754766, 0.0024561232, -0.004052006, 0.01740963, 0.0037277092, -0.0031542154, 0.020836938, 0.02232529, 0.015293166, 0.008247386, -0.017996779, 0.0004145455, -0.025506815, -0.01921204, 0.007687547, 0.00038851638, 0.014719672, 0.006182126, 0.0038540142, -0.007844575, -0.014733327, 0.0046493956, 0.010275096, -0.0011819773, 0.025247378, -0.030395167, -0.031105207, -0.0024748985, -0.010370678, 0.0003614205, 0.015429712, -0.013873086, -0.004557227, 0.0034392555, 0.021628905, 0.011265055, 0.010309232, 0.010534533, 0.020004006, 0.016808828, 0.010473087, -0.004704014, -0.016098788, 0.0011367465, -0.0068136514, 0.010944172, 0.010090758, -0.007953811, -0.02063212, -0.0011947786, 0.0069706794, 0.024045773, -0.0022188744, 0.021437742, -0.024673885, -0.014255415, 0.005536945, 0.0051204795, 0.013313247, 0.014282724, -0.010903208, -0.006455218, 0.008930116, 0.030777495, 0.005533532, -0.02886585, -0.0017230414, 0.01637188, 0.0057724873, -0.014323688, -0.021574287, -0.020263445, 0.012978708, -0.019280313, 0.015211238, -0.001986746, -0.04541524, 0.00037678194, 0.029384725, -0.013354211, 0.002841866, 0.0051614433, 0.026749386, 0.016385535, -0.0029340347, -0.041100383, 0.023199186, -0.017873887, 0.039953396, -0.014105215, -0.007428109, 0.03028593, -0.034682713, -0.0010949292, 0.03916143, 0.010452606, 0.0068443744, 0.045142148, 0.014528507, -0.018706819, -0.009715256, 0.038888335, -0.018515654, 0.010910035, -0.012207223, 0.00073350867, -0.0015950294, 0.024223281, -0.03413653, -0.027309224, 0.003550199, 0.0074759, 0.015784731, 0.017723687, 0.016030515, 0.010397987, 0.022912439, 0.0005086343, 0.012691962, 0.018952603, -0.006571282, -0.013046982, 0.010766662, 0.019457823, -0.0093397545, -0.016604008, -0.033699583, 0.020495573, 0.017204812, -0.0045640543, 0.012808026, 0.013258629, -0.0013125496, -0.022734929, 0.0034119461, 0.0033965847, -0.009510437, 0.0313783, -0.02483774, 0.025001595, 0.011592765, 0.026039345, 0.036348578, -0.0023349386, -0.0167269, -0.00023276846, -0.01013855, 0.011981922, -0.01092369, 0.007496382, -0.02483774, -0.0055130497, -0.00059056195, 0.00093022047, 0.018215252, -0.019689951, 0.0074349362, 0.003058633, -0.031897172, 0.025069868, -0.64974105, -0.008998389, -0.006393772, -0.040663436, 0.03170601, 0.016030515, 0.016918065, 0.021069067, 0.0018996979, 0.002903312, 0.0066259005, 0.034682713, -0.034355003, -0.020618465, -0.0073325266, -0.0051102387, 0.012930918, -0.0038540142, 0.031050587, -0.0013099894, -0.025301997, 0.011934131, -0.0064483904, 0.003857428, 0.022052199, 0.010950999, -0.009667465, -0.02777348, -0.0043524075, 0.026093964, -0.022270672, 0.024236936, 0.0013441258, 0.02516545, 0.05778632, -0.018078707, 0.0050590336, 0.03348111, 0.009367064, 0.035256207, -0.009114454, -0.015921278, 0.025151795, -0.0012485436, -0.012343769, -0.0015387041, 0.023922881, -0.005164857, 0.0051204795, -0.011742966, 0.016467461, -0.0038198777, 0.015784731, -0.012070677, 0.033863436, -0.017136538, 0.018146979, 0.0015489451, 0.013074291, -0.008090357, -0.010705216, 0.028920468, -0.010090758, -0.030012837, -0.016740555, 0.01930762, -0.036703598, -0.009674293, 0.016808828, -0.020550191, 0.007714856, 0.004052006, 0.0149518, 0.019648986, 0.008991562, 0.05344415, 0.025930109, 0.0071550165, 0.0065337317, -0.0039222874, 0.01915742, -0.013606821, 0.019840151, 0.005202407, 0.03724978, -0.007974293, 0.0030091351, 0.0031251993, 0.02253011, -0.011189954, -0.007339354, 0.03279838, -0.005502809, -0.00541064, -0.030067455, 0.015047383, -0.010698388, 0.021369468, 0.03413653, -0.009640156, -0.006543973, -0.0017870474, -0.02362248, -0.023554206, -0.014583126, 0.017887542, 0.015907623, 0.019689951, 0.02288513, -0.019689951, 0.018024089, -0.01992208, -0.025424888, -0.030449785, -0.009182727, -0.036375888, 0.03200641, -0.020987138, 0.021929307, -0.050440136, 0.0040588332, -0.01761445, 0.013893568, -0.003039858, -0.023431314, 0.014924491, -0.0054072263, 0.0050317245, -0.051150177, -0.0073530087, 0.005929515, 0.0045128493, 0.004516263, 0.013163046, 0.00015958828, 0.02326746, 0.011196782, -0.009626501, 0.019676296, -0.023731716, -0.0046562226, -0.017068265, 0.0038130505, -0.02463292, -0.015429712, -0.015812041, -0.02691324, -0.02362248, -0.006837547, -0.027459426, -0.003444376, -0.012384733, -0.0005355168, -0.0010624995, -0.008677506, -0.031924482, -0.009244173, -0.011210437, 0.005912447, -0.012289151, 0.020304408, -0.012650998, -0.025534125, -0.012036541, -0.021683523, -0.01021365, -0.0015395575, 0.028374285, -0.014583126, -0.043394357, 0.009462646, -0.0069911615, -0.010254614, 0.030449785, -0.0016155113, 0.01181124, -0.028128501, -0.013620475, 0.024141354, 0.0033590347, -0.0066224867, -0.030094765, -0.027636934, 0.0037857413, 0.015634531, -0.016822482, -0.0020123485, 0.03380882, -0.016849792, 0.012302806, 0.024769466, 0.0009344875, 0.00083335803, -0.0043046162, -0.024824085, -0.02131485, 0.00048601886, 0.008452205, 0.015907623, 0.009346582, 0.031979103, -0.0313783, 0.016030515, -0.020236135, 0.00704578, -0.0074417638, 0.0028043159, -0.01013855, 0.04787307, 0.021028103, -0.006028511, -0.01163373, -0.006434736, -0.016740555, 0.0061548166, 0.0223526, 0.020823283, 0.0056905597, -0.0114562195, 0.014596781, 0.022584729, -0.0071208803, -0.0003409386, -0.0033880507, -0.037003998, -0.00914859, -0.0035263037, 0.0041953796, 0.0026404606, -0.017245775, 0.013688749, 0.0043489938, 0.022775892, 0.0059670657, 0.0299036, 0.014924491, 0.0034648578, -0.018010434, 0.037003998, 0.0024663643, 0.026312437, 0.0074827275, 0.021000793, -0.00044846867, 0.0058100373, 0.002165963, 0.027609626, -0.012903608, -0.0019099389, -0.001839959, 0.011135336, -0.017887542, -0.024537338, -0.010677907, 0.009558229, -0.008684333, 0.035338137, -0.0021779106, 0.014378306, 0.010657425, -0.016999992, 0.019867461, -0.007885538, -0.005011243, 0.028647376, -0.020823283, -0.0077694743, -0.005939756, -0.024059426, -0.012029713, 0.009319273, -0.028838541, 0.014364652, -0.005499395, -0.009619675, 0.0019816256, 0.010534533, -0.0057417643, -0.02199758, -0.001996987, 0.012405215, -0.02569798, 0.0040212832, 0.034764644, 0.013238147, -0.010869071, -0.015320475, 0.024550993, -0.002007228, 0.027377497, 0.019908424, 0.0025346375, -0.004683532, -0.00800843, -0.008158631, 0.012610034, 0.004881524, -0.028838541, 0.011271882, -0.027077096, -0.015798386, -0.0016377, -0.013668267, -0.030176694, 0.020386336, 0.006386945, -0.025151795, -0.0028299184, 0.009646984, 0.020113243, 0.016918065, -0.005263853, 0.011032927, 0.0015267563, 0.000309789, -0.012521279, 0.0048337327, -0.013081118, 0.031187134, 0.023253804, -0.019198384, -0.033890747, -0.010636942, -0.010814453, 0.07641121, 0.008588751, -0.018993566, 0.025629707, 0.003225902, -0.03200641, -0.024236936, 0.001761445, 0.012309633, -0.020085935, 0.008349795, 0.0023844365, -0.0050044153, -0.023485932, -0.0013210837, 0.011319674, -0.007960639, -0.026612839, -0.0139754955, -0.0148698725, 0.00044249478, -0.010118067, -0.0038232915, 0.031214444, 0.005963652, -0.0025039145, 0.017177502, 0.023963844, 0.013374693, 0.01906184, 0.0128421625, -0.00011094372, 0.0113811195, 0.0023093363, -0.018420072, -0.0074212817, -0.00087901566, -0.00828835, 0.036785524, -0.009059835, -0.008308832, 0.018501999, 0.012057022, -0.012453007, 0.028565448, -0.006328913, 0.0014320274, 0.020481918, 0.00953092, -0.010002003, 0.028756613, 0.005557427, -0.020714046, -0.024182318, 0.011940958, 0.022379909, 0.00090973853, 0.009974694, -0.0038130505, -0.06357587, 0.016385535, -0.008602406, 0.021587942, -0.004031524, -0.024277901, -0.03132368, -0.022379909, 0.0026524083, -0.030777495, 0.0019014047, -0.007762647, -0.009776702, -0.0023673684, -0.0070594344, 0.016849792, -0.0053935717, 0.026817659, 0.008028912, 0.027404806, -0.0032788138, 0.013272283, -0.015880315, -0.006455218, -0.00765341, 0.005666664, 0.022161435, 0.01622168, 0.0027138542, -0.0009959333, 0.002932328, 0.005352608, 0.008711643, 0.01900722, 0.0042465846, -0.008930116, 0.013402002, 0.030340549, 0.0017460835, 0.016986338, -0.00629819, 0.015443366, -0.018310836, -0.0015318769, -0.022898784, 0.028756613, -0.0111763, 0.013941359, 0.022216054, -0.0021215854, 0.022038544, 0.020399991, -0.020591155, 0.013668267, -0.017901197, -0.0128421625, 0.025534125, 0.01930762, 0.027718863, 0.0017042663, -0.024346173, -0.014610435, -0.03413653, 0.016740555, 0.009141763, 0.0069638523, 0.017983124, -0.0063801175, -0.0090256985, -0.028292356, -0.0018058225, 0.009012044, 0.0014055716, -0.0027514044, 0.010589152, -0.0051819254, -0.01259638, -0.010302405, 0.0072096353, -0.005137548, -0.013019673, -0.023458624, 0.0021437742, 0.014432925, -0.001077861, -0.018556617, -0.01705461, -0.017682722, -0.013818467, -0.00238273, 0.017150193, -0.0053696763, 0.010677907, -0.02093252, -0.013613649, -0.009776702, -0.04254777, -0.009059835, 0.006267467, 0.022871476, 0.010916863, 0.018706819, 0.011729312, 0.028292356, 0.025616052, -0.0010326301, 0.015962241, 3.760352E-05, -0.025943764, -0.014555817, 0.008069876, -0.014350997, -0.0058236923, -0.0029971874, -0.027636934, 0.0058236923, 0.013859431, 0.005342367, -0.012869472, -0.019184731, -0.045661025, 0.00015382774, -0.0027292157, 0.0022410632, -0.010985135, -0.039052192, -0.003997388, 0.034600787, 0.012637343, -0.0012792664, -0.00871847, 0.025206413, -0.020700391, -0.0071754986, 0.018324489, 0.02111003, 0.011865858, -0.0030774083, -0.024865048, -0.008479514, 0.0044684717, 0.0042875484, -0.018174289, 0.009612847, -0.009250999, -0.009271482, -0.0042261025, -0.010029312, -0.019403204, 0.03274376, -0.00970843, -0.019608023, -0.004789355, -0.029466653, -0.033863436, 0.016385535, 0.013770676, -0.0047757006, 0.02709075, -0.017068265, -0.006001202, -0.010814453, -0.00629819, 0.034600787, -0.009421682, 0.011845376, 0.027787136, -0.0057315235, -0.0029237939, -0.02075501, 0.009892766, -0.028620066, 0.021697178, -0.0067180693, -0.004799596, -0.027732518, 0.010411642, 0.0028777095, 0.0046801185, -0.012780717, 0.0041953796, 0.040253796, 0.00086450763, 0.000804342, -0.021574287, -0.0021028102, 0.013763849, -0.023936534, -0.008022085, -0.012534934, 0.0105618425, -0.020359026, 0.014187142, -0.02851083, 0.016685937, 0.042110823, 0.0032941753, 0.0069877477, 0.007762647, 0.0076397555, -0.0021881517, -0.0014892061, -0.0056222863, -0.00094984897, -0.00676586, 0.009244173, 0.022666655, -0.0027036131, 0.016959028, 0.022994367, 0.02395019, -0.032607213, -0.0035979904, 0.0014670173, -0.0165767, -0.0004437749, 0.009769875, -0.01915742, 0.00338293, 0.013859431, -0.006414254, 0.005318471, 0.009995176, 0.00077703275, -0.030395167, -0.004212448, 0.0025738943, -0.008172286, -0.02339035, -0.0018382522, -0.02270762, -0.0541815, 0.0024817258, -0.0029459826, 0.012876299, -0.020345371, -0.015293166, -0.000153081, 0.0044138534, -0.010514052, -0.014118869, 0.037167855, 0.011326501, -0.043421667, 0.009612847, 0.011524493, -0.034737334, 0.006246985, -0.008124494, -0.006523491, -0.036512434, -0.024428101, 0.009053008, -0.014241761, 0.0046391543, -0.006021684, -0.0038608415, 0.022038544, 0.012261841, -0.009537746, -0.0010761541, 0.006274294, -0.021164648, 0.036102794, -0.02765059, -0.009346582, 0.0066293143, 0.032279503, 0.013538548, -0.01953975, -0.0127534075, -0.014214451, -0.002969878, 0.022871476, -0.030995969, 0.023458624, 0.0026097377, -0.014296379, -0.010309232, -0.0002809863, 0.009319273, 0.011879512, 0.0007783129, 0.02311726, -0.0071686716, -0.015907623, -0.004574295, -0.013845777, 0.008349795, -0.02078232, 0.008602406, -0.0012920677, 0.06581523, -0.0009797184, -0.029084323, -0.018925292, 0.015252202, -0.027910028, 0.025889145, -0.012405215, -0.0050214836, 0.020413645, 0.014187142, 0.01249397, 0.04224737, 0.007940157, 0.02306264, 0.03238874, -0.0050283107, -0.0032037133, 0.0039905603, 0.0073325266, -0.018925292, -0.018365454, -0.02602569, 0.004260239, 0.02501525, 0.021041756, 0.003748191, 0.002785541, -0.019785533, -0.012958227, 0.022065854, 0.029493961, 0.025042558, -0.0009916662, -0.025438542, -0.017327704, -0.015224893, 0.022666655, 0.012432524, -0.0081176665, 0.012309633, -0.009571883, 0.009619675, -0.031542152, -0.011435738, 0.00953092, -0.010793971, 0.019293968, 0.010684734, 0.004219275, 0.008397587, 0.019280313, -0.01903453, -0.029767055, 0.021519668, -0.019812843, -0.007346181, 0.008547788, -0.02552047, 0.011087545, -0.036676288, 0.010664252, 0.006274294, -0.015443366, -0.0027138542, -0.011360637, -0.0049259015, 0.02303533, -0.004693773, -0.012821681, -0.0074008, -0.015948586, -0.017819269, 0.0023332317, -0.012480316, -0.03028593, -0.025206413, -0.009510437, 0.0024817258, -0.018747782, -0.009237345, -0.01092369, 0.011975095, 0.013538548, 0.022270672, 0.19968505, 0.017095575, 0.0011828308, 0.038232915, -0.012698789, 0.030668259, 0.013354211, -0.02199758, 0.022052199, -0.012302806, -0.005990961, 0.013825295, -0.022625692, -0.009483128, 0.014077906, -0.004260239, -0.035802394, -0.012268669, -0.020304408, -0.005014656, -0.011019272, 0.0018706819, 0.007817266, 0.0016103908, 0.032825686, -0.018870674, 0.019840151, -0.013258629, 0.00537309, 0.002901605, -0.000983132, -0.038942955, 0.01971726, -0.013053809, 0.011476701, -0.0084590325, 0.0066839326, -0.0127670625, -0.007038953, 0.013545375, -0.00044292148, 0.01897991, 0.020154208, -0.0044718855, -0.017505214, 0.024318865, -0.015061038, 0.011981922, 0.0044206805, -0.030777495, -0.008342968, -0.0026233923, 0.006762447, 0.0039905603, -0.006397186, 0.0046562226, 0.00043033363, -0.025001595, -0.0012178207, 0.019785533, -0.0033573278, 0.0239775, -0.012985536, 0.02765059, -0.018816056, 0.012255015, -0.025643362, 0.0052297167, 0.0027036131, -0.018338144, -0.0033010026, -0.0022973884, -0.017177502, 0.027514044, -0.033180706, -0.013675094, -0.0012485436, 0.036375888, 0.0056120455, 0.008807225, 0.006308431, -0.006878511, 0.01224136, -0.011463047, -0.019430513, -0.02853814, -0.019662641, -0.014979109, 0.011626902, -0.01170883, 0.008977908, -0.042684317, 0.0018245976, -0.012951399, -0.009496783, 0.03279838, -0.021246577, 0.010657425, -0.0050522066, 0.006086543, -0.008418068, 0.009455819, 0.014364652, -0.014528507, -0.026517257, 0.015170274, -0.008711643, 0.053362224, -0.001327911, -0.017450593, 0.011394774, -0.007899193, 0.0057349373, -0.025397578, -0.004922488, 0.020946175, 0.0015728406, 0.007919675, 0.009244173, -0.015771076, 0.014200796, -0.014378306, 0.0018587341, -0.025069868, -0.0094285095, -0.015620876, 0.012371078, 0.004154416, -0.009879112, -0.05636624, -0.009954212, -0.010527706, 0.018379107, -0.033180706, 0.0028674686, 0.012227705, -0.010479915, -0.028783923, -0.01530682, 0.016986338, 0.0071277074, -0.0034887535, -0.0036969862, 0.016330916, 0.04683532, -0.025657017, -0.011463047, 0.008076703, -0.0031320266, -0.002164256, -0.0063186716, -0.008554614, -0.019498786, -0.013340556, 0.020686738, -0.026339747, -0.04219275, -0.03831484, 0.011613248, 0.010991963, -0.00704578, 0.0006972386, 0.020918867, -0.022543764, -0.0018604409, -0.015757423, -0.17499751, 0.03812368, 0.037085928, -0.016330916, 0.000999347, 0.0016812241, 0.024277901, 0.025028905, -0.02886585, -0.008657024, 0.0060353386, -0.0062538125, -0.045633715, -0.017887542, -0.0036628498, -0.012248187, -0.009332927, 0.023677098, 0.0017716859, 0.010930517, 0.015893968, 0.006540559, 0.010834935, -0.00034285878, 0.026708422, -0.00013110561, 0.00036675434, 0.026667457, -0.0028777095, -0.014378306, 0.00088584295, -0.025752598, 0.029821673, 0.0168771, 0.020836938, -0.017423285, -0.00480301, -0.0019338344, -0.0073939725, 0.032934923, -0.010869071, 0.021424087, 0.0062503987, 0.012514452, 0.01512931, 0.03812368, -0.0043148575, 0.004331926, 0.000580321, -0.022803202, 0.011183128, -0.019840151, -0.02889316, -0.0027718863, 0.0026216856, -0.0074759, 0.014514852, 0.013907222, 0.020167863, -0.011108027, -0.013449793, -0.015853005, 0.015566258, -0.016713245, -0.03659436, -0.01740963, -0.007073089, -0.016126096, -0.0023571274, 0.0055130497, -0.01743694, -0.0026438744, -0.0004983933, 0.005649596, 0.010370678, 0.0098313205, -0.010384332, 0.0028111432, 0.010411642, -0.007858229, -0.005086343, 0.03454617, -0.031269062, 0.007714856, -0.0033999984, 0.005076102, -0.024865048, -0.009551401, -0.002232529, 0.005895379, 0.016945373, -0.0037072273, -0.008957425, 0.008527305, -0.0069501977, 0.0027394565, 0.004734737, -0.016658626, -0.0025841354, 0.00042926686, 0.016139751, -7.467366E-05, -0.0010155617, -0.00097033085, -0.005577909, -0.010759834, 0.03238874, 0.0026148583, 0.03350842, -0.018938947, -0.008308832, 0.0035740947, -0.0021744969, 0.028073883, 0.00879357, -0.0023400593, 0.0041271066, -0.028265048, -0.0016513546, -0.035993557, 0.0074622454, -0.012876299, -0.0017085334, -0.00694337, -0.004977106, -0.0026814244, -0.10131722, -0.004645982, 0.008226904, 0.019430513, -0.021437742, -0.021710834, -0.006328913, 0.035993557, 0.008377105, 0.023240149, -0.0016428205, 0.008575097, -0.02483774, 0.0016120976, 0.021956617, -0.016672282, 0.006799997, -0.022093162, -0.003905219, 0.0037857413, -0.008349795, 0.012138951, -0.012569071, -0.006578109, -0.024865048, -0.0048644557, -0.0316787, 0.012043368, 0.024236936, 0.0066224867, 0.001918473, 0.015853005, 0.009940557, -0.035966247, -0.018283525, 0.0028521072, -0.034300387, 0.019594368, 0.0316787, -0.03025862, 0.0059773065, 0.0064688725, 0.015388748, -0.017832924, -0.0052775075, 0.0037925686, 0.00076977874, -0.005045379, -0.0022086336, -0.009162244, -0.019348586, -0.0134975845, -0.0018109429, -0.003533131, -0.003768673, -0.027377497, -0.017860232, 0.022543764, 0.032197576, -0.0006878511, -0.017805614, 0.01391405, -0.0024424687, 0.0139754955, -0.005253612, 0.0006242718, -0.013231319, -0.008581923, 0.0019526095, -0.012787544, -0.017177502, 0.013504411, 0.007038953, 0.04219275, -0.01989477, 0.0066054184, -0.017901197, 0.0044445763, -0.008397587, -0.0012178207, -0.014692362, -0.021710834, 0.027049787, -0.021697178, 0.013238147, 0.011463047, 0.0046767048, 0.0051614433, 0.013579512, -0.01862489, -0.007469073, 0.01791485, 0.035720464, -0.0075987917, -0.0056700776, -0.00050906104, 0.009565055, -0.028565448, -0.007182326, -0.014118869, -0.010029312, -0.008773088, -0.07766744, 0.016139751, 0.016003205, -0.0056325276, -0.014924491, 0.00070961314, 0.0011504011, 0.0052740937, -0.0018143565, -0.028155811, 0.0028606413, 0.0047483915, 0.0001562813, -0.035474684, -0.010916863, -0.041045763, 0.012664652, 0.019225694, 0.011019272, 0.010473087, -0.031815246, -0.0013577805, -0.017628103, -0.009367064, -0.015252202, 0.015607222, -0.013675094, 0.021123685, 0.0015643066, -0.009332927, 0.00017590981, 0.0011469874, 0.030040147, 0.02451003, -0.0035877493, -0.01512931, 0.0048098373, 0.0186522, -0.0013330315, -0.040936526, -0.012330115, -0.017778305, 0.026790349, 0.0065337317, -0.01761445, -0.0018484931, 0.002998894, 0.0030620468, -0.0030774083, 0.0040656608, 0.025861835, 0.0384787, 0.033180706, -0.02270762, -0.0034768055, -0.040936526, -0.013907222, 0.005038552, 0.00059056195, -0.00068827777, 0.031460226, -0.014979109, 0.03176063, -0.014282724, 0.016590353, 0.009769875, -0.01224136, -0.005997788, 0.017505214, -0.01327911, -0.022024889, -0.019853806, 0.03061364, -0.0016880514, 0.0054652584, 0.0028504003, 0.0030074283, -0.017696377, -0.017655414, 0.025834527, 0.0168771, 0.0071754986, -0.046944555, -0.0012459834, -0.0043558213, 0.0068989927, -0.0011956319, -0.0061275074, -0.01216626, 0.013449793, -0.026066655, 0.0015165154, -0.007994776, -0.020509228, -0.005509636, 0.041482713, 0.0054277084, 0.01224136, 0.008274695, 0.013040154, 0.0067829285, 0.020044971, -0.0093397545, -0.010500397, 0.003963251, 0.0059363428, -0.0017648586, -0.02554778, -0.02007228, 0.003642368, 0.012152605, -0.01568915, -0.011155818, 0.0018962843, 0.00032984422, 0.024974285, -0.00029165397, -0.022871476, -0.015511639, 0.0059738928, 0.0008273842, 0.02853814, -0.007114053, -0.014405616, 0.019457823, 0.010848589, 0.012152605, -0.005137548, 0.01622168, -0.00519558, 0.021656215, -0.0046084314, 0.029029705, -0.003795982, -0.0044206805, 0.0016530615, 0.0094285095, 0.03555661, -0.01142891, 0.06914695, 0.030586332, 0.00043524077, 0.02483774, 0.00055855897, 0.0017435233, 0.016672282, 0.017832924, -0.033208016, -0.025916453, 0.016453808, 0.0022956817, 0.009182727, 0.0027172677, -0.019963043, -0.008254213, -0.003570681, 0.01409156, -0.025657017, 0.015156619, 0.030914042, -0.005932929, 0.012152605, -0.0003733683, -0.0021574288, -0.01915742, 0.0017204811, 0.012650998, -0.015948586, -0.036430504, 0.024673885, -0.0031149583, -0.018611236, -0.031624082, -0.0013296178, -0.012377906, -0.020318063, 0.00063749973, -0.007953811, 0.04189235, 0.021000793, 0.022693966, -0.012357424, -0.042493153, 0.0046698772, 0.005099998, -0.04194697, -0.012357424, -0.0032156613]
+ },
+ {
+ "Id": 98,
+ "Type": "Jackets",
+ "Brand": "Legend",
+ "Name": "Element Outdoor Jacket",
+ "Description": "Gear up for any adventure with the Legend Element Outdoor Jacket. Available in charcoal gray, this jacket offers ultimate protection with its waterproof and windproof shell. The breathable fabric and adjustable cuffs ensure comfort, allowing you to explore in any weather condition.",
+ "Price": 179.99,
+ "Embedding": [0.011331418, -0.012172242, -0.014425388, -0.02300442, -0.025947304, 0.015502694, -0.0205345, -0.04837366, 0.0006630522, -0.01626469, -0.01756534, 0.0048478763, -0.0076593817, 0.0016438768, -0.00958408, -0.0019657547, 0.02251832, -0.0009434637, 0.0104249045, -0.006542662, 0.0054883477, 0.022728525, 0.0047953245, 0.002422296, 0.004076026, -0.028666845, 0.024975102, -0.01280286, 0.0340271, -0.010911006, 0.017341996, 0.02035057, -0.018445577, -0.022859905, -0.013144445, 0.0066510495, -0.009249065, -0.019982709, 0.01627783, -0.011121212, 0.028588017, -0.007876157, 0.002842708, -0.0016052842, -0.0009836984, 0.004476731, -0.0048216004, -0.0288245, 0.0038493976, 0.010089889, -0.020140365, 0.00030299227, -0.025369238, -0.0012423504, -0.006174802, -0.0029954356, 0.0030808318, -0.006871109, 0.032135244, -0.023713866, -0.032949794, -0.021559255, -0.024633517, -0.0150428675, -0.006352163, -0.017184341, -0.025001379, -0.008973169, -0.0085133435, 0.021493565, 0.019706814, 0.027326781, 0.01911561, 0.018839713, -0.0024567829, -0.019430919, -0.0019591858, 0.002213732, -0.0017095661, 0.011035816, 0.017460236, -0.028482916, -0.009124255, -0.0004216437, 0.025697686, -0.0021956675, 0.006253629, -0.00047583744, -0.014898351, -0.012651774, 0.011055523, -0.0066083516, -0.004998962, 0.0046606613, -0.023529936, 0.015292488, 0.009505253, 0.012901395, -0.0007697974, -0.021677496, -0.00083589734, -0.009768011, 0.008145483, -0.005990871, -0.031084215, -0.011495641, 0.008933756, 0.015634073, 0.019312678, 0.012343034, -0.030138288, 0.017315721, 0.02992808, -0.009367306, 0.016777068, -0.014083803, 0.015253074, -0.01267805, 0.013275824, -0.022058494, 0.017644167, 0.019338954, 0.01459618, -0.013492598, -0.0028525614, 0.0024830585, -0.029271187, -0.015147971, 0.0030923276, 0.009058566, 0.019627986, 0.020481948, 0.011738692, 0.0044340333, -0.032371726, 0.03568247, -0.014333422, 0.013354651, -0.0003473326, 0.008559327, 0.018813439, 0.013623977, -0.009951941, -0.0116730025, -0.006693748, 0.00340271, 0.00560002, 0.021677496, 0.0013819403, 0.0023566065, 0.028062504, -0.019864468, 0.043749128, -0.0028755525, -0.019246988, -0.0020215907, -0.0023139084, 0.020836672, -0.0016405922, -0.010431473, 0.0253561, -0.013623977, 0.00020507403, 0.0031859349, 0.017959476, 0.029612772, 0.00044176108, -0.014004976, 0.0020544354, 0.010470887, -0.0046705147, 0.044852708, -0.012947377, 0.010740214, 0.007199556, 0.030874008, -0.0022235855, 0.008519912, -0.021349048, 0.013013066, -0.0023566065, -0.010641679, 0.013965562, 0.0028115055, -0.013663391, -0.019706814, 0.013597702, 0.0056919847, 0.01095042, -0.033370204, 0.02869312, 0.0015716184, 0.0028262855, 0.000980414, -0.67181844, 0.006851402, -0.035708748, -0.01700041, 0.0349993, -0.01391301, 0.016960997, 0.01391301, -0.010135871, 0.004992393, 0.0057938034, 0.03208269, -0.0040398967, -0.023451108, -0.0085133435, -0.024239382, -0.009932234, -0.0049069966, 0.020337433, -0.002473205, -0.037364118, 0.0052485815, -0.013952424, -0.016685102, -0.024594104, -0.0063061803, 0.013742218, -0.023884658, -0.005603304, 0.012231362, -0.023293454, 0.0341322, -0.01125916, 0.014714421, 0.05312957, -0.040044244, 0.0013105031, 0.050738476, 0.025448065, 0.053103294, -0.003885527, -0.002233439, 0.0061945086, -0.0047986093, -0.011048954, 0.009511822, 0.035787575, 0.0118832085, 0.0012866907, -0.0035110973, 0.012132828, -0.008355689, 0.0052682883, 0.0075477096, 0.007836743, -0.0056131575, 0.02307011, 0.014780111, -0.008585602, -0.008894342, -0.016803343, 0.018550681, -0.016343517, -0.012441568, -0.019457195, 0.024751758, -0.024489, -0.014885213, 0.00612225, -0.023924071, 0.0037081654, 0.035209507, 0.0020429397, 0.024252519, 0.008145483, 0.015095419, 0.014123216, 0.004966117, -0.016593138, 0.012139398, 0.020547638, 0.002625933, -0.003488106, -0.027747193, 0.03400082, -0.028430363, 0.021060016, 0.0011126138, 0.020245466, 0.008355689, 0.030847732, 0.011482503, -0.009426426, -0.005544184, -0.036286812, -0.0137947695, -0.00021739079, 0.04640298, 0.014202044, -0.009347599, 0.0027573118, -0.0057313982, 0.005281426, -0.013157583, 0.008611877, 0.0145567665, 0.00748202, -0.010497163, 0.016238414, -0.02418683, -0.0061058276, 0.0030348494, -0.016671965, -0.020389983, -0.01466187, -0.026788129, 0.032030143, 0.0049694018, 0.033186276, -0.044274643, 0.00064129254, -0.0046705147, 0.023398558, -0.016737655, -0.024567828, 0.028088778, -0.002548748, -0.0018885697, -0.021624943, -0.0057116915, 0.026249476, 0.0053044176, 0.021230808, 0.0012439926, 0.02060019, 0.025986718, 0.017617892, -0.00989939, 0.052052263, -0.011081798, -0.005097496, 0.005547468, -0.0126452055, -0.032135244, -0.02592103, -0.020481948, -0.026643613, -0.010674524, -0.022176735, 0.0024912697, -0.0054719253, 0.007528003, 0.006178086, 0.017026687, 0.001275195, -0.02176946, 0.019693676, -0.007836743, -0.027169127, -0.013965562, 0.013275824, 0.0047493423, -0.009025721, -0.0055901664, 0.0055901664, -0.007639675, 0.0052452968, 0.014004976, 0.010103026, -0.043565195, 0.0013047553, -0.008519912, -0.018524405, 0.008427948, 0.00047050018, -0.013926148, -0.011055523, -0.033054896, -0.007836743, 0.002121767, -0.0040727416, -0.0043552057, -0.01162702, -0.008519912, 0.018563818, 0.0020593621, 0.014070665, 0.045246843, 0.0012423504, 0.026012994, -0.01781496, 0.012034294, 0.0018097424, 0.0016422345, 0.0016520879, -0.031636007, 0.020731568, 0.008138915, 0.02628889, 0.04070114, 0.0042468184, -0.028062504, 0.03591895, -0.02233439, 0.021349048, -0.0078170365, -0.001806458, -0.0037935616, 0.0024666362, 0.023267178, 0.008539619, -0.034316134, -0.016317243, -0.0041482844, -0.0009533171, 0.021493565, 0.010096458, 0.025369238, 0.0031842927, -0.01434656, 0.021546116, 0.00055712805, 0.004365059, -0.008914049, -0.032608207, -0.006903954, 0.004700075, 0.024672931, -0.012040864, -0.030716354, 0.0116073135, -0.008815515, 0.021243945, 0.012756878, 0.009912527, 0.017512789, -0.0048216004, -0.027353058, 0.031557176, -0.0033534428, 0.019102471, 0.00575439, 0.015108557, -0.015791727, 0.026078684, 0.020757845, 0.025526892, -0.008625016, -0.012632067, -0.030401045, 0.010332939, 0.0024190114, -0.006220784, 0.020153502, 0.018379888, -0.024265656, 0.025947304, -0.0022728525, 0.0051631853, 0.011620452, 0.016790206, -0.012829136, 0.0041187243, 0.010260681, 0.04445857, -0.025947304, -0.047454007, -0.00946584, -0.014504215, -0.017158067, 0.022597147, -0.016290966, -0.0007689763, -0.0068119885, -0.0019493323, -0.014136354, 0.01626469, 0.010608835, -0.0034651149, 0.034237307, -0.0066904635, -0.028062504, 0.002065931, 0.022163596, 0.0089994455, -0.006624774, -0.024817448, 0.025697686, 0.003550511, 0.0288245, 0.011988312, 0.016251553, 0.011725554, -0.027431885, 0.02320149, 0.012625499, 0.01769672, -0.04162079, 0.022229286, 0.008900911, 0.019890744, -0.0042566718, -0.0009763084, -0.023832107, 0.031504627, 0.024515277, -0.01292767, -0.011173763, 0.026275752, -0.0055343304, 0.005981018, -0.024199968, 0.012047432, -0.013164151, 2.2850154E-05, -0.0019690392, -0.004322361, -0.0032039995, 0.01119347, 0.00083630794, 0.012737171, -0.028798224, -0.027904848, 0.015804864, 0.09364678, 0.020915499, -0.014990317, 0.012809429, -0.0014583042, -0.003997199, -0.008250586, -0.014031252, 0.019430919, -0.021598669, 0.010116165, 0.013196996, -0.015253074, -0.011718986, 0.0031596592, -0.0066773253, 0.005616442, -0.014018114, -0.022649698, -0.013637115, 0.012809429, -0.031084215, -0.002653851, 0.015331902, -0.0020971335, 0.009518391, -0.01904992, 0.013768494, 0.011764968, 0.0032532664, 0.0039807763, -0.009308185, -0.006598498, -0.004943126, -0.0053799604, 0.010792765, -0.002842708, -0.014004976, 0.041725893, -0.0068316953, 0.012139398, 0.013742218, -0.00054850633, -0.012717464, 0.019312678, -0.008769532, -0.0028837638, 0.017591616, 0.007330935, 0.0051139183, 0.00989939, 0.0017736133, -0.016908446, 0.0085133435, 0.0016586569, 0.016593138, -0.0072652455, -0.0083031375, -0.0044997227, -0.015844278, -0.012691189, -0.020876085, 0.01774927, -0.0147669725, -0.007396624, -0.019430919, 0.0066280584, 0.025408652, -0.012205087, 0.00085642526, -0.021204531, -0.015226798, 0.0076593817, 0.011075229, 0.028404089, 0.0035800713, 0.012205087, -0.0074754516, 0.009170237, -0.007889294, 0.031452075, 0.0064178524, -0.006457266, -0.015857417, 0.0046376702, 0.01280286, 0.007094453, 0.010766489, -0.008973169, -0.008506775, 0.0023073396, 0.004470162, 0.036812328, -0.001184051, -0.017604753, 0.0098337, -0.008539619, 0.02233439, 0.019903881, -0.009452702, 0.0074688825, -0.0006950757, 0.001883643, 0.007619968, 0.025894754, -0.01638293, -0.02603927, 0.019338954, 0.00562958, 0.027589539, 0.0030233536, -0.01700041, 0.015082282, -0.016435483, -0.03468399, 0.012592654, 0.020495087, 0.0037081654, -0.0016717947, -0.039623834, -0.0031990728, -0.039255973, 0.020114088, 0.011055523, 0.018668922, 0.005035091, -0.007271814, -0.01763103, -0.011686141, 0.000549738, 0.009538098, 0.011068661, -0.01769672, -0.013453185, -0.024541553, -0.0139787, -0.027195403, -0.00021780135, -0.016737655, 0.002612795, -0.023293454, -0.008953462, 0.019338954, 0.026446544, -0.0065163863, -0.02659106, -0.023832107, 0.012211655, -0.024449587, 0.028009951, -0.019943295, -0.007935277, -0.008664429, -0.0036588984, -0.011219746, -0.022873042, -0.024541553, -0.006963074, 0.012835705, 0.01682962, -0.0021776028, -0.030847732, 0.0076725194, -0.006302896, -0.030584976, 0.020114088, -0.0073375036, 0.015200523, -0.007081315, 0.010753351, 0.0058233636, 0.01651431, -0.0085133435, -0.0135845635, -0.0017424108, -0.0037935616, 0.0139787, -0.017591616, -0.010871592, -0.01985133, 0.0011150772, 0.0038395443, -0.0019132032, 0.013650253, -0.026551647, -0.0029363153, 0.026696164, 0.006352163, 0.010096458, 0.019444056, 0.0024075157, -0.01638293, 0.0037081654, 0.00080510543, -0.010339509, 0.0029593066, -0.008467361, -0.0366284, -0.022045355, 0.012408724, 0.0029937935, -0.013282392, -0.009643201, -0.0066707567, -0.00785645, 0.0008034632, 0.003256551, -0.00804038, 0.023293454, -0.022662835, -0.019838193, -0.022781078, -0.012329897, -0.055389285, 0.018852852, 0.0041154395, -0.0015428793, 0.017250031, -0.0018179535, -0.0051730387, -0.0024781318, 0.0016709736, 0.051316544, -0.005153332, 0.031898763, 0.018445577, 0.004874152, -0.027931124, -0.012152535, -0.005672278, 0.013262685, 0.008506775, -0.0008026421, 0.0027293938, 0.009012583, 0.0077907606, 0.004650808, -0.0031186033, 0.0040366123, 0.024462724, 0.0073637795, 0.016001932, -0.0021677495, -0.02245263, -0.01979878, 0.008138915, 0.00791557, 0.014359699, -0.008145483, -0.009071703, 0.013623977, 0.0288245, -0.021243945, 0.00027733235, 0.020862946, 0.013689667, 0.019706814, -0.0142808715, 0.0047099283, -0.022991283, 0.0148326615, 0.014780111, -0.0030988965, -0.0053963824, 0.018695198, 0.011902915, 0.009682614, 0.011042384, 0.0096957525, 0.014885213, -0.03297607, 0.0018787163, 0.0046475236, -0.0049562636, 0.030085735, 0.009951941, -0.011127781, -0.014937765, 0.020455673, -0.013118169, 0.0012292125, 0.0061058276, 0.010641679, -0.01627783, -0.009590649, -0.016290966, -0.014136354, -0.01651431, -0.006197793, -0.021060016, -0.016028209, -0.008316276, 0.0099716475, 0.01700041, 0.014057527, -0.007166711, -0.008716981, 0.007954984, -0.029113533, 0.015239936, 0.013676529, 0.0148326615, 0.012526965, 0.011962036, 0.026643613, -0.021940254, 0.0100044925, -0.0029494532, -0.020744706, -0.055284183, -0.02919236, 0.0004955443, -0.008073225, -0.009932234, -0.019076196, -0.0071601425, 0.016698241, -0.011370832, -0.008526482, 0.00810607, -0.0035636488, -0.015844278, 0.048531312, -0.025198447, 0.006716739, -0.010891299, -0.0031481634, 7.916084E-06, 0.006296327, -0.029455118, -0.018143406, 0.00036129158, 0.017854374, -0.014753834, 0.0053175553, -0.004243534, -0.006693748, 0.009078273, -0.0038822424, 0.02603927, 0.013039342, 0.020192916, 0.02240008, 0.03242428, -0.01911561, -0.036759775, -0.017236894, -0.013334944, -0.022189872, -0.031189317, 0.019141885, 0.045194294, 0.024357622, -0.021572392, -0.0139787, -0.0034913905, -0.030768905, -0.006746299, -0.015410729, 0.0017177772, 0.018103993, 0.022124182, 0.0063061803, 0.03284469, 0.026761854, 0.020941773, 0.0028213589, -0.02312266, -0.016172726, -0.0043092235, 0.0018934964, -0.004874152, -0.0070287636, -0.0147669725, 0.0130656175, 0.008381965, 0.0054456494, 0.00021266937, -0.03539344, -0.035156958, -0.029034706, 0.002443645, 0.005015384, 0.015568383, 0.0066050673, -0.057911757, -0.010779628, -0.009341029, -0.0047427732, -0.01719748, 0.018340474, 0.009492115, 0.015594658, -0.003704881, -0.0049891085, -0.026866956, -0.012034294, -0.0047033597, 0.016869033, 0.0074491757, -0.004102302, 0.019430919, -0.0042698095, -0.019155024, -0.018576957, 0.0007960732, -0.001799889, -0.0118832085, 0.010911006, -0.02992808, 0.017079238, -0.0043059387, 0.02727423, 0.011265729, -0.012999929, -0.0030315649, 0.0041351463, -0.012093415, 0.010996402, 0.021112567, 0.0032631198, -0.016645689, -4.0029467E-05, -0.025395514, 0.0034979596, -0.01496404, 0.000700413, -0.027615815, 0.004841307, -0.024594104, -0.016120173, -0.020652741, 0.0015954308, 0.011692709, 0.010740214, 0.015056006, 0.20558149, -0.008329413, -0.035997782, 0.012382448, -0.01119347, 0.024252519, 0.0042402493, 0.008342551, -0.0057675275, 0.0008256334, 0.005251866, 0.013413771, -0.019536022, -0.005021953, 0.010319802, -0.023661315, -0.03909832, 0.010063613, -0.011048954, 0.003809984, 0.011370832, 0.0005476852, 0.008309706, -0.037337843, 0.01323641, 0.0014098583, 0.014307147, 0.009827131, 0.008500205, -0.0014369552, -0.0060631298, -0.012572947, 0.016737655, -0.003318956, 0.0075214338, 0.011863502, 0.026026132, -0.00052346225, -0.0030135002, 0.014267733, 0.008559327, -0.009538098, 0.0036720363, -0.0005427585, 0.029481394, 0.01713179, -0.018655784, 0.007744778, 0.0055901664, -0.015239936, -0.0033271671, -0.011574469, 0.0043584905, 0.01280286, -0.003635907, 0.0028542036, 0.018287923, -0.0061058276, 0.019536022, -0.0048708674, -0.008539619, 0.014648732, -0.020928636, 0.015423866, -0.015936244, 0.021296497, 0.0027228247, -0.010129303, 0.005261719, 0.00043478157, -0.014123216, 0.006378439, 0.0036096314, 0.03297607, 0.00041302197, -0.0144910775, 0.0052715726, 0.027195403, 0.0006425242, 0.018195959, 0.00038038255, -0.00060270005, -0.020035261, 0.0039610695, -0.006595214, -0.036155436, 0.0010912648, -0.01020813, -0.009314754, -0.008565895, 0.00494641, -0.0024764896, -0.0045555583, 0.013039342, 0.014530491, 0.0052288747, -0.012750309, 0.017788684, -0.004447171, 0.012021157, -0.01954916, 0.014688145, -0.010720507, 0.0060007246, 0.0019082765, 0.027247954, -0.016435483, 0.01849813, 0.016185863, -0.013702804, 0.00698935, -0.023556212, 0.00252083, -0.003970923, 0.0054259426, -0.0010485668, 0.008552757, 0.0011536698, -0.003389572, -0.034368683, 0.004292801, -0.007514865, -0.003228633, 0.0008679209, 0.00066017825, -0.014096941, -0.012316759, 0.029271187, -0.005448934, -0.021782598, -0.0010567779, -0.01608076, 0.009932234, -0.015108557, -0.009492115, 0.008066656, 0.010109596, -0.024173692, -0.0036457605, 0.0076002614, -0.023950348, -0.0068185576, 0.032398, 0.009268772, 0.028614294, -0.020376846, 0.017972615, -0.012362741, -0.0038822424, -0.009570942, -0.0102803875, -0.0027113291, 0.010057044, -0.004805178, -0.00021143768, -0.021940254, -0.037942186, -0.035472266, 0.0027425317, -0.0045391363, -0.008506775, 0.020849809, 0.03331765, -0.019890744, 0.008342551, 0.016107036, -0.1677444, 0.020718431, 0.004476731, -0.02647282, 0.013453185, 0.010621972, 0.008795808, -0.00015303573, -0.036102884, 0.007528003, 0.024883136, -0.000472553, -0.039807763, 0.0036818897, 0.008638154, -0.008789239, 0.0025651702, 0.02987553, 0.01818282, -0.0039906297, 0.028167605, -0.004736204, 0.016816482, 0.009544667, 0.001960828, 0.0010970127, 0.0030496295, -0.0059251823, 0.009478978, -0.026052408, -0.005416089, -0.020810395, 0.036155436, -0.013571426, 0.018353613, -0.0155289695, 0.004033328, 0.003115319, -0.022531457, 0.022229286, 0.00076158624, 0.031557176, -0.0068645403, 0.002016664, -0.0014312074, 0.003130099, -0.00494641, 0.0017621176, -0.00236646, -0.017315721, 0.021887701, -0.025342964, -0.0034552615, -0.00085314084, 0.03513068, 0.008454223, -0.0002510566, 0.003312387, 0.04435347, -0.011048954, 0.006644481, -0.01893168, -0.0044800155, -0.008769532, -0.013650253, 0.0029510953, 0.003947932, 0.03297607, -0.02238694, 1.1611111E-06, -0.0053471155, -0.008861497, 0.0055080545, -0.022492044, 0.025474342, -0.002941242, -0.026262615, -0.011994881, -0.0040727416, -0.028903328, 0.00698935, 0.027589539, -0.02450214, 0.020455673, -0.009505253, 0.003451977, -0.044169538, -0.01150878, -0.0041285777, 0.012658344, 0.008973169, -0.009025721, -0.0027983675, 0.0012095057, 0.01843244, 0.012546672, 0.013597702, -0.005770812, -0.0019148454, -0.011357694, 0.024725482, -0.017460236, 0.0027425317, 0.015476418, 0.015975658, 0.0066543343, 0.016921584, 0.009288479, 0.009163668, 0.0043749125, -0.00046721572, -0.0014796533, 0.007771054, 0.016777068, 0.0014320285, 0.0060828365, 0.008644722, -0.032739587, -0.0064506973, -0.005281426, 0.0036917431, -0.014385974, 0.0059218975, -0.0032877536, -0.023372281, -0.027589539, -0.08140228, -0.0074163307, 0.019391505, 0.0020117373, 0.0074163307, -0.00053208397, -0.020587051, 0.029244913, -0.014609318, 0.007508296, -0.0053668222, 0.004736204, -0.009492115, -0.0038001307, 0.021204531, 0.0032499821, 0.014819524, -0.02096805, -0.023924071, 0.014622456, -0.024291933, -0.022702249, -0.018590095, -0.019956434, -0.02251832, 0.008184897, -0.018077718, 0.015699761, 0.021296497, 0.008145483, 0.0074229, 0.014385974, -0.027747193, -0.024081727, -0.009281909, -0.032371726, -0.014175768, 0.015870554, 0.035078127, -0.0054719253, 0.0024682784, 0.015358177, 0.0073440727, -0.05875258, 0.029744152, -0.0051237717, -9.052818E-05, 0.016711378, 0.0058299326, -0.0075214338, -0.0072455388, -0.009866545, -0.0026357863, -0.016921584, 0.024791172, -0.0035406575, -0.01422832, 0.013137876, -0.0007184776, -0.0047986093, -0.017460236, 0.0015716184, 0.00016925279, 0.019155024, -0.009616925, 0.0017867511, -0.023148937, 0.026696164, 0.015476418, 0.004522714, -0.010359216, 0.013440047, -0.009846838, 0.032687034, -0.021940254, -0.0135845635, -0.036654674, 0.019207574, 0.009794286, -0.01689531, 0.0040398967, -0.035761297, 0.008112638, -0.020114088, 0.029428842, -0.0035110973, 0.025592582, -0.027300507, 0.0059021907, -0.019352091, -0.019562297, 0.011370832, 0.036102884, -0.002604584, -0.021795737, -0.008677567, -0.011692709, -0.037075087, -0.01045118, -0.010799334, -0.0137947695, -0.014714421, -0.074728236, 0.027431885, -0.0014525565, -0.016001932, -0.017617892, 0.006884247, 0.007909002, -0.005826648, 0.029533945, -0.018038305, -0.009505253, 0.0045194295, 0.00822431, -0.014583042, 0.0007045186, -0.0033370205, -0.011843795, 0.01763103, 0.011114643, -0.019982709, -0.0121262595, 0.0046475236, -0.011167195, -0.008289999, -0.032923516, 0.010181854, -0.017828098, 0.022478906, -0.0034355544, 0.0013532012, 0.0066346275, -0.011922622, -0.00890748, 0.025500618, -0.013558288, -0.036943708, 0.0038329754, 0.026210062, 0.0074885893, -0.032923516, -0.0057675275, -0.019417781, 0.008152052, -0.0051139183, -0.022242423, -8.683315E-05, -0.0002342237, 0.01719748, 0.013216703, 0.019260125, 0.01738141, 0.02251832, 0.012940808, -0.020770982, -0.006884247, -0.020573914, 0.004525998, -0.009419857, 0.021243945, -0.017355135, 0.02850919, 0.00032085157, -0.0008679209, 0.011068661, -0.00013969257, 0.008808946, 0.0050088153, 0.010543145, 0.027405608, -0.0041844137, -0.027615815, -0.007954984, 0.02301756, 0.01700041, -0.011482503, 0.0019871038, -0.0035767867, -0.015923105, -0.01861637, 0.021874564, -0.025303548, -0.011213177, -0.03481537, 0.01688217, -0.010891299, 0.010109596, -0.028798224, -0.01633038, -0.006890816, 0.022781078, -0.028377812, 0.007081315, -0.026026132, 0.00804038, 0.007797329, 0.015266212, 0.0055770283, 0.0062569133, -0.0144910775, 0.012343034, 0.004979255, 0.0076856576, -0.022005942, 0.003599778, -0.0063488786, 0.00056410755, -0.008270293, -0.03991287, -0.035866402, 0.003718019, -0.01131828, -0.017236894, -0.0072324006, 0.0055507524, 0.0040924484, -0.0018409449, 0.012507258, -0.007166711, -0.02190084, 0.023858383, 0.017828098, 0.020311156, 0.004348637, 0.003984061, 0.024410173, 0.011653296, -0.0124021545, 0.009781148, 0.008184897, 0.023792693, 0.030821458, 0.009603787, 0.01120004, -0.0025520325, -0.026341442, 0.0072849523, 0.015660347, 0.052315023, -0.014333422, 0.065163866, 0.022413217, -0.019654263, 0.007961553, -0.0013835826, 0.024318209, 0.0037935616, -0.000952496, -0.023293454, -0.02511962, 0.008736688, -0.0126452055, -0.017539063, 0.015200523, -0.061642915, 0.010286957, 0.027431885, 0.020665878, -0.02201908, -0.006857971, 0.03042732, -0.022058494, 0.0037311567, 0.016553724, -0.034316134, -0.009308185, 0.025710823, 0.0075674164, -0.014110079, -0.007508296, 0.015634073, -0.008316276, -0.015174246, -0.015555245, 0.003612916, -0.011219746, -0.0028591303, -0.021756323, -0.0070221946, 0.023162074, 0.010549715, 0.0069236606, 0.008973169, -0.03184621, 0.006976212, 0.010536577, -0.022045355, -0.0013137877, -0.011088368]
+ },
+ {
+ "Id": 99,
+ "Type": "Navigation",
+ "Brand": "Solstix",
+ "Name": "Adventurer GPS Watch",
+ "Description": "Take navigation to the next level with the Solstix Adventurer GPS Watch. This sleek and durable watch, in midnight blue, features a built-in GPS, altimeter, and compass, allowing you to track your routes and monitor your progress. With multiple sport modes, it's the ideal companion for outdoor enthusiasts.",
+ "Price": 199.99,
+ "Embedding": [0.017663425, 0.009977812, -0.009424987, -0.022868067, -0.028692951, 0.025308587, -0.02727718, -0.018782558, 0.0113463905, -0.017447688, 0.023623144, 0.017191501, -0.017636457, -0.004358551, -0.0054068957, 0.0022871438, 0.02036013, -0.004843958, -0.000843142, 0.00018118494, -0.010881209, 0.0034433564, 0.037349377, -0.016261138, -0.003426502, -0.012654293, 0.006286696, -0.018580304, 0.03174023, 0.0035899899, 0.021330945, 0.00052038, -0.023056837, -0.014953235, 0.0008599964, 0.01123178, 0.00446979, -0.0017949949, -0.002799518, -0.002811316, 0.019658986, -0.0046349633, -0.0020039896, -0.0025871524, -0.035192013, 0.016584743, 0.0049012634, -0.019888207, -0.005824885, 0.0035967317, -0.0064114183, 0.022396144, 0.0009944104, -0.005477684, 0.017407237, -0.01581618, 0.02925926, -0.0038664022, 0.0026343446, -0.011474484, -0.011595836, -0.015977982, -0.01359814, 0.04217648, -0.026791774, -0.020939922, -0.0342212, -0.013288019, 0.0049282303, 0.011723929, 0.0014815029, 0.019335382, 0.016719578, 0.0050360984, -0.009600273, -0.013780167, -0.0343021, -0.0029512076, -0.0026174902, 0.01573528, 0.010901434, -0.016706094, -0.014373443, 0.019133128, 0.01783871, 0.01902526, -0.005174305, 0.007746288, -0.016342038, -0.020670252, 0.0021742191, 0.011548644, 0.008191245, 0.015155488, -0.0119733745, 0.004972052, -0.004338326, 0.013530723, -0.026724357, -0.008130569, 0.01619372, 0.00072221155, 0.0090069985, -0.011211555, -0.03136269, 0.0013449821, 0.011717187, -0.014144223, 0.02642772, 0.008258662, -0.042769756, 0.025025431, 0.046895716, -0.003556281, -0.0069979522, -0.033439156, 0.027479434, -0.002437148, -0.009795785, -0.013955453, 0.02559174, -0.006910309, 0.029124426, 0.0014174561, -0.008184503, 0.017865676, -0.023097288, 0.007233914, 0.022436595, -0.0273446, -0.007901348, 0.027519885, 0.009789043, 0.016530808, -0.019537635, 0.005288915, 0.00016275042, 0.0035090887, -0.01627462, 0.001975337, 0.011966633, 0.019119646, -0.017124083, 0.00027978324, -0.00947218, 0.007773255, 0.011865507, -0.00030927846, 0.02613108, -0.0013070597, 0.02925926, -0.037079707, 0.029097458, 0.0005983316, -0.020184845, 0.029178359, 0.0029545785, 0.011110429, -0.0038495478, -0.0020612946, -0.00017749803, 0.008919355, 0.0070990785, -0.0048877797, 0.019901691, 0.028045742, -0.0043079876, -0.004456307, -0.025497355, 0.00668446, 0.0048068785, 0.01883649, -0.02146578, 0.0119733745, 0.014710532, 0.014009387, 0.0074766176, 0.007914832, -0.013510497, -0.005679937, -0.005160821, -0.010429511, -0.0022433223, -0.009101382, -0.016180236, -0.023636628, 0.015303806, 0.013746459, 0.020764636, -0.014831883, -0.004385518, 0.016989248, 0.010914917, 0.0073080733, -0.66187954, -0.014831883, -0.007429425, -0.020805087, 0.025308587, 0.012061018, 0.0122902375, 0.016288104, -0.012950931, 0.00997107, -0.0018978069, 0.018661205, -0.008993515, -0.014306026, -0.0046282215, -0.02669739, 0.009526114, -0.007368749, 0.015883598, 0.005255206, -0.015411675, 0.003151775, -0.009215993, -0.01142055, 0.012404848, 0.00935757, 0.0034096476, -0.026576038, -0.03570439, 0.023704046, -0.011494709, 0.02952893, -0.0019264594, 0.0006168715, 0.047111455, -0.058842126, -0.030149173, 0.042958528, 0.018823007, 0.034598738, -0.021438813, -0.027722137, -0.0061248937, -0.006408048, -0.01160932, 0.0009480607, 0.01986124, -0.007550777, 0.016072368, -0.025025431, 0.028045742, -0.016989248, -0.007813706, 0.011582352, -0.001390489, -0.0049113757, 0.035138078, 0.029501963, 0.0007748816, 0.000505211, -0.008959806, 0.00550128, -0.02528162, -0.018351084, -0.029124426, 0.041852877, -0.03276498, 0.005369816, 0.0022365805, -0.039641578, 0.029340161, 0.037726916, 0.008015959, 0.02238266, 0.009789043, 0.012472265, 0.013874552, -0.0071867215, -0.010564346, 0.003257958, 0.038293224, -0.006738394, -0.011723929, -0.022530979, 0.03311555, 0.003788872, -0.003242789, -0.010449735, 0.015991466, 0.011541902, -0.0024995094, 0.012762161, -0.014764465, -0.012971156, -0.010038489, 0.011211555, -0.027074927, 0.024189454, 0.021061273, -0.00974185, -0.028881721, 0.011157621, 0.0060473634, -0.0050091315, 0.009263185, 0.029744668, -0.004129331, 0.0069035674, 0.020724185, -0.03961461, -0.02031968, -0.010901434, -0.01986124, -0.0067013144, -0.019712921, -0.025389487, 0.022719748, -0.018728623, 0.012937447, -0.036944874, 0.039210107, -0.016611708, 0.013874552, 0.0024472608, -0.018040963, 0.0044293394, 0.010604796, -0.020184845, -0.013706008, -0.024566991, -0.0071934634, 0.0008161749, 0.0059327534, 0.0052450933, -0.0080227, -0.0070114355, 0.0020039896, -0.016476873, 0.008305854, 0.0070046936, -0.019416284, 0.014589179, -0.02321864, -0.025901861, -0.017865676, -0.03392456, -0.024566991, -0.0068664877, -0.0129172215, -0.019753372, 0.008980031, -0.009424987, 0.008575525, 0.022086022, 0.0056698243, -0.019106163, 0.010173324, -0.0075305514, -0.016261138, -0.022342209, 0.029016556, 0.002135454, -0.0016786995, -0.017852195, 0.014656597, -0.018216249, -0.02482318, 0.03689094, -0.019456733, -0.031875066, -0.0052282386, 0.022045571, -0.019362349, 0.020670252, -0.001806793, 0.019996075, -0.031767197, -0.01222282, 0.01512852, 0.012843062, 0.0058720773, 0.014656597, -0.030769415, -0.008319338, 0.0072002052, 0.0090541905, 0.0091688, 0.029852536, -0.00061012973, 0.024189454, 0.00981601, 0.022787165, 0.0031652586, 0.0027641237, -0.009478922, 0.0126475515, 0.013550947, -0.007988991, 0.033223417, 0.029394096, 0.022665814, -0.010887951, 0.015249873, -0.024877112, 0.024931047, -0.024917563, 0.013308244, -0.0041765235, -0.0022584912, 0.008811487, 0.0027573819, -0.027506402, -0.008690136, -0.0065833335, 0.018998293, 0.018539853, 0.005706904, 0.012384622, 0.012580134, 0.0007635049, 0.01650384, 0.017933095, 0.005366445, -0.031443592, -0.019807305, 0.02302987, -0.000103496626, 0.019281449, -0.0022972564, -0.026185015, 0.03219867, 0.010921659, -0.0011216612, 0.024283838, 0.018823007, 0.015465609, 0.0071867215, -0.00821147, 0.015047619, 0.019416284, 0.011541902, 0.01665216, 0.0030506486, -0.024863629, 0.01875559, 0.019874724, 0.03044581, 0.0059866873, 0.0054304916, 0.019146612, -0.021317462, -0.000968286, -0.0156139275, -0.0032444743, 0.000895812, -0.011683479, -0.00031370277, 0.024027651, 0.012977897, 0.031686295, 0.012708227, 0.012661034, -0.025052398, 0.011016044, 0.00075339223, -0.009600273, 0.00161381, -0.027668204, 0.013267794, -0.005764209, 0.03284588, -0.008690136, 0.011932924, -0.001484031, 0.0136723, -0.022746716, 0.012229562, 0.0083800135, -0.004415856, -0.00021931804, 0.008406981, -0.021384878, 0.016530808, -0.003257958, -0.0013559374, -0.018688172, -0.029286228, 0.022490527, -0.004139444, 0.018823007, -0.01554651, 0.0018253329, 0.008818229, -0.028207544, -0.005592294, -0.012020567, 0.025928829, -0.027047962, 0.022477044, -0.013099249, 0.0032141365, -0.0013399258, -0.007227172, -0.035003245, 0.055012804, 0.012364397, -0.0013854327, 0.0075844857, 0.009074416, -0.015600444, -0.0240681, -0.019834273, -0.012492491, -0.03238744, -0.010813791, 0.008946322, -0.01600495, -0.006519287, 0.014440861, 0.010254225, -0.020373615, -0.014656597, -0.015640894, -0.020441031, 0.08063151, -0.007982249, 0.0063507427, 0.00052627904, 0.0019567972, -0.0228411, -0.029070491, -0.0024573733, 0.017501622, 0.0076181944, 0.015667861, 0.0038798857, -0.021641066, -0.023164704, 0.018849974, 0.018418502, 0.009296894, -0.021843318, -0.016490357, -0.005073178, -0.00093794806, -0.004102364, -0.0039810124, 0.006252987, 0.017582523, -0.012270012, 0.010105906, 0.008427206, 0.0039944956, -0.007166496, 0.01096211, -0.01508807, 0.0015640894, -0.003052334, -0.010018263, -0.006650751, -0.019038744, 0.010780082, 0.019119646, -0.0059529785, 0.017784776, 0.004958568, 0.020885987, -0.0142655745, 0.020090459, -0.010078939, 0.0027337857, 0.011494709, 0.0065597375, -0.016018433, 0.016530808, -0.012317205, -0.009081158, -0.018742107, -0.004419227, 0.014386927, 0.0042574247, 0.010793566, -0.00828563, -0.035299882, 0.0072204303, -0.01417119, 0.03567742, 0.008676652, -0.017353304, -0.014386927, -0.015883598, 0.003674262, -0.024310805, -0.0020259004, 0.007658645, -0.0042978753, -0.007233914, -1.8790037E-05, 0.01642294, 0.014117256, 0.00069355906, -0.013820618, 0.00031033187, 0.029178359, 0.028531149, 0.009269927, 0.0020562382, -0.0057203877, 0.013267794, -0.00047613715, -0.017204985, -0.0040922514, 0.0011149194, 0.0082451785, 0.0071058203, -0.001037389, 0.041691076, 0.0022534349, -0.013463304, 0.0021607357, 0.019537635, 0.020144394, 0.0090541905, 0.019011777, 0.017353304, -0.037106674, -0.019699438, -0.000594118, 0.023313023, 0.0055484725, 0.0046855267, 0.03349309, -0.0056462283, -0.0046922686, -0.005737242, -0.020427547, -0.0028365976, -0.0062630996, -0.00866991, 0.0081103435, -0.0013416113, 0.00756426, -0.0073957164, -0.013476788, -0.04182591, -0.015155488, 0.02998737, 0.011750896, 0.009236218, 0.008845196, 0.00634063, -0.0057170168, 0.0043956307, 0.018957844, 0.026400752, 0.013092508, 0.009074416, -0.020103943, 0.002551758, -0.008103602, -0.0036877454, 0.0122902375, 0.0007201048, 0.00036763688, -0.02069722, 0.0029764893, 0.027331116, 0.012155402, -0.015964499, -0.014373443, -0.010631763, -0.022935485, -0.02200512, 0.019578086, -0.02311077, 0.0044259685, -0.013968937, -0.024499575, -0.0035427974, -0.030230075, -0.04166411, -0.003876515, 0.03918314, 0.02990647, -0.0018758961, 0.0026090632, 0.009020481, 0.0038057263, -0.0058349976, -0.018742107, -0.014643114, 0.002486026, -0.015047619, 0.0022702895, 0.019321898, 0.0022854584, -0.0031602024, -0.012283496, -0.008811487, 0.012209336, -0.010854241, -0.017097116, 0.007321557, -0.05878819, -0.003101212, -0.0160454, 0.0046315924, -0.00393382, -0.03726848, -0.031659327, 0.03467964, 0.018849974, 0.006970985, -0.020184845, 0.012593617, -0.017016215, 0.027169313, 0.004476532, 0.015789215, -0.007038403, 0.0031955966, -0.02807271, 0.008562041, 0.019888207, -0.011939666, -0.004139444, -0.013577915, -0.01390152, -0.010928401, 0.025011947, -0.005046211, 0.010153098, 0.004216974, -0.0076721287, 0.004739461, -0.012404848, -0.019928657, -0.022733232, -0.0046990104, -0.004274279, -0.012883513, 0.008184503, -0.019160096, -0.011541902, 0.0024000683, -0.022342209, 0.022557946, -0.0007066213, 0.013463304, 0.035084143, -0.0024472608, -0.011225039, -0.02023878, 0.005619261, 0.0023006273, -0.0113801, 0.009445213, -0.022247825, -0.022733232, 0.02417597, 0.00695076, 0.0021961299, -0.0091418335, -0.0013357121, 0.031605393, 0.0318481, -0.027290665, -0.004648447, 0.00668446, 0.031389657, -0.028504182, 0.023973716, 0.0039911247, 0.0015143689, -0.010496928, 0.0044630487, -0.015222905, 0.008791261, 0.012573392, -0.01638249, 0.024122035, 0.012303721, 0.0013070597, 0.005693421, 0.010287933, 0.021344429, 0.0047495733, 0.005679937, 0.011946407, 0.025713092, 0.026373785, 0.00935757, 0.009708142, 0.023596177, -0.021978155, -0.026441202, 0.027856974, -0.005939495, 0.0096811745, 0.0073889745, -0.023636628, -0.009640724, 0.005909157, -0.0069035674, 0.0067046853, 0.008069892, -0.023137737, -0.035569552, -0.01160932, -0.0099508455, -0.026481653, 0.0031720004, -0.0051136287, -0.03953371, -0.021128692, -0.021775901, 0.028719919, 0.015115038, -0.0060979263, -0.013375661, -0.0017764551, 0.0118385395, -0.03567742, 0.013146441, 0.027991809, 0.021020824, -0.020387098, 0.038239293, 0.03276498, -0.031443592, 0.01390152, -0.0010837388, -0.017016215, -0.03632463, -0.0065799626, -0.015721796, 0.019429768, 0.013834102, -0.0110295275, -0.01512852, 0.0039675287, 0.0003450941, -0.031659327, -0.012371139, -0.0045034993, 0.0086496845, 0.037295446, -0.009633983, 0.015600444, -0.022584913, 0.008258662, 0.026576038, 0.010887951, -0.0018657835, -0.013105991, 0.006529399, 0.0005254363, -0.019699438, -0.011137396, -0.013308244, -0.018769074, 0.015627412, -0.013079024, 0.01371275, 0.01742072, -0.0016163382, 0.0061518606, 0.010766598, -0.03163236, 0.005966462, -0.0039439327, -0.02302987, -0.011252006, -0.01638249, 0.0060945554, 0.028261479, -0.010038489, -0.03494931, -0.0033017795, -0.0046855267, -0.019658986, -0.030661548, -0.008454173, 0.0056495992, 0.0411787, 0.028153611, -0.008305854, 0.031335723, 0.007146271, -0.0034956052, 0.015236389, -0.014548729, 0.008595751, -0.0015969556, 0.0068732295, -0.019685954, -0.026710873, -0.012593617, 0.018728623, -0.010038489, -0.009391279, 0.006222649, -0.023636628, -0.026481653, -0.0083800135, 0.0007306388, 0.05007783, 0.019106163, 0.004018092, -0.03732241, -0.004216974, -0.009836235, 0.026980544, -0.014562213, 0.015802696, 0.00059748895, 0.0076990956, 0.00848114, -0.0015017282, -0.042688858, -0.018472437, -0.003876515, 0.008332822, -0.022948967, -0.0054675713, 0.021748934, 0.004365293, -0.022274792, -0.0009809268, 0.0077597713, -0.012937447, -0.018620756, -0.00047276626, -0.01742072, 0.00011324058, -0.0018438727, 0.009424987, 0.005619261, -0.0074159415, -0.0032714414, -0.0012666091, -0.03273801, 0.012168886, 0.025713092, 0.0065833335, -0.018243216, 0.022207374, 0.004530466, 0.005888932, -0.011912699, 0.00660693, -0.0097014, 0.0086496845, -0.008656426, 0.014184673, -0.014144223, 0.009957587, -0.01279587, -0.0021135432, 0.011366616, 0.20570473, 0.023164704, -0.011771122, 0.037646014, 0.005248464, 0.03934494, 0.0049282303, 0.01554651, 0.017865676, -2.1212858E-05, -0.0023444488, 0.012532941, -0.010591313, -0.013240826, -0.00022900933, -0.046733916, -0.027290665, -0.019537635, -0.007240656, -0.013058798, 0.011710445, 0.013888036, 0.0050394693, -0.028908689, 0.021829834, -0.02005001, -0.0049990187, -0.01577573, 0.019874724, 0.03624373, -0.009532856, -0.041151732, 0.029609831, -0.004908005, 0.00763842, 0.002711875, 0.0038596604, 0.0074024578, 0.010726148, 0.012708227, -0.021128692, -0.01688138, -0.00928341, -0.029582866, 0.03082335, -0.0011418865, -0.0082451785, -0.0071260454, -0.013571173, -0.008312596, -0.016395973, -0.02807271, 0.012404848, 0.018351084, -0.007544035, 0.0007900506, 0.0066777184, -0.023825398, -0.008838454, -0.0104901865, -0.008851937, 0.0087845195, -0.023933265, 0.022369176, -0.0013660501, 0.025038915, 0.009822751, -0.019119646, 0.0115688685, -3.9265513E-05, 0.01657126, -0.025254652, -0.009573306, 0.017933095, -0.011980116, -0.029852536, 0.0148049155, 0.010220516, 0.020171361, 0.021829834, 0.020414064, -0.021802869, 0.007874382, -0.018108381, -0.0014073434, -0.039129205, -0.006013654, -0.015371224, -0.011899215, 0.008002475, -0.00045886138, -0.014926268, -0.0042034904, -0.0018253329, -0.00813731, 0.008885646, -0.0035461683, 0.038455028, 0.0006202424, -0.009148575, 0.015061103, 0.022180406, -0.009714884, 0.01100256, -0.014589179, 0.0031905402, -0.0011090203, 0.0069575016, -0.002491082, -0.01245204, -0.0031382916, -0.023447858, 0.004254054, -0.008986773, -0.012162144, 0.0153442575, 0.017366787, -0.009876686, 0.0007264252, -0.012344171, 0.035030212, -0.004385518, 0.0051405956, 0.0075238096, 0.014076806, -0.027722137, -0.010928401, 0.0016449906, 0.004216974, -0.021668034, -0.0064990614, -0.0001937204, 0.035839222, -0.052693635, 0.013200376, 0.005046211, 0.021708483, -0.01180483, -0.001680385, -0.005764209, 0.015020653, -0.0059630913, 0.0096811745, 0.021802869, 0.038562898, -0.029205326, 0.0033944787, 0.011022786, -0.016247654, 0.0019433137, -0.0149397515, 0.0023393924, 0.0017393754, 0.0137734255, -0.005599036, -0.0042911335, -0.047677763, -0.02040058, 0.025834443, -0.00974185, 0.007955283, 0.021802869, 0.038832568, -0.011427292, -0.027358083, 0.036297664, -0.1732364, 0.03263014, 0.0020798345, -0.037376344, 0.0046956395, -0.0075035845, 0.029043524, 0.00206298, -0.013247568, 0.0071058203, 0.018189281, -0.0066709765, -0.039129205, -0.007800222, 0.008029442, 0.012991381, -0.007557519, 0.00958679, 0.0044866446, 0.0039439327, 0.012762161, 0.023865849, -0.0024624297, -0.01034861, 0.010247483, 0.0013744773, -0.009566564, 0.0043686638, -0.0050664362, -0.008636201, 0.01115088, -0.021668034, 0.018189281, 0.008386755, 0.005703533, -0.008926097, -0.008953064, 0.018539853, -0.015020653, 0.025254652, -0.016854413, 0.006512545, 0.03357399, 0.014306026, 0.008292371, 0.0077328044, -0.012843062, -0.0022972564, -0.0026292882, -0.031039085, 0.027169313, -0.013874552, -0.01619372, -0.019996075, 0.03505718, 0.0022753456, 0.012977897, -0.0066979434, 0.031659327, -0.018620756, -0.0297177, 0.0011469427, -0.010449735, -0.003987754, 0.003677633, -0.009863202, -0.0020292713, 0.029960403, -0.012580134, 0.016625192, -0.03157843, 0.0076249363, 0.007854156, -0.013719492, 0.004018092, 0.0030270524, -0.018607272, 0.014683564, -0.013550947, -0.008292371, -0.008980031, 0.011137396, -0.027776072, 0.009708142, -0.0022450078, -0.011669995, -0.009371053, 0.018580304, -0.0054372335, 0.010018263, 0.01359814, -0.020616317, -0.011953149, -0.0003598417, 0.014413893, 0.022544462, 0.029960403, -0.021587132, -0.002111858, -0.02135791, 0.0016095964, -0.014359959, -0.006822666, -0.0018135348, 0.0388056, 0.001791624, 0.045196794, -0.009391279, 0.024459124, -0.00061518606, -0.025915345, -0.0032916667, -0.019726405, 0.016490357, -0.008265404, 0.021843318, 0.0070114355, -0.023083804, 0.0065934462, 0.0041091056, 0.028531149, -0.01806793, -0.029771633, 0.004149556, -0.015856631, -0.0068631168, -0.090771124, -0.019362349, 0.033439156, 0.025187233, 0.004473161, 0.019928657, 0.0019332011, 0.02104779, 0.005801289, 0.033331286, 0.0048136204, -0.029151391, 0.010530637, 0.013577915, 0.010881209, -0.0019298302, 0.012553167, -0.018121865, -8.137521E-05, 0.007894607, -0.01752859, -0.017784776, -0.0012093041, 0.01210821, -0.020211812, -0.0148049155, -0.038778633, 0.008683394, 0.025038915, 0.020279229, 0.014589179, -0.0038697731, 0.010072197, -0.008177761, -0.028018774, -0.013793651, -0.012479007, 0.0060473634, 0.015573477, -0.012863288, 0.012350913, 0.004908005, -0.008056409, -0.026643455, -0.012202594, 0.018620756, 0.0012893626, 0.011865507, 0.002238266, -0.008818229, -0.012000342, -0.021115208, -0.010914917, -0.019470217, 0.00024544238, -0.011427292, -0.0068900837, 0.023164704, -0.0037787594, 0.000515745, -0.012270012, -0.0062732124, -0.0025584998, 3.4604214E-05, -0.020481482, 0.011258747, -0.024459124, 0.01657126, 0.02108824, -0.0021961299, -0.015586961, 0.028450249, -0.0119936, 0.029151391, -0.008663168, 0.011696963, -0.012296979, -0.0029478366, 0.024337772, -0.008622717, -0.017730841, -0.01130594, 0.016085852, -0.030796383, -0.011919441, 0.027263697, -0.008521591, -0.0045136116, 0.012209336, -0.030985152, 0.013577915, 0.029474996, 0.013557689, 0.0026208612, -0.03211777, -0.007031661, 0.00012830422, -0.0056327446, -9.1593196E-05, -0.022557946, -0.0067046853, -0.012350913, -0.08214167, 0.0070788534, 0.019874724, -0.0031736859, -0.015964499, -0.004034946, -0.003873144, -0.018688172, 0.03732241, -0.024432156, 0.007153013, -0.02005001, 0.0022247825, -0.022868067, 0.00067333377, -0.00931712, 0.0066136713, 0.0027321002, 0.0017933095, 0.0009918822, -0.017447688, 0.0023056837, -0.0018152202, 0.004267537, -0.010240741, 0.006741765, 0.013955453, -0.0077328044, 0.0059327534, -0.029609831, 0.005069807, 0.00053976255, -0.0021523086, 0.029286228, -0.00569005, -0.02807271, 0.003677633, 0.0036102151, -0.007887865, -0.0033253755, -0.005892303, -0.004769799, 0.022274792, 0.0054642004, -0.011069979, -0.0069979522, 0.0014595921, 0.0090541905, 0.0181758, 0.016867897, 0.00051237416, 0.02315122, 0.008851937, -0.0076451614, -0.017784776, -0.038643796, -0.0067855865, -0.0041461857, -0.003724825, -0.01742072, 0.05072504, 0.023771463, 0.009708142, -0.008757553, 0.030122206, 0.00756426, -0.030068273, -0.007631678, 0.0056731952, 0.017380271, -0.00034783295, -0.010456477, 0.027641237, -0.0059226407, -0.0032781833, -0.025578257, 0.015303806, -0.022274792, -0.027830007, 0.026090631, 0.01986124, -0.004530466, -0.02990647, 0.014076806, 0.003677633, -0.008063151, -0.017542072, 0.005595665, -0.00912835, 0.011069979, -0.014724014, -0.018148832, -0.013510497, -0.016760027, -0.010476703, 0.028558116, -0.009391279, -0.010705923, 0.016018433, 0.012674518, -0.010989077, 9.649151E-05, -0.0018152202, -0.01325431, 0.0012008769, 0.024553508, -0.013335211, -0.03726848, -0.006546254, -0.00020267432, 0.0014039725, 0.0018405018, -0.011278973, 0.008845196, -0.010153098, -0.00462148, -0.0016129672, -0.021937704, -0.010658731, 0.0012792499, 0.019874724, 0.01752859, 0.008845196, -0.0110767195, 0.004786653, -0.037025772, -0.008049668, -0.013550947, 0.002850081, -0.011595836, 0.027047962, 0.015182455, 0.017596006, 0.005484426, -0.0059799454, 0.018674688, 0.004014721, 0.028800821, -0.04916095, 0.08640246, 0.01268126, -0.0044900156, -0.0076788706, -0.028234512, 0.0077125793, 0.0018876942, -0.0010458163, -0.027964842, -0.030742448, 0.009209251, 0.018027479, -0.00069187366, 0.018310634, -0.027263697, 0.017407237, 0.014548729, 0.033708826, -0.030014338, -0.0041091056, 0.038104456, -0.015357741, -0.0131868925, 0.011130654, 0.022557946, -0.008892388, 0.018620756, 0.008049668, -0.0065597375, -0.012384622, 0.01550606, -0.022369176, -0.02613108, -0.0016331925, -0.019996075, -0.009748592, -0.006731652, -0.028881721, 0.010105906, 0.026710873, 0.0066709765, -0.0068159243, -0.0016171809, 0.005487797, 0.00893958, 0.0007567631, -0.012344171, -0.021816352, -0.0205489]
+ },
+ {
+ "Id": 100,
+ "Type": "Trekking",
+ "Brand": "Green Equipment",
+ "Name": "EcoLite Trekking Poles",
+ "Description": "Tackle challenging trails with the Green Equipment EcoLite Trekking Poles. These lightweight poles, in vibrant green, feature adjustable height, shock-absorbing capabilities, and ergonomic cork handles for a comfortable grip. Whether ascending or descending, these poles provide stability and support.",
+ "Price": 79.99,
+ "Embedding": [0.00660584, -0.012820522, 0.0010883281, -0.022417368, -0.0065990957, 0.0382525, -0.017817896, -0.031913053, 0.019463455, -0.031292595, 0.008908948, 0.0047208657, -0.0029134485, -0.0018934043, -0.0073645506, -0.0019068925, 0.021621564, -0.008032216, -0.02187784, 0.007209436, -0.022660155, 0.042973366, 0.001728174, 0.011984254, 0.0146616595, -0.040653396, 0.02492617, -0.0035676255, 0.010810782, -0.0018816022, 0.024022462, -0.015794668, -0.014729101, -0.009954282, -0.037092514, -0.017804408, 0.0129621485, -0.0012746337, 0.0036654149, 0.0026504288, 0.02001647, -0.008672904, -0.0017551504, -0.007998495, -0.0069396724, 0.036148343, 0.012233786, 0.0053446945, -0.02276806, 0.015201188, -0.0074589676, 0.013198191, -0.007061066, 0.013016101, 0.0021058433, -0.00978568, 0.018101148, -0.0019035204, 0.013987251, -0.0059988713, -0.026922422, -0.005415507, -0.025115006, -0.015174211, 0.0044949385, -0.0054188794, -0.0007844224, -0.018816022, -0.0020535765, 0.0027667645, 0.012105648, 0.007843381, 0.018424865, 0.013555628, 0.008241283, -0.035905555, -0.013838881, 0.0062214267, 0.015524904, 0.021459706, 0.013265632, -0.023874093, -0.025924297, 0.0152686285, 0.0011380658, -0.012726105, 0.01510677, 0.008308724, -0.030591208, -0.009239408, -0.00051676616, 0.009556381, 0.004838887, 0.01578118, -0.027219163, -0.0034630923, -0.010925432, 0.012685641, -0.016806282, -0.010574739, -0.0059044543, 0.018060682, 0.007290365, -0.007971519, -0.050391868, 3.393122E-05, 0.0012687326, 0.011370542, 0.010372416, -0.0033939653, -0.04850352, 0.008639184, 0.031940028, -0.00795803, 0.0014693694, -0.018883463, 0.014297479, 0.0074454797, 0.00911127, -0.011889838, 0.026180573, -0.0074522234, 0.0076680346, -0.03283025, -0.004107153, 0.010898456, -0.028918674, 0.0050007454, 0.00792431, -0.006116893, -0.015659785, 0.021621564, 0.008167097, 0.0012476573, -0.014257014, 0.006878976, 0.0040093637, 0.009644054, -0.034556735, 0.0056650387, 0.0149584, 0.0007266761, 0.0055773654, -0.0096507985, 0.015727228, 0.007681523, -0.0021109013, 0.017844873, -0.00049063284, -0.007209436, 0.01681977, -0.01120194, 0.023874093, 0.03118469, -0.018883463, -0.00033193588, 0.002793741, 0.011829141, -0.04933979, -0.0232941, -0.018546257, -0.03283025, 0.0005998028, -0.009907073, 0.019449966, 0.02373921, 0.0065653753, 0.014081668, -0.0031714102, 0.007465712, 0.008376164, 0.0074589676, 0.0060730563, 0.017709991, 0.0057999208, 0.02449455, 0.0054863202, 0.007998495, -0.0049164444, -0.016455589, 0.008389653, 0.02574895, 0.004363429, 0.013825392, -0.0058032926, -0.007344318, 0.012935172, 0.02462943, 0.013184703, -0.011316589, 0.016401635, -0.008092913, -0.023604328, 0.0010900141, -0.65995, -0.017696502, -0.008652672, -0.010392648, 0.023334565, 0.012517038, 0.020555997, 0.014149109, -0.01830347, -0.013784927, 0.0013521909, 0.03879203, 0.017588597, -0.003316408, 0.0065046786, -0.01105357, 0.015821643, -0.01785836, 0.03266839, 0.005604342, -0.041031066, 0.0011035023, -0.00911127, -0.0033686748, 0.020083912, 0.013764695, 0.01443236, -0.013670278, -0.037119493, 0.025924297, -0.0070273457, 0.048692357, -0.017305344, 0.0057156193, 0.05260393, -0.019301597, -0.020124376, 0.04345894, 0.0109052, 0.042487793, -0.03452976, -0.011707746, -0.0060595684, -0.024696872, 0.0031157713, 0.025721973, 0.030240517, -0.0036350666, 0.021689005, -0.013892833, 0.029889824, -0.019692754, 0.0016674772, -0.019018345, 0.0037193678, -0.0034310578, 0.028271241, 0.023644792, 0.019517407, 0.034934405, -0.01889695, -0.010635436, -0.0025728717, -0.020110888, -0.02627499, 0.010149861, -0.05246905, -0.026436847, 0.011208684, -0.015093282, 0.018289981, 0.024062926, -0.011937046, -0.0047984226, 0.0049198163, 0.015160723, 0.005169348, -0.016833259, 0.008733601, -0.00446459, 0.017615573, 0.010163349, -0.00050707156, -0.0048523755, 0.036040436, -0.0027195557, 0.008821275, -0.0034765804, 0.033477683, 0.022875967, 0.01711651, 0.01994903, 0.008659417, -0.019085785, -0.019369038, 0.0121461125, -0.02924239, 0.010041956, 0.013117262, -0.011856117, -0.013414003, -0.015659785, 0.00048557474, -0.015619321, -0.009981259, 0.019261131, 0.022161093, 0.013838881, 0.022929918, 0.0038441333, -0.012267507, -0.01912625, -0.021014595, -0.019652288, -0.008989877, -0.026396383, 0.012341691, 0.004451102, 0.011883093, -0.025843367, 0.031373523, -0.0107838055, 0.010777062, 0.00461296, -0.017750455, 0.01599699, 0.00076671917, -0.0003460563, -0.0031899563, -0.01342749, -0.02217458, 0.026949398, 0.018478816, 0.00244642, 0.0030365281, 0.029943777, 0.008342444, -0.003082051, 0.024305714, -0.0348265, -0.019261131, -0.02657173, -0.005961779, -0.04383661, -0.019045321, -0.061721947, -0.02418432, -0.013353306, -0.002876356, -0.025195934, -0.016684888, -0.00960359, 0.0013294294, 0.0047714463, 0.008969645, -0.0014449221, -0.014081668, -0.028271241, -0.0060595684, -0.0033821631, -0.008861739, 0.0023402006, -0.015673274, 0.011640306, -0.027866596, 0.00878081, 0.0009837947, -0.0017146858, -0.009118015, -0.033855353, -0.0011540831, -0.012112392, -0.0076680346, 0.011532401, -0.024939658, 0.0038542496, -0.013838881, -0.025411746, 0.00934057, 0.012726105, 0.0026082783, -0.0003854671, -0.021702494, -0.0028443215, 0.018424865, 0.008672904, -0.002803857, 0.016280243, 0.0022154348, 0.02953913, -0.0072026923, 0.015592345, 0.008645928, 0.0045320312, -0.016131872, -0.0055773654, -0.009320337, 0.01391981, 0.00881453, 0.016334195, 0.016941164, -0.033612564, 0.025115006, -0.015821643, 0.04604867, -0.014445849, 0.0025998482, -0.021162966, 0.02619406, 0.022066675, 0.0070273457, -0.020421116, -0.018101148, -0.0073847827, -0.0054896926, 0.020825762, -0.008362676, 0.0232941, 0.008517791, -0.011464959, 0.024170833, 0.0030837369, 0.009205688, -0.02121692, -0.02314573, 0.008713369, -0.019436479, 0.044996593, -0.006174218, -0.022268998, 0.013353306, 0.00874709, 0.0057223635, 0.024373155, 0.0009795796, 0.016752329, 0.021459706, -0.009711495, 0.05735177, 0.0008784182, 0.019611824, 0.03684973, 0.005240161, -0.012173089, 0.01391981, 0.022983871, 0.004545519, -0.0018057311, 0.0060730563, 0.021769935, -0.0040633166, 0.0063057276, 0.003383849, -0.0075938497, 0.020502046, -0.0133195855, 0.024831753, 0.02276806, 0.02479129, 0.011397518, 0.010419625, -0.016388148, 0.030968878, -0.00015711632, 0.011707746, -0.016415125, -0.012510294, -0.0040599443, -0.015430487, -0.021378778, 0.008396396, 0.00029716163, 0.0017121568, 0.018492306, 0.0078029167, -0.0022188069, 0.014769565, -0.008645928, -0.0061877063, 0.03229072, -0.0072296686, -0.000644904, 0.019598337, 0.01108729, -0.0018411377, -0.014553755, -0.032425605, 0.0045792395, -0.0072836215, 0.024642918, 0.006275379, 0.003090481, 0.0018967764, 0.014014227, 0.010777062, -0.014041203, 0.013110518, -0.0032439092, 0.039709225, -0.015093282, -0.015322581, -0.002655487, -0.033504657, -0.011134499, 0.012611455, 0.0045421473, -0.019530896, -0.018343935, 0.0154574625, -0.021041572, -0.014499801, -0.018950904, 0.018128125, -0.010311719, -0.012672152, -0.0032169328, 0.009583358, -0.023051312, 0.029781919, -0.02462943, 0.0063596806, -0.02545221, -0.024440596, -0.0049366765, 0.075857565, 0.016496053, 0.010831014, 0.037524138, 0.009569869, -0.012874475, -0.016981628, -0.015052818, 0.009151735, -0.007829892, -0.0044409856, -0.014783054, 0.011660538, -0.024386643, 0.008942668, 0.013002613, 0.008025472, -0.024332691, -0.007546641, -0.013009357, 0.0076680346, -0.012368668, 0.0129216835, 0.021230407, 0.004977141, 0.018654164, 0.019031832, 0.014823518, 0.005105279, -0.005810037, -0.011808909, -0.009515916, 0.0071622278, -0.00027777237, -0.03439488, -0.003736228, 0.010008235, -0.0057021314, 0.012085416, 0.0031865842, 0.020286234, 0.017736966, 0.015767692, -0.027812643, 0.015484439, 0.007978263, -0.004960281, 0.013454467, 0.009279873, -0.017979754, 0.03533905, 0.006258519, -0.021904817, 0.013501676, 0.025465699, 0.0086256955, -0.0044173812, -0.015767692, -0.0066564204, -0.028460076, 0.010041956, -0.009832889, 0.009070806, -0.015012353, 0.0011136185, -0.014998864, 0.0050816745, -0.00040232734, -0.013710743, -0.018802533, -0.042919412, -0.020380652, -0.009192199, -0.007256645, 0.017696502, -0.0070745545, 0.022700619, -0.0033636168, 0.013204936, -0.0004889468, 0.022417368, 0.010203814, -0.0015174211, -0.015902573, 0.023604328, 0.017615573, 0.0011321647, -0.0063630524, 0.0025003727, 0.0070947865, 0.020488556, -0.010379161, 0.009016854, 0.013960274, -0.033909302, -0.00606294, 0.0333428, 0.043566845, -0.006548515, -0.0015637868, 0.0010208872, -0.029970752, 0.00244642, -0.01920718, 0.037847854, 0.0054289955, -0.013474699, -0.003979015, 0.013730975, 0.007897334, 0.00546946, -0.028837744, 0.016496053, -0.0014112017, -0.0098598655, 0.042164076, -0.0017585225, -0.009003365, -0.0068182787, -0.025735462, -0.023455959, -0.044052422, 0.030483304, -0.017912313, -0.016388148, 0.032506533, 0.010345439, -0.00049864146, 0.00878081, 0.02240388, -0.015133747, 0.021338312, 0.0037969248, 0.026005225, -0.01942299, -0.0053379503, -0.0166714, 0.005267137, -0.011491936, 0.026531264, -0.00035027138, 0.009387778, 0.011680771, 0.025115006, -0.021014595, -0.021014595, -0.024224784, 0.014540266, -0.0051423716, 0.025735462, -0.02752939, -0.020663904, -0.0098194005, -0.003881226, -0.018289981, -0.02484524, 0.004754586, -0.011856117, 0.031805146, 0.03320792, 0.0009846376, -0.019719731, 0.013103774, 0.021985745, -0.008726858, -0.0052974857, -0.031913053, -0.0077219876, -0.042622674, 0.01762906, 0.0038373894, -0.0035575095, -0.0055672494, -0.013420747, -0.026531264, 0.002372235, -0.037524138, -0.014998864, -0.008261515, -0.043081272, -0.007290365, -0.00016375503, -0.003823901, -0.00359123, -0.015538392, 0.0004092822, 0.028460076, 0.032155838, -0.009731728, 0.0004902113, 0.026693122, -0.01436492, 0.018074172, -0.024588967, -0.015619321, 0.0035743697, -0.027893571, -0.031508405, -0.011080546, 0.007040834, -0.008605463, -0.012537271, -0.0026487429, -0.020758322, -0.007256645, 0.004555635, -0.013791672, -0.008686393, 0.001733232, -0.024575477, 0.0042083147, -0.019962518, -0.010021724, -0.028298218, -0.0050041177, 0.028783793, -0.0154574625, 0.0067171175, -0.018964391, -0.02813636, 0.0147021245, 0.0027836247, 0.014351431, 0.0011920186, -0.011208684, 0.016266754, -0.017736966, -0.024899194, 0.0026403128, -0.010466834, 0.0020603207, 0.0046230764, 0.02232295, -0.017426739, -0.017763942, 0.011404263, 0.016644424, -0.005196324, -0.005034466, 0.022822013, 0.019247644, 0.047451444, -0.01696814, -0.013879345, -0.014877471, 0.013002613, 0.0045623793, 0.020326698, -0.0021109013, -0.0044848225, -0.00589771, 0.0446459, -0.033531636, 0.018343935, -0.015120259, -0.022929918, -0.0036114622, -0.013582605, 0.00563469, 0.015120259, 0.011067058, 0.023563864, 0.010621948, -0.02017833, 0.029566107, -0.0075803613, 0.011255893, -0.0066463044, 0.015390022, 0.025708485, 0.0013024531, 0.0014634683, 0.012017976, -0.00945522, 0.012341691, -0.015808156, -0.020367162, -0.01123566, 0.007985007, -0.010986129, 0.013515164, 0.0027684504, -0.025924297, -0.04353987, -0.0111817075, -0.000682418, -0.031211667, -0.023847116, 0.0011658852, -0.024696872, -0.008767322, 0.0071622278, 0.011040081, 0.00945522, -0.0007818934, -0.0003654456, -0.008774066, 0.010723109, -0.0179258, -0.0071487394, 0.006396773, -0.0014491371, 0.002085611, -0.0009905387, 0.0042723836, -0.008996621, -0.0068115345, 0.0017568364, -0.03609439, -0.02746195, 0.001079055, -0.005816781, -0.00027144977, -0.014823518, 0.004235291, 0.021270871, 0.032722343, -0.018101148, -0.03490743, -0.0016986686, -0.012267507, 0.004242035, 0.03207491, -0.02582988, -0.016037455, 0.006959905, -0.0035473933, 0.0022188069, -0.0015123631, -0.020475069, -0.008989877, 0.0044881944, -0.0070947865, -0.021095525, 0.017952777, -0.020947155, -0.00530423, -0.007492688, -0.0024851987, 0.032533508, 0.015943037, 0.008713369, 0.011370542, 0.013238656, -0.015430487, -0.014297479, -0.011040081, -0.02240388, -0.014931424, -0.0055470173, 0.023550376, 0.047586326, 0.008956157, -0.04105804, 0.004656797, 0.016091408, -0.047235634, -0.014931424, -0.00060781144, -0.002378979, 0.013164471, 0.018357424, 0.011188451, 0.009192199, 0.004747842, -0.0025694997, -0.023010848, -0.02894565, -0.0026470567, 0.0031292595, -0.021041572, -0.014499801, -0.030294469, 0.008726858, 0.044457067, 0.01108729, -0.006959905, 0.010750085, -0.017035581, -0.0027499043, -0.006383285, 0.010291487, 0.027354045, 0.015592345, 0.0025307212, -0.040734325, 0.0012485003, -0.0034833245, 0.018762069, -0.010453345, 0.0062517747, -0.00010822163, -0.016280243, 0.021608077, -0.016995117, -0.046156578, -0.015187699, -0.009003365, 0.007762452, 0.011896581, -0.0179258, 0.0108040385, 0.009394523, -0.021540636, -0.0010503926, 0.012442853, 0.0062517747, 0.014796542, 0.012469829, -0.011633562, 0.018640675, -0.0025610696, 0.011727979, 0.00096103334, -0.01919369, -0.0133195855, 0.0070812986, -0.0146616595, 0.0049872575, 0.010190326, -0.011788676, -0.018573234, 0.00677107, 0.0021968884, 0.027124746, -0.016806282, -0.00057071896, -0.048422594, 0.019288108, -0.019544384, -0.028352171, -0.005725736, 0.014472825, -0.010358928, -0.011323334, 0.026261501, 0.19854613, -0.004100409, 0.0022508414, 0.022983871, 0.010554506, 0.018384399, 0.0038205292, -0.003881226, -0.0064540976, -0.019234156, 0.0037733205, -0.0007903235, -0.015120259, -0.005398647, 0.012678896, -0.02485873, -0.055409476, 0.002373921, -0.0121663455, 0.003952039, 0.010884968, -0.015605833, 0.036552988, -0.013683766, -0.0032540252, 0.016253266, 0.009144991, 0.0019878217, 0.00017439805, 0.009408011, -0.002733044, -0.046156578, -0.0092528965, -0.0096507985, 0.0038306452, 0.009778936, 0.021769935, -0.0026436849, -0.0028291473, 0.0047208657, 0.008490814, 0.0030449582, 0.0035811139, 0.0012721047, 0.0016742212, -0.0001379378, -0.009192199, 0.0042116866, 0.0096103335, 0.0026942655, -0.0247778, -0.012982381, 0.014607707, 0.012860986, -0.0027802526, 0.010736598, 0.01882951, -0.0024076414, 0.01309703, 0.00948894, -0.009556381, 0.033666518, 0.0024750824, 0.018789046, -0.017696502, -0.008821275, -0.006403517, -0.014081668, 0.012280995, -0.0008244655, -0.0052030683, 0.0008775752, 0.020434605, 0.027677761, -0.02425176, -0.027866596, 0.029053556, -0.011674026, 0.010864735, 0.020326698, 0.0010048699, -0.014971889, -0.0036519268, -0.011748211, 0.005543645, -0.026382895, 0.020380652, 0.003962155, -0.0002364648, 0.014850494, 0.0026453708, -0.0034732083, 0.006777814, 0.016199313, -0.0045117987, 0.039304577, -0.04666913, 0.007823149, -0.030914925, 0.011849373, -0.02881077, 0.013231912, -0.0041476176, 0.00015205824, -0.027893571, 0.032128863, -0.016347684, 0.018869974, 0.010965897, -0.0025813018, 0.0073105977, -0.040167823, 0.014742589, -0.003247281, -0.00703409, -0.0015207932, 0.020947155, -0.022349928, 0.0037564603, -0.013838881, 0.025883831, -0.03126562, 0.028028455, -0.015808156, 0.0021463078, 0.002291306, -0.0012383842, 0.01897788, 0.021850863, -0.019018345, 0.0025222911, 0.0024919426, 0.010797294, 0.004198198, -0.021621564, -0.0064406097, -0.0025088028, -0.035096265, -0.0012544014, -0.007337574, 0.012503549, 0.0017753827, 0.009846377, 0.01391981, 0.05335927, 0.011862861, -0.003948667, -0.019004857, -0.015470951, -0.007337574, 0.016172336, -0.009704751, -0.011876349, 0.0013184703, -0.019827636, -0.017548133, -0.01391981, -0.015484439, -0.009832889, 0.015187699, -0.022929918, 0.020029958, 0.022579227, 0.0025728717, -0.007108275, -0.00042888222, -0.17221718, 0.029377272, 0.023955021, -0.017736966, -0.007755708, 0.014877471, 0.016064432, -0.0005264608, -0.015228163, -0.0017450342, 0.01614536, 0.018060682, -0.037712973, -0.03223677, 0.006693513, -0.0008147708, 0.014445849, 0.004913072, 0.00075871055, -0.003233793, -0.0056279465, -0.01919369, 0.016657911, -0.0025678137, 0.0027499043, 0.0015857051, 0.0024531642, -0.009414755, 0.017467203, -0.00041054672, -0.013414003, -0.015309093, 0.0026875213, -0.002582988, 0.004700633, -0.007863614, -0.010884968, 0.013400515, -0.0052367887, 0.042352907, -0.0012695757, 0.0055773654, 0.023159219, -0.0012611456, 0.022727596, 0.028514028, -0.02143273, 0.0018242773, -0.0031225155, 0.003874482, 0.03498836, -0.015039329, 0.014675148, -0.004886096, 0.013548885, -0.0048422595, 0.020286234, 0.012726105, 0.027205674, -0.011377286, -0.0018934043, -0.04764028, -0.015052818, -0.024278738, -0.0036552988, -0.0042656395, 0.00431622, 0.016280243, -0.0047613303, 0.019544384, -0.022633178, -0.012678896, -0.004393777, -0.0117617, 0.012429365, -0.0006887406, -0.00020801314, -0.026895447, -0.005681899, -0.012085416, -0.0044207536, 0.028163336, -0.017548133, 0.015066305, -0.0056212023, 0.01138403, -0.026113132, 0.0043668007, -0.0056751547, -0.007499432, -0.0008333171, -0.016927676, 0.0027853108, -0.014985376, -0.02485873, 0.0232941, 0.010911943, -0.021405753, 0.0032675134, -0.010689389, 0.006973393, 0.014837006, -0.03452976, 0.03533905, 0.056164812, 0.019625314, 0.006120265, 0.003672159, 0.026774053, 0.0148909595, -0.013865856, 0.04100409, -0.00034753158, 0.008828019, -0.0058639897, 0.015902573, -0.014688636, -0.024143856, 0.004474706, -0.026018715, 0.004235291, -0.02232295, -0.0098598655, -0.02016484, 0.011282869, -0.0026689752, -0.10062188, -0.0086661605, 0.02916146, 0.024103392, 0.0072229244, -0.0042285467, 0.009381034, 0.012193321, -0.002596476, 0.018586723, 0.0102173025, 0.012759825, 0.024939658, 0.020596463, 0.030159587, -0.004899584, -0.0039857593, -0.0025644416, -0.036526013, 0.021162966, -0.012874475, -0.01049381, -0.0052907416, -0.028702863, 0.013636557, -0.016657911, -0.030672139, 0.01451329, 0.023752699, 0.017049069, 0.012071928, -0.010675901, 0.045131475, -0.016509542, -0.012968892, -0.0045522633, -0.012017976, -0.003373733, 0.018991368, -0.015538392, -0.022511786, -0.011937046, 0.0044949385, -0.020974131, 0.021675518, -0.0057796882, 0.014526778, 0.005681899, 0.004747842, -0.02240388, -0.020434605, -0.012280995, -0.012186578, -0.018128125, 0.0074387356, -0.012051696, 0.00777594, 0.01212588, 0.004016108, -0.0031444337, 0.0047107497, 0.016914187, 0.007971519, 0.0030702488, 0.007850125, -0.012382156, -0.014688636, -0.0031832124, -0.0014272189, 0.001502247, -0.0043297084, 0.0076545463, -0.0108040385, 0.028406123, -0.019058809, 0.014931424, -0.029431226, -0.01980066, 0.011903325, -0.00878081, 0.00041665856, -0.02031321, 0.016550006, -0.04726261, 0.010898456, 0.026167084, 0.0075601293, -0.013488187, -0.0024042695, -0.03088795, -0.0010689389, 0.004306104, 0.022862477, -0.00431622, -0.0066463044, 0.001440707, 0.016469076, 0.00530423, 0.004235291, -0.023455959, -0.030672139, -0.011674026, -0.06684746, 0.03355861, -0.0018377656, -0.018964391, -0.027677761, -0.009178712, 0.022039698, 0.0021294476, 0.013461211, -0.03355861, -0.0027869968, -0.021378778, 0.01294866, 0.005745968, -0.009091038, -0.0043566846, -0.008578488, 0.0061236373, 0.02492617, -0.008935925, -0.023105266, 0.0042824997, -0.01688721, 0.013663534, -0.032047935, 0.004656797, -0.028918674, 0.011006361, 0.012975637, 0.0011776874, 0.0232941, -0.0014879156, -2.3261855E-05, 0.034286972, -0.0037766926, -0.0071689715, 0.02783962, 0.022295974, 0.014095156, -0.022376902, -0.0098598655, -0.0032843738, 0.004171222, 0.0024818266, -0.020596463, 0.0021564239, 0.011694259, 0.004177966, 0.026261501, -0.009354058, 0.0050783027, 0.017736966, 0.019288108, -0.0038306452, -0.006838511, -0.023010848, 0.006255147, 0.008052448, 0.008976389, -0.035905555, 0.020771809, 0.013285865, 0.0054998086, 0.018478816, -0.010635436, 0.015133747, -0.02187784, -0.0029083905, 0.0004817812, -0.009765448, -0.0017315461, 0.012078672, 0.021486683, -0.010129629, 0.015821643, -0.010824271, -0.0025391513, -1.3672597E-05, -0.008983133, 0.019746706, -0.02083925, 0.00960359, -0.045266356, 0.015012353, 0.0069194403, 0.0034968127, -0.016091408, 0.02224202, -0.011593097, -0.0037025076, -0.021756446, 0.004950165, -0.044915665, 0.016023967, 0.021189943, -0.011835884, -0.004950165, -0.014270502, 0.0031410616, 0.0064406097, 0.0012392272, -0.021122502, 0.015295604, -0.02031321, 0.0031764682, 0.00487598, -0.033234894, -0.03126562, -0.00830198, 0.0041105254, 0.011437983, -0.0067171175, -0.013285865, 0.0054222513, -0.0113907745, 0.008915692, -0.0047073774, -0.019922053, 0.0009104527, 0.01787185, 0.013373538, 0.032641415, -0.0072296686, -0.016698375, -0.0004303575, -0.014095156, 0.013825392, -0.010702876, 0.007917566, 0.012894708, 0.023847116, 0.0025374652, -0.02187784, -0.018033708, 0.006828395, -0.0100487, -0.0082480265, -0.007647802, -0.030159587, 0.07019253, 0.016374659, -0.0059381747, 0.021257384, -0.0082480265, 0.04443009, 0.004673657, 0.011458215, 0.0027549623, -0.026531264, 0.014162597, 0.002240725, -0.02680103, 0.01436492, -0.0082884915, -0.012280995, 0.008113145, 0.010487066, -0.020056935, -0.009536149, 0.037901808, -0.013663534, 0.011377286, 0.012200066, -0.005405391, 0.0021699122, 0.025587091, 0.022349928, 0.012645176, -0.017467203, 0.018559746, 0.021419242, -0.03536603, -0.0043533123, -0.00072920515, -0.023766186, -0.005243533, 0.014540266, 0.009826144, 0.0020485185, -0.0014449221, 0.02098762, -0.011060314, -0.026369406, 0.009495684, -0.0066530486, 0.004306104, 0.0052873697, -0.01406818]
+ },
+ {
+ "Id": 101,
+ "Type": "Footwear",
+ "Brand": "Raptor Elite",
+ "Name": "Trek Xtreme Hiking Shoes",
+ "Description": "The Trek Xtreme hiking shoes by Raptor Elite are built to endure any trail. With their durable leather upper and rugged rubber sole, they offer excellent traction and protection. These shoes come in a timeless brown color that adds a touch of style to your outdoor adventures.",
+ "Price": 135.99,
+ "Embedding": [0.009782591, -0.024210734, -0.013748143, -0.030889558, 0.011041603, 0.028573515, -0.00754734, -0.04303532, 0.024910934, -0.02608242, 0.00081465486, 0.0043964433, 0.008240806, -0.017356861, -0.0064835753, -0.0051437714, 0.023685586, 0.00041132496, 0.014286757, 0.0016150028, -0.0049518896, 0.0062681297, -0.0035952537, -0.008368727, 0.010045166, -0.021719642, 0.02658064, -0.017383792, 0.019565182, -0.030566389, 0.008005163, 0.009661403, -0.016427752, -0.017733892, -0.0039554522, 0.008833283, 0.0031105003, -0.001149606, 0.009789323, 0.008294668, 0.014838837, 0.010361602, -0.0026745591, 0.0045344634, 0.024358854, 0.019322805, 0.018986171, -0.011223386, -0.0072511015, -0.0028445593, -0.018420625, 0.005453475, 0.002841193, -0.00083864003, 0.019982608, -0.0036558479, 0.0064128824, -0.006860606, 0.038780265, -0.0025685192, -0.019066963, 0.032882433, -0.03360956, 0.015565967, -0.0008365361, -0.0070827845, -0.009331501, -0.007237636, 0.014502203, 0.027738662, 0.0048307013, -0.00023501278, 0.017814685, 0.017693495, 0.00719724, -0.012684378, 0.0022504, 0.0014147054, 0.015606363, -0.0004847533, 0.005928129, -0.024480043, -0.028869752, -0.015229333, 0.025018657, -0.01607765, -0.0051976326, 0.003989116, -0.012118833, -0.015269729, 0.026338262, -0.02585351, -0.0006013129, 0.011755268, -0.030862628, -0.0034908971, -0.00699526, 0.009142986, -0.013074874, -0.027146185, 0.0094796205, 0.003411788, -0.015215868, -0.01311527, -0.04036918, 0.01401745, -0.0042449576, 0.015108145, 0.016144978, -0.0035009962, -0.0353062, 0.01567369, 0.01148596, -0.029085198, 0.0021005976, -0.013754875, 0.020130727, 0.013283587, 0.010974276, -0.022877663, 0.0360064, -0.004632087, 0.018622607, -0.009041996, 0.004157433, 0.026755689, -0.004770107, -0.013754875, 0.03280164, -0.009318036, 0.014609926, -0.0010578731, 0.037056696, -0.0039588185, -0.0124083385, 0.023550931, -0.011728337, 0.016602801, -0.014003985, -0.00546694, 0.019120825, -0.0042213933, -0.004255057, 0.0003389486, -0.0055107027, 0.008893876, 0.0032417877, 0.009499818, 0.01266418, -0.0021780236, 0.036733527, -0.017989734, 0.00972873, 0.0008474767, 0.0010528236, -0.028331138, 0.019363202, 0.0082744695, -0.028358068, -0.021140631, 0.003665947, -0.0005546049, 0.019093893, -0.012044773, 0.039345812, 0.022258256, 0.018864984, 0.021261819, 0.009499818, -0.0011361405, 0.007008725, 0.008287935, -0.00012097793, 0.009365165, 0.014381015, 0.011896654, 0.0044200076, 0.01622577, -0.017868545, 0.0176531, -0.0042819874, -0.008112885, 0.025691925, 0.015794879, -0.0066047637, -0.021383008, 0.007776251, -0.004611889, 0.008119618, -0.01093388, 0.0037568382, 0.00046960477, -0.0038746602, 0.011809129, -0.66012627, -0.014879233, 0.00078646175, -0.031051142, 0.033744216, 0.01163408, 0.026459452, 0.009230511, -0.039507397, 0.019093893, -0.016899038, 0.017518446, 0.007089517, -0.035440855, -0.0030701044, -0.019619044, -0.005073078, -0.020440431, 0.017356861, 0.014084777, -0.02986619, -0.0019524787, -0.018663002, -0.028304206, 0.005554465, 0.012879626, -0.007567538, -0.0014029233, -0.022675682, 0.023025783, -0.048529193, 0.02919292, -0.002644262, 0.010718434, 0.05601594, -0.039453533, -0.0011933683, 0.04667097, 0.023981823, 0.059947826, -0.018326368, 0.0026964403, 0.00010062208, -0.008954471, 0.014582995, -0.0010427246, 0.030377874, -0.016697058, 0.010651108, -0.0059819906, 0.0015013887, 0.0044806018, 0.0031811935, -0.007257834, -0.0012514378, -0.015835274, 0.038403235, 0.0076348647, 0.012159229, -0.007890707, -0.021409938, 0.025799649, -0.0019356469, -0.011149326, -0.025072519, 0.025032122, -0.044624235, -0.013411508, 0.012509328, -0.022743009, 0.009627739, 0.023524001, -0.00069094176, 0.020952115, 0.020682808, 0.02390103, -0.007836845, -0.017935872, 0.007506944, 0.029300645, 0.021288749, 0.0029152525, 0.00021302636, -0.019726766, 0.01680478, -0.00556793, -0.009903779, -0.013687548, 0.03312481, 0.015754482, 0.0042819874, 0.022325583, -0.03500996, -0.0287351, -0.029839259, 0.003989116, -0.002782282, 0.0106713055, 0.012866161, -0.019928748, -0.012381407, 0.009169917, -0.007581003, -0.00049401075, 0.022002414, 0.028896684, 0.025638064, 0.0006665358, 0.013142201, -0.0077897166, -0.0138424, -0.02163885, -0.01436755, -0.009533482, -0.002045053, -0.020709738, 0.018972706, -0.0007948776, 0.020682808, -0.052299496, 0.02678262, -0.0015123293, 0.00095099176, -0.011122395, -0.0153370565, 0.0008937639, 0.022312118, -0.004941791, 0.008247539, -0.01276517, -0.0031088172, 0.0037332738, 0.029246783, -0.00619407, -0.01727607, 0.0018397061, -0.0017319832, -0.0035817884, 0.02093865, -0.023241227, -0.022769941, 0.010691504, -0.0062950603, -0.021436868, -0.021921622, -0.02919292, -0.035467785, -0.0231739, -0.009594076, -0.014098242, 0.030270152, -0.017262604, -0.011849525, 0.01148596, 0.0013734677, -0.028358068, 0.00892754, -0.023214297, -0.0035346595, -0.008617837, 0.03393273, 0.011176256, -0.00088955596, -0.005625158, -0.017908942, -0.017518446, -0.007049121, 0.031158866, 0.006961596, -0.042038884, 0.0021847563, -0.019699836, -0.0129132895, 0.019417062, -0.0074396166, 0.0052649598, -0.01780122, -0.017558843, 0.0042516906, 0.0036693132, -0.012529527, -0.005022583, -0.026445987, -0.0038813928, -0.010462592, -0.013169131, 0.0020989145, 0.025880441, 0.0032922828, 0.021921622, -0.021975484, -0.0019625777, -0.0064330804, 0.02876203, 0.0110348705, -0.015027353, -0.0054130787, 0.0153235905, 0.009021798, 0.013027745, 0.027900247, -0.03643729, 0.016548939, -0.03719135, 0.020642411, -0.005231296, -0.014152103, -0.0064734765, 0.018770725, 0.00012087273, -0.0075944685, -0.03498303, -0.03134738, -0.006254664, -0.003431986, 0.015444779, 0.010395265, 0.0418773, -0.016670128, -0.035144616, 0.013148934, -0.0038477294, 0.009883582, -0.015108145, -0.007978232, 0.01617191, -0.02314697, 0.016872108, -0.0125631895, -0.007069319, 0.0069750617, 0.01910736, 0.029381437, 0.007984964, 0.04034225, 0.0072914977, 0.009217045, -0.02637866, 0.044220272, 0.007971499, 0.039615117, 0.019726766, -0.0040934724, -0.009742195, 0.019645974, 0.016212305, 0.021154096, 0.016441217, 0.011963981, 0.0076887263, 0.005652089, 0.014407946, 0.0073655574, 0.0054400093, 0.015390918, -0.0034606, 0.025557272, 0.024076082, 0.024506973, 0.00036608975, 0.014125173, -0.0022201028, 0.023806773, 0.000924061, 0.03024322, -0.022756474, -0.014542599, -0.0027385196, -0.0060324855, -0.027792523, 0.0011336158, -0.017949337, 0.0030987181, 0.011149326, -0.0002739361, 0.026270937, 0.0025887173, 0.0002684658, -0.011977446, 0.015996858, 0.001955845, -0.02986619, 0.019982608, 0.012866161, -0.00035304515, -0.020655878, -0.026567174, 0.014179034, 0.00066232786, 0.057416335, 0.007897439, 0.002507925, 0.002832777, 6.5012486E-05, 0.020575086, 0.01843409, 0.028142622, -0.014556064, 0.036167983, -0.025934301, -0.009641205, 0.00059878814, -0.0245743, -0.022190928, 0.04957949, -0.025557272, -0.025005192, -0.0017875278, 0.0077627855, 0.00079614, 0.007877241, -0.0076348647, 0.0110348705, -0.020844392, -0.005911297, 0.013007547, -0.012617052, -0.011075267, 0.015727552, -0.008779421, 0.015929533, -0.018676467, -0.00847645, -0.005042781, 0.084885694, -0.0020888154, 0.004029512, 0.0016781217, -0.008685163, -0.019524787, -0.008772688, 0.008045559, -0.012920022, 0.005820406, 0.011472495, -0.021652315, -0.008341797, 0.0008335905, 0.014758045, 0.0059146634, 0.0047532753, -0.039211158, 0.009149719, -0.023577861, -0.003588521, -0.006961596, 0.012435269, 0.003214857, 0.008240806, 0.01916122, 0.0039453534, -0.009493086, 0.021005977, -0.019066963, 0.00564199, -0.0066013974, -0.009917245, -0.010186552, -0.016589336, -0.0060728816, -0.027092325, -0.017491516, 0.02404915, 0.004770107, 0.01436755, 0.023510536, 0.010805959, -0.0132768545, -0.0031525798, -0.005036048, -0.015377453, 0.015512106, 0.006497041, -0.015054284, 0.0076617952, 0.018622607, -0.019996073, -0.0057699108, -0.017949337, 0.012973884, 0.015202402, -0.009668135, -0.011075267, -0.024803212, -0.0033983227, -0.024453111, 0.016333494, 0.0024355487, 0.007830112, -0.006517239, -0.001957528, 0.014704184, -0.019901816, -0.008907342, -0.015027353, -0.0020989145, -0.023389347, 0.010220216, 0.0054635736, -0.010927147, -0.011674476, -0.015404383, 0.04071928, 0.014825372, -0.0071366457, 0.024547368, 0.0030835697, 0.005820406, 0.007520409, -0.024735885, -0.037972342, -0.010274077, 0.021436868, 0.007836845, 0.01873033, -0.03018936, 0.008489915, 0.0017824783, -0.0073588244, -2.6536247E-05, 0.013882796, 0.016616266, 0.017033692, 0.00082896184, -0.01376834, -0.03132045, -0.009641205, 0.0020753501, 0.012556457, 0.014138638, -0.007049121, 0.0041136704, 0.02151766, -0.027038462, 0.013458637, 0.0016360424, 0.017316466, -0.01283923, -0.020898255, 0.0149869565, 0.004766741, -0.013748143, 0.0066013974, -0.016131513, -0.0024523805, -0.04478582, 0.04039611, -0.0014222796, -0.0153370565, 0.007863776, 0.021800434, -0.041958094, -0.005056246, 0.0068572396, -0.0120582385, 0.03414818, 0.0071366457, 0.016562404, -0.010940613, -0.016091118, -0.053457517, -0.0040362445, 0.015875671, -0.0108665535, 0.005790109, 0.027146185, -0.001896934, 0.03972284, -0.025516875, -0.017451119, -0.03864561, 0.0068505066, -0.023645189, 0.017760823, -0.016670128, -0.0017774288, -0.02061548, -0.00015316858, -0.013074874, -0.019066963, -0.0032939662, -0.00079235283, 0.006180605, 0.012886358, -0.013525964, -0.033447977, 0.020023005, 0.015377453, -0.010664573, 0.018447556, -0.017895477, -0.01607765, -0.047290377, 0.018164784, 0.0050293156, 0.010267344, -0.0034639663, -0.01697983, -0.014582995, 0.019699836, -0.0036053527, -0.020723203, 0.0047633746, -0.05399613, -0.004746543, -0.011425367, 0.006271496, 0.0020097063, -0.030701043, 0.00072628836, 0.029435297, 0.02919292, -0.014919629, 0.017356861, 0.027065393, -0.012596853, 0.01634696, -0.022837266, -0.0017555476, -0.0068572396, 0.002045053, -0.027765593, 0.009264174, 0.019188153, -0.023227762, -0.0025584202, 0.00560496, -0.0029825794, -0.010260612, -0.0026930738, -0.0033882237, -0.019322805, -0.002920302, -0.0004451988, -0.009526749, -0.0071231807, -0.01283923, -0.0280349, 0.0027654504, -0.0033259464, -0.032236096, 0.011943783, -0.025880441, 0.004315651, 0.0238741, -0.0020198054, 0.023227762, -0.01567369, 0.006301793, 0.02326816, 0.00015390497, 0.009257441, 0.008368727, 0.009055461, 0.0072107054, 0.013936657, 0.0048542656, -0.0009897046, -0.00782338, 0.00049569394, -0.0038712937, -0.015215868, 0.0011647545, 0.006480209, 0.0014702501, 0.01965944, 0.001986142, -0.015444779, 0.0007056695, 0.017154882, -0.01875726, 0.0018565379, -0.007931103, -0.0256246, -0.0024422815, 0.017329931, -0.021181026, 0.009419026, -0.00591803, -0.014461807, -0.0012968834, -5.378258E-05, 0.01770696, 0.007304963, -0.023214297, 0.031562828, -0.0056924853, 0.017720427, 0.015916066, -0.003440402, 0.0069346656, -6.2172134E-05, 0.025153311, 0.028896684, -0.010947346, -0.0013532697, 0.021396473, 0.0066586253, -0.01855528, -0.012893092, -0.0069077346, -0.0087928865, 0.00034988922, -0.016387355, -0.0014828738, -0.015108145, -0.00885348, -0.012179427, -0.005399613, -0.011122395, -0.013653885, -0.027092325, 0.0068942695, -0.02091172, -0.015956463, -0.0059617925, 0.026472917, 0.017989734, 0.006180605, -0.024910934, -0.0094661545, 0.0068471404, -0.0245743, 0.009243976, 0.0029118862, 0.0153235905, -0.009398828, 0.008994867, 0.015256264, -0.046886418, 0.013411508, -0.01943053, -0.028492723, -0.04265829, -0.003154263, -0.0132768545, 0.0024961429, 0.0010006453, -0.010967543, 0.008112885, 0.021073304, -0.0026223809, -0.03269392, 0.01840716, 0.010799226, -0.00280248, 0.030727973, -0.02460123, -0.0046455525, 0.00092069467, 0.0050865435, 0.008813084, -0.010819425, -0.0050293156, -0.0019709936, 0.01158695, 0.0034067386, -0.040853932, -0.006328724, 0.017424189, -0.009748927, 0.011129128, -0.01494656, -0.013350914, 0.03097035, 0.015269729, 0.007587736, 0.021935087, -0.019053498, -0.014165569, 0.013303786, 0.014852303, -0.012778636, -0.00982972, 0.006342189, 0.055531185, 0.0077829836, -0.033744216, 0.0077695185, 0.013977054, -0.0626409, -0.020817462, 0.018057061, -0.0078031817, 0.015363987, 0.0062176343, 0.0052918904, 0.019242013, 0.009998037, 0.015363987, -0.0015316858, -0.009782591, -0.0067360513, 0.0034252533, -0.005527534, 0.0016865375, -0.032316886, -0.008914075, 0.04182344, 0.0014130223, 0.011526356, 0.002928718, -0.023429744, -0.006173872, -0.007735855, 0.017733892, 0.039453533, 0.03541392, 0.037002835, -0.059893966, -0.0075540724, -0.005318821, -0.017289534, 0.007089517, -0.00096698187, -0.0036625806, 0.018097457, 0.009661403, 0.0017176762, -0.0249244, -0.0218139, -0.012623784, 0.010624177, 0.0048609986, -0.027442424, -0.0073992205, 0.023739446, -0.03126659, 0.0027906979, 0.015363987, 0.012920022, -0.01208517, -0.013424974, -0.02878896, 0.010563582, -0.025449548, 0.0058271387, 0.013788539, -0.006274862, -0.0009223778, -0.004709513, 5.891099E-05, 0.010348137, 0.006497041, -0.02299885, -0.020979047, 0.00820041, 0.007500211, 0.021611918, 0.004473869, -0.0010822791, -0.0136269545, 0.018918844, -0.007944568, -0.022083206, -0.02750975, 0.00074059534, -0.025947768, -0.018353298, 0.041715715, 0.18431398, -0.008563975, -0.010994474, 0.018891914, 0.03417511, 0.011647545, -0.002585351, 0.010947346, 0.0039285216, -0.012973884, 0.024143407, 0.026607571, -0.013525964, -0.0024271328, 0.012502596, -0.017747357, -0.04225433, -0.00060552085, -0.003192976, -0.014354084, -0.010550117, 0.0017067356, 0.03686818, -0.037379865, 0.026944205, -0.009122788, 0.0022571327, -0.025516875, -0.0068875365, -0.0016293097, -0.008213876, -0.037056696, 0.01266418, -0.004797038, 0.008570707, -0.004544562, 0.031051142, 0.030727973, -0.005793475, -0.00030549557, -0.0048340675, 0.021773502, -0.0013566359, 0.003824165, 0.012859428, 0.0180032, -0.024210734, -0.009445957, -0.013216261, 0.012522793, -0.0335557, -0.010294275, 0.0004742335, 0.005948327, -0.008018628, -0.0069481307, 0.04306225, -0.01873033, -0.017760823, 0.002528123, -0.018959241, 0.023537466, -0.009445957, 0.0062445654, -0.013411508, 0.0068370416, -0.007870508, -0.0065610013, 0.0113715045, 0.02093865, 0.010099027, 0.0030802034, 0.00037366402, 0.03091649, -0.0052245636, -0.02326816, 0.010011503, -0.0060930797, -0.009883582, 0.019578647, 0.01602379, -0.021584988, 0.027630938, 0.0005903723, -0.017666565, -0.025745787, 0.0015796561, -0.0067225858, 0.014677253, 0.0049384246, 0.017491516, -0.0046152556, 0.003941987, -0.011607149, -0.014273291, 0.031670548, -0.031724412, 0.045324434, -0.025543807, 0.018339833, -0.031751342, 0.0070558535, -0.012152496, 0.021288749, -0.012933488, 0.0070356554, 0.0021561424, 0.0008104469, 0.004524364, -0.003450501, -0.0034050553, -0.021908157, -0.002576935, -0.01356636, 0.0031121837, -0.016144978, -0.0014508936, -0.021288749, -0.0034269367, -0.027038462, 0.013532696, 0.0019036666, 0.010354869, 0.002812579, 0.007237636, -0.017787753, -0.0072914977, 0.014057846, 0.038457096, -0.031643618, 0.014784976, 0.009977839, 0.016845178, 0.0041136704, -0.013088339, -0.025085984, 0.009540214, -0.029731536, -0.004069908, 0.012852696, -0.010738633, 0.0075742705, -0.0027957475, 0.040207595, 0.02221786, -0.031912927, 0.0020703005, -0.00564199, -0.015013888, 0.0037804025, 0.018487953, -0.018326368, -0.011640812, -0.018097457, 0.0062815947, -0.0044604037, -0.030000843, -0.019592114, -0.01965944, -0.0055039697, -0.03457907, -0.0037501054, 0.012415071, -0.015202402, -0.022756474, 0.009998037, -0.1717104, 0.017989734, 0.0046556517, 0.0013389627, 0.024264596, 0.0015140125, 0.030862628, 0.0026560442, -0.023887565, 0.009028531, 0.016495079, 0.002280697, -0.03568323, -0.008617837, 0.0045883246, 0.005170702, 0.01622577, 0.0034606, 0.035144616, -0.011270515, -0.017087555, -0.009183382, 0.015592898, -0.0037602044, -0.0070558535, -0.011526356, 0.007951301, 0.007607934, 0.020278847, -0.0034538673, -0.0033646591, -0.014663788, 0.016185375, -0.012758438, 0.0049384246, -0.011883189, -0.023631724, 0.011748535, -0.023375882, 0.031805202, 0.0033107977, 0.0029017872, 0.0418773, -0.027186582, 0.025866976, -0.002585351, -0.019767163, 0.0046623843, 0.00012949898, -0.017020227, 0.008799619, -0.0056958515, -0.008483183, 0.0026392124, 0.026095886, -0.0048307013, -0.005446742, 0.017518446, 0.015619829, -0.013196062, -0.0010048532, -0.021733107, 0.014838837, -0.010987742, -0.014057846, -0.011041603, 0.020373104, 0.014461807, -0.020130727, 0.022527564, -0.02477628, 0.006328724, -0.011600416, 0.0024119844, 0.009540214, 0.042550568, 0.0061099115, -0.001086487, -0.0030616885, -0.016185375, -0.0031811935, 0.04263136, -0.027604008, 0.017262604, -0.00059289706, 0.013027745, -0.024264596, 0.0048374343, -0.0169529, -0.023591328, -0.014354084, -0.024857072, -0.026122818, -0.018124389, 0.0032670354, 0.015902601, -0.00051883754, -0.01399052, -0.0020803995, -0.017424189, 0.011405168, -0.00729823, -0.0066384273, 0.018259041, 0.04158106, 0.03210144, 0.020602016, 0.0056184256, 0.024547368, -0.005416445, -0.002743569, 0.007540607, 0.00042542152, 0.0067966455, 0.022069741, -0.002918619, 0.004571493, -0.0335557, 0.02913906, 0.002034954, 0.012819032, -0.004578226, -0.03382501, 0.008126351, -0.0099845715, -0.023766378, -0.10147502, 0.0069548637, 0.014098242, 0.0024809944, -0.020952115, -0.0055006035, -0.0017976268, 0.02876203, 0.009237244, 0.002272281, 0.017693495, 0.005248128, 0.02417034, 0.0031391142, 0.00497882, 0.0057766438, 0.028627375, -0.007735855, -0.045324434, 0.025947768, -0.024762815, -0.013222993, -0.0009366848, -0.015202402, 0.013297052, -0.0056352573, -0.019201618, -0.0006576991, 0.028088761, 0.01030774, -0.0035043624, 0.010327939, 0.007567538, -0.0057564457, -0.011142594, 0.0075540724, -0.020426966, -0.008779421, 0.005584762, -0.017451119, -0.021679245, -0.00373664, 0.00020787165, -0.037379865, 0.003127332, -0.02623054, 0.0038746602, 0.012320814, 0.02625747, -0.027630938, -0.0074396166, 0.0025432718, -0.009486353, -0.014246361, 0.027375096, -0.017289534, -0.028708167, 0.0019305974, -0.0032603026, 0.009412293, -0.010812691, -0.0013271805, -0.0036221845, 0.0169529, 0.016885573, -0.023550931, -0.011950515, 0.013074874, 0.00682021, -0.01158695, 6.506508E-05, 0.016239235, -0.028142622, 0.047505826, -0.012341011, 0.011061802, -0.038403235, -0.019295875, 0.0070221904, -0.011990911, -0.0050057513, -0.0059348615, 0.03062025, -0.03536006, -0.00083274895, 0.032936294, -0.0014088143, -0.008712094, 0.0018464389, -0.031185796, 0.020171124, 0.01785508, 0.02309311, 0.010301008, -0.006443179, -0.010738633, -0.0031138668, 0.0059718913, -0.00072628836, -0.012051506, -0.019740231, 0.009573878, -0.07023537, 0.026122818, -0.009264174, -0.030862628, 0.0034252533, 0.010610712, 0.007836845, -0.010725167, 0.014259826, -0.012125566, -0.015700622, -0.024533903, 0.014556064, 0.0071905074, -0.0040261457, 0.0058069406, -0.014273291, -0.018299438, 0.03888799, -0.0024692123, -0.013882796, 0.0025146578, -0.019821024, 0.014125173, -0.027630938, -0.004130502, -0.010348137, 0.018770725, 0.0027772326, 0.004147334, 0.002378321, -0.016616266, 0.009116055, 0.033178672, -0.0078099146, 0.00016484558, -0.0021426769, 0.015485175, -0.003628917, -0.0068067443, -0.0024439646, -0.019215083, 0.0022251524, -0.027415494, -0.021908157, -0.013472103, 0.012064971, 0.00033389908, 0.001248913, 0.012603586, -0.005200999, 0.011681208, 0.025934301, -0.020265382, -0.011250316, -0.018124389, 0.0007645805, -0.031885996, -0.0057059503, -0.030727973, 0.030485597, 0.010873286, -0.018716864, 0.002831094, 0.0033511939, 0.014084777, -0.014798441, -0.0069750617, 0.02946223, 0.0074194185, -0.015754482, 0.010341404, 0.022635287, 0.0037400064, -0.00018872558, 0.00982972, -0.0061099115, -0.001228715, -0.011815862, -0.008537045, -0.007237636, -0.0108396225, -0.038780265, 0.031859066, -0.019524787, -0.009412293, 0.005436643, -0.005180801, -0.014259826, -0.0057126833, -0.024035685, 0.012468932, -0.017329931, -0.0012623784, 0.013088339, 0.004581592, -0.004817236, -0.006382585, 0.009695066, 0.01727607, -0.008227341, 0.008018628, 0.0033579266, -0.008085955, -0.013310518, -0.00079614, -0.008563975, -0.0010326256, -0.023025783, 0.00083948165, 0.0007448033, 0.005672287, -0.008974669, -0.0016764385, -0.0042685224, -0.008590906, 0.004749909, -0.019120825, -0.004315651, 0.03272085, 0.015942998, 0.030135497, -0.0039689178, -0.015781414, 0.00026131232, -0.0021982216, 0.020898255, -0.0041372348, 0.005514069, 0.01602379, 0.020157658, -0.006446546, -0.018743794, 0.0060493173, -0.021948552, 0.025220638, -0.014327154, 0.048179094, -0.013546162, 0.055800494, 0.015821809, -0.009169917, 0.0018986171, 0.004278621, 0.023200832, 0.020305777, -0.0005390356, -0.014515668, -0.022729544, -0.013499033, -0.0070962496, -0.0009854968, 0.015902601, -0.045701467, 0.01193705, 0.0037231748, -0.017060623, -0.008732292, -6.474949E-05, 0.029731536, 0.0069750617, 0.028492723, 0.001529161, -0.012792101, 0.0006484417, 0.025732322, 0.027348166, -0.010280809, -0.0015468344, 0.030512528, 0.00179931, -0.0086111035, -0.009392096, 0.00077930826, -0.005376049, -0.010603978, 0.027119255, 0.0276848, 0.0009627739, 0.015175472, 0.0051404047, 0.0021746573, 0.007028923, 0.015525571, 0.005554465, -0.022190928, -0.0015081214, 0.008590906]
+ }
+]
diff --git a/labs/5-Add-Checkout/end/Catalog.Data.Manager/appsettings.Development.json b/labs/5-Add-Checkout/end/Catalog.Data.Manager/appsettings.Development.json
new file mode 100644
index 0000000..61cc733
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data.Manager/appsettings.Development.json
@@ -0,0 +1,11 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "ConnectionStrings": {
+ "CatalogDB": "Host=localhost;Database=CatalogDB;Username=postgres"
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.Data.Manager/appsettings.json b/labs/5-Add-Checkout/end/Catalog.Data.Manager/appsettings.json
new file mode 100644
index 0000000..10f68b8
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data.Manager/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.Data/Catalog.Data.csproj b/labs/5-Add-Checkout/end/Catalog.Data/Catalog.Data.csproj
new file mode 100644
index 0000000..9bd24ff
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data/Catalog.Data.csproj
@@ -0,0 +1,14 @@
+
+
+
+ net8.0
+ eShop.Catalog.Data
+ enable
+ enable
+
+
+
+
+
+
+
diff --git a/labs/5-Add-Checkout/end/Catalog.Data/CatalogBrand.cs b/labs/5-Add-Checkout/end/Catalog.Data/CatalogBrand.cs
new file mode 100644
index 0000000..353a4ad
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data/CatalogBrand.cs
@@ -0,0 +1,11 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace eShop.Catalog.Data;
+
+public class CatalogBrand
+{
+ public int Id { get; set; }
+
+ [Required]
+ public required string Brand { get; set; }
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.Data/CatalogDbContext.cs b/labs/5-Add-Checkout/end/Catalog.Data/CatalogDbContext.cs
new file mode 100644
index 0000000..316eb79
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data/CatalogDbContext.cs
@@ -0,0 +1,27 @@
+using Microsoft.EntityFrameworkCore;
+using eShop.Catalog.Data.EntityConfigurations;
+
+namespace eShop.Catalog.Data;
+
+///
+/// Add migrations using the following command inside the 'Catalog.Data.Manager' project directory:
+///
+/// dotnet ef migrations add --context CatalogDbContext [migration-name]
+///
+public class CatalogDbContext(DbContextOptions options) : DbContext(options)
+{
+ public DbSet CatalogItems { get; set; }
+
+ public DbSet CatalogBrands { get; set; }
+
+ public DbSet CatalogTypes { get; set; }
+
+ protected override void OnModelCreating(ModelBuilder modelBuilder)
+ {
+ modelBuilder.HasDefaultSchema("catalog");
+
+ modelBuilder.ApplyConfiguration(new CatalogBrandEntityTypeConfiguration());
+ modelBuilder.ApplyConfiguration(new CatalogTypeEntityTypeConfiguration());
+ modelBuilder.ApplyConfiguration(new CatalogItemEntityTypeConfiguration());
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.Data/CatalogItem.cs b/labs/5-Add-Checkout/end/Catalog.Data/CatalogItem.cs
new file mode 100644
index 0000000..a2f3538
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data/CatalogItem.cs
@@ -0,0 +1,47 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace eShop.Catalog.Data;
+
+public class CatalogItem
+{
+ public int Id { get; set; }
+
+ [Required]
+ public required string Name { get; set; }
+
+ public required string Description { get; set; }
+
+ public decimal Price { get; set; }
+
+ public required string PictureFileName { get; set; }
+
+ public string? PictureUri { get; set; }
+
+ public int CatalogTypeId { get; set; }
+
+ public virtual CatalogType? CatalogType { get; set; }
+
+ public int CatalogBrandId { get; set; }
+
+ public virtual CatalogBrand? CatalogBrand { get; set; }
+
+ ///
+ /// Quantity in stock
+ ///
+ public int AvailableStock { get; set; }
+
+ ///
+ /// Available stock at which we should reorder
+ ///
+ public int RestockThreshold { get; set; }
+
+ ///
+ /// Maximum number of units that can be in-stock at any time (due to physicial/logistical constraints in warehouses)
+ ///
+ public int MaxStockThreshold { get; set; }
+
+ ///
+ /// True if item is on reorder
+ ///
+ public bool OnReorder { get; set; }
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.Data/CatalogType.cs b/labs/5-Add-Checkout/end/Catalog.Data/CatalogType.cs
new file mode 100644
index 0000000..93f5548
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data/CatalogType.cs
@@ -0,0 +1,11 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace eShop.Catalog.Data;
+
+public class CatalogType
+{
+ public int Id { get; set; }
+
+ [Required]
+ public required string Type { get; set; }
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.Data/EntityConfigurations/CatalogBrandEntityTypeConfiguration.cs b/labs/5-Add-Checkout/end/Catalog.Data/EntityConfigurations/CatalogBrandEntityTypeConfiguration.cs
new file mode 100644
index 0000000..2017ec2
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data/EntityConfigurations/CatalogBrandEntityTypeConfiguration.cs
@@ -0,0 +1,15 @@
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Metadata.Builders;
+
+namespace eShop.Catalog.Data.EntityConfigurations;
+
+internal class CatalogBrandEntityTypeConfiguration : IEntityTypeConfiguration
+{
+ public void Configure(EntityTypeBuilder builder)
+ {
+ builder.ToTable("CatalogBrand");
+
+ builder.Property(cb => cb.Brand)
+ .HasMaxLength(100);
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.Data/EntityConfigurations/CatalogItemEntityTypeConfiguration.cs b/labs/5-Add-Checkout/end/Catalog.Data/EntityConfigurations/CatalogItemEntityTypeConfiguration.cs
new file mode 100644
index 0000000..faf6cfc
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data/EntityConfigurations/CatalogItemEntityTypeConfiguration.cs
@@ -0,0 +1,25 @@
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Metadata.Builders;
+
+namespace eShop.Catalog.Data.EntityConfigurations;
+
+internal class CatalogItemEntityTypeConfiguration : IEntityTypeConfiguration
+{
+ public void Configure(EntityTypeBuilder builder)
+ {
+ builder.ToTable("Catalog");
+
+ builder.Property(ci => ci.Name)
+ .HasMaxLength(50);
+
+ builder.Ignore(ci => ci.PictureUri);
+
+ builder.HasOne(ci => ci.CatalogBrand)
+ .WithMany();
+
+ builder.HasOne(ci => ci.CatalogType)
+ .WithMany();
+
+ builder.HasIndex(ci => ci.Name);
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Catalog.Data/EntityConfigurations/CatalogTypeEntityTypeConfiguration.cs b/labs/5-Add-Checkout/end/Catalog.Data/EntityConfigurations/CatalogTypeEntityTypeConfiguration.cs
new file mode 100644
index 0000000..ed05cb1
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Catalog.Data/EntityConfigurations/CatalogTypeEntityTypeConfiguration.cs
@@ -0,0 +1,15 @@
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Metadata.Builders;
+
+namespace eShop.Catalog.Data.EntityConfigurations;
+
+internal class CatalogTypeEntityTypeConfiguration: IEntityTypeConfiguration
+{
+ public void Configure(EntityTypeBuilder builder)
+ {
+ builder.ToTable("CatalogType");
+
+ builder.Property(cb => cb.Type)
+ .HasMaxLength(100);
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Keycloak/data/import/eshop-realm.json b/labs/5-Add-Checkout/end/Keycloak/data/import/eshop-realm.json
new file mode 100644
index 0000000..6361cbc
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Keycloak/data/import/eshop-realm.json
@@ -0,0 +1,1944 @@
+{
+ "id" : "e3a46e00-f700-4eaa-b1d3-6aad1045be73",
+ "realm" : "eShop",
+ "displayName" : "",
+ "displayNameHtml" : "",
+ "notBefore" : 0,
+ "defaultSignatureAlgorithm" : "RS256",
+ "revokeRefreshToken" : false,
+ "refreshTokenMaxReuse" : 0,
+ "accessTokenLifespan" : 300,
+ "accessTokenLifespanForImplicitFlow" : 900,
+ "ssoSessionIdleTimeout" : 1800,
+ "ssoSessionMaxLifespan" : 36000,
+ "ssoSessionIdleTimeoutRememberMe" : 0,
+ "ssoSessionMaxLifespanRememberMe" : 0,
+ "offlineSessionIdleTimeout" : 2592000,
+ "offlineSessionMaxLifespanEnabled" : false,
+ "offlineSessionMaxLifespan" : 5184000,
+ "clientSessionIdleTimeout" : 0,
+ "clientSessionMaxLifespan" : 0,
+ "clientOfflineSessionIdleTimeout" : 0,
+ "clientOfflineSessionMaxLifespan" : 0,
+ "accessCodeLifespan" : 60,
+ "accessCodeLifespanUserAction" : 300,
+ "accessCodeLifespanLogin" : 1800,
+ "actionTokenGeneratedByAdminLifespan" : 43200,
+ "actionTokenGeneratedByUserLifespan" : 300,
+ "oauth2DeviceCodeLifespan" : 600,
+ "oauth2DevicePollingInterval" : 5,
+ "enabled" : true,
+ "sslRequired" : "external",
+ "registrationAllowed" : true,
+ "registrationEmailAsUsername" : true,
+ "rememberMe" : false,
+ "verifyEmail" : false,
+ "loginWithEmailAllowed" : true,
+ "duplicateEmailsAllowed" : false,
+ "resetPasswordAllowed" : false,
+ "editUsernameAllowed" : false,
+ "bruteForceProtected" : false,
+ "permanentLockout" : false,
+ "maxFailureWaitSeconds" : 900,
+ "minimumQuickLoginWaitSeconds" : 60,
+ "waitIncrementSeconds" : 60,
+ "quickLoginCheckMilliSeconds" : 1000,
+ "maxDeltaTimeSeconds" : 43200,
+ "failureFactor" : 30,
+ "roles" : {
+ "realm" : [ {
+ "id" : "fbab7668-d3db-44d7-9c41-f54ef80d1f60",
+ "name" : "uma_authorization",
+ "description" : "${role_uma_authorization}",
+ "composite" : false,
+ "clientRole" : false,
+ "containerId" : "e3a46e00-f700-4eaa-b1d3-6aad1045be73",
+ "attributes" : { }
+ }, {
+ "id" : "843ea8cf-34fa-4e7d-a28a-181252a553aa",
+ "name" : "offline_access",
+ "description" : "${role_offline-access}",
+ "composite" : false,
+ "clientRole" : false,
+ "containerId" : "e3a46e00-f700-4eaa-b1d3-6aad1045be73",
+ "attributes" : { }
+ }, {
+ "id" : "b2fa8449-be5e-4cde-8771-74e028be70ea",
+ "name" : "default-roles-eshop",
+ "description" : "${role_default-roles}",
+ "composite" : true,
+ "composites" : {
+ "realm" : [ "offline_access", "uma_authorization" ],
+ "client" : {
+ "account" : [ "view-profile", "manage-account" ]
+ }
+ },
+ "clientRole" : false,
+ "containerId" : "e3a46e00-f700-4eaa-b1d3-6aad1045be73",
+ "attributes" : { }
+ } ],
+ "client" : {
+ "webapp" : [ {
+ "id" : "7139816d-84aa-427a-b7ca-b020e9b8b6e5",
+ "name" : "uma_protection",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "cc5ff175-d0b3-4759-8b01-49e60dfa9269",
+ "attributes" : { }
+ } ],
+ "realm-management" : [ {
+ "id" : "8175000f-6ed7-4854-8d33-0aefdb634d37",
+ "name" : "manage-users",
+ "description" : "${role_manage-users}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "18ef8a22-f1d4-43e2-aea8-56e464fdcbc1",
+ "name" : "view-users",
+ "description" : "${role_view-users}",
+ "composite" : true,
+ "composites" : {
+ "client" : {
+ "realm-management" : [ "query-groups", "query-users" ]
+ }
+ },
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "34eeeecc-6e38-4fa7-9b9a-5396984beb70",
+ "name" : "create-client",
+ "description" : "${role_create-client}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "1b982c51-ce1d-458a-8f87-dc473dee86c8",
+ "name" : "query-clients",
+ "description" : "${role_query-clients}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "740a92df-796f-4b13-80f1-5d8ddc1234fa",
+ "name" : "view-realm",
+ "description" : "${role_view-realm}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "000b2e2a-4eb2-4d43-b759-1aae49784d41",
+ "name" : "query-realms",
+ "description" : "${role_query-realms}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "daa9c3f8-37b1-4e75-a0b6-714fbc255e7a",
+ "name" : "view-events",
+ "description" : "${role_view-events}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "f3ca11fc-8037-495a-be86-6b0edde4158a",
+ "name" : "query-users",
+ "description" : "${role_query-users}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "4af47186-68b1-4629-8189-ccf2893a5986",
+ "name" : "manage-clients",
+ "description" : "${role_manage-clients}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "30eaf565-6c5e-4173-bed9-66bd676838c5",
+ "name" : "manage-authorization",
+ "description" : "${role_manage-authorization}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "74c174ee-9aad-442a-9497-76aec3ab0c4f",
+ "name" : "manage-realm",
+ "description" : "${role_manage-realm}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "a16beadc-0c9c-4cbe-a31b-a6b33f8a74c0",
+ "name" : "view-identity-providers",
+ "description" : "${role_view-identity-providers}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "1dc381e7-0e24-44d7-92e4-d8edc8892ba3",
+ "name" : "manage-events",
+ "description" : "${role_manage-events}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "7389a745-41fe-4c87-bbd8-b6751e41cb0d",
+ "name" : "manage-identity-providers",
+ "description" : "${role_manage-identity-providers}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "dfcb55ac-6048-4633-8390-76a92dc01ff8",
+ "name" : "view-authorization",
+ "description" : "${role_view-authorization}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "1a7f77d3-ad95-402b-a13a-e99290b120cc",
+ "name" : "impersonation",
+ "description" : "${role_impersonation}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "86f91729-f0a4-474a-828a-783acaa70ee6",
+ "name" : "query-groups",
+ "description" : "${role_query-groups}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "7e77d988-3a49-4f94-b770-36717a3a67a0",
+ "name" : "realm-admin",
+ "description" : "${role_realm-admin}",
+ "composite" : true,
+ "composites" : {
+ "client" : {
+ "realm-management" : [ "manage-users", "view-users", "query-clients", "create-client", "view-realm", "query-realms", "view-events", "query-users", "manage-clients", "manage-authorization", "manage-realm", "view-identity-providers", "manage-events", "manage-identity-providers", "view-authorization", "impersonation", "view-clients", "query-groups" ]
+ }
+ },
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ }, {
+ "id" : "447bd792-fbfa-4a8d-bbfb-9c8c4fa55bbe",
+ "name" : "view-clients",
+ "description" : "${role_view-clients}",
+ "composite" : true,
+ "composites" : {
+ "client" : {
+ "realm-management" : [ "query-clients" ]
+ }
+ },
+ "clientRole" : true,
+ "containerId" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "attributes" : { }
+ } ],
+ "security-admin-console" : [ ],
+ "orderingswaggerui" : [ ],
+ "admin-cli" : [ ],
+ "account-console" : [ ],
+ "broker" : [ {
+ "id" : "4976b16a-a2e9-4738-b2dc-0e7a28679300",
+ "name" : "read-token",
+ "description" : "${role_read-token}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "1790c30e-7010-4d4f-bc3b-181a65868873",
+ "attributes" : { }
+ } ],
+ "account" : [ {
+ "id" : "e39429fa-1cec-4595-908d-e0c53e9f9c6c",
+ "name" : "view-applications",
+ "description" : "${role_view-applications}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "82385f82-f986-49fe-a512-5a8ea45f09ee",
+ "attributes" : { }
+ }, {
+ "id" : "61c7e1eb-6fe7-4cf5-9538-4975f4c0321c",
+ "name" : "delete-account",
+ "description" : "${role_delete-account}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "82385f82-f986-49fe-a512-5a8ea45f09ee",
+ "attributes" : { }
+ }, {
+ "id" : "d3d3938b-9c19-4261-9105-c77426dcf984",
+ "name" : "view-consent",
+ "description" : "${role_view-consent}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "82385f82-f986-49fe-a512-5a8ea45f09ee",
+ "attributes" : { }
+ }, {
+ "id" : "de1829b1-0c28-4ef2-b6d6-59d412086da6",
+ "name" : "manage-account-links",
+ "description" : "${role_manage-account-links}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "82385f82-f986-49fe-a512-5a8ea45f09ee",
+ "attributes" : { }
+ }, {
+ "id" : "9a4e43f4-28fe-4182-a916-8b0270dbd5c6",
+ "name" : "manage-consent",
+ "description" : "${role_manage-consent}",
+ "composite" : true,
+ "composites" : {
+ "client" : {
+ "account" : [ "view-consent" ]
+ }
+ },
+ "clientRole" : true,
+ "containerId" : "82385f82-f986-49fe-a512-5a8ea45f09ee",
+ "attributes" : { }
+ }, {
+ "id" : "7d24e973-1015-4b85-9246-aaa0fc8ef71e",
+ "name" : "view-profile",
+ "description" : "${role_view-profile}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "82385f82-f986-49fe-a512-5a8ea45f09ee",
+ "attributes" : { }
+ }, {
+ "id" : "8f10d2cc-ccdf-41f0-b5f2-2c1226b2e182",
+ "name" : "view-groups",
+ "description" : "${role_view-groups}",
+ "composite" : false,
+ "clientRole" : true,
+ "containerId" : "82385f82-f986-49fe-a512-5a8ea45f09ee",
+ "attributes" : { }
+ }, {
+ "id" : "4497bf44-3add-482d-b081-ce0c8e2c4d55",
+ "name" : "manage-account",
+ "description" : "${role_manage-account}",
+ "composite" : true,
+ "composites" : {
+ "client" : {
+ "account" : [ "manage-account-links" ]
+ }
+ },
+ "clientRole" : true,
+ "containerId" : "82385f82-f986-49fe-a512-5a8ea45f09ee",
+ "attributes" : { }
+ } ]
+ }
+ },
+ "groups" : [ ],
+ "defaultRole" : {
+ "id" : "b2fa8449-be5e-4cde-8771-74e028be70ea",
+ "name" : "default-roles-eshop",
+ "description" : "${role_default-roles}",
+ "composite" : true,
+ "clientRole" : false,
+ "containerId" : "e3a46e00-f700-4eaa-b1d3-6aad1045be73"
+ },
+ "requiredCredentials" : [ "password" ],
+ "otpPolicyType" : "totp",
+ "otpPolicyAlgorithm" : "HmacSHA1",
+ "otpPolicyInitialCounter" : 0,
+ "otpPolicyDigits" : 6,
+ "otpPolicyLookAheadWindow" : 1,
+ "otpPolicyPeriod" : 30,
+ "otpPolicyCodeReusable" : false,
+ "otpSupportedApplications" : [ "totpAppFreeOTPName", "totpAppGoogleName", "totpAppMicrosoftAuthenticatorName" ],
+ "localizationTexts" : { },
+ "webAuthnPolicyRpEntityName" : "keycloak",
+ "webAuthnPolicySignatureAlgorithms" : [ "ES256" ],
+ "webAuthnPolicyRpId" : "",
+ "webAuthnPolicyAttestationConveyancePreference" : "not specified",
+ "webAuthnPolicyAuthenticatorAttachment" : "not specified",
+ "webAuthnPolicyRequireResidentKey" : "not specified",
+ "webAuthnPolicyUserVerificationRequirement" : "not specified",
+ "webAuthnPolicyCreateTimeout" : 0,
+ "webAuthnPolicyAvoidSameAuthenticatorRegister" : false,
+ "webAuthnPolicyAcceptableAaguids" : [ ],
+ "webAuthnPolicyExtraOrigins" : [ ],
+ "webAuthnPolicyPasswordlessRpEntityName" : "keycloak",
+ "webAuthnPolicyPasswordlessSignatureAlgorithms" : [ "ES256" ],
+ "webAuthnPolicyPasswordlessRpId" : "",
+ "webAuthnPolicyPasswordlessAttestationConveyancePreference" : "not specified",
+ "webAuthnPolicyPasswordlessAuthenticatorAttachment" : "not specified",
+ "webAuthnPolicyPasswordlessRequireResidentKey" : "not specified",
+ "webAuthnPolicyPasswordlessUserVerificationRequirement" : "not specified",
+ "webAuthnPolicyPasswordlessCreateTimeout" : 0,
+ "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister" : false,
+ "webAuthnPolicyPasswordlessAcceptableAaguids" : [ ],
+ "webAuthnPolicyPasswordlessExtraOrigins" : [ ],
+ "users" : [ {
+ "id" : "dacfbd28-991c-43d8-bd9a-36e73095fd73",
+ "createdTimestamp" : 1705700546001,
+ "username" : "service-account-webapp",
+ "enabled" : true,
+ "totp" : false,
+ "emailVerified" : false,
+ "serviceAccountClientId" : "webapp",
+ "credentials" : [ ],
+ "disableableCredentialTypes" : [ ],
+ "requiredActions" : [ ],
+ "realmRoles" : [ "default-roles-eshop" ],
+ "clientRoles" : {
+ "webapp" : [ "uma_protection" ]
+ },
+ "notBefore" : 0,
+ "groups" : [ ]
+ }, {
+ "id" : "179dc1ef-e1ea-4488-95d8-25966c51dbe7",
+ "createdTimestamp" : 1706043756945,
+ "username" : "test@example.com",
+ "enabled" : true,
+ "totp" : false,
+ "emailVerified" : true,
+ "firstName" : "Test",
+ "lastName" : "User",
+ "email" : "test@example.com",
+ "credentials" : [ {
+ "id" : "b3303049-ca64-4b2e-8e54-f8ba68cb1dd3",
+ "type" : "password",
+ "userLabel" : "My password",
+ "createdDate" : 1706043767385,
+ "secretData" : "{\"value\":\"yiJD8l5ry2Cod9AUvrkku/W/dYpJrRP3e7AYKw+zFpE=\",\"salt\":\"EJ6jMyRlQOGqUmWDq493qw==\",\"additionalParameters\":{}}",
+ "credentialData" : "{\"hashIterations\":27500,\"algorithm\":\"pbkdf2-sha256\",\"additionalParameters\":{}}"
+ } ],
+ "disableableCredentialTypes" : [ ],
+ "requiredActions" : [ ],
+ "realmRoles" : [ "default-roles-eshop" ],
+ "notBefore" : 0,
+ "groups" : [ ]
+ } ],
+ "scopeMappings" : [ {
+ "clientScope" : "offline_access",
+ "roles" : [ "offline_access" ]
+ } ],
+ "clientScopeMappings" : {
+ "account" : [ {
+ "client" : "account-console",
+ "roles" : [ "manage-account", "view-groups" ]
+ } ]
+ },
+ "clients" : [ {
+ "id" : "82385f82-f986-49fe-a512-5a8ea45f09ee",
+ "clientId" : "account",
+ "name" : "${client_account}",
+ "rootUrl" : "${authBaseUrl}",
+ "baseUrl" : "/realms/eShop/account/",
+ "surrogateAuthRequired" : false,
+ "enabled" : true,
+ "alwaysDisplayInConsole" : false,
+ "clientAuthenticatorType" : "client-secret",
+ "redirectUris" : [ "/realms/eShop/account/*" ],
+ "webOrigins" : [ ],
+ "notBefore" : 0,
+ "bearerOnly" : false,
+ "consentRequired" : false,
+ "standardFlowEnabled" : true,
+ "implicitFlowEnabled" : false,
+ "directAccessGrantsEnabled" : false,
+ "serviceAccountsEnabled" : false,
+ "publicClient" : true,
+ "frontchannelLogout" : false,
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "post.logout.redirect.uris" : "+"
+ },
+ "authenticationFlowBindingOverrides" : { },
+ "fullScopeAllowed" : false,
+ "nodeReRegistrationTimeout" : 0,
+ "defaultClientScopes" : [ "web-origins", "acr", "profile", "roles", "email" ],
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
+ }, {
+ "id" : "d84cf061-eeeb-4675-b0d0-5cd609bc44c6",
+ "clientId" : "account-console",
+ "name" : "${client_account-console}",
+ "rootUrl" : "${authBaseUrl}",
+ "baseUrl" : "/realms/eShop/account/",
+ "surrogateAuthRequired" : false,
+ "enabled" : true,
+ "alwaysDisplayInConsole" : false,
+ "clientAuthenticatorType" : "client-secret",
+ "redirectUris" : [ "/realms/eShop/account/*" ],
+ "webOrigins" : [ ],
+ "notBefore" : 0,
+ "bearerOnly" : false,
+ "consentRequired" : false,
+ "standardFlowEnabled" : true,
+ "implicitFlowEnabled" : false,
+ "directAccessGrantsEnabled" : false,
+ "serviceAccountsEnabled" : false,
+ "publicClient" : true,
+ "frontchannelLogout" : false,
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "post.logout.redirect.uris" : "+",
+ "pkce.code.challenge.method" : "S256"
+ },
+ "authenticationFlowBindingOverrides" : { },
+ "fullScopeAllowed" : false,
+ "nodeReRegistrationTimeout" : 0,
+ "protocolMappers" : [ {
+ "id" : "6abcbb09-2122-4bbb-91f4-4c61c8abff65",
+ "name" : "audience resolve",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-audience-resolve-mapper",
+ "consentRequired" : false,
+ "config" : { }
+ } ],
+ "defaultClientScopes" : [ "web-origins", "acr", "profile", "roles", "email" ],
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
+ }, {
+ "id" : "f63db859-cf66-42f4-9ce0-1d40ca5c922c",
+ "clientId" : "admin-cli",
+ "name" : "${client_admin-cli}",
+ "surrogateAuthRequired" : false,
+ "enabled" : true,
+ "alwaysDisplayInConsole" : false,
+ "clientAuthenticatorType" : "client-secret",
+ "redirectUris" : [ ],
+ "webOrigins" : [ ],
+ "notBefore" : 0,
+ "bearerOnly" : false,
+ "consentRequired" : false,
+ "standardFlowEnabled" : false,
+ "implicitFlowEnabled" : false,
+ "directAccessGrantsEnabled" : true,
+ "serviceAccountsEnabled" : false,
+ "publicClient" : true,
+ "frontchannelLogout" : false,
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "post.logout.redirect.uris" : "+"
+ },
+ "authenticationFlowBindingOverrides" : { },
+ "fullScopeAllowed" : false,
+ "nodeReRegistrationTimeout" : 0,
+ "defaultClientScopes" : [ "web-origins", "acr", "profile", "roles", "email" ],
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
+ }, {
+ "id" : "1790c30e-7010-4d4f-bc3b-181a65868873",
+ "clientId" : "broker",
+ "name" : "${client_broker}",
+ "surrogateAuthRequired" : false,
+ "enabled" : true,
+ "alwaysDisplayInConsole" : false,
+ "clientAuthenticatorType" : "client-secret",
+ "redirectUris" : [ ],
+ "webOrigins" : [ ],
+ "notBefore" : 0,
+ "bearerOnly" : true,
+ "consentRequired" : false,
+ "standardFlowEnabled" : true,
+ "implicitFlowEnabled" : false,
+ "directAccessGrantsEnabled" : false,
+ "serviceAccountsEnabled" : false,
+ "publicClient" : false,
+ "frontchannelLogout" : false,
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "post.logout.redirect.uris" : "+"
+ },
+ "authenticationFlowBindingOverrides" : { },
+ "fullScopeAllowed" : false,
+ "nodeReRegistrationTimeout" : 0,
+ "defaultClientScopes" : [ "web-origins", "acr", "profile", "roles", "email" ],
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
+ }, {
+ "id" : "6bbe9167-4ac5-49e3-a0ea-06fa6b9fe56c",
+ "clientId" : "orderingswaggerui",
+ "name" : "Ordering Swagger UI",
+ "description" : "",
+ "rootUrl" : "${ORDERINGAPI_HTTP}",
+ "adminUrl" : "${ORDERINGAPI_HTTP}",
+ "baseUrl" : "${ORDERINGAPI_HTTP}",
+ "surrogateAuthRequired" : false,
+ "enabled" : true,
+ "alwaysDisplayInConsole" : false,
+ "clientAuthenticatorType" : "client-secret",
+ "redirectUris" : [ "${ORDERINGAPI_HTTP}/*" ],
+ "webOrigins" : [ "${ORDERINGAPI_HTTP}" ],
+ "notBefore" : 0,
+ "bearerOnly" : false,
+ "consentRequired" : false,
+ "standardFlowEnabled" : true,
+ "implicitFlowEnabled" : true,
+ "directAccessGrantsEnabled" : true,
+ "serviceAccountsEnabled" : false,
+ "publicClient" : true,
+ "frontchannelLogout" : true,
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "oidc.ciba.grant.enabled" : "false",
+ "post.logout.redirect.uris" : "+",
+ "oauth2.device.authorization.grant.enabled" : "false",
+ "backchannel.logout.session.required" : "true",
+ "backchannel.logout.revoke.offline.tokens" : "false"
+ },
+ "authenticationFlowBindingOverrides" : { },
+ "fullScopeAllowed" : true,
+ "nodeReRegistrationTimeout" : -1,
+ "defaultClientScopes" : [ "web-origins", "acr", "profile", "roles", "email" ],
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
+ }, {
+ "id" : "348d0c1d-6d87-4975-b5b1-d3f7ca245cd0",
+ "clientId" : "realm-management",
+ "name" : "${client_realm-management}",
+ "surrogateAuthRequired" : false,
+ "enabled" : true,
+ "alwaysDisplayInConsole" : false,
+ "clientAuthenticatorType" : "client-secret",
+ "redirectUris" : [ ],
+ "webOrigins" : [ ],
+ "notBefore" : 0,
+ "bearerOnly" : true,
+ "consentRequired" : false,
+ "standardFlowEnabled" : true,
+ "implicitFlowEnabled" : false,
+ "directAccessGrantsEnabled" : false,
+ "serviceAccountsEnabled" : false,
+ "publicClient" : false,
+ "frontchannelLogout" : false,
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "post.logout.redirect.uris" : "+"
+ },
+ "authenticationFlowBindingOverrides" : { },
+ "fullScopeAllowed" : false,
+ "nodeReRegistrationTimeout" : 0,
+ "defaultClientScopes" : [ "web-origins", "acr", "profile", "roles", "email" ],
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
+ }, {
+ "id" : "e6a9aea6-f8d4-40f6-a832-6537fce8791e",
+ "clientId" : "security-admin-console",
+ "name" : "${client_security-admin-console}",
+ "rootUrl" : "${authAdminUrl}",
+ "baseUrl" : "/admin/eShop/console/",
+ "surrogateAuthRequired" : false,
+ "enabled" : true,
+ "alwaysDisplayInConsole" : false,
+ "clientAuthenticatorType" : "client-secret",
+ "redirectUris" : [ "/admin/eShop/console/*" ],
+ "webOrigins" : [ "+" ],
+ "notBefore" : 0,
+ "bearerOnly" : false,
+ "consentRequired" : false,
+ "standardFlowEnabled" : true,
+ "implicitFlowEnabled" : false,
+ "directAccessGrantsEnabled" : false,
+ "serviceAccountsEnabled" : false,
+ "publicClient" : true,
+ "frontchannelLogout" : false,
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "post.logout.redirect.uris" : "+",
+ "pkce.code.challenge.method" : "S256"
+ },
+ "authenticationFlowBindingOverrides" : { },
+ "fullScopeAllowed" : false,
+ "nodeReRegistrationTimeout" : 0,
+ "protocolMappers" : [ {
+ "id" : "ad67051f-d487-417e-9375-f6563ee86ddf",
+ "name" : "locale",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "locale",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "locale",
+ "jsonType.label" : "String"
+ }
+ } ],
+ "defaultClientScopes" : [ "web-origins", "acr", "profile", "roles", "email" ],
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
+ }, {
+ "id" : "cc5ff175-d0b3-4759-8b01-49e60dfa9269",
+ "clientId" : "webapp",
+ "name" : "eShop Web Frontend",
+ "description" : "The frontend web site of the eShop system.",
+ "rootUrl": "${WEBAPP_HTTP}",
+ "adminUrl": "${WEBAPP_HTTP}",
+ "baseUrl": "${WEBAPP_HTTP}",
+ "surrogateAuthRequired" : false,
+ "enabled" : true,
+ "alwaysDisplayInConsole" : false,
+ "clientAuthenticatorType" : "client-secret",
+ "secret" : "dAayhA7hWQFrNpKJvskRodHSDuf1burR",
+ "redirectUris": [ "${WEBAPP_HTTP}/*", "${WEBAPP_HTTPS}/*" ],
+ "webOrigins": [ "${WEBAPP_HTTPS}", "${WEBAPP_HTTP}" ],
+ "notBefore" : 0,
+ "bearerOnly" : false,
+ "consentRequired" : false,
+ "standardFlowEnabled" : true,
+ "implicitFlowEnabled" : false,
+ "directAccessGrantsEnabled" : true,
+ "serviceAccountsEnabled" : true,
+ "publicClient" : false,
+ "frontchannelLogout" : true,
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "oidc.ciba.grant.enabled" : "false",
+ "client.secret.creation.time" : "1705700546",
+ "backchannel.logout.session.required" : "true",
+ "post.logout.redirect.uris" : "+",
+ "oauth2.device.authorization.grant.enabled" : "false",
+ "display.on.consent.screen" : "false",
+ "backchannel.logout.revoke.offline.tokens" : "false"
+ },
+ "authenticationFlowBindingOverrides" : { },
+ "fullScopeAllowed" : true,
+ "nodeReRegistrationTimeout" : -1,
+ "protocolMappers" : [ {
+ "id" : "46526429-fa70-4518-9512-089a9830f179",
+ "name" : "Client Host",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usersessionmodel-note-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "user.session.note" : "clientHost",
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "clientHost",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "9eee2065-3d31-4621-be61-b83f05f2c113",
+ "name" : "Client ID",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usersessionmodel-note-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "user.session.note" : "client_id",
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "client_id",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "4951c816-a177-4193-b714-585b0bb23ab5",
+ "name" : "Client IP Address",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usersessionmodel-note-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "user.session.note" : "clientAddress",
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "clientAddress",
+ "jsonType.label" : "String"
+ }
+ } ],
+ "defaultClientScopes" : [ "web-origins", "acr", "profile", "roles", "email" ],
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
+ } ],
+ "clientScopes" : [ {
+ "id" : "4d6f4264-5a7e-4d41-894c-6b721f14fd1f",
+ "name" : "address",
+ "description" : "OpenID Connect built-in scope: address",
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "include.in.token.scope" : "true",
+ "display.on.consent.screen" : "true",
+ "consent.screen.text" : "${addressScopeConsentText}"
+ },
+ "protocolMappers" : [ {
+ "id" : "c5d42bda-8b7c-4da7-9ef7-e27b8c5078c6",
+ "name" : "address",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-address-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "user.attribute.formatted" : "formatted",
+ "user.attribute.country" : "country",
+ "introspection.token.claim" : "true",
+ "user.attribute.postal_code" : "postal_code",
+ "userinfo.token.claim" : "true",
+ "user.attribute.street" : "street",
+ "id.token.claim" : "true",
+ "user.attribute.region" : "region",
+ "access.token.claim" : "true",
+ "user.attribute.locality" : "locality"
+ }
+ } ]
+ }, {
+ "id" : "bbb1ecc5-64ba-4013-a020-49b0a9059bb2",
+ "name" : "acr",
+ "description" : "OpenID Connect scope for add acr (authentication context class reference) to the token",
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "include.in.token.scope" : "false",
+ "display.on.consent.screen" : "false"
+ },
+ "protocolMappers" : [ {
+ "id" : "1230fed0-b7d3-4868-b286-cd25b8158c83",
+ "name" : "acr loa level",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-acr-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "id.token.claim" : "true",
+ "introspection.token.claim" : "true",
+ "access.token.claim" : "true",
+ "userinfo.token.claim" : "true"
+ }
+ } ]
+ }, {
+ "id" : "5ad804f6-d175-4b97-81dd-b9091071b9e4",
+ "name" : "phone",
+ "description" : "OpenID Connect built-in scope: phone",
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "include.in.token.scope" : "true",
+ "display.on.consent.screen" : "true",
+ "consent.screen.text" : "${phoneScopeConsentText}"
+ },
+ "protocolMappers" : [ {
+ "id" : "f28975dc-48c3-463f-aa6a-e999945d4566",
+ "name" : "phone number verified",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "phoneNumberVerified",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "phone_number_verified",
+ "jsonType.label" : "boolean"
+ }
+ }, {
+ "id" : "d50e7819-b86f-4a84-a8d2-262898f2d672",
+ "name" : "phone number",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "phoneNumber",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "phone_number",
+ "jsonType.label" : "String"
+ }
+ } ]
+ }, {
+ "id" : "c217f089-d24b-44b0-98b6-6303245f8522",
+ "name" : "microprofile-jwt",
+ "description" : "Microprofile - JWT built-in scope",
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "include.in.token.scope" : "true",
+ "display.on.consent.screen" : "false"
+ },
+ "protocolMappers" : [ {
+ "id" : "d89fa246-7ba8-45f8-b939-c6d7356a5023",
+ "name" : "groups",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-realm-role-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "multivalued" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "foo",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "groups",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "2954c68d-8cc5-47bb-a9ef-d333dfcf3c77",
+ "name" : "upn",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "username",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "upn",
+ "jsonType.label" : "String"
+ }
+ } ]
+ }, {
+ "id" : "184dd52a-5636-41fe-85fa-af2da1f7f6b7",
+ "name" : "offline_access",
+ "description" : "OpenID Connect built-in scope: offline_access",
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "consent.screen.text" : "${offlineAccessScopeConsentText}",
+ "display.on.consent.screen" : "true"
+ }
+ }, {
+ "id" : "59aa61dd-72ff-4704-9325-11f6ba53851f",
+ "name" : "profile",
+ "description" : "OpenID Connect built-in scope: profile",
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "include.in.token.scope" : "true",
+ "display.on.consent.screen" : "true",
+ "consent.screen.text" : "${profileScopeConsentText}"
+ },
+ "protocolMappers" : [ {
+ "id" : "fad20c96-7d8a-463a-8f6a-727773944804",
+ "name" : "website",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "website",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "website",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "c03a7a4c-b782-46ae-a8ec-9b91025d839d",
+ "name" : "picture",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "picture",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "picture",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "a0d80a57-d8fa-43ee-82de-767206df9d6b",
+ "name" : "full name",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-full-name-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "id.token.claim" : "true",
+ "introspection.token.claim" : "true",
+ "access.token.claim" : "true",
+ "userinfo.token.claim" : "true"
+ }
+ }, {
+ "id" : "3fd24bf3-12c3-4cf7-9d94-28062fd680d9",
+ "name" : "family name",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "lastName",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "family_name",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "a19b2bf4-72bb-4f1a-bebb-527e31e9b8b5",
+ "name" : "given name",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "firstName",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "given_name",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "bf4408ed-ce03-4f80-9692-d60ef65273c3",
+ "name" : "locale",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "locale",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "locale",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "8889c81d-8b9b-4a2d-8a1b-d1c6c10e8c84",
+ "name" : "updated at",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "updatedAt",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "updated_at",
+ "jsonType.label" : "long"
+ }
+ }, {
+ "id" : "fb83d607-738b-41d6-9c8f-d08071d11464",
+ "name" : "zoneinfo",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "zoneinfo",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "zoneinfo",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "3df5bab8-69b4-44f6-befb-d4001916ddd4",
+ "name" : "nickname",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "nickname",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "nickname",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "5ae11355-d1be-44cd-b2d8-2537a1e5e984",
+ "name" : "profile",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "profile",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "profile",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "ae4e1524-c240-4772-a91d-72de9f0b82ed",
+ "name" : "middle name",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "middleName",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "middle_name",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "a186371f-41c6-4ee5-9865-b33d4ec4d6ae",
+ "name" : "birthdate",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "birthdate",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "birthdate",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "9680ed4a-bd76-45ea-975f-b4823f4ea8ea",
+ "name" : "gender",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "gender",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "gender",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "8d6bc914-cece-48aa-a526-a81ed35fcc31",
+ "name" : "username",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "username",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "preferred_username",
+ "jsonType.label" : "String"
+ }
+ } ]
+ }, {
+ "id" : "fef101d5-9102-43b8-9637-305a855b71f0",
+ "name" : "roles",
+ "description" : "OpenID Connect scope for add user roles to the access token",
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "include.in.token.scope" : "false",
+ "display.on.consent.screen" : "true",
+ "consent.screen.text" : "${rolesScopeConsentText}"
+ },
+ "protocolMappers" : [ {
+ "id" : "8f8a54b6-84d9-40ca-9c07-7ce88984fc94",
+ "name" : "client roles",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-client-role-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "multivalued" : "true",
+ "user.attribute" : "foo",
+ "access.token.claim" : "true",
+ "claim.name" : "resource_access.${client_id}.roles",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "56f89059-4148-4da4-93b9-1bbc6ac46582",
+ "name" : "realm roles",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-realm-role-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "multivalued" : "true",
+ "user.attribute" : "foo",
+ "access.token.claim" : "true",
+ "claim.name" : "realm_access.roles",
+ "jsonType.label" : "String"
+ }
+ }, {
+ "id" : "f7236b18-36b1-4399-9c97-ddf91eba416c",
+ "name" : "audience resolve",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-audience-resolve-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "access.token.claim" : "true"
+ }
+ } ]
+ }, {
+ "id" : "0a990de4-2a3e-4f1e-99d4-bcb537a3f075",
+ "name" : "role_list",
+ "description" : "SAML role list",
+ "protocol" : "saml",
+ "attributes" : {
+ "consent.screen.text" : "${samlRoleListScopeConsentText}",
+ "display.on.consent.screen" : "true"
+ },
+ "protocolMappers" : [ {
+ "id" : "349bab94-cc2b-4eb7-ac79-feff39fedb23",
+ "name" : "role list",
+ "protocol" : "saml",
+ "protocolMapper" : "saml-role-list-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "single" : "false",
+ "attribute.nameformat" : "Basic",
+ "attribute.name" : "Role"
+ }
+ } ]
+ }, {
+ "id" : "b2b378a9-9281-425e-a999-8dd83c13c2a3",
+ "name" : "web-origins",
+ "description" : "OpenID Connect scope for add allowed web origins to the access token",
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "include.in.token.scope" : "false",
+ "display.on.consent.screen" : "false",
+ "consent.screen.text" : ""
+ },
+ "protocolMappers" : [ {
+ "id" : "b415ee06-6f2b-445e-b199-4d2a2922517f",
+ "name" : "allowed web origins",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-allowed-origins-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "access.token.claim" : "true"
+ }
+ } ]
+ }, {
+ "id" : "1a2dc2f6-541a-4193-98e4-e5fade1d5aa1",
+ "name" : "email",
+ "description" : "OpenID Connect built-in scope: email",
+ "protocol" : "openid-connect",
+ "attributes" : {
+ "include.in.token.scope" : "true",
+ "display.on.consent.screen" : "true",
+ "consent.screen.text" : "${emailScopeConsentText}"
+ },
+ "protocolMappers" : [ {
+ "id" : "55dca1fe-9de3-424e-9436-0b14f467278a",
+ "name" : "email verified",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-property-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "emailVerified",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "email_verified",
+ "jsonType.label" : "boolean"
+ }
+ }, {
+ "id" : "33d86ba4-b262-4ce2-a799-46295ad42e4b",
+ "name" : "email",
+ "protocol" : "openid-connect",
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
+ "consentRequired" : false,
+ "config" : {
+ "introspection.token.claim" : "true",
+ "userinfo.token.claim" : "true",
+ "user.attribute" : "email",
+ "id.token.claim" : "true",
+ "access.token.claim" : "true",
+ "claim.name" : "email",
+ "jsonType.label" : "String"
+ }
+ } ]
+ } ],
+ "defaultDefaultClientScopes" : [ "role_list", "profile", "email", "roles", "web-origins", "acr" ],
+ "defaultOptionalClientScopes" : [ "offline_access", "address", "phone", "microprofile-jwt" ],
+ "browserSecurityHeaders" : {
+ "contentSecurityPolicyReportOnly" : "",
+ "xContentTypeOptions" : "nosniff",
+ "referrerPolicy" : "no-referrer",
+ "xRobotsTag" : "none",
+ "xFrameOptions" : "SAMEORIGIN",
+ "contentSecurityPolicy" : "frame-src 'self'; frame-ancestors 'self'; object-src 'none';",
+ "xXSSProtection" : "1; mode=block",
+ "strictTransportSecurity" : "max-age=31536000; includeSubDomains"
+ },
+ "smtpServer" : { },
+ "eventsEnabled" : false,
+ "eventsListeners" : [ "jboss-logging" ],
+ "enabledEventTypes" : [ ],
+ "adminEventsEnabled" : false,
+ "adminEventsDetailsEnabled" : false,
+ "identityProviders" : [ ],
+ "identityProviderMappers" : [ ],
+ "components" : {
+ "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy" : [ {
+ "id" : "d76d70d8-c946-40ef-bc18-3ca80ea8b781",
+ "name" : "Allowed Protocol Mapper Types",
+ "providerId" : "allowed-protocol-mappers",
+ "subType" : "authenticated",
+ "subComponents" : { },
+ "config" : {
+ "allowed-protocol-mapper-types" : [ "oidc-sha256-pairwise-sub-mapper", "saml-role-list-mapper", "oidc-usermodel-attribute-mapper", "oidc-usermodel-property-mapper", "saml-user-attribute-mapper", "saml-user-property-mapper", "oidc-address-mapper", "oidc-full-name-mapper" ]
+ }
+ }, {
+ "id" : "401f7a9a-dd5e-488c-b0a5-54c57eda7c20",
+ "name" : "Max Clients Limit",
+ "providerId" : "max-clients",
+ "subType" : "anonymous",
+ "subComponents" : { },
+ "config" : {
+ "max-clients" : [ "200" ]
+ }
+ }, {
+ "id" : "a4f879fb-d9dc-44ff-b1c9-4d8348661e0f",
+ "name" : "Allowed Protocol Mapper Types",
+ "providerId" : "allowed-protocol-mappers",
+ "subType" : "anonymous",
+ "subComponents" : { },
+ "config" : {
+ "allowed-protocol-mapper-types" : [ "oidc-sha256-pairwise-sub-mapper", "oidc-address-mapper", "oidc-usermodel-property-mapper", "oidc-usermodel-attribute-mapper", "saml-role-list-mapper", "saml-user-property-mapper", "oidc-full-name-mapper", "saml-user-attribute-mapper" ]
+ }
+ }, {
+ "id" : "ab7c9148-c423-4d14-bbba-855f66b42f0b",
+ "name" : "Allowed Client Scopes",
+ "providerId" : "allowed-client-templates",
+ "subType" : "authenticated",
+ "subComponents" : { },
+ "config" : {
+ "allow-default-scopes" : [ "true" ]
+ }
+ }, {
+ "id" : "ab28a974-5033-4cfb-afc5-4d97eaa77d60",
+ "name" : "Consent Required",
+ "providerId" : "consent-required",
+ "subType" : "anonymous",
+ "subComponents" : { },
+ "config" : { }
+ }, {
+ "id" : "c9ef1ede-c8c2-4e8e-b642-9c9e845e2934",
+ "name" : "Full Scope Disabled",
+ "providerId" : "scope",
+ "subType" : "anonymous",
+ "subComponents" : { },
+ "config" : { }
+ }, {
+ "id" : "09209618-692e-4096-95a2-4a05fbe1e9b7",
+ "name" : "Trusted Hosts",
+ "providerId" : "trusted-hosts",
+ "subType" : "anonymous",
+ "subComponents" : { },
+ "config" : {
+ "host-sending-registration-request-must-match" : [ "true" ],
+ "client-uris-must-match" : [ "true" ]
+ }
+ }, {
+ "id" : "926a494c-2953-4438-ad8d-317e8bf3295a",
+ "name" : "Allowed Client Scopes",
+ "providerId" : "allowed-client-templates",
+ "subType" : "anonymous",
+ "subComponents" : { },
+ "config" : {
+ "allow-default-scopes" : [ "true" ]
+ }
+ } ],
+ "org.keycloak.keys.KeyProvider" : [ {
+ "id" : "333de0f6-bb1c-4238-a1dd-e43b65a09581",
+ "name" : "hmac-generated",
+ "providerId" : "hmac-generated",
+ "subComponents" : { },
+ "config" : {
+ "kid" : [ "ec612b91-0743-4a46-ae8c-33eac6d2789e" ],
+ "secret" : [ "nFxwBormOnVZmZD-ke6celfilCz3_8FH2aJjkAcrjD2Mf2bCToWHfw9UotBDSVAvzFSe48xsFQPcH0RhJuXy5Q" ],
+ "priority" : [ "100" ],
+ "algorithm" : [ "HS256" ]
+ }
+ }, {
+ "id" : "8885abef-6d08-4b9a-86b1-58700debad31",
+ "name" : "aes-generated",
+ "providerId" : "aes-generated",
+ "subComponents" : { },
+ "config" : {
+ "kid" : [ "212a094b-5982-4d80-abc1-3ab1c01c9e7a" ],
+ "secret" : [ "-lwEU7xr0Fwvf98NT2hpIw" ],
+ "priority" : [ "100" ]
+ }
+ }, {
+ "id" : "b7928cd4-b13c-4f0b-a074-bee92efdc238",
+ "name" : "rsa-enc-generated",
+ "providerId" : "rsa-enc-generated",
+ "subComponents" : { },
+ "config" : {
+ "privateKey" : [ "MIIEpAIBAAKCAQEA2PKapA1XrBh4GY3LMzGRJUeLzna0K11I5/3MIOnTnkXW2LLOXdn2GnM1rahPmB4/YRHPoOelbKaD5RPu1gpFy7HWpayy6539cjVMB3vG6mAC/nESXB6TIoLe7rbOILSCvmOef/FwkenCco2xEsLTW5XzCgJUE83TtEa3mq9+1ZNNinDXI67UaovaJpdHt08i2RS8fs/5mzVUZTSppUbI4j/SW4cF9iho3RvwTjpMZhUS3tLZYWBiluPdIRTy/Ktg697rzdJ5N0CtM/kEnTM84CxiD6HMMkRRDROI+R9HbkOB4W51Z9oie/IVZiRIyTZFNAE/ZRBuYxx3O+13QYP1UQIDAQABAoIBAAF2JO+M/XW11n1JlMBcCZ/IKxtxdkZCgx64+XqRSLEsxEVCcxxzvvIvq4FnfF3IemHThmQNm3Ivbv0IlNfRSuYT5R/JmYz3zADMdh4oyc7DZdHD/j0roY8edZUDG0FiJe1Va3huLnV1Ly+pX7OCJ31a9b+wA1P803vH7C25F/AlYjeJpMnJ1w3lUGe0DKx30ktmP0ydCsp68Fyizw8o8wjHZwDvbMQhAS2vCVFSMub/4vKTxt96DSb2ePqRtnaCVhjjkdLs/SgUSuIcDDV8fhcH7uViR2zpGIS2wTTObWoYwSwDd/tINkdIvTzq3zvVfYi61Wjrkvrq0BhHW8/5aykCgYEA85BPInjB3Ve//snq5exzuZSNmQuUOuT4QojDGbd5A4SwkM2V+PgB0SD4hgts3tJcTVWJSJb/w4K0vwyZrN08n9CB2NfQw+VRVgtAHlyQPVSSdP+7j3bbZPgaMHKb5o/xP70Ahiz4gNHv/vdNB+Hfd/J7r8JHi2hyOSvFtkr19/0CgYEA5AZjnmIUxoUZ9gZNpjQZ4b8j3tHW6HKNwmEg2eB2ZGZLQDLyrGsBA8QhrLxFCSZBEKWRyONav4qwdL35Xu1ki6GAB/JYowP5zKI9NWGSI3taL49c7OTbMTGEjdXfvC3zlqTIZICj1+GppiSOr4ix6dSWld3wFW4saOsSiWUroOUCgYEAiKCL859fyKU/u1JTJVUleZXedFqtdPgaV2BWaSelh5a4YRIiLb4ZbtGa976S/M9uHad80i56HJdGguEzl2enaVLSc+xkXG9X1/eJqT5tXyoA2gbWlNysp5ARSNoRoB1gzEtebuXtJH4frZvWJzTKYYOxZF+MOKSHZpCqYN7d6ZUCgYAxjJXfF88N6GRgyrPa1t186Y0A4TZC4omdYH/D+Huhi3z0oV2MS+A3kkoDABI8T7y5wlCwh37zuk5nv9RNZWaA1QI+N9I88iM47VRBokcgQLCzPwLhU0WyJeF49K2edZnF9V66QB3aTmYP/UeoKxsGBbUHMef2sC8kSViI1JwrZQKBgQCNc4OuZXq6AFe4q2QAnQh4hNW1hOqDD+q4PB2SJw8JKJINUVwa9JnuheTPuItAdfbdlJzMUKNk39UF/XIBX8+vcvqMdjsHqPlsSpPWGiGn6OvPWohi2Jfmubr1/+o1Y373e4dSRXTsLROQDI0fPe5DeJjQ32J4+LxPg6PMJxQCGg==" ],
+ "keyUse" : [ "ENC" ],
+ "certificate" : [ "MIICmTCCAYECBgGNI6tPDDANBgkqhkiG9w0BAQsFADAQMQ4wDAYDVQQDDAVlU2hvcDAeFw0yNDAxMTkyMTM5MDVaFw0zNDAxMTkyMTQwNDVaMBAxDjAMBgNVBAMMBWVTaG9wMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2PKapA1XrBh4GY3LMzGRJUeLzna0K11I5/3MIOnTnkXW2LLOXdn2GnM1rahPmB4/YRHPoOelbKaD5RPu1gpFy7HWpayy6539cjVMB3vG6mAC/nESXB6TIoLe7rbOILSCvmOef/FwkenCco2xEsLTW5XzCgJUE83TtEa3mq9+1ZNNinDXI67UaovaJpdHt08i2RS8fs/5mzVUZTSppUbI4j/SW4cF9iho3RvwTjpMZhUS3tLZYWBiluPdIRTy/Ktg697rzdJ5N0CtM/kEnTM84CxiD6HMMkRRDROI+R9HbkOB4W51Z9oie/IVZiRIyTZFNAE/ZRBuYxx3O+13QYP1UQIDAQABMA0GCSqGSIb3DQEBCwUAA4IBAQCeVmd/il38EX5zz7Us6PMhiXyFH+I2XioSgK5SQH8CRCq5F7SAJS3qexIE4gbK/gBLneSiEu9fnkalrpJQcEo3QYzMdoLdcoAWcvCg4imskhzb01iLzbUlDF3ozZtI/1tGrkm5WGdKBz36cfcV43mUinifblBALXQgjwdC2r5JModo5ZYcHOJwikJERJYTZXkKgBTYc4otwtNl+mlqGuGerDc7jWIowQ7tEMT5U7eG+MgdCx1+laCIAgPKet8/ybZf/n/tYDet4DGGuCxzYyGyiuxwgLvU697isZkoEBFNODvxz97fVAkgNvO+8j8HvWY4PZ+Kcd1Ssk3TRyC5DNwh" ],
+ "priority" : [ "100" ],
+ "algorithm" : [ "RSA-OAEP" ]
+ }
+ }, {
+ "id" : "52e8f54c-3d85-4ab5-8e9b-c9b231f724dc",
+ "name" : "rsa-generated",
+ "providerId" : "rsa-generated",
+ "subComponents" : { },
+ "config" : {
+ "privateKey" : [ "MIIEpAIBAAKCAQEAxedua4Y0OZp7ioKJlP/YRrz6Ynv+WJGHcf5n1G7g/rOZoHNIUvz5f3QV+p7+4uXLIwSMvVGmWEuGeo9TVa6kJZP1k1zTVigwa6Fimh1pUnMkYkAAV7nMGpbYDWqP0+6rwYEm7U8TE4YIWa6jYOmoG9n3s42PpMc0EXldI3dCFLkcjmQjPn2lUZIt6TZ7zC8opJKBywIqPWHI3hu3lri/5cPyaloyXBW0c8ydSd3dzhxM8D8EOWaOfTZ/PslVlOsFzJGgTKhB8uw+qP++hIvdIZfsS2texmO37n1O+6LU2DfKKeb8jqkGwWjqGAZywgq2Mg1qtLXEjjKboxUC2dJbewIDAQABAoIBABM7j4aRj0e91J28W+SIDJurR+YESM6QrgoNAEgr0l/OUnK+YVv3S8PwIyatBvZEAL7RdV/8rF7OUC5e+WlNRJSGUYpVrhAkbbg4Ad4aV570o6eMsrvTyZsX570+CuY8vqJai87qLV9rWiplB2mmq3ixcRoY+sm3tj6wfbWxpFFhFClp6KApXxissXv6jEOaq4MMzbUli44TtCxDAP0nwvijjm/lofQjPbTJkSNZVnz3lr/qAC1XTD+J+2Rf4VxDLCeowYsSClP0DafZGHXcQagRZuUmAOCoszc5BT2DkMWu7IZRC/iROmZMrrnJzqAAgNd0yz0Sd74M9DHTD17LVFkCgYEA713g6Cn+sF6HSqcWvj7A5MF6fJg9/4Msfg3FOkdp7T3TG3+uEHrE6Z5vuShcmJxFibaW4buIp2jXwkn5bciLZph3H/epZlto6w/Sh7Y/url+zvNE9UQOqEZkS5RLu9WEea9e/0liOIC+Sj8w0ymIpwiDD+6vbTKp7fEvFEEwS7UCgYEA06f36hW9+MQahF8u9ud4MEiIVYJhvfnJKJG/YzeQGA5gN0kL9mYSIpPLWWHWaME11Z06pAaCeerW9pTGq9zAZNj8WN4oFN6aIfY8wc0Fxd2Lbgh8/Y9KvHTrnWiDgFdSjrC7Gv1wz3o41Qu9XpGCToK/Q1hs9zswe0JtlM6gaG8CgYBw6tRiMQ1Ynf8slE4CSRAt2aeyhw8YLgUbIdvcdjveEsA3xK+UTpX9ryP9MLEdvPqA0IW0zwbUEn1VxhfIVkaMi3gGuIpNIuoHmVszciH2L/NGJTRuj0Bq2WoOzVI8tajczoH949xV00XxOIYL1xgD09wf8/UFilTnTlNrNqVV0QKBgQCXK2jOMCk2/BlUYgdRIZGeKq/1IuJcpYMfDrn7SzwHcn0V/34jxlM9jwG2HULeHuEsaNfxPxUBrtFJ3IjpRwnC/Zd+gW1vOm4rw4sxgBWXdNyZAkcDcsyWPYvrKTKC/9tfPqrkZA+moEznHTNrz9GZ8ZhZqVZqXkQKRS+vEMVQ0QKBgQDYWW8fqW9fTdx5hvZNktNxcawwmR0+/AMMf06qH25W/kLtuMGasGCqtp/4uHTR7XX2Pqkp0sHYwbvP2LG4Ac4dUEGTKtfnB5C2yyBKd0CPI+oij51U5JS2Lg773FpbAJ8AuGo7YV/Jq24HdUmiu7i7GyVwofqHxz6tYOUCn8dlUA==" ],
+ "keyUse" : [ "SIG" ],
+ "certificate" : [ "MIICmTCCAYECBgGNI6tOdDANBgkqhkiG9w0BAQsFADAQMQ4wDAYDVQQDDAVlU2hvcDAeFw0yNDAxMTkyMTM5MDVaFw0zNDAxMTkyMTQwNDVaMBAxDjAMBgNVBAMMBWVTaG9wMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxedua4Y0OZp7ioKJlP/YRrz6Ynv+WJGHcf5n1G7g/rOZoHNIUvz5f3QV+p7+4uXLIwSMvVGmWEuGeo9TVa6kJZP1k1zTVigwa6Fimh1pUnMkYkAAV7nMGpbYDWqP0+6rwYEm7U8TE4YIWa6jYOmoG9n3s42PpMc0EXldI3dCFLkcjmQjPn2lUZIt6TZ7zC8opJKBywIqPWHI3hu3lri/5cPyaloyXBW0c8ydSd3dzhxM8D8EOWaOfTZ/PslVlOsFzJGgTKhB8uw+qP++hIvdIZfsS2texmO37n1O+6LU2DfKKeb8jqkGwWjqGAZywgq2Mg1qtLXEjjKboxUC2dJbewIDAQABMA0GCSqGSIb3DQEBCwUAA4IBAQBwhFqzlIdo0Cwro0Ax0dJlSmaL3DpVsg28FPTyJohA/63mv1S/J7FjRdxJavc0qIFZiDAaNorQF1JlzJFioW2XJpK8vHzlaYsKXnX6Q2B8V1IlRLHsoWRGrDi5WdxQniETyIRI1jaSq3vqe5kaiNo8YeWD3MkLSa29aIDqmGAV5pr/Pg8NApBptDLQ1wT9ZjvLzZ8Qby0Q91gSyEvzqzMAaRcjMh95dAUljkpP7axBABQl83jIf6EWh2mW4vfvCkLCjUIaAZDD+iA04rO433yrRvZI2Hh1BBuZi/ISLPkgesGm4jj2xbhKNY1yfCgwy8grcBjhB5kFYVbe1DvLcIJI" ],
+ "priority" : [ "100" ]
+ }
+ } ]
+ },
+ "internationalizationEnabled" : false,
+ "supportedLocales" : [ ],
+ "authenticationFlows" : [ {
+ "id" : "e96cceac-cf11-4d11-9e88-0aec7405aa8e",
+ "alias" : "Account verification options",
+ "description" : "Method with which to verity the existing account",
+ "providerId" : "basic-flow",
+ "topLevel" : false,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "idp-email-verification",
+ "authenticatorFlow" : false,
+ "requirement" : "ALTERNATIVE",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticatorFlow" : true,
+ "requirement" : "ALTERNATIVE",
+ "priority" : 20,
+ "autheticatorFlow" : true,
+ "flowAlias" : "Verify Existing Account by Re-authentication",
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "e283ea4e-cefe-45e0-8063-38a50e8f5ac9",
+ "alias" : "Browser - Conditional OTP",
+ "description" : "Flow to determine if the OTP is required for the authentication",
+ "providerId" : "basic-flow",
+ "topLevel" : false,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "conditional-user-configured",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticator" : "auth-otp-form",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 20,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "0effd347-2f02-4f54-bec1-d61640f78411",
+ "alias" : "Direct Grant - Conditional OTP",
+ "description" : "Flow to determine if the OTP is required for the authentication",
+ "providerId" : "basic-flow",
+ "topLevel" : false,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "conditional-user-configured",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticator" : "direct-grant-validate-otp",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 20,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "560c1aae-603f-43a2-a282-3b26e34ca7da",
+ "alias" : "First broker login - Conditional OTP",
+ "description" : "Flow to determine if the OTP is required for the authentication",
+ "providerId" : "basic-flow",
+ "topLevel" : false,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "conditional-user-configured",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticator" : "auth-otp-form",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 20,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "e89c4fb9-7cb9-4a5e-9ca0-d615e3963a99",
+ "alias" : "Handle Existing Account",
+ "description" : "Handle what to do if there is existing account with same email/username like authenticated identity provider",
+ "providerId" : "basic-flow",
+ "topLevel" : false,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "idp-confirm-link",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticatorFlow" : true,
+ "requirement" : "REQUIRED",
+ "priority" : 20,
+ "autheticatorFlow" : true,
+ "flowAlias" : "Account verification options",
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "476f2bb6-dff6-4a7e-ad8f-0aa5672ea776",
+ "alias" : "Reset - Conditional OTP",
+ "description" : "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.",
+ "providerId" : "basic-flow",
+ "topLevel" : false,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "conditional-user-configured",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticator" : "reset-otp",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 20,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "43cfa637-9f21-4fbf-8387-0b0535517820",
+ "alias" : "User creation or linking",
+ "description" : "Flow for the existing/non-existing user alternatives",
+ "providerId" : "basic-flow",
+ "topLevel" : false,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticatorConfig" : "create unique user config",
+ "authenticator" : "idp-create-user-if-unique",
+ "authenticatorFlow" : false,
+ "requirement" : "ALTERNATIVE",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticatorFlow" : true,
+ "requirement" : "ALTERNATIVE",
+ "priority" : 20,
+ "autheticatorFlow" : true,
+ "flowAlias" : "Handle Existing Account",
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "2534f882-aff2-4827-ab22-a71800060e1f",
+ "alias" : "Verify Existing Account by Re-authentication",
+ "description" : "Reauthentication of existing account",
+ "providerId" : "basic-flow",
+ "topLevel" : false,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "idp-username-password-form",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticatorFlow" : true,
+ "requirement" : "CONDITIONAL",
+ "priority" : 20,
+ "autheticatorFlow" : true,
+ "flowAlias" : "First broker login - Conditional OTP",
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "ed2d0ead-7b18-45c2-a0ab-298b355d02c7",
+ "alias" : "browser",
+ "description" : "browser based authentication",
+ "providerId" : "basic-flow",
+ "topLevel" : true,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "auth-cookie",
+ "authenticatorFlow" : false,
+ "requirement" : "ALTERNATIVE",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticator" : "auth-spnego",
+ "authenticatorFlow" : false,
+ "requirement" : "DISABLED",
+ "priority" : 20,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticator" : "identity-provider-redirector",
+ "authenticatorFlow" : false,
+ "requirement" : "ALTERNATIVE",
+ "priority" : 25,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticatorFlow" : true,
+ "requirement" : "ALTERNATIVE",
+ "priority" : 30,
+ "autheticatorFlow" : true,
+ "flowAlias" : "forms",
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "b33f293a-4f51-4d38-ab7f-543ed1dc71bf",
+ "alias" : "clients",
+ "description" : "Base authentication for clients",
+ "providerId" : "client-flow",
+ "topLevel" : true,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "client-secret",
+ "authenticatorFlow" : false,
+ "requirement" : "ALTERNATIVE",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticator" : "client-jwt",
+ "authenticatorFlow" : false,
+ "requirement" : "ALTERNATIVE",
+ "priority" : 20,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticator" : "client-secret-jwt",
+ "authenticatorFlow" : false,
+ "requirement" : "ALTERNATIVE",
+ "priority" : 30,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticator" : "client-x509",
+ "authenticatorFlow" : false,
+ "requirement" : "ALTERNATIVE",
+ "priority" : 40,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "fe59c24c-7322-4e67-9e82-be0023ab2889",
+ "alias" : "direct grant",
+ "description" : "OpenID Connect Resource Owner Grant",
+ "providerId" : "basic-flow",
+ "topLevel" : true,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "direct-grant-validate-username",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticator" : "direct-grant-validate-password",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 20,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticatorFlow" : true,
+ "requirement" : "CONDITIONAL",
+ "priority" : 30,
+ "autheticatorFlow" : true,
+ "flowAlias" : "Direct Grant - Conditional OTP",
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "9bb58e30-8fa6-4ea0-9065-ce61c02ba00d",
+ "alias" : "docker auth",
+ "description" : "Used by Docker clients to authenticate against the IDP",
+ "providerId" : "basic-flow",
+ "topLevel" : true,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "docker-http-basic-authenticator",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "42f4d6fb-7a7d-45bc-97be-5a0948d88945",
+ "alias" : "first broker login",
+ "description" : "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account",
+ "providerId" : "basic-flow",
+ "topLevel" : true,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticatorConfig" : "review profile config",
+ "authenticator" : "idp-review-profile",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticatorFlow" : true,
+ "requirement" : "REQUIRED",
+ "priority" : 20,
+ "autheticatorFlow" : true,
+ "flowAlias" : "User creation or linking",
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "4d3d0525-0333-43e8-be62-8fec05753aa3",
+ "alias" : "forms",
+ "description" : "Username, password, otp and other auth forms.",
+ "providerId" : "basic-flow",
+ "topLevel" : false,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "auth-username-password-form",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticatorFlow" : true,
+ "requirement" : "CONDITIONAL",
+ "priority" : 20,
+ "autheticatorFlow" : true,
+ "flowAlias" : "Browser - Conditional OTP",
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "72715113-db54-4ba0-89c0-85422e552a58",
+ "alias" : "registration",
+ "description" : "registration flow",
+ "providerId" : "basic-flow",
+ "topLevel" : true,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "registration-page-form",
+ "authenticatorFlow" : true,
+ "requirement" : "REQUIRED",
+ "priority" : 10,
+ "autheticatorFlow" : true,
+ "flowAlias" : "registration form",
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "2777a201-b799-4f0d-8544-759e3aef5454",
+ "alias" : "registration form",
+ "description" : "registration form",
+ "providerId" : "form-flow",
+ "topLevel" : false,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "registration-user-creation",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 20,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticator" : "registration-password-action",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 50,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticator" : "registration-recaptcha-action",
+ "authenticatorFlow" : false,
+ "requirement" : "DISABLED",
+ "priority" : 60,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "7f527e1a-3f5f-4a39-80b3-ad3fe110db15",
+ "alias" : "reset credentials",
+ "description" : "Reset credentials for a user if they forgot their password or something",
+ "providerId" : "basic-flow",
+ "topLevel" : true,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "reset-credentials-choose-user",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticator" : "reset-credential-email",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 20,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticator" : "reset-password",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 30,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ }, {
+ "authenticatorFlow" : true,
+ "requirement" : "CONDITIONAL",
+ "priority" : 40,
+ "autheticatorFlow" : true,
+ "flowAlias" : "Reset - Conditional OTP",
+ "userSetupAllowed" : false
+ } ]
+ }, {
+ "id" : "c9a052b6-28c6-4b13-8bc3-12958bbe0a68",
+ "alias" : "saml ecp",
+ "description" : "SAML ECP Profile Authentication Flow",
+ "providerId" : "basic-flow",
+ "topLevel" : true,
+ "builtIn" : true,
+ "authenticationExecutions" : [ {
+ "authenticator" : "http-basic-authenticator",
+ "authenticatorFlow" : false,
+ "requirement" : "REQUIRED",
+ "priority" : 10,
+ "autheticatorFlow" : false,
+ "userSetupAllowed" : false
+ } ]
+ } ],
+ "authenticatorConfig" : [ {
+ "id" : "b0b50f78-9a3b-4f03-a9bf-07ac56f2ebac",
+ "alias" : "create unique user config",
+ "config" : {
+ "require.password.update.after.registration" : "false"
+ }
+ }, {
+ "id" : "c972ed55-c8f6-426f-965c-1267dc1f68a9",
+ "alias" : "review profile config",
+ "config" : {
+ "update.profile.on.first.login" : "missing"
+ }
+ } ],
+ "requiredActions" : [ {
+ "alias" : "CONFIGURE_TOTP",
+ "name" : "Configure OTP",
+ "providerId" : "CONFIGURE_TOTP",
+ "enabled" : true,
+ "defaultAction" : false,
+ "priority" : 10,
+ "config" : { }
+ }, {
+ "alias" : "TERMS_AND_CONDITIONS",
+ "name" : "Terms and Conditions",
+ "providerId" : "TERMS_AND_CONDITIONS",
+ "enabled" : false,
+ "defaultAction" : false,
+ "priority" : 20,
+ "config" : { }
+ }, {
+ "alias" : "UPDATE_PASSWORD",
+ "name" : "Update Password",
+ "providerId" : "UPDATE_PASSWORD",
+ "enabled" : true,
+ "defaultAction" : false,
+ "priority" : 30,
+ "config" : { }
+ }, {
+ "alias" : "UPDATE_PROFILE",
+ "name" : "Update Profile",
+ "providerId" : "UPDATE_PROFILE",
+ "enabled" : true,
+ "defaultAction" : false,
+ "priority" : 40,
+ "config" : { }
+ }, {
+ "alias" : "VERIFY_EMAIL",
+ "name" : "Verify Email",
+ "providerId" : "VERIFY_EMAIL",
+ "enabled" : true,
+ "defaultAction" : false,
+ "priority" : 50,
+ "config" : { }
+ }, {
+ "alias" : "delete_account",
+ "name" : "Delete Account",
+ "providerId" : "delete_account",
+ "enabled" : false,
+ "defaultAction" : false,
+ "priority" : 60,
+ "config" : { }
+ }, {
+ "alias" : "webauthn-register",
+ "name" : "Webauthn Register",
+ "providerId" : "webauthn-register",
+ "enabled" : true,
+ "defaultAction" : false,
+ "priority" : 70,
+ "config" : { }
+ }, {
+ "alias" : "webauthn-register-passwordless",
+ "name" : "Webauthn Register Passwordless",
+ "providerId" : "webauthn-register-passwordless",
+ "enabled" : true,
+ "defaultAction" : false,
+ "priority" : 80,
+ "config" : { }
+ }, {
+ "alias" : "update_user_locale",
+ "name" : "Update User Locale",
+ "providerId" : "update_user_locale",
+ "enabled" : true,
+ "defaultAction" : false,
+ "priority" : 1000,
+ "config" : { }
+ } ],
+ "browserFlow" : "browser",
+ "registrationFlow" : "registration",
+ "directGrantFlow" : "direct grant",
+ "resetCredentialsFlow" : "reset credentials",
+ "clientAuthenticationFlow" : "clients",
+ "dockerAuthenticationFlow" : "docker auth",
+ "attributes" : {
+ "cibaBackchannelTokenDeliveryMode" : "poll",
+ "cibaAuthRequestedUserHint" : "login_hint",
+ "clientOfflineSessionMaxLifespan" : "0",
+ "oauth2DevicePollingInterval" : "5",
+ "clientSessionIdleTimeout" : "0",
+ "clientOfflineSessionIdleTimeout" : "0",
+ "cibaInterval" : "5",
+ "realmReusableOtpCode" : "false",
+ "cibaExpiresIn" : "120",
+ "oauth2DeviceCodeLifespan" : "600",
+ "parRequestUriLifespan" : "60",
+ "clientSessionMaxLifespan" : "0",
+ "frontendUrl" : "",
+ "acr.loa.map" : "{}"
+ },
+ "keycloakVersion" : "23.0.4",
+ "userManagedAccessAllowed" : false,
+ "clientProfiles" : {
+ "profiles" : [ ]
+ },
+ "clientPolicies" : {
+ "policies" : [ ]
+ }
+}
\ No newline at end of file
diff --git a/labs/5-Add-Checkout/end/Ordering.API/Model/OrderSummary.cs b/labs/5-Add-Checkout/end/Ordering.API/Model/OrderSummary.cs
new file mode 100644
index 0000000..f2c5dce
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Ordering.API/Model/OrderSummary.cs
@@ -0,0 +1,25 @@
+using eShop.Ordering.Data;
+
+namespace eShop.Ordering.API.Model;
+
+public class OrderSummary
+{
+ public int OrderNumber { get; init; }
+
+ public DateTime Date { get; init; }
+
+ public required string Status { get; init; }
+
+ public decimal Total { get; init; }
+
+ public static OrderSummary FromOrder(Order order)
+ {
+ return new OrderSummary
+ {
+ OrderNumber = order.Id,
+ Date = order.OrderDate,
+ Status = order.OrderStatus.ToString(),
+ Total = order.GetTotal()
+ };
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Ordering.API/Ordering.API.csproj b/labs/5-Add-Checkout/end/Ordering.API/Ordering.API.csproj
new file mode 100644
index 0000000..c0ac3a5
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Ordering.API/Ordering.API.csproj
@@ -0,0 +1,20 @@
+
+
+
+ net8.0
+ enable
+ enable
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/labs/5-Add-Checkout/end/Ordering.API/Ordering.API.http b/labs/5-Add-Checkout/end/Ordering.API/Ordering.API.http
new file mode 100644
index 0000000..33aed0d
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Ordering.API/Ordering.API.http
@@ -0,0 +1,6 @@
+@Ordering.API_HostAddress = http://localhost:5122
+
+GET {{Ordering.API_HostAddress}}/weatherforecast/
+Accept: application/json
+
+###
diff --git a/labs/5-Add-Checkout/end/Ordering.API/OrderingApi.cs b/labs/5-Add-Checkout/end/Ordering.API/OrderingApi.cs
new file mode 100644
index 0000000..3e169bf
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Ordering.API/OrderingApi.cs
@@ -0,0 +1,30 @@
+using System.Security.Claims;
+using Microsoft.EntityFrameworkCore;
+using eShop.Ordering.API.Model;
+using eShop.Ordering.Data;
+
+namespace Microsoft.AspNetCore.Builder;
+
+public static class OrderingApi
+{
+ public static RouteGroupBuilder MapOrdersApi(this RouteGroupBuilder app)
+ {
+ app.MapGet("/", async (ClaimsPrincipal user, OrderingDbContext dbContext) =>
+ {
+ var userId = user.GetUserId()
+ ?? throw new InvalidOperationException("User identity could not be found. This endpoint requires authorization.");
+
+ var orders = await dbContext.Orders
+ .Include(o => o.OrderItems)
+ .Include(o => o.Buyer)
+ .Where(o => o.Buyer.IdentityGuid == userId)
+ .Select(o => OrderSummary.FromOrder(o))
+ .AsNoTracking()
+ .ToArrayAsync();
+
+ return TypedResults.Ok(orders);
+ });
+
+ return app;
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Ordering.API/Program.cs b/labs/5-Add-Checkout/end/Ordering.API/Program.cs
new file mode 100644
index 0000000..a4f3228
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Ordering.API/Program.cs
@@ -0,0 +1,20 @@
+using eShop.Ordering.Data;
+
+var builder = WebApplication.CreateBuilder(args);
+
+builder.AddServiceDefaults();
+builder.AddDefaultOpenApi();
+builder.AddDefaultAuthentication();
+builder.AddNpgsqlDbContext("OrderingDB");
+
+var app = builder.Build();
+
+app.UseDefaultOpenApi();
+
+app.MapDefaultEndpoints();
+
+app.MapGroup("/api/v1/orders")
+ .MapOrdersApi()
+ .RequireAuthorization();
+
+app.Run();
diff --git a/labs/5-Add-Checkout/end/Ordering.API/Properties/launchSettings.json b/labs/5-Add-Checkout/end/Ordering.API/Properties/launchSettings.json
new file mode 100644
index 0000000..d12198d
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Ordering.API/Properties/launchSettings.json
@@ -0,0 +1,15 @@
+{
+ "$schema": "http://json.schemastore.org/launchsettings.json",
+ "profiles": {
+ "http": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": true,
+ "launchUrl": "swagger",
+ "applicationUrl": "http://localhost:5122",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Ordering.API/appsettings.Development.json b/labs/5-Add-Checkout/end/Ordering.API/appsettings.Development.json
new file mode 100644
index 0000000..0c208ae
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Ordering.API/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Ordering.API/appsettings.json b/labs/5-Add-Checkout/end/Ordering.API/appsettings.json
new file mode 100644
index 0000000..0c80998
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Ordering.API/appsettings.json
@@ -0,0 +1,26 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*",
+ "OpenApi": {
+ "Endpoint": {
+ "Name": "Ordering.API v1"
+ },
+ "Document": {
+ "Description": "The Ordering Service HTTP API",
+ "Title": "eShop - Ordering HTTP API",
+ "Version": "v1"
+ },
+ "Auth": {
+ "ClientId": "orderingswaggerui",
+ "AppName": "Ordering Swagger UI"
+ }
+ },
+ "Identity": {
+ "Audience": "orders"
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Ordering.Data.Manager/Migrations/20240126233459_Initial.Designer.cs b/labs/5-Add-Checkout/end/Ordering.Data.Manager/Migrations/20240126233459_Initial.Designer.cs
new file mode 100644
index 0000000..130d969
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Ordering.Data.Manager/Migrations/20240126233459_Initial.Designer.cs
@@ -0,0 +1,306 @@
+//
+using System;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Migrations;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
+using eShop.Ordering.Data.Manager;
+
+#nullable disable
+
+namespace eShop.Ordering.Data.Manager.Migrations
+{
+ [DbContext(typeof(OrderingDbContext))]
+ [Migration("20240126233459_Initial")]
+ partial class Initial
+ {
+ ///
+ protected override void BuildTargetModel(ModelBuilder modelBuilder)
+ {
+#pragma warning disable 612, 618
+ modelBuilder
+ .HasDefaultSchema("ordering")
+ .HasAnnotation("ProductVersion", "8.0.1")
+ .HasAnnotation("Relational:MaxIdentifierLength", 63);
+
+ NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
+
+ modelBuilder.HasSequence("buyerseq")
+ .IncrementsBy(10);
+
+ modelBuilder.HasSequence("orderitemseq")
+ .IncrementsBy(10);
+
+ modelBuilder.HasSequence("orderseq")
+ .IncrementsBy(10);
+
+ modelBuilder.HasSequence("paymentseq")
+ .IncrementsBy(10);
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.Buyer", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseHiLo(b.Property("Id"), "buyerseq");
+
+ b.Property("IdentityGuid")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("character varying(200)");
+
+ b.Property("Name")
+ .IsRequired()
+ .HasColumnType("text");
+
+ b.HasKey("Id");
+
+ b.HasIndex("IdentityGuid")
+ .IsUnique();
+
+ b.ToTable("buyers", "ordering");
+ });
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.CardType", b =>
+ {
+ b.Property("Id")
+ .HasColumnType("integer");
+
+ b.Property("Name")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("character varying(200)");
+
+ b.HasKey("Id");
+
+ b.ToTable("cardtypes", "ordering");
+ });
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.Order", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseHiLo(b.Property("Id"), "orderseq");
+
+ b.Property("BuyerId")
+ .HasColumnType("integer")
+ .HasColumnName("BuyerId");
+
+ b.Property("OrderDate")
+ .HasColumnType("timestamp with time zone")
+ .HasColumnName("OrderDate");
+
+ b.Property("OrderStatus")
+ .IsRequired()
+ .HasMaxLength(30)
+ .HasColumnType("character varying(30)");
+
+ b.Property("PaymentMethodId")
+ .HasColumnType("integer")
+ .HasColumnName("PaymentMethodId");
+
+ b.HasKey("Id");
+
+ b.HasIndex("BuyerId");
+
+ b.HasIndex("PaymentMethodId");
+
+ b.ToTable("orders", "ordering");
+ });
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.OrderItem", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseHiLo(b.Property("Id"), "orderitemseq");
+
+ b.Property("Discount")
+ .HasColumnType("numeric")
+ .HasColumnName("Discount");
+
+ b.Property("OrderId")
+ .HasColumnType("integer")
+ .HasColumnName("OrderId");
+
+ b.Property("PictureUrl")
+ .HasColumnType("text")
+ .HasColumnName("PictureUrl");
+
+ b.Property("ProductId")
+ .HasColumnType("integer");
+
+ b.Property("ProductName")
+ .IsRequired()
+ .HasColumnType("text")
+ .HasColumnName("ProductName");
+
+ b.Property("UnitPrice")
+ .HasColumnType("numeric")
+ .HasColumnName("UnitPrice");
+
+ b.Property("Units")
+ .HasColumnType("integer")
+ .HasColumnName("Units");
+
+ b.HasKey("Id");
+
+ b.HasIndex("OrderId");
+
+ b.ToTable("orderItems", "ordering");
+ });
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.PaymentMethod", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseHiLo(b.Property("Id"), "paymentseq");
+
+ b.Property("Alias")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("character varying(200)")
+ .HasColumnName("Alias");
+
+ b.Property("BuyerId")
+ .HasColumnType("integer")
+ .HasColumnName("BuyerId");
+
+ b.Property("CardHolderName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("character varying(200)");
+
+ b.Property("CardNumber")
+ .IsRequired()
+ .HasMaxLength(25)
+ .HasColumnType("character varying(25)")
+ .HasColumnName("CardNumber");
+
+ b.Property("CardTypeId")
+ .HasColumnType("integer")
+ .HasColumnName("CardTypeId");
+
+ b.Property("Expiration")
+ .HasMaxLength(25)
+ .HasColumnType("timestamp with time zone")
+ .HasColumnName("Expiration");
+
+ b.Property("SecurityNumber")
+ .IsRequired()
+ .HasColumnType("text");
+
+ b.HasKey("Id");
+
+ b.HasIndex("BuyerId");
+
+ b.HasIndex("CardTypeId");
+
+ b.ToTable("paymentmethods", "ordering");
+ });
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.Order", b =>
+ {
+ b.HasOne("eShop.Ordering.API.Data.Buyer", "Buyer")
+ .WithMany()
+ .HasForeignKey("BuyerId");
+
+ b.HasOne("eShop.Ordering.API.Data.PaymentMethod", "PaymentMethod")
+ .WithMany()
+ .HasForeignKey("PaymentMethodId")
+ .OnDelete(DeleteBehavior.Restrict);
+
+ b.OwnsOne("eShop.Ordering.API.Data.Address", "Address", b1 =>
+ {
+ b1.Property("OrderId")
+ .HasColumnType("integer");
+
+ b1.Property("City")
+ .IsRequired()
+ .HasMaxLength(100)
+ .HasColumnType("character varying(100)");
+
+ b1.Property("Country")
+ .IsRequired()
+ .HasMaxLength(90)
+ .HasColumnType("character varying(90)");
+
+ b1.Property("State")
+ .IsRequired()
+ .HasMaxLength(60)
+ .HasColumnType("character varying(60)");
+
+ b1.Property("Street")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("character varying(200)");
+
+ b1.Property("ZipCode")
+ .IsRequired()
+ .HasMaxLength(18)
+ .HasColumnType("character varying(18)");
+
+ b1.HasKey("OrderId");
+
+ b1.ToTable("orders", "ordering");
+
+ b1.WithOwner()
+ .HasForeignKey("OrderId");
+ });
+
+ b.Navigation("Address")
+ .IsRequired();
+
+ b.Navigation("Buyer");
+
+ b.Navigation("PaymentMethod");
+ });
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.OrderItem", b =>
+ {
+ b.HasOne("eShop.Ordering.API.Data.Order", "Order")
+ .WithMany("OrderItems")
+ .HasForeignKey("OrderId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("Order");
+ });
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.PaymentMethod", b =>
+ {
+ b.HasOne("eShop.Ordering.API.Data.Buyer", null)
+ .WithMany("PaymentMethods")
+ .HasForeignKey("BuyerId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.HasOne("eShop.Ordering.API.Data.CardType", "CardType")
+ .WithMany()
+ .HasForeignKey("CardTypeId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("CardType");
+ });
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.Buyer", b =>
+ {
+ b.Navigation("PaymentMethods");
+ });
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.Order", b =>
+ {
+ b.Navigation("OrderItems");
+ });
+#pragma warning restore 612, 618
+ }
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Ordering.Data.Manager/Migrations/20240126233459_Initial.cs b/labs/5-Add-Checkout/end/Ordering.Data.Manager/Migrations/20240126233459_Initial.cs
new file mode 100644
index 0000000..f20203b
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Ordering.Data.Manager/Migrations/20240126233459_Initial.cs
@@ -0,0 +1,235 @@
+using System;
+using Microsoft.EntityFrameworkCore.Migrations;
+
+#nullable disable
+
+namespace eShop.Ordering.Data.Manager.Migrations
+{
+ ///
+ public partial class Initial : Migration
+ {
+ ///
+ protected override void Up(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.EnsureSchema(
+ name: "ordering");
+
+ migrationBuilder.CreateSequence(
+ name: "buyerseq",
+ schema: "ordering",
+ incrementBy: 10);
+
+ migrationBuilder.CreateSequence(
+ name: "orderitemseq",
+ schema: "ordering",
+ incrementBy: 10);
+
+ migrationBuilder.CreateSequence(
+ name: "orderseq",
+ schema: "ordering",
+ incrementBy: 10);
+
+ migrationBuilder.CreateSequence(
+ name: "paymentseq",
+ schema: "ordering",
+ incrementBy: 10);
+
+ migrationBuilder.CreateTable(
+ name: "buyers",
+ schema: "ordering",
+ columns: table => new
+ {
+ Id = table.Column(type: "integer", nullable: false),
+ IdentityGuid = table.Column(type: "character varying(200)", maxLength: 200, nullable: false),
+ Name = table.Column(type: "text", nullable: false)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_buyers", x => x.Id);
+ });
+
+ migrationBuilder.CreateTable(
+ name: "cardtypes",
+ schema: "ordering",
+ columns: table => new
+ {
+ Id = table.Column(type: "integer", nullable: false),
+ Name = table.Column(type: "character varying(200)", maxLength: 200, nullable: false)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_cardtypes", x => x.Id);
+ });
+
+ migrationBuilder.CreateTable(
+ name: "paymentmethods",
+ schema: "ordering",
+ columns: table => new
+ {
+ Id = table.Column(type: "integer", nullable: false),
+ Alias = table.Column(type: "character varying(200)", maxLength: 200, nullable: false),
+ CardNumber = table.Column(type: "character varying(25)", maxLength: 25, nullable: false),
+ SecurityNumber = table.Column(type: "text", nullable: false),
+ CardHolderName = table.Column(type: "character varying(200)", maxLength: 200, nullable: false),
+ Expiration = table.Column(type: "timestamp with time zone", maxLength: 25, nullable: false),
+ BuyerId = table.Column(type: "integer", nullable: false),
+ CardTypeId = table.Column(type: "integer", nullable: false)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_paymentmethods", x => x.Id);
+ table.ForeignKey(
+ name: "FK_paymentmethods_buyers_BuyerId",
+ column: x => x.BuyerId,
+ principalSchema: "ordering",
+ principalTable: "buyers",
+ principalColumn: "Id",
+ onDelete: ReferentialAction.Cascade);
+ table.ForeignKey(
+ name: "FK_paymentmethods_cardtypes_CardTypeId",
+ column: x => x.CardTypeId,
+ principalSchema: "ordering",
+ principalTable: "cardtypes",
+ principalColumn: "Id",
+ onDelete: ReferentialAction.Cascade);
+ });
+
+ migrationBuilder.CreateTable(
+ name: "orders",
+ schema: "ordering",
+ columns: table => new
+ {
+ Id = table.Column(type: "integer", nullable: false),
+ OrderDate = table.Column(type: "timestamp with time zone", nullable: false),
+ Address_Street = table.Column(type: "character varying(200)", maxLength: 200, nullable: false),
+ Address_City = table.Column(type: "character varying(100)", maxLength: 100, nullable: false),
+ Address_State = table.Column(type: "character varying(60)", maxLength: 60, nullable: false),
+ Address_Country = table.Column(type: "character varying(90)", maxLength: 90, nullable: false),
+ Address_ZipCode = table.Column(type: "character varying(18)", maxLength: 18, nullable: false),
+ BuyerId = table.Column(type: "integer", nullable: true),
+ OrderStatus = table.Column(type: "character varying(30)", maxLength: 30, nullable: false),
+ PaymentMethodId = table.Column(type: "integer", nullable: true)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_orders", x => x.Id);
+ table.ForeignKey(
+ name: "FK_orders_buyers_BuyerId",
+ column: x => x.BuyerId,
+ principalSchema: "ordering",
+ principalTable: "buyers",
+ principalColumn: "Id");
+ table.ForeignKey(
+ name: "FK_orders_paymentmethods_PaymentMethodId",
+ column: x => x.PaymentMethodId,
+ principalSchema: "ordering",
+ principalTable: "paymentmethods",
+ principalColumn: "Id",
+ onDelete: ReferentialAction.Restrict);
+ });
+
+ migrationBuilder.CreateTable(
+ name: "orderItems",
+ schema: "ordering",
+ columns: table => new
+ {
+ Id = table.Column(type: "integer", nullable: false),
+ ProductName = table.Column(type: "text", nullable: false),
+ PictureUrl = table.Column(type: "text", nullable: true),
+ UnitPrice = table.Column(type: "numeric", nullable: false),
+ Discount = table.Column(type: "numeric", nullable: false),
+ Units = table.Column(type: "integer", nullable: false),
+ ProductId = table.Column(type: "integer", nullable: false),
+ OrderId = table.Column(type: "integer", nullable: false)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_orderItems", x => x.Id);
+ table.ForeignKey(
+ name: "FK_orderItems_orders_OrderId",
+ column: x => x.OrderId,
+ principalSchema: "ordering",
+ principalTable: "orders",
+ principalColumn: "Id",
+ onDelete: ReferentialAction.Cascade);
+ });
+
+ migrationBuilder.CreateIndex(
+ name: "IX_buyers_IdentityGuid",
+ schema: "ordering",
+ table: "buyers",
+ column: "IdentityGuid",
+ unique: true);
+
+ migrationBuilder.CreateIndex(
+ name: "IX_orderItems_OrderId",
+ schema: "ordering",
+ table: "orderItems",
+ column: "OrderId");
+
+ migrationBuilder.CreateIndex(
+ name: "IX_orders_BuyerId",
+ schema: "ordering",
+ table: "orders",
+ column: "BuyerId");
+
+ migrationBuilder.CreateIndex(
+ name: "IX_orders_PaymentMethodId",
+ schema: "ordering",
+ table: "orders",
+ column: "PaymentMethodId");
+
+ migrationBuilder.CreateIndex(
+ name: "IX_paymentmethods_BuyerId",
+ schema: "ordering",
+ table: "paymentmethods",
+ column: "BuyerId");
+
+ migrationBuilder.CreateIndex(
+ name: "IX_paymentmethods_CardTypeId",
+ schema: "ordering",
+ table: "paymentmethods",
+ column: "CardTypeId");
+ }
+
+ ///
+ protected override void Down(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.DropTable(
+ name: "orderItems",
+ schema: "ordering");
+
+ migrationBuilder.DropTable(
+ name: "orders",
+ schema: "ordering");
+
+ migrationBuilder.DropTable(
+ name: "paymentmethods",
+ schema: "ordering");
+
+ migrationBuilder.DropTable(
+ name: "buyers",
+ schema: "ordering");
+
+ migrationBuilder.DropTable(
+ name: "cardtypes",
+ schema: "ordering");
+
+ migrationBuilder.DropSequence(
+ name: "buyerseq",
+ schema: "ordering");
+
+ migrationBuilder.DropSequence(
+ name: "orderitemseq",
+ schema: "ordering");
+
+ migrationBuilder.DropSequence(
+ name: "orderseq",
+ schema: "ordering");
+
+ migrationBuilder.DropSequence(
+ name: "paymentseq",
+ schema: "ordering");
+ }
+ }
+}
diff --git a/labs/5-Add-Checkout/end/Ordering.Data.Manager/Migrations/OrderingDbContextModelSnapshot.cs b/labs/5-Add-Checkout/end/Ordering.Data.Manager/Migrations/OrderingDbContextModelSnapshot.cs
new file mode 100644
index 0000000..d8e98c0
--- /dev/null
+++ b/labs/5-Add-Checkout/end/Ordering.Data.Manager/Migrations/OrderingDbContextModelSnapshot.cs
@@ -0,0 +1,303 @@
+//
+using System;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
+using eShop.Ordering.Data.Manager;
+
+#nullable disable
+
+namespace eShop.Ordering.Data.Manager.Migrations
+{
+ [DbContext(typeof(OrderingDbContext))]
+ partial class OrderingDbContextModelSnapshot : ModelSnapshot
+ {
+ protected override void BuildModel(ModelBuilder modelBuilder)
+ {
+#pragma warning disable 612, 618
+ modelBuilder
+ .HasDefaultSchema("ordering")
+ .HasAnnotation("ProductVersion", "8.0.1")
+ .HasAnnotation("Relational:MaxIdentifierLength", 63);
+
+ NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
+
+ modelBuilder.HasSequence("buyerseq")
+ .IncrementsBy(10);
+
+ modelBuilder.HasSequence("orderitemseq")
+ .IncrementsBy(10);
+
+ modelBuilder.HasSequence("orderseq")
+ .IncrementsBy(10);
+
+ modelBuilder.HasSequence("paymentseq")
+ .IncrementsBy(10);
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.Buyer", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseHiLo(b.Property("Id"), "buyerseq");
+
+ b.Property("IdentityGuid")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("character varying(200)");
+
+ b.Property("Name")
+ .IsRequired()
+ .HasColumnType("text");
+
+ b.HasKey("Id");
+
+ b.HasIndex("IdentityGuid")
+ .IsUnique();
+
+ b.ToTable("buyers", "ordering");
+ });
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.CardType", b =>
+ {
+ b.Property("Id")
+ .HasColumnType("integer");
+
+ b.Property("Name")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("character varying(200)");
+
+ b.HasKey("Id");
+
+ b.ToTable("cardtypes", "ordering");
+ });
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.Order", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseHiLo(b.Property("Id"), "orderseq");
+
+ b.Property("BuyerId")
+ .HasColumnType("integer")
+ .HasColumnName("BuyerId");
+
+ b.Property("OrderDate")
+ .HasColumnType("timestamp with time zone")
+ .HasColumnName("OrderDate");
+
+ b.Property("OrderStatus")
+ .IsRequired()
+ .HasMaxLength(30)
+ .HasColumnType("character varying(30)");
+
+ b.Property("PaymentMethodId")
+ .HasColumnType("integer")
+ .HasColumnName("PaymentMethodId");
+
+ b.HasKey("Id");
+
+ b.HasIndex("BuyerId");
+
+ b.HasIndex("PaymentMethodId");
+
+ b.ToTable("orders", "ordering");
+ });
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.OrderItem", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseHiLo(b.Property("Id"), "orderitemseq");
+
+ b.Property("Discount")
+ .HasColumnType("numeric")
+ .HasColumnName("Discount");
+
+ b.Property("OrderId")
+ .HasColumnType("integer")
+ .HasColumnName("OrderId");
+
+ b.Property("PictureUrl")
+ .HasColumnType("text")
+ .HasColumnName("PictureUrl");
+
+ b.Property("ProductId")
+ .HasColumnType("integer");
+
+ b.Property("ProductName")
+ .IsRequired()
+ .HasColumnType("text")
+ .HasColumnName("ProductName");
+
+ b.Property("UnitPrice")
+ .HasColumnType("numeric")
+ .HasColumnName("UnitPrice");
+
+ b.Property("Units")
+ .HasColumnType("integer")
+ .HasColumnName("Units");
+
+ b.HasKey("Id");
+
+ b.HasIndex("OrderId");
+
+ b.ToTable("orderItems", "ordering");
+ });
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.PaymentMethod", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseHiLo(b.Property("Id"), "paymentseq");
+
+ b.Property("Alias")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("character varying(200)")
+ .HasColumnName("Alias");
+
+ b.Property("BuyerId")
+ .HasColumnType("integer")
+ .HasColumnName("BuyerId");
+
+ b.Property("CardHolderName")
+ .IsRequired()
+ .HasMaxLength(200)
+ .HasColumnType("character varying(200)");
+
+ b.Property("CardNumber")
+ .IsRequired()
+ .HasMaxLength(25)
+ .HasColumnType("character varying(25)")
+ .HasColumnName("CardNumber");
+
+ b.Property("CardTypeId")
+ .HasColumnType("integer")
+ .HasColumnName("CardTypeId");
+
+ b.Property("Expiration")
+ .HasMaxLength(25)
+ .HasColumnType("timestamp with time zone")
+ .HasColumnName("Expiration");
+
+ b.Property("SecurityNumber")
+ .IsRequired()
+ .HasColumnType("text");
+
+ b.HasKey("Id");
+
+ b.HasIndex("BuyerId");
+
+ b.HasIndex("CardTypeId");
+
+ b.ToTable("paymentmethods", "ordering");
+ });
+
+ modelBuilder.Entity("eShop.Ordering.API.Data.Order", b =>
+ {
+ b.HasOne("eShop.Ordering.API.Data.Buyer", "Buyer")
+ .WithMany()
+ .HasForeignKey("BuyerId");
+
+ b.HasOne("eShop.Ordering.API.Data.PaymentMethod", "PaymentMethod")
+ .WithMany()
+ .HasForeignKey("PaymentMethodId")
+ .OnDelete(DeleteBehavior.Restrict);
+
+ b.OwnsOne("eShop.Ordering.API.Data.Address", "Address", b1 =>
+ {
+ b1.Property("OrderId")
+ .HasColumnType("integer");
+
+ b1.Property("City")
+ .IsRequired()
+ .HasMaxLength(100)
+ .HasColumnType("character varying(100)");
+
+ b1.Property