製品版のみの機能
グリッド - グループ化 API
このサンプルは CTP 機能を使用しています。製品版では、API や動作が変更される場合があります。
このサンプルは、より大きい画面サイズのためにデザインされました。
モバイル デバイスで画面を回転、フル サイズ表示、またはその他のデバイスにメールで送信します。
このサンプルでは、igGridGroupBy ウィジェットの API メソッドを使用する方法を紹介します。
グリッドの上にあるボタンおよびコンボを使用して列をグループ化し、グループを展開/縮小します。
コード ビュー
クリップボードへコピー
<!DOCTYPE html>
<html>
<head>
<title></title>
<!-- Ignite UI for jQuery Required Combined CSS Files -->
<link href="http://cdn-na.infragistics.com/igniteui/2024.2/latest/css/themes/infragistics/infragistics.theme.css" rel="stylesheet" />
<link href="http://cdn-na.infragistics.com/igniteui/2024.2/latest/css/structure/infragistics.css" rel="stylesheet" />
<script src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.8.3.js"></script>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script>
<!-- Ignite UI for jQuery Required Combined JavaScript Files -->
<script src="http://cdn-na.infragistics.com/igniteui/2024.2/latest/js/infragistics.core.js"></script>
<script src="http://cdn-na.infragistics.com/igniteui/2024.2/latest/js/infragistics.lob.js"></script>
</head>
<body>
<fieldset id="groupOptions" class="explorer">
<legend>グループ化の API メソッド</legend>
<label for="columns">列でグループ化: </label>
<input id="columns" />
<br />
<label for="groupRows">グループを選択: </label>
<input id="groupRows" />
<br />
<input id="expand" type="button" />
<input id="collapse" type="button" />
<br />
<br />
<input id="expandAll" type="button" />
<input id="collapseAll" type="button" />
</fieldset>
<table id="grid"></table>
<script src="/data-files/nw-invoices.js"></script>
<script>
function getGroupRows(data) {
if (data === undefined) {
return;
}
var groupRows;
groupRows = $.grep(data, function (rec) {
return rec.__gbRecord === true;
});
return groupRows;
}
$(function () {
$('#columns').igCombo({
noMatchFoundText: "グループ化された列がありません",
filteringType: "None",
mode: "dropdown",
dataSource: [
{ text: "なし", key: "none" },
{ text: "注文 ID", key: "OrderID" },
{ text: "出荷名", key: "ShipName" },
{ text: "配送先市町村", key: "ShipCity" },
{ text: "配送先の国", key: "ShipCountry" },
{ text: "顧客住所", key: "City" }
],
textKey: "text",
valueKey: "key",
selectionChanged: function (evt, args) {
console.log(args);
var item = args.items[0], groupRows, data;
$("#grid").igGridGroupBy("ungroupAll");
if (item.data.key !== "none") {
$("#grid").igGridGroupBy("groupByColumn", item.data.key);
data = $("#grid").data("igGrid").dataSource.groupByData()
groupRows = getGroupRows(data);
$('#groupRows').igCombo("option", "dataSource", groupRows);
$('#groupRows').igCombo("value", groupRows[0].id);
} else {
$('#groupRows').igCombo("option", "dataSource", []);
}
}
});
$('#groupRows').igCombo({
noMatchFoundText: "グループ化された列がありません",
textKey: "val",
valueKey: "id"
});
$("#expand").igButton({
labelText: "展開",
click: function (evt, args) {
var groupId = $('#groupRows').igCombo("value");
if (groupId.length === 0) {
return;
}
$("#grid").igGridGroupBy("expand", groupId);
}
});
$("#collapse").igButton({
labelText: "縮小",
click: function (evt, args) {
var groupId = $('#groupRows').igCombo("value");
if (groupId.length === 0) {
return;
}
$("#grid").igGridGroupBy("collapse", groupId);
}
});
$("#expandAll").igButton({
labelText: "すべて展開",
click: function (evt, args) {
var ds = $("#grid").data("igGrid").dataSource,
groupRows = getGroupRows(ds.groupByData());
if (groupRows === undefined) {
return;
}
for (var i = 0; i < groupRows.length; i++) {
$("#grid").igGridGroupBy("expand", groupRows[i].id);
}
}
});
$("#collapseAll").igButton({
labelText: "すべて縮小",
click: function (evt, args) {
var ds = $("#grid").data("igGrid").dataSource,
groupRows = getGroupRows(ds.groupByData());
if (groupRows === undefined) {
return;
}
for (var i = 0; i < groupRows.length; i++) {
$("#grid").igGridGroupBy("collapse", groupRows[i].id);
}
}
});
$("#grid").igGrid({
autoGenerateColumns: false,
width: "100%",
height: "400px",
columns: [
{ headerText: "注文 ID", key: "OrderID", dataType: "number", width: "10%" },
{ headerText: "出荷名", key: "ShipName", dataType: "string", width: "30%" },
{ headerText: "配送先市町村", key: "ShipCity", dataType: "string", width: "20%" },
{ headerText: "配送先の国", key: "ShipCountry", dataType: "string", width: "20%" },
{ headerText: "顧客住所", key: "City", dataType: "string", width: "20%" }
],
dataSource: northwindInvoices,
features: [
{
name: 'GroupBy',
groupByDialogContainment: "window",
initialExpand: false,
groupedColumnsChanged: function (evt, args) {
var ds = args.owner.grid.dataSource, groupRows = getGroupRows(ds.groupByData()),
len = args.groupedColumns.length, cols = args.groupedColumns;
if (len !== 0) {
$('#groupRows').igCombo("option", "dataSource", groupRows);
$('#columns').igCombo("value", cols[len - 1].key);
$('#groupRows').igCombo("value", groupRows[0].id);
} else {
$('#groupRows').igCombo("option", "dataSource", []);
$('#columns').igCombo("value", "none");
}
}
}
]
});
});
</script>
</body>
</html>
var northwindInvoices = [{
"ShipName": "Alfred's Futterkiste",
"ShipAddress": "Obere Str. 57",
"ShipCity": "Berlin",
"ShipRegion": null,
"ShipPostalCode": "12209",
"ShipCountry": "Germany",
"CustomerID": "ALFKI",
"CustomerName": "Alfreds Futterkiste",
"Address": "Obere Str. 57",
"City": "Berlin",
"Region": null,
"PostalCode": "12209",
"Country": "Germany",
"Salesperson": "Margaret Peacock",
"OrderID": 10692,
"OrderDate": "1997-10-03T00:00:00Z",
"RequiredDate": "1997-10-31T00:00:00Z",
"ShippedDate": "1997-10-13T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 63,
"ProductName": "Vegie-spread",
"UnitPrice": 43.9000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 878.0000,
"Freight": 61.0200
}, {
"ShipName": "Alfred's Futterkiste",
"ShipAddress": "Obere Str. 57",
"ShipCity": "Berlin",
"ShipRegion": null,
"ShipPostalCode": "12209",
"ShipCountry": "Germany",
"CustomerID": "ALFKI",
"CustomerName": "Alfreds Futterkiste",
"Address": "Obere Str. 57",
"City": "Berlin",
"Region": null,
"PostalCode": "12209",
"Country": "Germany",
"Salesperson": "Margaret Peacock",
"OrderID": 10702,
"OrderDate": "1997-10-13T00:00:00Z",
"RequiredDate": "1997-11-24T00:00:00Z",
"ShippedDate": "1997-10-21T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 3,
"ProductName": "Aniseed Syrup",
"UnitPrice": 10.0000,
"Quantity": 6,
"Discount": 0,
"ExtendedPrice": 60.0000,
"Freight": 23.9400
}, {
"ShipName": "Alfred's Futterkiste",
"ShipAddress": "Obere Str. 57",
"ShipCity": "Berlin",
"ShipRegion": null,
"ShipPostalCode": "12209",
"ShipCountry": "Germany",
"CustomerID": "ALFKI",
"CustomerName": "Alfreds Futterkiste",
"Address": "Obere Str. 57",
"City": "Berlin",
"Region": null,
"PostalCode": "12209",
"Country": "Germany",
"Salesperson": "Margaret Peacock",
"OrderID": 10702,
"OrderDate": "1997-10-13T00:00:00Z",
"RequiredDate": "1997-11-24T00:00:00Z",
"ShippedDate": "1997-10-21T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 76,
"ProductName": "Lakkalik\u00f6\u00f6ri",
"UnitPrice": 18.0000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 270.0000,
"Freight": 23.9400
}, {
"ShipName": "Alfred's Futterkiste",
"ShipAddress": "Obere Str. 57",
"ShipCity": "Berlin",
"ShipRegion": null,
"ShipPostalCode": "12209",
"ShipCountry": "Germany",
"CustomerID": "ALFKI",
"CustomerName": "Alfreds Futterkiste",
"Address": "Obere Str. 57",
"City": "Berlin",
"Region": null,
"PostalCode": "12209",
"Country": "Germany",
"Salesperson": "Nancy Davolio",
"OrderID": 10835,
"OrderDate": "1998-01-15T00:00:00Z",
"RequiredDate": "1998-02-12T00:00:00Z",
"ShippedDate": "1998-01-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 59,
"ProductName": "Raclette Courdavault",
"UnitPrice": 55.0000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 825.0000,
"Freight": 69.5300
}, {
"ShipName": "Alfred's Futterkiste",
"ShipAddress": "Obere Str. 57",
"ShipCity": "Berlin",
"ShipRegion": null,
"ShipPostalCode": "12209",
"ShipCountry": "Germany",
"CustomerID": "ALFKI",
"CustomerName": "Alfreds Futterkiste",
"Address": "Obere Str. 57",
"City": "Berlin",
"Region": null,
"PostalCode": "12209",
"Country": "Germany",
"Salesperson": "Nancy Davolio",
"OrderID": 10952,
"OrderDate": "1998-03-16T00:00:00Z",
"RequiredDate": "1998-04-27T00:00:00Z",
"ShippedDate": "1998-03-24T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 28,
"ProductName": "R\u00f6ssle Sauerkraut",
"UnitPrice": 45.6000,
"Quantity": 2,
"Discount": 0,
"ExtendedPrice": 91.2000,
"Freight": 40.4200
}, {
"ShipName": "Alfred's Futterkiste",
"ShipAddress": "Obere Str. 57",
"ShipCity": "Berlin",
"ShipRegion": null,
"ShipPostalCode": "12209",
"ShipCountry": "Germany",
"CustomerID": "ALFKI",
"CustomerName": "Alfreds Futterkiste",
"Address": "Obere Str. 57",
"City": "Berlin",
"Region": null,
"PostalCode": "12209",
"Country": "Germany",
"Salesperson": "Janet Leverling",
"OrderID": 11011,
"OrderDate": "1998-04-09T00:00:00Z",
"RequiredDate": "1998-05-07T00:00:00Z",
"ShippedDate": "1998-04-13T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 71,
"ProductName": "Flotemysost",
"UnitPrice": 21.5000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 430.0000,
"Freight": 1.2100
}, {
"ShipName": "Alfred's Futterkiste",
"ShipAddress": "Obere Str. 57",
"ShipCity": "Berlin",
"ShipRegion": null,
"ShipPostalCode": "12209",
"ShipCountry": "Germany",
"CustomerID": "ALFKI",
"CustomerName": "Alfreds Futterkiste",
"Address": "Obere Str. 57",
"City": "Berlin",
"Region": null,
"PostalCode": "12209",
"Country": "Germany",
"Salesperson": "Nancy Davolio",
"OrderID": 10952,
"OrderDate": "1998-03-16T00:00:00Z",
"RequiredDate": "1998-04-27T00:00:00Z",
"ShippedDate": "1998-03-24T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 6,
"ProductName": "Grandma's Boysenberry Spread",
"UnitPrice": 25.0000,
"Quantity": 16,
"Discount": 0.05,
"ExtendedPrice": 380.0000,
"Freight": 40.4200
}, {
"ShipName": "Alfred's Futterkiste",
"ShipAddress": "Obere Str. 57",
"ShipCity": "Berlin",
"ShipRegion": null,
"ShipPostalCode": "12209",
"ShipCountry": "Germany",
"CustomerID": "ALFKI",
"CustomerName": "Alfreds Futterkiste",
"Address": "Obere Str. 57",
"City": "Berlin",
"Region": null,
"PostalCode": "12209",
"Country": "Germany",
"Salesperson": "Janet Leverling",
"OrderID": 11011,
"OrderDate": "1998-04-09T00:00:00Z",
"RequiredDate": "1998-05-07T00:00:00Z",
"ShippedDate": "1998-04-13T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 58,
"ProductName": "Escargots de Bourgogne",
"UnitPrice": 13.2500,
"Quantity": 40,
"Discount": 0.05,
"ExtendedPrice": 503.5000,
"Freight": 1.2100
}, {
"ShipName": "Alfred's Futterkiste",
"ShipAddress": "Obere Str. 57",
"ShipCity": "Berlin",
"ShipRegion": null,
"ShipPostalCode": "12209",
"ShipCountry": "Germany",
"CustomerID": "ALFKI",
"CustomerName": "Alfreds Futterkiste",
"Address": "Obere Str. 57",
"City": "Berlin",
"Region": null,
"PostalCode": "12209",
"Country": "Germany",
"Salesperson": "Nancy Davolio",
"OrderID": 10835,
"OrderDate": "1998-01-15T00:00:00Z",
"RequiredDate": "1998-02-12T00:00:00Z",
"ShippedDate": "1998-01-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 77,
"ProductName": "Original Frankfurter gr\u00fcne So\u00dfe",
"UnitPrice": 13.0000,
"Quantity": 2,
"Discount": 0.2,
"ExtendedPrice": 20.8000,
"Freight": 69.5300
}, {
"ShipName": "Alfreds Futterkiste",
"ShipAddress": "Obere Str. 57",
"ShipCity": "Berlin",
"ShipRegion": null,
"ShipPostalCode": "12209",
"ShipCountry": "Germany",
"CustomerID": "ALFKI",
"CustomerName": "Alfreds Futterkiste",
"Address": "Obere Str. 57",
"City": "Berlin",
"Region": null,
"PostalCode": "12209",
"Country": "Germany",
"Salesperson": "Michael Suyama",
"OrderID": 10643,
"OrderDate": "1997-08-25T00:00:00Z",
"RequiredDate": "1997-09-22T00:00:00Z",
"ShippedDate": "1997-09-02T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 28,
"ProductName": "R\u00f6ssle Sauerkraut",
"UnitPrice": 45.6000,
"Quantity": 15,
"Discount": 0.25,
"ExtendedPrice": 513.0000,
"Freight": 29.4600
}, {
"ShipName": "Alfreds Futterkiste",
"ShipAddress": "Obere Str. 57",
"ShipCity": "Berlin",
"ShipRegion": null,
"ShipPostalCode": "12209",
"ShipCountry": "Germany",
"CustomerID": "ALFKI",
"CustomerName": "Alfreds Futterkiste",
"Address": "Obere Str. 57",
"City": "Berlin",
"Region": null,
"PostalCode": "12209",
"Country": "Germany",
"Salesperson": "Michael Suyama",
"OrderID": 10643,
"OrderDate": "1997-08-25T00:00:00Z",
"RequiredDate": "1997-09-22T00:00:00Z",
"ShippedDate": "1997-09-02T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 39,
"ProductName": "Chartreuse verte",
"UnitPrice": 18.0000,
"Quantity": 21,
"Discount": 0.25,
"ExtendedPrice": 283.5000,
"Freight": 29.4600
}, {
"ShipName": "Alfreds Futterkiste",
"ShipAddress": "Obere Str. 57",
"ShipCity": "Berlin",
"ShipRegion": null,
"ShipPostalCode": "12209",
"ShipCountry": "Germany",
"CustomerID": "ALFKI",
"CustomerName": "Alfreds Futterkiste",
"Address": "Obere Str. 57",
"City": "Berlin",
"Region": null,
"PostalCode": "12209",
"Country": "Germany",
"Salesperson": "Michael Suyama",
"OrderID": 10643,
"OrderDate": "1997-08-25T00:00:00Z",
"RequiredDate": "1997-09-22T00:00:00Z",
"ShippedDate": "1997-09-02T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 46,
"ProductName": "Spegesild",
"UnitPrice": 12.0000,
"Quantity": 2,
"Discount": 0.25,
"ExtendedPrice": 18.0000,
"Freight": 29.4600
}, {
"ShipName": "Ana Trujillo Emparedados y helados",
"ShipAddress": "Avda. de la Constituci\u00f3n 2222",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05021",
"ShipCountry": "Mexico",
"CustomerID": "ANATR",
"CustomerName": "Ana Trujillo Emparedados y helados",
"Address": "Avda. de la Constituci\u00f3n 2222",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05021",
"Country": "Mexico",
"Salesperson": "Robert King",
"OrderID": 10308,
"OrderDate": "1996-09-18T00:00:00Z",
"RequiredDate": "1996-10-16T00:00:00Z",
"ShippedDate": "1996-09-24T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 69,
"ProductName": "Gudbrandsdalsost",
"UnitPrice": 28.8000,
"Quantity": 1,
"Discount": 0,
"ExtendedPrice": 28.8000,
"Freight": 1.6100
}, {
"ShipName": "Ana Trujillo Emparedados y helados",
"ShipAddress": "Avda. de la Constituci\u00f3n 2222",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05021",
"ShipCountry": "Mexico",
"CustomerID": "ANATR",
"CustomerName": "Ana Trujillo Emparedados y helados",
"Address": "Avda. de la Constituci\u00f3n 2222",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05021",
"Country": "Mexico",
"Salesperson": "Robert King",
"OrderID": 10308,
"OrderDate": "1996-09-18T00:00:00Z",
"RequiredDate": "1996-10-16T00:00:00Z",
"ShippedDate": "1996-09-24T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 70,
"ProductName": "Outback Lager",
"UnitPrice": 12.0000,
"Quantity": 5,
"Discount": 0,
"ExtendedPrice": 60.0000,
"Freight": 1.6100
}, {
"ShipName": "Ana Trujillo Emparedados y helados",
"ShipAddress": "Avda. de la Constituci\u00f3n 2222",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05021",
"ShipCountry": "Mexico",
"CustomerID": "ANATR",
"CustomerName": "Ana Trujillo Emparedados y helados",
"Address": "Avda. de la Constituci\u00f3n 2222",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05021",
"Country": "Mexico",
"Salesperson": "Janet Leverling",
"OrderID": 10625,
"OrderDate": "1997-08-08T00:00:00Z",
"RequiredDate": "1997-09-05T00:00:00Z",
"ShippedDate": "1997-08-14T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 14,
"ProductName": "Tofu",
"UnitPrice": 23.2500,
"Quantity": 3,
"Discount": 0,
"ExtendedPrice": 69.7500,
"Freight": 43.9000
}, {
"ShipName": "Ana Trujillo Emparedados y helados",
"ShipAddress": "Avda. de la Constituci\u00f3n 2222",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05021",
"ShipCountry": "Mexico",
"CustomerID": "ANATR",
"CustomerName": "Ana Trujillo Emparedados y helados",
"Address": "Avda. de la Constituci\u00f3n 2222",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05021",
"Country": "Mexico",
"Salesperson": "Janet Leverling",
"OrderID": 10625,
"OrderDate": "1997-08-08T00:00:00Z",
"RequiredDate": "1997-09-05T00:00:00Z",
"ShippedDate": "1997-08-14T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 42,
"ProductName": "Singaporean Hokkien Fried Mee",
"UnitPrice": 14.0000,
"Quantity": 5,
"Discount": 0,
"ExtendedPrice": 70.0000,
"Freight": 43.9000
}, {
"ShipName": "Ana Trujillo Emparedados y helados",
"ShipAddress": "Avda. de la Constituci\u00f3n 2222",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05021",
"ShipCountry": "Mexico",
"CustomerID": "ANATR",
"CustomerName": "Ana Trujillo Emparedados y helados",
"Address": "Avda. de la Constituci\u00f3n 2222",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05021",
"Country": "Mexico",
"Salesperson": "Janet Leverling",
"OrderID": 10625,
"OrderDate": "1997-08-08T00:00:00Z",
"RequiredDate": "1997-09-05T00:00:00Z",
"ShippedDate": "1997-08-14T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 60,
"ProductName": "Camembert Pierrot",
"UnitPrice": 34.0000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 340.0000,
"Freight": 43.9000
}, {
"ShipName": "Ana Trujillo Emparedados y helados",
"ShipAddress": "Avda. de la Constituci\u00f3n 2222",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05021",
"ShipCountry": "Mexico",
"CustomerID": "ANATR",
"CustomerName": "Ana Trujillo Emparedados y helados",
"Address": "Avda. de la Constituci\u00f3n 2222",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05021",
"Country": "Mexico",
"Salesperson": "Janet Leverling",
"OrderID": 10759,
"OrderDate": "1997-11-28T00:00:00Z",
"RequiredDate": "1997-12-26T00:00:00Z",
"ShippedDate": "1997-12-12T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 32,
"ProductName": "Mascarpone Fabioli",
"UnitPrice": 32.0000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 320.0000,
"Freight": 11.9900
}, {
"ShipName": "Ana Trujillo Emparedados y helados",
"ShipAddress": "Avda. de la Constituci\u00f3n 2222",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05021",
"ShipCountry": "Mexico",
"CustomerID": "ANATR",
"CustomerName": "Ana Trujillo Emparedados y helados",
"Address": "Avda. de la Constituci\u00f3n 2222",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05021",
"Country": "Mexico",
"Salesperson": "Margaret Peacock",
"OrderID": 10926,
"OrderDate": "1998-03-04T00:00:00Z",
"RequiredDate": "1998-04-01T00:00:00Z",
"ShippedDate": "1998-03-11T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 11,
"ProductName": "Queso Cabrales",
"UnitPrice": 21.0000,
"Quantity": 2,
"Discount": 0,
"ExtendedPrice": 42.0000,
"Freight": 39.9200
}, {
"ShipName": "Ana Trujillo Emparedados y helados",
"ShipAddress": "Avda. de la Constituci\u00f3n 2222",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05021",
"ShipCountry": "Mexico",
"CustomerID": "ANATR",
"CustomerName": "Ana Trujillo Emparedados y helados",
"Address": "Avda. de la Constituci\u00f3n 2222",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05021",
"Country": "Mexico",
"Salesperson": "Margaret Peacock",
"OrderID": 10926,
"OrderDate": "1998-03-04T00:00:00Z",
"RequiredDate": "1998-04-01T00:00:00Z",
"ShippedDate": "1998-03-11T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 13,
"ProductName": "Konbu",
"UnitPrice": 6.0000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 60.0000,
"Freight": 39.9200
}, {
"ShipName": "Ana Trujillo Emparedados y helados",
"ShipAddress": "Avda. de la Constituci\u00f3n 2222",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05021",
"ShipCountry": "Mexico",
"CustomerID": "ANATR",
"CustomerName": "Ana Trujillo Emparedados y helados",
"Address": "Avda. de la Constituci\u00f3n 2222",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05021",
"Country": "Mexico",
"Salesperson": "Margaret Peacock",
"OrderID": 10926,
"OrderDate": "1998-03-04T00:00:00Z",
"RequiredDate": "1998-04-01T00:00:00Z",
"ShippedDate": "1998-03-11T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 19,
"ProductName": "Teatime Chocolate Biscuits",
"UnitPrice": 9.2000,
"Quantity": 7,
"Discount": 0,
"ExtendedPrice": 64.4000,
"Freight": 39.9200
}, {
"ShipName": "Ana Trujillo Emparedados y helados",
"ShipAddress": "Avda. de la Constituci\u00f3n 2222",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05021",
"ShipCountry": "Mexico",
"CustomerID": "ANATR",
"CustomerName": "Ana Trujillo Emparedados y helados",
"Address": "Avda. de la Constituci\u00f3n 2222",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05021",
"Country": "Mexico",
"Salesperson": "Margaret Peacock",
"OrderID": 10926,
"OrderDate": "1998-03-04T00:00:00Z",
"RequiredDate": "1998-04-01T00:00:00Z",
"ShippedDate": "1998-03-11T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 72,
"ProductName": "Mozzarella di Giovanni",
"UnitPrice": 34.8000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 348.0000,
"Freight": 39.9200
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Janet Leverling",
"OrderID": 10365,
"OrderDate": "1996-11-27T00:00:00Z",
"RequiredDate": "1996-12-25T00:00:00Z",
"ShippedDate": "1996-12-02T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 11,
"ProductName": "Queso Cabrales",
"UnitPrice": 16.8000,
"Quantity": 24,
"Discount": 0,
"ExtendedPrice": 403.2000,
"Freight": 22.0000
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Robert King",
"OrderID": 10573,
"OrderDate": "1997-06-19T00:00:00Z",
"RequiredDate": "1997-07-17T00:00:00Z",
"ShippedDate": "1997-06-20T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 17,
"ProductName": "Alice Mutton",
"UnitPrice": 39.0000,
"Quantity": 18,
"Discount": 0,
"ExtendedPrice": 702.0000,
"Freight": 84.8400
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Robert King",
"OrderID": 10573,
"OrderDate": "1997-06-19T00:00:00Z",
"RequiredDate": "1997-07-17T00:00:00Z",
"ShippedDate": "1997-06-20T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 34,
"ProductName": "Sasquatch Ale",
"UnitPrice": 14.0000,
"Quantity": 40,
"Discount": 0,
"ExtendedPrice": 560.0000,
"Freight": 84.8400
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Robert King",
"OrderID": 10573,
"OrderDate": "1997-06-19T00:00:00Z",
"RequiredDate": "1997-07-17T00:00:00Z",
"ShippedDate": "1997-06-20T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 53,
"ProductName": "Perth Pasties",
"UnitPrice": 32.8000,
"Quantity": 25,
"Discount": 0,
"ExtendedPrice": 820.0000,
"Freight": 84.8400
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Janet Leverling",
"OrderID": 10682,
"OrderDate": "1997-09-25T00:00:00Z",
"RequiredDate": "1997-10-23T00:00:00Z",
"ShippedDate": "1997-10-01T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 33,
"ProductName": "Geitost",
"UnitPrice": 2.5000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 75.0000,
"Freight": 36.1300
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Janet Leverling",
"OrderID": 10682,
"OrderDate": "1997-09-25T00:00:00Z",
"RequiredDate": "1997-10-23T00:00:00Z",
"ShippedDate": "1997-10-01T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 66,
"ProductName": "Louisiana Hot Spiced Okra",
"UnitPrice": 17.0000,
"Quantity": 4,
"Discount": 0,
"ExtendedPrice": 68.0000,
"Freight": 36.1300
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Janet Leverling",
"OrderID": 10682,
"OrderDate": "1997-09-25T00:00:00Z",
"RequiredDate": "1997-10-23T00:00:00Z",
"ShippedDate": "1997-10-01T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 75,
"ProductName": "Rh\u00f6nbr\u00e4u Klosterbier",
"UnitPrice": 7.7500,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 232.5000,
"Freight": 36.1300
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Janet Leverling",
"OrderID": 10856,
"OrderDate": "1998-01-28T00:00:00Z",
"RequiredDate": "1998-02-25T00:00:00Z",
"ShippedDate": "1998-02-10T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 2,
"ProductName": "Chang",
"UnitPrice": 19.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 380.0000,
"Freight": 58.4300
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Janet Leverling",
"OrderID": 10856,
"OrderDate": "1998-01-28T00:00:00Z",
"RequiredDate": "1998-02-25T00:00:00Z",
"ShippedDate": "1998-02-10T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 42,
"ProductName": "Singaporean Hokkien Fried Mee",
"UnitPrice": 14.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 280.0000,
"Freight": 58.4300
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Margaret Peacock",
"OrderID": 10535,
"OrderDate": "1997-05-13T00:00:00Z",
"RequiredDate": "1997-06-10T00:00:00Z",
"ShippedDate": "1997-05-21T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 11,
"ProductName": "Queso Cabrales",
"UnitPrice": 21.0000,
"Quantity": 50,
"Discount": 0.1,
"ExtendedPrice": 945.0000,
"Freight": 15.6400
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Margaret Peacock",
"OrderID": 10535,
"OrderDate": "1997-05-13T00:00:00Z",
"RequiredDate": "1997-06-10T00:00:00Z",
"ShippedDate": "1997-05-21T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 40,
"ProductName": "Boston Crab Meat",
"UnitPrice": 18.4000,
"Quantity": 10,
"Discount": 0.1,
"ExtendedPrice": 165.6000,
"Freight": 15.6400
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Margaret Peacock",
"OrderID": 10535,
"OrderDate": "1997-05-13T00:00:00Z",
"RequiredDate": "1997-06-10T00:00:00Z",
"ShippedDate": "1997-05-21T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 57,
"ProductName": "Ravioli Angelo",
"UnitPrice": 19.5000,
"Quantity": 5,
"Discount": 0.1,
"ExtendedPrice": 87.7500,
"Freight": 15.6400
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Margaret Peacock",
"OrderID": 10535,
"OrderDate": "1997-05-13T00:00:00Z",
"RequiredDate": "1997-06-10T00:00:00Z",
"ShippedDate": "1997-05-21T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 59,
"ProductName": "Raclette Courdavault",
"UnitPrice": 55.0000,
"Quantity": 15,
"Discount": 0.1,
"ExtendedPrice": 742.5000,
"Freight": 15.6400
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Robert King",
"OrderID": 10507,
"OrderDate": "1997-04-15T00:00:00Z",
"RequiredDate": "1997-05-13T00:00:00Z",
"ShippedDate": "1997-04-22T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 43,
"ProductName": "Ipoh Coffee",
"UnitPrice": 46.0000,
"Quantity": 15,
"Discount": 0.15,
"ExtendedPrice": 586.5000,
"Freight": 47.4500
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Robert King",
"OrderID": 10507,
"OrderDate": "1997-04-15T00:00:00Z",
"RequiredDate": "1997-05-13T00:00:00Z",
"ShippedDate": "1997-04-22T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 48,
"ProductName": "Chocolade",
"UnitPrice": 12.7500,
"Quantity": 15,
"Discount": 0.15,
"ExtendedPrice": 162.5600,
"Freight": 47.4500
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Nancy Davolio",
"OrderID": 10677,
"OrderDate": "1997-09-22T00:00:00Z",
"RequiredDate": "1997-10-20T00:00:00Z",
"ShippedDate": "1997-09-26T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 26,
"ProductName": "Gumb\u00e4r Gummib\u00e4rchen",
"UnitPrice": 31.2300,
"Quantity": 30,
"Discount": 0.15,
"ExtendedPrice": 796.3700,
"Freight": 4.0300
}, {
"ShipName": "Antonio Moreno Taquer\u00eda",
"ShipAddress": "Mataderos 2312",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico",
"CustomerID": "ANTON",
"CustomerName": "Antonio Moreno Taquer\u00eda",
"Address": "Mataderos 2312",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Salesperson": "Nancy Davolio",
"OrderID": 10677,
"OrderDate": "1997-09-22T00:00:00Z",
"RequiredDate": "1997-10-20T00:00:00Z",
"ShippedDate": "1997-09-26T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 33,
"ProductName": "Geitost",
"UnitPrice": 2.5000,
"Quantity": 8,
"Discount": 0.15,
"ExtendedPrice": 17.0000,
"Freight": 4.0300
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Michael Suyama",
"OrderID": 10355,
"OrderDate": "1996-11-15T00:00:00Z",
"RequiredDate": "1996-12-13T00:00:00Z",
"ShippedDate": "1996-11-20T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 24,
"ProductName": "Guaran\u00e1 Fant\u00e1stica",
"UnitPrice": 3.6000,
"Quantity": 25,
"Discount": 0,
"ExtendedPrice": 90.0000,
"Freight": 41.9500
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Michael Suyama",
"OrderID": 10355,
"OrderDate": "1996-11-15T00:00:00Z",
"RequiredDate": "1996-12-13T00:00:00Z",
"ShippedDate": "1996-11-20T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 57,
"ProductName": "Ravioli Angelo",
"UnitPrice": 15.6000,
"Quantity": 25,
"Discount": 0,
"ExtendedPrice": 390.0000,
"Freight": 41.9500
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Laura Callahan",
"OrderID": 10383,
"OrderDate": "1996-12-16T00:00:00Z",
"RequiredDate": "1997-01-13T00:00:00Z",
"ShippedDate": "1996-12-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 13,
"ProductName": "Konbu",
"UnitPrice": 4.8000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 96.0000,
"Freight": 34.2400
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Laura Callahan",
"OrderID": 10383,
"OrderDate": "1996-12-16T00:00:00Z",
"RequiredDate": "1997-01-13T00:00:00Z",
"ShippedDate": "1996-12-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 50,
"ProductName": "Valkoinen suklaa",
"UnitPrice": 13.0000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 195.0000,
"Freight": 34.2400
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Laura Callahan",
"OrderID": 10383,
"OrderDate": "1996-12-16T00:00:00Z",
"RequiredDate": "1997-01-13T00:00:00Z",
"ShippedDate": "1996-12-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 56,
"ProductName": "Gnocchi di nonna Alice",
"UnitPrice": 30.4000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 608.0000,
"Freight": 34.2400
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Nancy Davolio",
"OrderID": 10558,
"OrderDate": "1997-06-04T00:00:00Z",
"RequiredDate": "1997-07-02T00:00:00Z",
"ShippedDate": "1997-06-10T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 47,
"ProductName": "Zaanse koeken",
"UnitPrice": 9.5000,
"Quantity": 25,
"Discount": 0,
"ExtendedPrice": 237.5000,
"Freight": 72.9700
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Nancy Davolio",
"OrderID": 10558,
"OrderDate": "1997-06-04T00:00:00Z",
"RequiredDate": "1997-07-02T00:00:00Z",
"ShippedDate": "1997-06-10T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 51,
"ProductName": "Manjimup Dried Apples",
"UnitPrice": 53.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 1060.0000,
"Freight": 72.9700
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Nancy Davolio",
"OrderID": 10558,
"OrderDate": "1997-06-04T00:00:00Z",
"RequiredDate": "1997-07-02T00:00:00Z",
"ShippedDate": "1997-06-10T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 52,
"ProductName": "Filo Mix",
"UnitPrice": 7.0000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 210.0000,
"Freight": 72.9700
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Nancy Davolio",
"OrderID": 10558,
"OrderDate": "1997-06-04T00:00:00Z",
"RequiredDate": "1997-07-02T00:00:00Z",
"ShippedDate": "1997-06-10T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 53,
"ProductName": "Perth Pasties",
"UnitPrice": 32.8000,
"Quantity": 18,
"Discount": 0,
"ExtendedPrice": 590.4000,
"Freight": 72.9700
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Nancy Davolio",
"OrderID": 10558,
"OrderDate": "1997-06-04T00:00:00Z",
"RequiredDate": "1997-07-02T00:00:00Z",
"ShippedDate": "1997-06-10T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 73,
"ProductName": "R\u00f6d Kaviar",
"UnitPrice": 15.0000,
"Quantity": 3,
"Discount": 0,
"ExtendedPrice": 45.0000,
"Freight": 72.9700
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 10707,
"OrderDate": "1997-10-16T00:00:00Z",
"RequiredDate": "1997-10-30T00:00:00Z",
"ShippedDate": "1997-10-23T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 55,
"ProductName": "P\u00e2t\u00e9 chinois",
"UnitPrice": 24.0000,
"Quantity": 21,
"Discount": 0,
"ExtendedPrice": 504.0000,
"Freight": 21.7400
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 10707,
"OrderDate": "1997-10-16T00:00:00Z",
"RequiredDate": "1997-10-30T00:00:00Z",
"ShippedDate": "1997-10-23T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 57,
"ProductName": "Ravioli Angelo",
"UnitPrice": 19.5000,
"Quantity": 40,
"Discount": 0,
"ExtendedPrice": 780.0000,
"Freight": 21.7400
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Janet Leverling",
"OrderID": 10768,
"OrderDate": "1997-12-08T00:00:00Z",
"RequiredDate": "1998-01-05T00:00:00Z",
"ShippedDate": "1997-12-15T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 22,
"ProductName": "Gustaf's Kn\u00e4ckebr\u00f6d",
"UnitPrice": 21.0000,
"Quantity": 4,
"Discount": 0,
"ExtendedPrice": 84.0000,
"Freight": 146.3200
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Janet Leverling",
"OrderID": 10768,
"OrderDate": "1997-12-08T00:00:00Z",
"RequiredDate": "1998-01-05T00:00:00Z",
"ShippedDate": "1997-12-15T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 31,
"ProductName": "Gorgonzola Telino",
"UnitPrice": 12.5000,
"Quantity": 50,
"Discount": 0,
"ExtendedPrice": 625.0000,
"Freight": 146.3200
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Janet Leverling",
"OrderID": 10768,
"OrderDate": "1997-12-08T00:00:00Z",
"RequiredDate": "1998-01-05T00:00:00Z",
"ShippedDate": "1997-12-15T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 60,
"ProductName": "Camembert Pierrot",
"UnitPrice": 34.0000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 510.0000,
"Freight": 146.3200
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Janet Leverling",
"OrderID": 10768,
"OrderDate": "1997-12-08T00:00:00Z",
"RequiredDate": "1998-01-05T00:00:00Z",
"ShippedDate": "1997-12-15T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 71,
"ProductName": "Flotemysost",
"UnitPrice": 21.5000,
"Quantity": 12,
"Discount": 0,
"ExtendedPrice": 258.0000,
"Freight": 146.3200
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Janet Leverling",
"OrderID": 10793,
"OrderDate": "1997-12-24T00:00:00Z",
"RequiredDate": "1998-01-21T00:00:00Z",
"ShippedDate": "1998-01-08T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 41,
"ProductName": "Jack's New England Clam Chowder",
"UnitPrice": 9.6500,
"Quantity": 14,
"Discount": 0,
"ExtendedPrice": 135.1000,
"Freight": 4.5200
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Janet Leverling",
"OrderID": 10793,
"OrderDate": "1997-12-24T00:00:00Z",
"RequiredDate": "1998-01-21T00:00:00Z",
"ShippedDate": "1998-01-08T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 52,
"ProductName": "Filo Mix",
"UnitPrice": 7.0000,
"Quantity": 8,
"Discount": 0,
"ExtendedPrice": 56.0000,
"Freight": 4.5200
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 10864,
"OrderDate": "1998-02-02T00:00:00Z",
"RequiredDate": "1998-03-02T00:00:00Z",
"ShippedDate": "1998-02-09T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 35,
"ProductName": "Steeleye Stout",
"UnitPrice": 18.0000,
"Quantity": 4,
"Discount": 0,
"ExtendedPrice": 72.0000,
"Freight": 3.0400
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 10864,
"OrderDate": "1998-02-02T00:00:00Z",
"RequiredDate": "1998-03-02T00:00:00Z",
"ShippedDate": "1998-02-09T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 67,
"ProductName": "Laughing Lumberjack Lager",
"UnitPrice": 14.0000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 210.0000,
"Freight": 3.0400
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 10920,
"OrderDate": "1998-03-03T00:00:00Z",
"RequiredDate": "1998-03-31T00:00:00Z",
"ShippedDate": "1998-03-09T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 50,
"ProductName": "Valkoinen suklaa",
"UnitPrice": 16.2500,
"Quantity": 24,
"Discount": 0,
"ExtendedPrice": 390.0000,
"Freight": 29.6100
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Anne Dodsworth",
"OrderID": 11016,
"OrderDate": "1998-04-10T00:00:00Z",
"RequiredDate": "1998-05-08T00:00:00Z",
"ShippedDate": "1998-04-13T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 31,
"ProductName": "Gorgonzola Telino",
"UnitPrice": 12.5000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 187.5000,
"Freight": 33.8000
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Anne Dodsworth",
"OrderID": 11016,
"OrderDate": "1998-04-10T00:00:00Z",
"RequiredDate": "1998-05-08T00:00:00Z",
"ShippedDate": "1998-04-13T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 36,
"ProductName": "Inlagd Sill",
"UnitPrice": 19.0000,
"Quantity": 16,
"Discount": 0,
"ExtendedPrice": 304.0000,
"Freight": 33.8000
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Nancy Davolio",
"OrderID": 10743,
"OrderDate": "1997-11-17T00:00:00Z",
"RequiredDate": "1997-12-15T00:00:00Z",
"ShippedDate": "1997-11-21T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 46,
"ProductName": "Spegesild",
"UnitPrice": 12.0000,
"Quantity": 28,
"Discount": 0.05,
"ExtendedPrice": 319.2000,
"Freight": 23.7200
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Anne Dodsworth",
"OrderID": 10953,
"OrderDate": "1998-03-16T00:00:00Z",
"RequiredDate": "1998-03-30T00:00:00Z",
"ShippedDate": "1998-03-25T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 20,
"ProductName": "Sir Rodney's Marmalade",
"UnitPrice": 81.0000,
"Quantity": 50,
"Discount": 0.05,
"ExtendedPrice": 3847.5000,
"Freight": 23.7200
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Anne Dodsworth",
"OrderID": 10953,
"OrderDate": "1998-03-16T00:00:00Z",
"RequiredDate": "1998-03-30T00:00:00Z",
"ShippedDate": "1998-03-25T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 31,
"ProductName": "Gorgonzola Telino",
"UnitPrice": 12.5000,
"Quantity": 50,
"Discount": 0.05,
"ExtendedPrice": 593.7500,
"Freight": 23.7200
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Nancy Davolio",
"OrderID": 10453,
"OrderDate": "1997-02-21T00:00:00Z",
"RequiredDate": "1997-03-21T00:00:00Z",
"ShippedDate": "1997-02-26T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 48,
"ProductName": "Chocolade",
"UnitPrice": 10.2000,
"Quantity": 15,
"Discount": 0.1,
"ExtendedPrice": 137.7000,
"Freight": 25.3600
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Nancy Davolio",
"OrderID": 10453,
"OrderDate": "1997-02-21T00:00:00Z",
"RequiredDate": "1997-03-21T00:00:00Z",
"ShippedDate": "1997-02-26T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 70,
"ProductName": "Outback Lager",
"UnitPrice": 12.0000,
"Quantity": 25,
"Discount": 0.1,
"ExtendedPrice": 270.0000,
"Freight": 25.3600
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 10707,
"OrderDate": "1997-10-16T00:00:00Z",
"RequiredDate": "1997-10-30T00:00:00Z",
"ShippedDate": "1997-10-23T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 70,
"ProductName": "Outback Lager",
"UnitPrice": 15.0000,
"Quantity": 28,
"Discount": 0.15,
"ExtendedPrice": 357.0000,
"Freight": 21.7400
}, {
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK",
"CustomerID": "AROUT",
"CustomerName": "Around the Horn",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 10741,
"OrderDate": "1997-11-14T00:00:00Z",
"RequiredDate": "1997-11-28T00:00:00Z",
"ShippedDate": "1997-11-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 2,
"ProductName": "Chang",
"UnitPrice": 19.0000,
"Quantity": 15,
"Discount": 0.2,
"ExtendedPrice": 228.0000,
"Freight": 10.9600
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Laura Callahan",
"OrderID": 10278,
"OrderDate": "1996-08-12T00:00:00Z",
"RequiredDate": "1996-09-09T00:00:00Z",
"ShippedDate": "1996-08-16T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 44,
"ProductName": "Gula Malacca",
"UnitPrice": 15.5000,
"Quantity": 16,
"Discount": 0,
"ExtendedPrice": 248.0000,
"Freight": 92.6900
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Laura Callahan",
"OrderID": 10278,
"OrderDate": "1996-08-12T00:00:00Z",
"RequiredDate": "1996-09-09T00:00:00Z",
"ShippedDate": "1996-08-16T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 59,
"ProductName": "Raclette Courdavault",
"UnitPrice": 44.0000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 660.0000,
"Freight": 92.6900
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Laura Callahan",
"OrderID": 10278,
"OrderDate": "1996-08-12T00:00:00Z",
"RequiredDate": "1996-09-09T00:00:00Z",
"ShippedDate": "1996-08-16T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 63,
"ProductName": "Vegie-spread",
"UnitPrice": 35.1000,
"Quantity": 8,
"Discount": 0,
"ExtendedPrice": 280.8000,
"Freight": 92.6900
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Laura Callahan",
"OrderID": 10278,
"OrderDate": "1996-08-12T00:00:00Z",
"RequiredDate": "1996-09-09T00:00:00Z",
"ShippedDate": "1996-08-16T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 73,
"ProductName": "R\u00f6d Kaviar",
"UnitPrice": 12.0000,
"Quantity": 25,
"Discount": 0,
"ExtendedPrice": 300.0000,
"Freight": 92.6900
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Andrew Fuller",
"OrderID": 10280,
"OrderDate": "1996-08-14T00:00:00Z",
"RequiredDate": "1996-09-11T00:00:00Z",
"ShippedDate": "1996-09-12T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 24,
"ProductName": "Guaran\u00e1 Fant\u00e1stica",
"UnitPrice": 3.6000,
"Quantity": 12,
"Discount": 0,
"ExtendedPrice": 43.2000,
"Freight": 8.9800
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Andrew Fuller",
"OrderID": 10280,
"OrderDate": "1996-08-14T00:00:00Z",
"RequiredDate": "1996-09-11T00:00:00Z",
"ShippedDate": "1996-09-12T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 55,
"ProductName": "P\u00e2t\u00e9 chinois",
"UnitPrice": 19.2000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 384.0000,
"Freight": 8.9800
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Andrew Fuller",
"OrderID": 10280,
"OrderDate": "1996-08-14T00:00:00Z",
"RequiredDate": "1996-09-11T00:00:00Z",
"ShippedDate": "1996-09-12T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 75,
"ProductName": "Rh\u00f6nbr\u00e4u Klosterbier",
"UnitPrice": 6.2000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 186.0000,
"Freight": 8.9800
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10384,
"OrderDate": "1996-12-16T00:00:00Z",
"RequiredDate": "1997-01-13T00:00:00Z",
"ShippedDate": "1996-12-20T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 20,
"ProductName": "Sir Rodney's Marmalade",
"UnitPrice": 64.8000,
"Quantity": 28,
"Discount": 0,
"ExtendedPrice": 1814.4000,
"Freight": 168.6400
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10384,
"OrderDate": "1996-12-16T00:00:00Z",
"RequiredDate": "1997-01-13T00:00:00Z",
"ShippedDate": "1996-12-20T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 60,
"ProductName": "Camembert Pierrot",
"UnitPrice": 27.2000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 408.0000,
"Freight": 168.6400
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10444,
"OrderDate": "1997-02-12T00:00:00Z",
"RequiredDate": "1997-03-12T00:00:00Z",
"ShippedDate": "1997-02-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 17,
"ProductName": "Alice Mutton",
"UnitPrice": 31.2000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 312.0000,
"Freight": 3.5000
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10444,
"OrderDate": "1997-02-12T00:00:00Z",
"RequiredDate": "1997-03-12T00:00:00Z",
"ShippedDate": "1997-02-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 26,
"ProductName": "Gumb\u00e4r Gummib\u00e4rchen",
"UnitPrice": 24.9000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 373.5000,
"Freight": 3.5000
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10444,
"OrderDate": "1997-02-12T00:00:00Z",
"RequiredDate": "1997-03-12T00:00:00Z",
"ShippedDate": "1997-02-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 35,
"ProductName": "Steeleye Stout",
"UnitPrice": 14.4000,
"Quantity": 8,
"Discount": 0,
"ExtendedPrice": 115.2000,
"Freight": 3.5000
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10444,
"OrderDate": "1997-02-12T00:00:00Z",
"RequiredDate": "1997-03-12T00:00:00Z",
"ShippedDate": "1997-02-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 41,
"ProductName": "Jack's New England Clam Chowder",
"UnitPrice": 7.7000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 231.0000,
"Freight": 3.5000
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10445,
"OrderDate": "1997-02-13T00:00:00Z",
"RequiredDate": "1997-03-13T00:00:00Z",
"ShippedDate": "1997-02-20T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 39,
"ProductName": "Chartreuse verte",
"UnitPrice": 14.4000,
"Quantity": 6,
"Discount": 0,
"ExtendedPrice": 86.4000,
"Freight": 9.3000
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10445,
"OrderDate": "1997-02-13T00:00:00Z",
"RequiredDate": "1997-03-13T00:00:00Z",
"ShippedDate": "1997-02-20T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 54,
"ProductName": "Tourti\u00e8re",
"UnitPrice": 5.9000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 88.5000,
"Freight": 9.3000
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Nancy Davolio",
"OrderID": 10524,
"OrderDate": "1997-05-01T00:00:00Z",
"RequiredDate": "1997-05-29T00:00:00Z",
"ShippedDate": "1997-05-07T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 10,
"ProductName": "Ikura",
"UnitPrice": 31.0000,
"Quantity": 2,
"Discount": 0,
"ExtendedPrice": 62.0000,
"Freight": 244.7900
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Nancy Davolio",
"OrderID": 10524,
"OrderDate": "1997-05-01T00:00:00Z",
"RequiredDate": "1997-05-29T00:00:00Z",
"ShippedDate": "1997-05-07T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 30,
"ProductName": "Nord-Ost Matjeshering",
"UnitPrice": 25.8900,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 258.9000,
"Freight": 244.7900
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Nancy Davolio",
"OrderID": 10524,
"OrderDate": "1997-05-01T00:00:00Z",
"RequiredDate": "1997-05-29T00:00:00Z",
"ShippedDate": "1997-05-07T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 43,
"ProductName": "Ipoh Coffee",
"UnitPrice": 46.0000,
"Quantity": 60,
"Discount": 0,
"ExtendedPrice": 2760.0000,
"Freight": 244.7900
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Nancy Davolio",
"OrderID": 10524,
"OrderDate": "1997-05-01T00:00:00Z",
"RequiredDate": "1997-05-29T00:00:00Z",
"ShippedDate": "1997-05-07T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 54,
"ProductName": "Tourti\u00e8re",
"UnitPrice": 7.4500,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 111.7500,
"Freight": 244.7900
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10572,
"OrderDate": "1997-06-18T00:00:00Z",
"RequiredDate": "1997-07-16T00:00:00Z",
"ShippedDate": "1997-06-25T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 40,
"ProductName": "Boston Crab Meat",
"UnitPrice": 18.4000,
"Quantity": 50,
"Discount": 0,
"ExtendedPrice": 920.0000,
"Freight": 116.4300
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Nancy Davolio",
"OrderID": 10626,
"OrderDate": "1997-08-11T00:00:00Z",
"RequiredDate": "1997-09-08T00:00:00Z",
"ShippedDate": "1997-08-20T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 53,
"ProductName": "Perth Pasties",
"UnitPrice": 32.8000,
"Quantity": 12,
"Discount": 0,
"ExtendedPrice": 393.6000,
"Freight": 138.6900
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Nancy Davolio",
"OrderID": 10626,
"OrderDate": "1997-08-11T00:00:00Z",
"RequiredDate": "1997-09-08T00:00:00Z",
"ShippedDate": "1997-08-20T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 60,
"ProductName": "Camembert Pierrot",
"UnitPrice": 34.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 680.0000,
"Freight": 138.6900
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Nancy Davolio",
"OrderID": 10626,
"OrderDate": "1997-08-11T00:00:00Z",
"RequiredDate": "1997-09-08T00:00:00Z",
"ShippedDate": "1997-08-20T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 71,
"ProductName": "Flotemysost",
"UnitPrice": 21.5000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 430.0000,
"Freight": 138.6900
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Anne Dodsworth",
"OrderID": 10672,
"OrderDate": "1997-09-17T00:00:00Z",
"RequiredDate": "1997-10-01T00:00:00Z",
"ShippedDate": "1997-09-26T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 71,
"ProductName": "Flotemysost",
"UnitPrice": 21.5000,
"Quantity": 12,
"Discount": 0,
"ExtendedPrice": 258.0000,
"Freight": 95.7500
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Nancy Davolio",
"OrderID": 10733,
"OrderDate": "1997-11-07T00:00:00Z",
"RequiredDate": "1997-12-05T00:00:00Z",
"ShippedDate": "1997-11-10T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 14,
"ProductName": "Tofu",
"UnitPrice": 23.2500,
"Quantity": 16,
"Discount": 0,
"ExtendedPrice": 372.0000,
"Freight": 110.1100
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Nancy Davolio",
"OrderID": 10733,
"OrderDate": "1997-11-07T00:00:00Z",
"RequiredDate": "1997-12-05T00:00:00Z",
"ShippedDate": "1997-11-10T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 28,
"ProductName": "R\u00f6ssle Sauerkraut",
"UnitPrice": 45.6000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 912.0000,
"Freight": 110.1100
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Nancy Davolio",
"OrderID": 10733,
"OrderDate": "1997-11-07T00:00:00Z",
"RequiredDate": "1997-12-05T00:00:00Z",
"ShippedDate": "1997-11-10T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 52,
"ProductName": "Filo Mix",
"UnitPrice": 7.0000,
"Quantity": 25,
"Discount": 0,
"ExtendedPrice": 175.0000,
"Freight": 110.1100
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10778,
"OrderDate": "1997-12-16T00:00:00Z",
"RequiredDate": "1998-01-13T00:00:00Z",
"ShippedDate": "1997-12-24T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 41,
"ProductName": "Jack's New England Clam Chowder",
"UnitPrice": 9.6500,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 96.5000,
"Freight": 6.7900
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Anne Dodsworth",
"OrderID": 10837,
"OrderDate": "1998-01-16T00:00:00Z",
"RequiredDate": "1998-02-13T00:00:00Z",
"ShippedDate": "1998-01-23T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 13,
"ProductName": "Konbu",
"UnitPrice": 6.0000,
"Quantity": 6,
"Discount": 0,
"ExtendedPrice": 36.0000,
"Freight": 13.3200
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Anne Dodsworth",
"OrderID": 10837,
"OrderDate": "1998-01-16T00:00:00Z",
"RequiredDate": "1998-02-13T00:00:00Z",
"ShippedDate": "1998-01-23T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 40,
"ProductName": "Boston Crab Meat",
"UnitPrice": 18.4000,
"Quantity": 25,
"Discount": 0,
"ExtendedPrice": 460.0000,
"Freight": 13.3200
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Laura Callahan",
"OrderID": 10857,
"OrderDate": "1998-01-28T00:00:00Z",
"RequiredDate": "1998-02-25T00:00:00Z",
"ShippedDate": "1998-02-06T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 3,
"ProductName": "Aniseed Syrup",
"UnitPrice": 10.0000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 300.0000,
"Freight": 188.8500
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Margaret Peacock",
"OrderID": 10875,
"OrderDate": "1998-02-06T00:00:00Z",
"RequiredDate": "1998-03-06T00:00:00Z",
"ShippedDate": "1998-03-03T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 19,
"ProductName": "Teatime Chocolate Biscuits",
"UnitPrice": 9.2000,
"Quantity": 25,
"Discount": 0,
"ExtendedPrice": 230.0000,
"Freight": 32.3700
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Margaret Peacock",
"OrderID": 10875,
"OrderDate": "1998-02-06T00:00:00Z",
"RequiredDate": "1998-03-06T00:00:00Z",
"ShippedDate": "1998-03-03T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 49,
"ProductName": "Maxilaku",
"UnitPrice": 20.0000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 300.0000,
"Freight": 32.3700
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10924,
"OrderDate": "1998-03-04T00:00:00Z",
"RequiredDate": "1998-04-01T00:00:00Z",
"ShippedDate": "1998-04-08T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 75,
"ProductName": "Rh\u00f6nbr\u00e4u Klosterbier",
"UnitPrice": 7.7500,
"Quantity": 6,
"Discount": 0,
"ExtendedPrice": 46.5000,
"Freight": 151.5200
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10572,
"OrderDate": "1997-06-18T00:00:00Z",
"RequiredDate": "1997-07-16T00:00:00Z",
"ShippedDate": "1997-06-25T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 16,
"ProductName": "Pavlova",
"UnitPrice": 17.4500,
"Quantity": 12,
"Discount": 0.1,
"ExtendedPrice": 188.4600,
"Freight": 116.4300
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10572,
"OrderDate": "1997-06-18T00:00:00Z",
"RequiredDate": "1997-07-16T00:00:00Z",
"ShippedDate": "1997-06-25T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 32,
"ProductName": "Mascarpone Fabioli",
"UnitPrice": 32.0000,
"Quantity": 10,
"Discount": 0.1,
"ExtendedPrice": 288.0000,
"Freight": 116.4300
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10572,
"OrderDate": "1997-06-18T00:00:00Z",
"RequiredDate": "1997-07-16T00:00:00Z",
"ShippedDate": "1997-06-25T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 75,
"ProductName": "Rh\u00f6nbr\u00e4u Klosterbier",
"UnitPrice": 7.7500,
"Quantity": 15,
"Discount": 0.1,
"ExtendedPrice": 104.6200,
"Freight": 116.4300
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Steven Buchanan",
"OrderID": 10654,
"OrderDate": "1997-09-02T00:00:00Z",
"RequiredDate": "1997-09-30T00:00:00Z",
"ShippedDate": "1997-09-11T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 4,
"ProductName": "Chef Anton's Cajun Seasoning",
"UnitPrice": 22.0000,
"Quantity": 12,
"Discount": 0.1,
"ExtendedPrice": 237.6000,
"Freight": 55.2600
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Steven Buchanan",
"OrderID": 10654,
"OrderDate": "1997-09-02T00:00:00Z",
"RequiredDate": "1997-09-30T00:00:00Z",
"ShippedDate": "1997-09-11T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 39,
"ProductName": "Chartreuse verte",
"UnitPrice": 18.0000,
"Quantity": 20,
"Discount": 0.1,
"ExtendedPrice": 324.0000,
"Freight": 55.2600
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Steven Buchanan",
"OrderID": 10654,
"OrderDate": "1997-09-02T00:00:00Z",
"RequiredDate": "1997-09-30T00:00:00Z",
"ShippedDate": "1997-09-11T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 54,
"ProductName": "Tourti\u00e8re",
"UnitPrice": 7.4500,
"Quantity": 6,
"Discount": 0.1,
"ExtendedPrice": 40.2300,
"Freight": 55.2600
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Anne Dodsworth",
"OrderID": 10672,
"OrderDate": "1997-09-17T00:00:00Z",
"RequiredDate": "1997-10-01T00:00:00Z",
"ShippedDate": "1997-09-26T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 38,
"ProductName": "C\u00f4te de Blaye",
"UnitPrice": 263.5000,
"Quantity": 15,
"Discount": 0.1,
"ExtendedPrice": 3557.2500,
"Freight": 95.7500
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Margaret Peacock",
"OrderID": 10875,
"OrderDate": "1998-02-06T00:00:00Z",
"RequiredDate": "1998-03-06T00:00:00Z",
"ShippedDate": "1998-03-03T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 47,
"ProductName": "Zaanse koeken",
"UnitPrice": 9.5000,
"Quantity": 21,
"Discount": 0.1,
"ExtendedPrice": 179.5500,
"Freight": 32.3700
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10924,
"OrderDate": "1998-03-04T00:00:00Z",
"RequiredDate": "1998-04-01T00:00:00Z",
"ShippedDate": "1998-04-08T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 10,
"ProductName": "Ikura",
"UnitPrice": 31.0000,
"Quantity": 20,
"Discount": 0.1,
"ExtendedPrice": 558.0000,
"Freight": 151.5200
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Janet Leverling",
"OrderID": 10924,
"OrderDate": "1998-03-04T00:00:00Z",
"RequiredDate": "1998-04-01T00:00:00Z",
"ShippedDate": "1998-04-08T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 28,
"ProductName": "R\u00f6ssle Sauerkraut",
"UnitPrice": 45.6000,
"Quantity": 30,
"Discount": 0.1,
"ExtendedPrice": 1231.2000,
"Freight": 151.5200
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Nancy Davolio",
"OrderID": 10689,
"OrderDate": "1997-10-01T00:00:00Z",
"RequiredDate": "1997-10-29T00:00:00Z",
"ShippedDate": "1997-10-07T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 1,
"ProductName": "Chai",
"UnitPrice": 18.0000,
"Quantity": 35,
"Discount": 0.25,
"ExtendedPrice": 472.5000,
"Freight": 13.4200
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Anne Dodsworth",
"OrderID": 10837,
"OrderDate": "1998-01-16T00:00:00Z",
"RequiredDate": "1998-02-13T00:00:00Z",
"ShippedDate": "1998-01-23T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 47,
"ProductName": "Zaanse koeken",
"UnitPrice": 9.5000,
"Quantity": 40,
"Discount": 0.25,
"ExtendedPrice": 285.0000,
"Freight": 13.3200
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Anne Dodsworth",
"OrderID": 10837,
"OrderDate": "1998-01-16T00:00:00Z",
"RequiredDate": "1998-02-13T00:00:00Z",
"ShippedDate": "1998-01-23T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 76,
"ProductName": "Lakkalik\u00f6\u00f6ri",
"UnitPrice": 18.0000,
"Quantity": 21,
"Discount": 0.25,
"ExtendedPrice": 283.5000,
"Freight": 13.3200
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Laura Callahan",
"OrderID": 10857,
"OrderDate": "1998-01-28T00:00:00Z",
"RequiredDate": "1998-02-25T00:00:00Z",
"ShippedDate": "1998-02-06T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 26,
"ProductName": "Gumb\u00e4r Gummib\u00e4rchen",
"UnitPrice": 31.2300,
"Quantity": 35,
"Discount": 0.25,
"ExtendedPrice": 819.7900,
"Freight": 188.8500
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Laura Callahan",
"OrderID": 10857,
"OrderDate": "1998-01-28T00:00:00Z",
"RequiredDate": "1998-02-25T00:00:00Z",
"ShippedDate": "1998-02-06T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 29,
"ProductName": "Th\u00fcringer Rostbratwurst",
"UnitPrice": 123.7900,
"Quantity": 10,
"Discount": 0.25,
"ExtendedPrice": 928.4300,
"Freight": 188.8500
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Steven Buchanan",
"OrderID": 10866,
"OrderDate": "1998-02-03T00:00:00Z",
"RequiredDate": "1998-03-03T00:00:00Z",
"ShippedDate": "1998-02-12T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 2,
"ProductName": "Chang",
"UnitPrice": 19.0000,
"Quantity": 21,
"Discount": 0.25,
"ExtendedPrice": 299.2500,
"Freight": 109.1100
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Steven Buchanan",
"OrderID": 10866,
"OrderDate": "1998-02-03T00:00:00Z",
"RequiredDate": "1998-03-03T00:00:00Z",
"ShippedDate": "1998-02-12T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 24,
"ProductName": "Guaran\u00e1 Fant\u00e1stica",
"UnitPrice": 4.5000,
"Quantity": 6,
"Discount": 0.25,
"ExtendedPrice": 20.2500,
"Freight": 109.1100
}, {
"ShipName": "Berglunds snabbk\u00f6p",
"ShipAddress": "Berguvsv\u00e4gen 8",
"ShipCity": "Lule\u00e5",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden",
"CustomerID": "BERGS",
"CustomerName": "Berglunds snabbk\u00f6p",
"Address": "Berguvsv\u00e4gen 8",
"City": "Lule\u00e5",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Salesperson": "Steven Buchanan",
"OrderID": 10866,
"OrderDate": "1998-02-03T00:00:00Z",
"RequiredDate": "1998-03-03T00:00:00Z",
"ShippedDate": "1998-02-12T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 30,
"ProductName": "Nord-Ost Matjeshering",
"UnitPrice": 25.8900,
"Quantity": 40,
"Discount": 0.25,
"ExtendedPrice": 776.7000,
"Freight": 109.1100
}, {
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany",
"CustomerID": "BLAUS",
"CustomerName": "Blauer See Delikatessen",
"Address": "Forsterstr. 57",
"City": "Mannheim",
"Region": null,
"PostalCode": "68306",
"Country": "Germany",
"Salesperson": "Anne Dodsworth",
"OrderID": 10501,
"OrderDate": "1997-04-09T00:00:00Z",
"RequiredDate": "1997-05-07T00:00:00Z",
"ShippedDate": "1997-04-16T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 54,
"ProductName": "Tourti\u00e8re",
"UnitPrice": 7.4500,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 149.0000,
"Freight": 8.8500
}, {
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany",
"CustomerID": "BLAUS",
"CustomerName": "Blauer See Delikatessen",
"Address": "Forsterstr. 57",
"City": "Mannheim",
"Region": null,
"PostalCode": "68306",
"Country": "Germany",
"Salesperson": "Margaret Peacock",
"OrderID": 10509,
"OrderDate": "1997-04-17T00:00:00Z",
"RequiredDate": "1997-05-15T00:00:00Z",
"ShippedDate": "1997-04-29T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 28,
"ProductName": "R\u00f6ssle Sauerkraut",
"UnitPrice": 45.6000,
"Quantity": 3,
"Discount": 0,
"ExtendedPrice": 136.8000,
"Freight": 0.1500
}, {
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany",
"CustomerID": "BLAUS",
"CustomerName": "Blauer See Delikatessen",
"Address": "Forsterstr. 57",
"City": "Mannheim",
"Region": null,
"PostalCode": "68306",
"Country": "Germany",
"Salesperson": "Janet Leverling",
"OrderID": 10582,
"OrderDate": "1997-06-27T00:00:00Z",
"RequiredDate": "1997-07-25T00:00:00Z",
"ShippedDate": "1997-07-14T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 57,
"ProductName": "Ravioli Angelo",
"UnitPrice": 19.5000,
"Quantity": 4,
"Discount": 0,
"ExtendedPrice": 78.0000,
"Freight": 27.7100
}, {
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany",
"CustomerID": "BLAUS",
"CustomerName": "Blauer See Delikatessen",
"Address": "Forsterstr. 57",
"City": "Mannheim",
"Region": null,
"PostalCode": "68306",
"Country": "Germany",
"Salesperson": "Janet Leverling",
"OrderID": 10582,
"OrderDate": "1997-06-27T00:00:00Z",
"RequiredDate": "1997-07-25T00:00:00Z",
"ShippedDate": "1997-07-14T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 76,
"ProductName": "Lakkalik\u00f6\u00f6ri",
"UnitPrice": 18.0000,
"Quantity": 14,
"Discount": 0,
"ExtendedPrice": 252.0000,
"Freight": 27.7100
}, {
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany",
"CustomerID": "BLAUS",
"CustomerName": "Blauer See Delikatessen",
"Address": "Forsterstr. 57",
"City": "Mannheim",
"Region": null,
"PostalCode": "68306",
"Country": "Germany",
"Salesperson": "Laura Callahan",
"OrderID": 10614,
"OrderDate": "1997-07-29T00:00:00Z",
"RequiredDate": "1997-08-26T00:00:00Z",
"ShippedDate": "1997-08-01T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 11,
"ProductName": "Queso Cabrales",
"UnitPrice": 21.0000,
"Quantity": 14,
"Discount": 0,
"ExtendedPrice": 294.0000,
"Freight": 1.9300
}, {
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany",
"CustomerID": "BLAUS",
"CustomerName": "Blauer See Delikatessen",
"Address": "Forsterstr. 57",
"City": "Mannheim",
"Region": null,
"PostalCode": "68306",
"Country": "Germany",
"Salesperson": "Laura Callahan",
"OrderID": 10614,
"OrderDate": "1997-07-29T00:00:00Z",
"RequiredDate": "1997-08-26T00:00:00Z",
"ShippedDate": "1997-08-01T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 21,
"ProductName": "Sir Rodney's Scones",
"UnitPrice": 10.0000,
"Quantity": 8,
"Discount": 0,
"ExtendedPrice": 80.0000,
"Freight": 1.9300
}, {
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany",
"CustomerID": "BLAUS",
"CustomerName": "Blauer See Delikatessen",
"Address": "Forsterstr. 57",
"City": "Mannheim",
"Region": null,
"PostalCode": "68306",
"Country": "Germany",
"Salesperson": "Laura Callahan",
"OrderID": 10614,
"OrderDate": "1997-07-29T00:00:00Z",
"RequiredDate": "1997-08-26T00:00:00Z",
"ShippedDate": "1997-08-01T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 39,
"ProductName": "Chartreuse verte",
"UnitPrice": 18.0000,
"Quantity": 5,
"Discount": 0,
"ExtendedPrice": 90.0000,
"Freight": 1.9300
}, {
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany",
"CustomerID": "BLAUS",
"CustomerName": "Blauer See Delikatessen",
"Address": "Forsterstr. 57",
"City": "Mannheim",
"Region": null,
"PostalCode": "68306",
"Country": "Germany",
"Salesperson": "Anne Dodsworth",
"OrderID": 10853,
"OrderDate": "1998-01-27T00:00:00Z",
"RequiredDate": "1998-02-24T00:00:00Z",
"ShippedDate": "1998-02-03T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 18,
"ProductName": "Carnarvon Tigers",
"UnitPrice": 62.5000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 625.0000,
"Freight": 53.8300
}, {
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany",
"CustomerID": "BLAUS",
"CustomerName": "Blauer See Delikatessen",
"Address": "Forsterstr. 57",
"City": "Mannheim",
"Region": null,
"PostalCode": "68306",
"Country": "Germany",
"Salesperson": "Michael Suyama",
"OrderID": 10956,
"OrderDate": "1998-03-17T00:00:00Z",
"RequiredDate": "1998-04-28T00:00:00Z",
"ShippedDate": "1998-03-20T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 21,
"ProductName": "Sir Rodney's Scones",
"UnitPrice": 10.0000,
"Quantity": 12,
"Discount": 0,
"ExtendedPrice": 120.0000,
"Freight": 44.6500
}, {
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany",
"CustomerID": "BLAUS",
"CustomerName": "Blauer See Delikatessen",
"Address": "Forsterstr. 57",
"City": "Mannheim",
"Region": null,
"PostalCode": "68306",
"Country": "Germany",
"Salesperson": "Michael Suyama",
"OrderID": 10956,
"OrderDate": "1998-03-17T00:00:00Z",
"RequiredDate": "1998-04-28T00:00:00Z",
"ShippedDate": "1998-03-20T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 47,
"ProductName": "Zaanse koeken",
"UnitPrice": 9.5000,
"Quantity": 14,
"Discount": 0,
"ExtendedPrice": 133.0000,
"Freight": 44.6500
}, {
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany",
"CustomerID": "BLAUS",
"CustomerName": "Blauer See Delikatessen",
"Address": "Forsterstr. 57",
"City": "Mannheim",
"Region": null,
"PostalCode": "68306",
"Country": "Germany",
"Salesperson": "Michael Suyama",
"OrderID": 10956,
"OrderDate": "1998-03-17T00:00:00Z",
"RequiredDate": "1998-04-28T00:00:00Z",
"ShippedDate": "1998-03-20T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 51,
"ProductName": "Manjimup Dried Apples",
"UnitPrice": 53.0000,
"Quantity": 8,
"Discount": 0,
"ExtendedPrice": 424.0000,
"Freight": 44.6500
}, {
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany",
"CustomerID": "BLAUS",
"CustomerName": "Blauer See Delikatessen",
"Address": "Forsterstr. 57",
"City": "Mannheim",
"Region": null,
"PostalCode": "68306",
"Country": "Germany",
"Salesperson": "Anne Dodsworth",
"OrderID": 11058,
"OrderDate": "1998-04-29T00:00:00Z",
"RequiredDate": "1998-05-27T00:00:00Z",
"ShippedDate": null,
"ShipperName": "Federal Shipping",
"ProductID": 21,
"ProductName": "Sir Rodney's Scones",
"UnitPrice": 10.0000,
"Quantity": 3,
"Discount": 0,
"ExtendedPrice": 30.0000,
"Freight": 31.1400
}, {
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany",
"CustomerID": "BLAUS",
"CustomerName": "Blauer See Delikatessen",
"Address": "Forsterstr. 57",
"City": "Mannheim",
"Region": null,
"PostalCode": "68306",
"Country": "Germany",
"Salesperson": "Anne Dodsworth",
"OrderID": 11058,
"OrderDate": "1998-04-29T00:00:00Z",
"RequiredDate": "1998-05-27T00:00:00Z",
"ShippedDate": null,
"ShipperName": "Federal Shipping",
"ProductID": 60,
"ProductName": "Camembert Pierrot",
"UnitPrice": 34.0000,
"Quantity": 21,
"Discount": 0,
"ExtendedPrice": 714.0000,
"Freight": 31.1400
}, {
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany",
"CustomerID": "BLAUS",
"CustomerName": "Blauer See Delikatessen",
"Address": "Forsterstr. 57",
"City": "Mannheim",
"Region": null,
"PostalCode": "68306",
"Country": "Germany",
"Salesperson": "Anne Dodsworth",
"OrderID": 11058,
"OrderDate": "1998-04-29T00:00:00Z",
"RequiredDate": "1998-05-27T00:00:00Z",
"ShippedDate": null,
"ShipperName": "Federal Shipping",
"ProductID": 61,
"ProductName": "Sirop d'\u00e9rable",
"UnitPrice": 28.5000,
"Quantity": 4,
"Discount": 0,
"ExtendedPrice": 114.0000,
"Freight": 31.1400
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Andrew Fuller",
"OrderID": 10265,
"OrderDate": "1996-07-25T00:00:00Z",
"RequiredDate": "1996-08-22T00:00:00Z",
"ShippedDate": "1996-08-12T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 17,
"ProductName": "Alice Mutton",
"UnitPrice": 31.2000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 936.0000,
"Freight": 55.2800
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Andrew Fuller",
"OrderID": 10265,
"OrderDate": "1996-07-25T00:00:00Z",
"RequiredDate": "1996-08-22T00:00:00Z",
"ShippedDate": "1996-08-12T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 70,
"ProductName": "Outback Lager",
"UnitPrice": 12.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 240.0000,
"Freight": 55.2800
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Steven Buchanan",
"OrderID": 10297,
"OrderDate": "1996-09-04T00:00:00Z",
"RequiredDate": "1996-10-16T00:00:00Z",
"ShippedDate": "1996-09-10T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 39,
"ProductName": "Chartreuse verte",
"UnitPrice": 14.4000,
"Quantity": 60,
"Discount": 0,
"ExtendedPrice": 864.0000,
"Freight": 5.7400
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Steven Buchanan",
"OrderID": 10297,
"OrderDate": "1996-09-04T00:00:00Z",
"RequiredDate": "1996-10-16T00:00:00Z",
"ShippedDate": "1996-09-10T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 72,
"ProductName": "Mozzarella di Giovanni",
"UnitPrice": 27.8000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 556.0000,
"Freight": 5.7400
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10360,
"OrderDate": "1996-11-22T00:00:00Z",
"RequiredDate": "1996-12-20T00:00:00Z",
"ShippedDate": "1996-12-02T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 28,
"ProductName": "R\u00f6ssle Sauerkraut",
"UnitPrice": 36.4000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 1092.0000,
"Freight": 131.7000
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10360,
"OrderDate": "1996-11-22T00:00:00Z",
"RequiredDate": "1996-12-20T00:00:00Z",
"ShippedDate": "1996-12-02T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 29,
"ProductName": "Th\u00fcringer Rostbratwurst",
"UnitPrice": 99.0000,
"Quantity": 35,
"Discount": 0,
"ExtendedPrice": 3465.0000,
"Freight": 131.7000
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10360,
"OrderDate": "1996-11-22T00:00:00Z",
"RequiredDate": "1996-12-20T00:00:00Z",
"ShippedDate": "1996-12-02T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 38,
"ProductName": "C\u00f4te de Blaye",
"UnitPrice": 210.8000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 2108.0000,
"Freight": 131.7000
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10360,
"OrderDate": "1996-11-22T00:00:00Z",
"RequiredDate": "1996-12-20T00:00:00Z",
"ShippedDate": "1996-12-02T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 49,
"ProductName": "Maxilaku",
"UnitPrice": 16.0000,
"Quantity": 35,
"Discount": 0,
"ExtendedPrice": 560.0000,
"Freight": 131.7000
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10360,
"OrderDate": "1996-11-22T00:00:00Z",
"RequiredDate": "1996-12-20T00:00:00Z",
"ShippedDate": "1996-12-02T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 54,
"ProductName": "Tourti\u00e8re",
"UnitPrice": 5.9000,
"Quantity": 28,
"Discount": 0,
"ExtendedPrice": 165.2000,
"Freight": 131.7000
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Janet Leverling",
"OrderID": 10436,
"OrderDate": "1997-02-05T00:00:00Z",
"RequiredDate": "1997-03-05T00:00:00Z",
"ShippedDate": "1997-02-11T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 46,
"ProductName": "Spegesild",
"UnitPrice": 9.6000,
"Quantity": 5,
"Discount": 0,
"ExtendedPrice": 48.0000,
"Freight": 156.6600
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Janet Leverling",
"OrderID": 10449,
"OrderDate": "1997-02-18T00:00:00Z",
"RequiredDate": "1997-03-18T00:00:00Z",
"ShippedDate": "1997-02-27T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 10,
"ProductName": "Ikura",
"UnitPrice": 24.8000,
"Quantity": 14,
"Discount": 0,
"ExtendedPrice": 347.2000,
"Freight": 53.3000
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Janet Leverling",
"OrderID": 10449,
"OrderDate": "1997-02-18T00:00:00Z",
"RequiredDate": "1997-03-18T00:00:00Z",
"ShippedDate": "1997-02-27T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 52,
"ProductName": "Filo Mix",
"UnitPrice": 5.6000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 112.0000,
"Freight": 53.3000
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Janet Leverling",
"OrderID": 10449,
"OrderDate": "1997-02-18T00:00:00Z",
"RequiredDate": "1997-03-18T00:00:00Z",
"ShippedDate": "1997-02-27T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 62,
"ProductName": "Tarte au sucre",
"UnitPrice": 39.4000,
"Quantity": 35,
"Discount": 0,
"ExtendedPrice": 1379.0000,
"Freight": 53.3000
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Anne Dodsworth",
"OrderID": 10566,
"OrderDate": "1997-06-12T00:00:00Z",
"RequiredDate": "1997-07-10T00:00:00Z",
"ShippedDate": "1997-06-18T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 76,
"ProductName": "Lakkalik\u00f6\u00f6ri",
"UnitPrice": 18.0000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 180.0000,
"Freight": 88.4000
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10628,
"OrderDate": "1997-08-12T00:00:00Z",
"RequiredDate": "1997-09-09T00:00:00Z",
"ShippedDate": "1997-08-20T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 1,
"ProductName": "Chai",
"UnitPrice": 18.0000,
"Quantity": 25,
"Discount": 0,
"ExtendedPrice": 450.0000,
"Freight": 30.3600
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Laura Callahan",
"OrderID": 10679,
"OrderDate": "1997-09-23T00:00:00Z",
"RequiredDate": "1997-10-21T00:00:00Z",
"ShippedDate": "1997-09-30T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 59,
"ProductName": "Raclette Courdavault",
"UnitPrice": 55.0000,
"Quantity": 12,
"Discount": 0,
"ExtendedPrice": 660.0000,
"Freight": 27.9400
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Michael Suyama",
"OrderID": 10826,
"OrderDate": "1998-01-12T00:00:00Z",
"RequiredDate": "1998-02-09T00:00:00Z",
"ShippedDate": "1998-02-06T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 31,
"ProductName": "Gorgonzola Telino",
"UnitPrice": 12.5000,
"Quantity": 35,
"Discount": 0,
"ExtendedPrice": 437.5000,
"Freight": 7.0900
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Michael Suyama",
"OrderID": 10826,
"OrderDate": "1998-01-12T00:00:00Z",
"RequiredDate": "1998-02-09T00:00:00Z",
"ShippedDate": "1998-02-06T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 57,
"ProductName": "Ravioli Angelo",
"UnitPrice": 19.5000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 292.5000,
"Freight": 7.0900
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Michael Suyama",
"OrderID": 10559,
"OrderDate": "1997-06-05T00:00:00Z",
"RequiredDate": "1997-07-03T00:00:00Z",
"ShippedDate": "1997-06-13T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 41,
"ProductName": "Jack's New England Clam Chowder",
"UnitPrice": 9.6500,
"Quantity": 12,
"Discount": 0.05,
"ExtendedPrice": 110.0100,
"Freight": 8.0500
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Michael Suyama",
"OrderID": 10559,
"OrderDate": "1997-06-05T00:00:00Z",
"RequiredDate": "1997-07-03T00:00:00Z",
"ShippedDate": "1997-06-13T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 55,
"ProductName": "P\u00e2t\u00e9 chinois",
"UnitPrice": 24.0000,
"Quantity": 18,
"Discount": 0.05,
"ExtendedPrice": 410.4000,
"Freight": 8.0500
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10584,
"OrderDate": "1997-06-30T00:00:00Z",
"RequiredDate": "1997-07-28T00:00:00Z",
"ShippedDate": "1997-07-04T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 31,
"ProductName": "Gorgonzola Telino",
"UnitPrice": 12.5000,
"Quantity": 50,
"Discount": 0.05,
"ExtendedPrice": 593.7500,
"Freight": 59.1400
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Janet Leverling",
"OrderID": 10436,
"OrderDate": "1997-02-05T00:00:00Z",
"RequiredDate": "1997-03-05T00:00:00Z",
"ShippedDate": "1997-02-11T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 56,
"ProductName": "Gnocchi di nonna Alice",
"UnitPrice": 30.4000,
"Quantity": 40,
"Discount": 0.1,
"ExtendedPrice": 1094.4000,
"Freight": 156.6600
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Janet Leverling",
"OrderID": 10436,
"OrderDate": "1997-02-05T00:00:00Z",
"RequiredDate": "1997-03-05T00:00:00Z",
"ShippedDate": "1997-02-11T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 64,
"ProductName": "Wimmers gute Semmelkn\u00f6del",
"UnitPrice": 26.6000,
"Quantity": 30,
"Discount": 0.1,
"ExtendedPrice": 718.2000,
"Freight": 156.6600
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Janet Leverling",
"OrderID": 10436,
"OrderDate": "1997-02-05T00:00:00Z",
"RequiredDate": "1997-03-05T00:00:00Z",
"ShippedDate": "1997-02-11T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 75,
"ProductName": "Rh\u00f6nbr\u00e4u Klosterbier",
"UnitPrice": 6.2000,
"Quantity": 24,
"Discount": 0.1,
"ExtendedPrice": 133.9200,
"Freight": 156.6600
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Anne Dodsworth",
"OrderID": 10566,
"OrderDate": "1997-06-12T00:00:00Z",
"RequiredDate": "1997-07-10T00:00:00Z",
"ShippedDate": "1997-06-18T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 11,
"ProductName": "Queso Cabrales",
"UnitPrice": 21.0000,
"Quantity": 35,
"Discount": 0.15,
"ExtendedPrice": 624.7500,
"Freight": 88.4000
}, {
"ShipName": "Blondel p\u00e8re et fils",
"ShipAddress": "24, place Kl\u00e9ber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France",
"CustomerID": "BLONP",
"CustomerName": "Blondesddsl p\u00e8re et fils",
"Address": "24, place Kl\u00e9ber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Salesperson": "Anne Dodsworth",
"OrderID": 10566,
"OrderDate": "1997-06-12T00:00:00Z",
"RequiredDate": "1997-07-10T00:00:00Z",
"ShippedDate": "1997-06-18T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 18,
"ProductName": "Carnarvon Tigers",
"UnitPrice": 62.5000,
"Quantity": 18,
"Discount": 0.15,
"ExtendedPrice": 956.2500,
"Freight": 88.4000
}, {
"ShipName": "B\u00f3lido Comidas preparadas",
"ShipAddress": "C/ Araquil, 67",
"ShipCity": "Madrid",
"ShipRegion": null,
"ShipPostalCode": "28023",
"ShipCountry": "Spain",
"CustomerID": "BOLID",
"CustomerName": "B\u00f3lido Comidas preparadas",
"Address": "C/ Araquil, 67",
"City": "Madrid",
"Region": null,
"PostalCode": "28023",
"Country": "Spain",
"Salesperson": "Margaret Peacock",
"OrderID": 10326,
"OrderDate": "1996-10-10T00:00:00Z",
"RequiredDate": "1996-11-07T00:00:00Z",
"ShippedDate": "1996-10-14T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 4,
"ProductName": "Chef Anton's Cajun Seasoning",
"UnitPrice": 17.6000,
"Quantity": 24,
"Discount": 0,
"ExtendedPrice": 422.4000,
"Freight": 77.9200
}, {
"ShipName": "B\u00f3lido Comidas preparadas",
"ShipAddress": "C/ Araquil, 67",
"ShipCity": "Madrid",
"ShipRegion": null,
"ShipPostalCode": "28023",
"ShipCountry": "Spain",
"CustomerID": "BOLID",
"CustomerName": "B\u00f3lido Comidas preparadas",
"Address": "C/ Araquil, 67",
"City": "Madrid",
"Region": null,
"PostalCode": "28023",
"Country": "Spain",
"Salesperson": "Margaret Peacock",
"OrderID": 10326,
"OrderDate": "1996-10-10T00:00:00Z",
"RequiredDate": "1996-11-07T00:00:00Z",
"ShippedDate": "1996-10-14T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 57,
"ProductName": "Ravioli Angelo",
"UnitPrice": 15.6000,
"Quantity": 16,
"Discount": 0,
"ExtendedPrice": 249.6000,
"Freight": 77.9200
}, {
"ShipName": "B\u00f3lido Comidas preparadas",
"ShipAddress": "C/ Araquil, 67",
"ShipCity": "Madrid",
"ShipRegion": null,
"ShipPostalCode": "28023",
"ShipCountry": "Spain",
"CustomerID": "BOLID",
"CustomerName": "B\u00f3lido Comidas preparadas",
"Address": "C/ Araquil, 67",
"City": "Madrid",
"Region": null,
"PostalCode": "28023",
"Country": "Spain",
"Salesperson": "Margaret Peacock",
"OrderID": 10326,
"OrderDate": "1996-10-10T00:00:00Z",
"RequiredDate": "1996-11-07T00:00:00Z",
"ShippedDate": "1996-10-14T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 75,
"ProductName": "Rh\u00f6nbr\u00e4u Klosterbier",
"UnitPrice": 6.2000,
"Quantity": 50,
"Discount": 0,
"ExtendedPrice": 310.0000,
"Freight": 77.9200
}, {
"ShipName": "B\u00f3lido Comidas preparadas",
"ShipAddress": "C/ Araquil, 67",
"ShipCity": "Madrid",
"ShipRegion": null,
"ShipPostalCode": "28023",
"ShipCountry": "Spain",
"CustomerID": "BOLID",
"CustomerName": "B\u00f3lido Comidas preparadas",
"Address": "C/ Araquil, 67",
"City": "Madrid",
"Region": null,
"PostalCode": "28023",
"Country": "Spain",
"Salesperson": "Anne Dodsworth",
"OrderID": 10970,
"OrderDate": "1998-03-24T00:00:00Z",
"RequiredDate": "1998-04-07T00:00:00Z",
"ShippedDate": "1998-04-24T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 52,
"ProductName": "Filo Mix",
"UnitPrice": 7.0000,
"Quantity": 40,
"Discount": 0.2,
"ExtendedPrice": 224.0000,
"Freight": 16.1600
}, {
"ShipName": "B\u00f3lido Comidas preparadas",
"ShipAddress": "C/ Araquil, 67",
"ShipCity": "Madrid",
"ShipRegion": null,
"ShipPostalCode": "28023",
"ShipCountry": "Spain",
"CustomerID": "BOLID",
"CustomerName": "B\u00f3lido Comidas preparadas",
"Address": "C/ Araquil, 67",
"City": "Madrid",
"Region": null,
"PostalCode": "28023",
"Country": "Spain",
"Salesperson": "Margaret Peacock",
"OrderID": 10801,
"OrderDate": "1997-12-29T00:00:00Z",
"RequiredDate": "1998-01-26T00:00:00Z",
"ShippedDate": "1997-12-31T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 17,
"ProductName": "Alice Mutton",
"UnitPrice": 39.0000,
"Quantity": 40,
"Discount": 0.25,
"ExtendedPrice": 1170.0000,
"Freight": 97.0900
}, {
"ShipName": "B\u00f3lido Comidas preparadas",
"ShipAddress": "C/ Araquil, 67",
"ShipCity": "Madrid",
"ShipRegion": null,
"ShipPostalCode": "28023",
"ShipCountry": "Spain",
"CustomerID": "BOLID",
"CustomerName": "B\u00f3lido Comidas preparadas",
"Address": "C/ Araquil, 67",
"City": "Madrid",
"Region": null,
"PostalCode": "28023",
"Country": "Spain",
"Salesperson": "Margaret Peacock",
"OrderID": 10801,
"OrderDate": "1997-12-29T00:00:00Z",
"RequiredDate": "1998-01-26T00:00:00Z",
"ShippedDate": "1997-12-31T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 29,
"ProductName": "Th\u00fcringer Rostbratwurst",
"UnitPrice": 123.7900,
"Quantity": 20,
"Discount": 0.25,
"ExtendedPrice": 1856.8500,
"Freight": 97.0900
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Anne Dodsworth",
"OrderID": 10331,
"OrderDate": "1996-10-16T00:00:00Z",
"RequiredDate": "1996-11-27T00:00:00Z",
"ShippedDate": "1996-10-21T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 54,
"ProductName": "Tourti\u00e8re",
"UnitPrice": 5.9000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 88.5000,
"Freight": 10.1900
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Janet Leverling",
"OrderID": 10362,
"OrderDate": "1996-11-25T00:00:00Z",
"RequiredDate": "1996-12-23T00:00:00Z",
"ShippedDate": "1996-11-28T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 25,
"ProductName": "NuNuCa Nu\u00df-Nougat-Creme",
"UnitPrice": 11.2000,
"Quantity": 50,
"Discount": 0,
"ExtendedPrice": 560.0000,
"Freight": 96.0400
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Janet Leverling",
"OrderID": 10362,
"OrderDate": "1996-11-25T00:00:00Z",
"RequiredDate": "1996-12-23T00:00:00Z",
"ShippedDate": "1996-11-28T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 51,
"ProductName": "Manjimup Dried Apples",
"UnitPrice": 42.4000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 848.0000,
"Freight": 96.0400
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Janet Leverling",
"OrderID": 10362,
"OrderDate": "1996-11-25T00:00:00Z",
"RequiredDate": "1996-12-23T00:00:00Z",
"ShippedDate": "1996-11-28T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 54,
"ProductName": "Tourti\u00e8re",
"UnitPrice": 5.9000,
"Quantity": 24,
"Discount": 0,
"ExtendedPrice": 141.6000,
"Freight": 96.0400
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10470,
"OrderDate": "1997-03-11T00:00:00Z",
"RequiredDate": "1997-04-08T00:00:00Z",
"ShippedDate": "1997-03-14T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 18,
"ProductName": "Carnarvon Tigers",
"UnitPrice": 50.0000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 1500.0000,
"Freight": 64.5600
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10470,
"OrderDate": "1997-03-11T00:00:00Z",
"RequiredDate": "1997-04-08T00:00:00Z",
"ShippedDate": "1997-03-14T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 23,
"ProductName": "Tunnbr\u00f6d",
"UnitPrice": 7.2000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 108.0000,
"Freight": 64.5600
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10470,
"OrderDate": "1997-03-11T00:00:00Z",
"RequiredDate": "1997-04-08T00:00:00Z",
"ShippedDate": "1997-03-14T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 64,
"ProductName": "Wimmers gute Semmelkn\u00f6del",
"UnitPrice": 26.6000,
"Quantity": 8,
"Discount": 0,
"ExtendedPrice": 212.8000,
"Freight": 64.5600
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Nancy Davolio",
"OrderID": 10525,
"OrderDate": "1997-05-02T00:00:00Z",
"RequiredDate": "1997-05-30T00:00:00Z",
"ShippedDate": "1997-05-23T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 36,
"ProductName": "Inlagd Sill",
"UnitPrice": 19.0000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 570.0000,
"Freight": 11.0600
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Janet Leverling",
"OrderID": 10715,
"OrderDate": "1997-10-23T00:00:00Z",
"RequiredDate": "1997-11-06T00:00:00Z",
"ShippedDate": "1997-10-29T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 10,
"ProductName": "Ikura",
"UnitPrice": 31.0000,
"Quantity": 21,
"Discount": 0,
"ExtendedPrice": 651.0000,
"Freight": 63.2000
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Janet Leverling",
"OrderID": 10715,
"OrderDate": "1997-10-23T00:00:00Z",
"RequiredDate": "1997-11-06T00:00:00Z",
"ShippedDate": "1997-10-29T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 71,
"ProductName": "Flotemysost",
"UnitPrice": 21.5000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 645.0000,
"Freight": 63.2000
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Janet Leverling",
"OrderID": 10732,
"OrderDate": "1997-11-06T00:00:00Z",
"RequiredDate": "1997-12-04T00:00:00Z",
"ShippedDate": "1997-11-07T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 76,
"ProductName": "Lakkalik\u00f6\u00f6ri",
"UnitPrice": 18.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 360.0000,
"Freight": 16.9700
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Nancy Davolio",
"OrderID": 10827,
"OrderDate": "1998-01-12T00:00:00Z",
"RequiredDate": "1998-01-26T00:00:00Z",
"ShippedDate": "1998-02-06T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 10,
"ProductName": "Ikura",
"UnitPrice": 31.0000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 465.0000,
"Freight": 63.5400
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Nancy Davolio",
"OrderID": 10827,
"OrderDate": "1998-01-12T00:00:00Z",
"RequiredDate": "1998-01-26T00:00:00Z",
"ShippedDate": "1998-02-06T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 39,
"ProductName": "Chartreuse verte",
"UnitPrice": 18.0000,
"Quantity": 21,
"Discount": 0,
"ExtendedPrice": 378.0000,
"Freight": 63.5400
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Robert King",
"OrderID": 10876,
"OrderDate": "1998-02-09T00:00:00Z",
"RequiredDate": "1998-03-09T00:00:00Z",
"ShippedDate": "1998-02-12T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 46,
"ProductName": "Spegesild",
"UnitPrice": 12.0000,
"Quantity": 21,
"Discount": 0,
"ExtendedPrice": 252.0000,
"Freight": 60.4200
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Robert King",
"OrderID": 10876,
"OrderDate": "1998-02-09T00:00:00Z",
"RequiredDate": "1998-03-09T00:00:00Z",
"ShippedDate": "1998-02-12T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 64,
"ProductName": "Wimmers gute Semmelkn\u00f6del",
"UnitPrice": 33.2500,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 665.0000,
"Freight": 60.4200
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Laura Callahan",
"OrderID": 10932,
"OrderDate": "1998-03-06T00:00:00Z",
"RequiredDate": "1998-04-03T00:00:00Z",
"ShippedDate": "1998-03-24T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 72,
"ProductName": "Mozzarella di Giovanni",
"UnitPrice": 34.8000,
"Quantity": 16,
"Discount": 0,
"ExtendedPrice": 556.8000,
"Freight": 134.6400
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Laura Callahan",
"OrderID": 10940,
"OrderDate": "1998-03-11T00:00:00Z",
"RequiredDate": "1998-04-08T00:00:00Z",
"ShippedDate": "1998-03-23T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 7,
"ProductName": "Uncle Bob's Organic Dried Pears",
"UnitPrice": 30.0000,
"Quantity": 8,
"Discount": 0,
"ExtendedPrice": 240.0000,
"Freight": 19.7700
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Laura Callahan",
"OrderID": 10940,
"OrderDate": "1998-03-11T00:00:00Z",
"RequiredDate": "1998-04-08T00:00:00Z",
"ShippedDate": "1998-03-23T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 13,
"ProductName": "Konbu",
"UnitPrice": 6.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 120.0000,
"Freight": 19.7700
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Nancy Davolio",
"OrderID": 10340,
"OrderDate": "1996-10-29T00:00:00Z",
"RequiredDate": "1996-11-26T00:00:00Z",
"ShippedDate": "1996-11-08T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 18,
"ProductName": "Carnarvon Tigers",
"UnitPrice": 50.0000,
"Quantity": 20,
"Discount": 0.05,
"ExtendedPrice": 950.0000,
"Freight": 166.3100
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Nancy Davolio",
"OrderID": 10340,
"OrderDate": "1996-10-29T00:00:00Z",
"RequiredDate": "1996-11-26T00:00:00Z",
"ShippedDate": "1996-11-08T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 41,
"ProductName": "Jack's New England Clam Chowder",
"UnitPrice": 7.7000,
"Quantity": 12,
"Discount": 0.05,
"ExtendedPrice": 87.7800,
"Freight": 166.3100
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Nancy Davolio",
"OrderID": 10340,
"OrderDate": "1996-10-29T00:00:00Z",
"RequiredDate": "1996-11-26T00:00:00Z",
"ShippedDate": "1996-11-08T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 43,
"ProductName": "Ipoh Coffee",
"UnitPrice": 36.8000,
"Quantity": 40,
"Discount": 0.05,
"ExtendedPrice": 1398.4000,
"Freight": 166.3100
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Andrew Fuller",
"OrderID": 10663,
"OrderDate": "1997-09-10T00:00:00Z",
"RequiredDate": "1997-09-24T00:00:00Z",
"ShippedDate": "1997-10-03T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 40,
"ProductName": "Boston Crab Meat",
"UnitPrice": 18.4000,
"Quantity": 30,
"Discount": 0.05,
"ExtendedPrice": 524.4000,
"Freight": 113.1500
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Andrew Fuller",
"OrderID": 10663,
"OrderDate": "1997-09-10T00:00:00Z",
"RequiredDate": "1997-09-24T00:00:00Z",
"ShippedDate": "1997-10-03T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 42,
"ProductName": "Singaporean Hokkien Fried Mee",
"UnitPrice": 14.0000,
"Quantity": 30,
"Discount": 0.05,
"ExtendedPrice": 399.0000,
"Freight": 113.1500
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Andrew Fuller",
"OrderID": 10663,
"OrderDate": "1997-09-10T00:00:00Z",
"RequiredDate": "1997-09-24T00:00:00Z",
"ShippedDate": "1997-10-03T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 51,
"ProductName": "Manjimup Dried Apples",
"UnitPrice": 53.0000,
"Quantity": 20,
"Discount": 0.05,
"ExtendedPrice": 1007.0000,
"Freight": 113.1500
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Steven Buchanan",
"OrderID": 10730,
"OrderDate": "1997-11-05T00:00:00Z",
"RequiredDate": "1997-12-03T00:00:00Z",
"ShippedDate": "1997-11-14T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 16,
"ProductName": "Pavlova",
"UnitPrice": 17.4500,
"Quantity": 15,
"Discount": 0.05,
"ExtendedPrice": 248.6600,
"Freight": 20.1200
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Steven Buchanan",
"OrderID": 10730,
"OrderDate": "1997-11-05T00:00:00Z",
"RequiredDate": "1997-12-03T00:00:00Z",
"ShippedDate": "1997-11-14T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 31,
"ProductName": "Gorgonzola Telino",
"UnitPrice": 12.5000,
"Quantity": 3,
"Discount": 0.05,
"ExtendedPrice": 35.6200,
"Freight": 20.1200
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Steven Buchanan",
"OrderID": 10730,
"OrderDate": "1997-11-05T00:00:00Z",
"RequiredDate": "1997-12-03T00:00:00Z",
"ShippedDate": "1997-11-14T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 65,
"ProductName": "Louisiana Fiery Hot Pepper Sauce",
"UnitPrice": 21.0500,
"Quantity": 10,
"Discount": 0.05,
"ExtendedPrice": 199.9700,
"Freight": 20.1200
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Anne Dodsworth",
"OrderID": 10871,
"OrderDate": "1998-02-05T00:00:00Z",
"RequiredDate": "1998-03-05T00:00:00Z",
"ShippedDate": "1998-02-10T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 6,
"ProductName": "Grandma's Boysenberry Spread",
"UnitPrice": 25.0000,
"Quantity": 50,
"Discount": 0.05,
"ExtendedPrice": 1187.5000,
"Freight": 112.2700
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Anne Dodsworth",
"OrderID": 10871,
"OrderDate": "1998-02-05T00:00:00Z",
"RequiredDate": "1998-03-05T00:00:00Z",
"ShippedDate": "1998-02-10T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 16,
"ProductName": "Pavlova",
"UnitPrice": 17.4500,
"Quantity": 12,
"Discount": 0.05,
"ExtendedPrice": 198.9300,
"Freight": 112.2700
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Anne Dodsworth",
"OrderID": 10871,
"OrderDate": "1998-02-05T00:00:00Z",
"RequiredDate": "1998-03-05T00:00:00Z",
"ShippedDate": "1998-02-10T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 17,
"ProductName": "Alice Mutton",
"UnitPrice": 39.0000,
"Quantity": 16,
"Discount": 0.05,
"ExtendedPrice": 592.8000,
"Freight": 112.2700
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Nancy Davolio",
"OrderID": 10525,
"OrderDate": "1997-05-02T00:00:00Z",
"RequiredDate": "1997-05-30T00:00:00Z",
"ShippedDate": "1997-05-23T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 40,
"ProductName": "Boston Crab Meat",
"UnitPrice": 18.4000,
"Quantity": 15,
"Discount": 0.1,
"ExtendedPrice": 248.4000,
"Freight": 11.0600
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Laura Callahan",
"OrderID": 10932,
"OrderDate": "1998-03-06T00:00:00Z",
"RequiredDate": "1998-04-03T00:00:00Z",
"ShippedDate": "1998-03-24T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 16,
"ProductName": "Pavlova",
"UnitPrice": 17.4500,
"Quantity": 30,
"Discount": 0.1,
"ExtendedPrice": 471.1500,
"Freight": 134.6400
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Laura Callahan",
"OrderID": 10932,
"OrderDate": "1998-03-06T00:00:00Z",
"RequiredDate": "1998-04-03T00:00:00Z",
"ShippedDate": "1998-03-24T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 62,
"ProductName": "Tarte au sucre",
"UnitPrice": 49.3000,
"Quantity": 14,
"Discount": 0.1,
"ExtendedPrice": 621.1800,
"Freight": 134.6400
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Laura Callahan",
"OrderID": 10932,
"OrderDate": "1998-03-06T00:00:00Z",
"RequiredDate": "1998-04-03T00:00:00Z",
"ShippedDate": "1998-03-24T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 75,
"ProductName": "Rh\u00f6nbr\u00e4u Klosterbier",
"UnitPrice": 7.7500,
"Quantity": 20,
"Discount": 0.1,
"ExtendedPrice": 139.5000,
"Freight": 134.6400
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10511,
"OrderDate": "1997-04-18T00:00:00Z",
"RequiredDate": "1997-05-16T00:00:00Z",
"ShippedDate": "1997-04-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 4,
"ProductName": "Chef Anton's Cajun Seasoning",
"UnitPrice": 22.0000,
"Quantity": 50,
"Discount": 0.15,
"ExtendedPrice": 935.0000,
"Freight": 350.6400
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10511,
"OrderDate": "1997-04-18T00:00:00Z",
"RequiredDate": "1997-05-16T00:00:00Z",
"ShippedDate": "1997-04-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 7,
"ProductName": "Uncle Bob's Organic Dried Pears",
"UnitPrice": 30.0000,
"Quantity": 50,
"Discount": 0.15,
"ExtendedPrice": 1275.0000,
"Freight": 350.6400
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10511,
"OrderDate": "1997-04-18T00:00:00Z",
"RequiredDate": "1997-05-16T00:00:00Z",
"ShippedDate": "1997-04-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 8,
"ProductName": "Northwoods Cranberry Sauce",
"UnitPrice": 40.0000,
"Quantity": 10,
"Discount": 0.15,
"ExtendedPrice": 340.0000,
"Freight": 350.6400
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10755,
"OrderDate": "1997-11-26T00:00:00Z",
"RequiredDate": "1997-12-24T00:00:00Z",
"ShippedDate": "1997-11-28T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 47,
"ProductName": "Zaanse koeken",
"UnitPrice": 9.5000,
"Quantity": 30,
"Discount": 0.25,
"ExtendedPrice": 213.7500,
"Freight": 16.7100
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10755,
"OrderDate": "1997-11-26T00:00:00Z",
"RequiredDate": "1997-12-24T00:00:00Z",
"ShippedDate": "1997-11-28T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 56,
"ProductName": "Gnocchi di nonna Alice",
"UnitPrice": 38.0000,
"Quantity": 30,
"Discount": 0.25,
"ExtendedPrice": 855.0000,
"Freight": 16.7100
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10755,
"OrderDate": "1997-11-26T00:00:00Z",
"RequiredDate": "1997-12-24T00:00:00Z",
"ShippedDate": "1997-11-28T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 57,
"ProductName": "Ravioli Angelo",
"UnitPrice": 19.5000,
"Quantity": 14,
"Discount": 0.25,
"ExtendedPrice": 204.7500,
"Freight": 16.7100
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 10755,
"OrderDate": "1997-11-26T00:00:00Z",
"RequiredDate": "1997-12-24T00:00:00Z",
"ShippedDate": "1997-11-28T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 69,
"ProductName": "Gudbrandsdalsost",
"UnitPrice": 36.0000,
"Quantity": 25,
"Discount": 0.25,
"ExtendedPrice": 675.0000,
"Freight": 16.7100
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 11076,
"OrderDate": "1998-05-06T00:00:00Z",
"RequiredDate": "1998-06-03T00:00:00Z",
"ShippedDate": null,
"ShipperName": "United Package",
"ProductID": 6,
"ProductName": "Grandma's Boysenberry Spread",
"UnitPrice": 25.0000,
"Quantity": 20,
"Discount": 0.25,
"ExtendedPrice": 375.0000,
"Freight": 38.2800
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 11076,
"OrderDate": "1998-05-06T00:00:00Z",
"RequiredDate": "1998-06-03T00:00:00Z",
"ShippedDate": null,
"ShipperName": "United Package",
"ProductID": 14,
"ProductName": "Tofu",
"UnitPrice": 23.2500,
"Quantity": 20,
"Discount": 0.25,
"ExtendedPrice": 348.7500,
"Freight": 38.2800
}, {
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France",
"CustomerID": "BONAP",
"CustomerName": "Bon app'",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Salesperson": "Margaret Peacock",
"OrderID": 11076,
"OrderDate": "1998-05-06T00:00:00Z",
"RequiredDate": "1998-06-03T00:00:00Z",
"ShippedDate": null,
"ShipperName": "United Package",
"ProductID": 19,
"ProductName": "Teatime Chocolate Biscuits",
"UnitPrice": 9.2000,
"Quantity": 10,
"Discount": 0.25,
"ExtendedPrice": 69.0000,
"Freight": 38.2800
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Margaret Peacock",
"OrderID": 10389,
"OrderDate": "1996-12-20T00:00:00Z",
"RequiredDate": "1997-01-17T00:00:00Z",
"ShippedDate": "1996-12-24T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 10,
"ProductName": "Ikura",
"UnitPrice": 24.8000,
"Quantity": 16,
"Discount": 0,
"ExtendedPrice": 396.8000,
"Freight": 47.4200
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Margaret Peacock",
"OrderID": 10389,
"OrderDate": "1996-12-20T00:00:00Z",
"RequiredDate": "1997-01-17T00:00:00Z",
"ShippedDate": "1996-12-24T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 55,
"ProductName": "P\u00e2t\u00e9 chinois",
"UnitPrice": 19.2000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 288.0000,
"Freight": 47.4200
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Margaret Peacock",
"OrderID": 10389,
"OrderDate": "1996-12-20T00:00:00Z",
"RequiredDate": "1997-01-17T00:00:00Z",
"ShippedDate": "1996-12-24T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 62,
"ProductName": "Tarte au sucre",
"UnitPrice": 39.4000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 788.0000,
"Freight": 47.4200
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Margaret Peacock",
"OrderID": 10389,
"OrderDate": "1996-12-20T00:00:00Z",
"RequiredDate": "1997-01-17T00:00:00Z",
"ShippedDate": "1996-12-24T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 70,
"ProductName": "Outback Lager",
"UnitPrice": 12.0000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 360.0000,
"Freight": 47.4200
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Janet Leverling",
"OrderID": 10410,
"OrderDate": "1997-01-10T00:00:00Z",
"RequiredDate": "1997-02-07T00:00:00Z",
"ShippedDate": "1997-01-15T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 33,
"ProductName": "Geitost",
"UnitPrice": 2.0000,
"Quantity": 49,
"Discount": 0,
"ExtendedPrice": 98.0000,
"Freight": 2.4000
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Janet Leverling",
"OrderID": 10410,
"OrderDate": "1997-01-10T00:00:00Z",
"RequiredDate": "1997-02-07T00:00:00Z",
"ShippedDate": "1997-01-15T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 59,
"ProductName": "Raclette Courdavault",
"UnitPrice": 44.0000,
"Quantity": 16,
"Discount": 0,
"ExtendedPrice": 704.0000,
"Freight": 2.4000
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Janet Leverling",
"OrderID": 10742,
"OrderDate": "1997-11-14T00:00:00Z",
"RequiredDate": "1997-12-12T00:00:00Z",
"ShippedDate": "1997-11-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 3,
"ProductName": "Aniseed Syrup",
"UnitPrice": 10.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 200.0000,
"Freight": 243.7300
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Janet Leverling",
"OrderID": 10742,
"OrderDate": "1997-11-14T00:00:00Z",
"RequiredDate": "1997-12-12T00:00:00Z",
"ShippedDate": "1997-11-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 60,
"ProductName": "Camembert Pierrot",
"UnitPrice": 34.0000,
"Quantity": 50,
"Discount": 0,
"ExtendedPrice": 1700.0000,
"Freight": 243.7300
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Janet Leverling",
"OrderID": 10742,
"OrderDate": "1997-11-14T00:00:00Z",
"RequiredDate": "1997-12-12T00:00:00Z",
"ShippedDate": "1997-11-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 72,
"ProductName": "Mozzarella di Giovanni",
"UnitPrice": 34.8000,
"Quantity": 35,
"Discount": 0,
"ExtendedPrice": 1218.0000,
"Freight": 243.7300
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Michael Suyama",
"OrderID": 10944,
"OrderDate": "1998-03-12T00:00:00Z",
"RequiredDate": "1998-03-26T00:00:00Z",
"ShippedDate": "1998-03-13T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 56,
"ProductName": "Gnocchi di nonna Alice",
"UnitPrice": 38.0000,
"Quantity": 18,
"Discount": 0,
"ExtendedPrice": 684.0000,
"Freight": 52.9200
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Andrew Fuller",
"OrderID": 10949,
"OrderDate": "1998-03-13T00:00:00Z",
"RequiredDate": "1998-04-10T00:00:00Z",
"ShippedDate": "1998-03-17T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 6,
"ProductName": "Grandma's Boysenberry Spread",
"UnitPrice": 25.0000,
"Quantity": 12,
"Discount": 0,
"ExtendedPrice": 300.0000,
"Freight": 74.4400
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Andrew Fuller",
"OrderID": 10949,
"OrderDate": "1998-03-13T00:00:00Z",
"RequiredDate": "1998-04-10T00:00:00Z",
"ShippedDate": "1998-03-17T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 10,
"ProductName": "Ikura",
"UnitPrice": 31.0000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 930.0000,
"Freight": 74.4400
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Andrew Fuller",
"OrderID": 10949,
"OrderDate": "1998-03-13T00:00:00Z",
"RequiredDate": "1998-04-10T00:00:00Z",
"ShippedDate": "1998-03-17T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 17,
"ProductName": "Alice Mutton",
"UnitPrice": 39.0000,
"Quantity": 6,
"Discount": 0,
"ExtendedPrice": 234.0000,
"Freight": 74.4400
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Andrew Fuller",
"OrderID": 10949,
"OrderDate": "1998-03-13T00:00:00Z",
"RequiredDate": "1998-04-10T00:00:00Z",
"ShippedDate": "1998-03-17T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 62,
"ProductName": "Tarte au sucre",
"UnitPrice": 49.3000,
"Quantity": 60,
"Discount": 0,
"ExtendedPrice": 2958.0000,
"Freight": 74.4400
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Nancy Davolio",
"OrderID": 10975,
"OrderDate": "1998-03-25T00:00:00Z",
"RequiredDate": "1998-04-22T00:00:00Z",
"ShippedDate": "1998-03-27T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 8,
"ProductName": "Northwoods Cranberry Sauce",
"UnitPrice": 40.0000,
"Quantity": 16,
"Discount": 0,
"ExtendedPrice": 640.0000,
"Freight": 32.2700
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Nancy Davolio",
"OrderID": 10975,
"OrderDate": "1998-03-25T00:00:00Z",
"RequiredDate": "1998-04-22T00:00:00Z",
"ShippedDate": "1998-03-27T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 75,
"ProductName": "Rh\u00f6nbr\u00e4u Klosterbier",
"UnitPrice": 7.7500,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 77.5000,
"Freight": 32.2700
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Andrew Fuller",
"OrderID": 10982,
"OrderDate": "1998-03-27T00:00:00Z",
"RequiredDate": "1998-04-24T00:00:00Z",
"ShippedDate": "1998-04-08T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 7,
"ProductName": "Uncle Bob's Organic Dried Pears",
"UnitPrice": 30.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 600.0000,
"Freight": 14.0100
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Andrew Fuller",
"OrderID": 10982,
"OrderDate": "1998-03-27T00:00:00Z",
"RequiredDate": "1998-04-24T00:00:00Z",
"ShippedDate": "1998-04-08T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 43,
"ProductName": "Ipoh Coffee",
"UnitPrice": 46.0000,
"Quantity": 9,
"Discount": 0,
"ExtendedPrice": 414.0000,
"Freight": 14.0100
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Michael Suyama",
"OrderID": 11045,
"OrderDate": "1998-04-23T00:00:00Z",
"RequiredDate": "1998-05-21T00:00:00Z",
"ShippedDate": null,
"ShipperName": "United Package",
"ProductID": 33,
"ProductName": "Geitost",
"UnitPrice": 2.5000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 37.5000,
"Freight": 70.5800
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Michael Suyama",
"OrderID": 11045,
"OrderDate": "1998-04-23T00:00:00Z",
"RequiredDate": "1998-05-21T00:00:00Z",
"ShippedDate": null,
"ShipperName": "United Package",
"ProductID": 51,
"ProductName": "Manjimup Dried Apples",
"UnitPrice": 53.0000,
"Quantity": 24,
"Discount": 0,
"ExtendedPrice": 1272.0000,
"Freight": 70.5800
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Robert King",
"OrderID": 11048,
"OrderDate": "1998-04-24T00:00:00Z",
"RequiredDate": "1998-05-22T00:00:00Z",
"ShippedDate": "1998-04-30T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 68,
"ProductName": "Scottish Longbreads",
"UnitPrice": 12.5000,
"Quantity": 42,
"Discount": 0,
"ExtendedPrice": 525.0000,
"Freight": 24.1200
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Janet Leverling",
"OrderID": 10492,
"OrderDate": "1997-04-01T00:00:00Z",
"RequiredDate": "1997-04-29T00:00:00Z",
"ShippedDate": "1997-04-11T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 25,
"ProductName": "NuNuCa Nu\u00df-Nougat-Creme",
"UnitPrice": 11.2000,
"Quantity": 60,
"Discount": 0.05,
"ExtendedPrice": 638.4000,
"Freight": 62.8900
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Janet Leverling",
"OrderID": 10492,
"OrderDate": "1997-04-01T00:00:00Z",
"RequiredDate": "1997-04-29T00:00:00Z",
"ShippedDate": "1997-04-11T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 42,
"ProductName": "Singaporean Hokkien Fried Mee",
"UnitPrice": 11.2000,
"Quantity": 20,
"Discount": 0.05,
"ExtendedPrice": 212.8000,
"Freight": 62.8900
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Anne Dodsworth",
"OrderID": 10411,
"OrderDate": "1997-01-10T00:00:00Z",
"RequiredDate": "1997-02-07T00:00:00Z",
"ShippedDate": "1997-01-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 41,
"ProductName": "Jack's New England Clam Chowder",
"UnitPrice": 7.7000,
"Quantity": 25,
"Discount": 0.2,
"ExtendedPrice": 154.0000,
"Freight": 23.6500
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Anne Dodsworth",
"OrderID": 10411,
"OrderDate": "1997-01-10T00:00:00Z",
"RequiredDate": "1997-02-07T00:00:00Z",
"ShippedDate": "1997-01-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 44,
"ProductName": "Gula Malacca",
"UnitPrice": 15.5000,
"Quantity": 40,
"Discount": 0.2,
"ExtendedPrice": 496.0000,
"Freight": 23.6500
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Anne Dodsworth",
"OrderID": 10411,
"OrderDate": "1997-01-10T00:00:00Z",
"RequiredDate": "1997-02-07T00:00:00Z",
"ShippedDate": "1997-01-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 59,
"ProductName": "Raclette Courdavault",
"UnitPrice": 44.0000,
"Quantity": 9,
"Discount": 0.2,
"ExtendedPrice": 316.8000,
"Freight": 23.6500
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Margaret Peacock",
"OrderID": 10431,
"OrderDate": "1997-01-30T00:00:00Z",
"RequiredDate": "1997-02-13T00:00:00Z",
"ShippedDate": "1997-02-07T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 17,
"ProductName": "Alice Mutton",
"UnitPrice": 31.2000,
"Quantity": 50,
"Discount": 0.25,
"ExtendedPrice": 1170.0000,
"Freight": 44.1700
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Margaret Peacock",
"OrderID": 10431,
"OrderDate": "1997-01-30T00:00:00Z",
"RequiredDate": "1997-02-13T00:00:00Z",
"ShippedDate": "1997-02-07T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 40,
"ProductName": "Boston Crab Meat",
"UnitPrice": 14.7000,
"Quantity": 50,
"Discount": 0.25,
"ExtendedPrice": 551.2500,
"Freight": 44.1700
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Margaret Peacock",
"OrderID": 10431,
"OrderDate": "1997-01-30T00:00:00Z",
"RequiredDate": "1997-02-13T00:00:00Z",
"ShippedDate": "1997-02-07T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 47,
"ProductName": "Zaanse koeken",
"UnitPrice": 7.6000,
"Quantity": 30,
"Discount": 0.25,
"ExtendedPrice": 171.0000,
"Freight": 44.1700
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Janet Leverling",
"OrderID": 10918,
"OrderDate": "1998-03-02T00:00:00Z",
"RequiredDate": "1998-03-30T00:00:00Z",
"ShippedDate": "1998-03-11T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 1,
"ProductName": "Chai",
"UnitPrice": 18.0000,
"Quantity": 60,
"Discount": 0.25,
"ExtendedPrice": 810.0000,
"Freight": 48.8300
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Janet Leverling",
"OrderID": 10918,
"OrderDate": "1998-03-02T00:00:00Z",
"RequiredDate": "1998-03-30T00:00:00Z",
"ShippedDate": "1998-03-11T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 60,
"ProductName": "Camembert Pierrot",
"UnitPrice": 34.0000,
"Quantity": 25,
"Discount": 0.25,
"ExtendedPrice": 637.5000,
"Freight": 48.8300
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Michael Suyama",
"OrderID": 10944,
"OrderDate": "1998-03-12T00:00:00Z",
"RequiredDate": "1998-03-26T00:00:00Z",
"ShippedDate": "1998-03-13T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 11,
"ProductName": "Queso Cabrales",
"UnitPrice": 21.0000,
"Quantity": 5,
"Discount": 0.25,
"ExtendedPrice": 78.7500,
"Freight": 52.9200
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Michael Suyama",
"OrderID": 10944,
"OrderDate": "1998-03-12T00:00:00Z",
"RequiredDate": "1998-03-26T00:00:00Z",
"ShippedDate": "1998-03-13T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 44,
"ProductName": "Gula Malacca",
"UnitPrice": 19.4500,
"Quantity": 18,
"Discount": 0.25,
"ExtendedPrice": 262.5800,
"Freight": 52.9200
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Nancy Davolio",
"OrderID": 11027,
"OrderDate": "1998-04-16T00:00:00Z",
"RequiredDate": "1998-05-14T00:00:00Z",
"ShippedDate": "1998-04-20T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 24,
"ProductName": "Guaran\u00e1 Fant\u00e1stica",
"UnitPrice": 4.5000,
"Quantity": 30,
"Discount": 0.25,
"ExtendedPrice": 101.2500,
"Freight": 52.5200
}, {
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada",
"CustomerID": "BOTTM",
"CustomerName": "Bottom-Dollar Markets",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Salesperson": "Nancy Davolio",
"OrderID": 11027,
"OrderDate": "1998-04-16T00:00:00Z",
"RequiredDate": "1998-05-14T00:00:00Z",
"ShippedDate": "1998-04-20T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 62,
"ProductName": "Tarte au sucre",
"UnitPrice": 49.3000,
"Quantity": 21,
"Discount": 0.25,
"ExtendedPrice": 776.4800,
"Freight": 52.5200
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Robert King",
"OrderID": 10289,
"OrderDate": "1996-08-26T00:00:00Z",
"RequiredDate": "1996-09-23T00:00:00Z",
"ShippedDate": "1996-08-28T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 3,
"ProductName": "Aniseed Syrup",
"UnitPrice": 8.0000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 240.0000,
"Freight": 22.7700
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Robert King",
"OrderID": 10289,
"OrderDate": "1996-08-26T00:00:00Z",
"RequiredDate": "1996-09-23T00:00:00Z",
"ShippedDate": "1996-08-28T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 64,
"ProductName": "Wimmers gute Semmelkn\u00f6del",
"UnitPrice": 26.6000,
"Quantity": 9,
"Discount": 0,
"ExtendedPrice": 239.4000,
"Freight": 22.7700
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Andrew Fuller",
"OrderID": 10471,
"OrderDate": "1997-03-11T00:00:00Z",
"RequiredDate": "1997-04-08T00:00:00Z",
"ShippedDate": "1997-03-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 7,
"ProductName": "Uncle Bob's Organic Dried Pears",
"UnitPrice": 24.0000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 720.0000,
"Freight": 45.5900
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Andrew Fuller",
"OrderID": 10471,
"OrderDate": "1997-03-11T00:00:00Z",
"RequiredDate": "1997-04-08T00:00:00Z",
"ShippedDate": "1997-03-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 56,
"ProductName": "Gnocchi di nonna Alice",
"UnitPrice": 30.4000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 608.0000,
"Freight": 45.5900
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Janet Leverling",
"OrderID": 10484,
"OrderDate": "1997-03-24T00:00:00Z",
"RequiredDate": "1997-04-21T00:00:00Z",
"ShippedDate": "1997-04-01T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 21,
"ProductName": "Sir Rodney's Scones",
"UnitPrice": 8.0000,
"Quantity": 14,
"Discount": 0,
"ExtendedPrice": 112.0000,
"Freight": 6.8800
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Janet Leverling",
"OrderID": 10484,
"OrderDate": "1997-03-24T00:00:00Z",
"RequiredDate": "1997-04-21T00:00:00Z",
"ShippedDate": "1997-04-01T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 40,
"ProductName": "Boston Crab Meat",
"UnitPrice": 14.7000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 147.0000,
"Freight": 6.8800
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Janet Leverling",
"OrderID": 10484,
"OrderDate": "1997-03-24T00:00:00Z",
"RequiredDate": "1997-04-21T00:00:00Z",
"ShippedDate": "1997-04-01T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 51,
"ProductName": "Manjimup Dried Apples",
"UnitPrice": 42.4000,
"Quantity": 3,
"Discount": 0,
"ExtendedPrice": 127.2000,
"Freight": 6.8800
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Anne Dodsworth",
"OrderID": 10538,
"OrderDate": "1997-05-15T00:00:00Z",
"RequiredDate": "1997-06-12T00:00:00Z",
"ShippedDate": "1997-05-16T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 70,
"ProductName": "Outback Lager",
"UnitPrice": 15.0000,
"Quantity": 7,
"Discount": 0,
"ExtendedPrice": 105.0000,
"Freight": 4.8700
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Anne Dodsworth",
"OrderID": 10538,
"OrderDate": "1997-05-15T00:00:00Z",
"RequiredDate": "1997-06-12T00:00:00Z",
"ShippedDate": "1997-05-16T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 72,
"ProductName": "Mozzarella di Giovanni",
"UnitPrice": 34.8000,
"Quantity": 1,
"Discount": 0,
"ExtendedPrice": 34.8000,
"Freight": 4.8700
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Michael Suyama",
"OrderID": 10539,
"OrderDate": "1997-05-16T00:00:00Z",
"RequiredDate": "1997-06-13T00:00:00Z",
"ShippedDate": "1997-05-23T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 13,
"ProductName": "Konbu",
"UnitPrice": 6.0000,
"Quantity": 8,
"Discount": 0,
"ExtendedPrice": 48.0000,
"Freight": 12.3600
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Michael Suyama",
"OrderID": 10539,
"OrderDate": "1997-05-16T00:00:00Z",
"RequiredDate": "1997-06-13T00:00:00Z",
"ShippedDate": "1997-05-23T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 21,
"ProductName": "Sir Rodney's Scones",
"UnitPrice": 10.0000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 150.0000,
"Freight": 12.3600
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Michael Suyama",
"OrderID": 10539,
"OrderDate": "1997-05-16T00:00:00Z",
"RequiredDate": "1997-06-13T00:00:00Z",
"ShippedDate": "1997-05-23T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 33,
"ProductName": "Geitost",
"UnitPrice": 2.5000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 37.5000,
"Freight": 12.3600
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Michael Suyama",
"OrderID": 10539,
"OrderDate": "1997-05-16T00:00:00Z",
"RequiredDate": "1997-06-13T00:00:00Z",
"ShippedDate": "1997-05-23T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 49,
"ProductName": "Maxilaku",
"UnitPrice": 20.0000,
"Quantity": 6,
"Discount": 0,
"ExtendedPrice": 120.0000,
"Freight": 12.3600
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 10578,
"OrderDate": "1997-06-24T00:00:00Z",
"RequiredDate": "1997-07-22T00:00:00Z",
"ShippedDate": "1997-07-25T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 35,
"ProductName": "Steeleye Stout",
"UnitPrice": 18.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 360.0000,
"Freight": 29.6000
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 10578,
"OrderDate": "1997-06-24T00:00:00Z",
"RequiredDate": "1997-07-22T00:00:00Z",
"ShippedDate": "1997-07-25T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 57,
"ProductName": "Ravioli Angelo",
"UnitPrice": 19.5000,
"Quantity": 6,
"Discount": 0,
"ExtendedPrice": 117.0000,
"Freight": 29.6000
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Michael Suyama",
"OrderID": 10599,
"OrderDate": "1997-07-15T00:00:00Z",
"RequiredDate": "1997-08-26T00:00:00Z",
"ShippedDate": "1997-07-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 62,
"ProductName": "Tarte au sucre",
"UnitPrice": 49.3000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 493.0000,
"Freight": 29.9800
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 10943,
"OrderDate": "1998-03-11T00:00:00Z",
"RequiredDate": "1998-04-08T00:00:00Z",
"ShippedDate": "1998-03-19T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 13,
"ProductName": "Konbu",
"UnitPrice": 6.0000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 90.0000,
"Freight": 2.1700
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 10943,
"OrderDate": "1998-03-11T00:00:00Z",
"RequiredDate": "1998-04-08T00:00:00Z",
"ShippedDate": "1998-03-19T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 22,
"ProductName": "Gustaf's Kn\u00e4ckebr\u00f6d",
"UnitPrice": 21.0000,
"Quantity": 21,
"Discount": 0,
"ExtendedPrice": 441.0000,
"Freight": 2.1700
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 10943,
"OrderDate": "1998-03-11T00:00:00Z",
"RequiredDate": "1998-04-08T00:00:00Z",
"ShippedDate": "1998-03-19T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 46,
"ProductName": "Spegesild",
"UnitPrice": 12.0000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 180.0000,
"Freight": 2.1700
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Janet Leverling",
"OrderID": 10947,
"OrderDate": "1998-03-13T00:00:00Z",
"RequiredDate": "1998-04-10T00:00:00Z",
"ShippedDate": "1998-03-16T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 59,
"ProductName": "Raclette Courdavault",
"UnitPrice": 55.0000,
"Quantity": 4,
"Discount": 0,
"ExtendedPrice": 220.0000,
"Freight": 3.2600
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Nancy Davolio",
"OrderID": 11023,
"OrderDate": "1998-04-14T00:00:00Z",
"RequiredDate": "1998-04-28T00:00:00Z",
"ShippedDate": "1998-04-24T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 7,
"ProductName": "Uncle Bob's Organic Dried Pears",
"UnitPrice": 30.0000,
"Quantity": 4,
"Discount": 0,
"ExtendedPrice": 120.0000,
"Freight": 123.8300
}, {
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK",
"CustomerID": "BSBEV",
"CustomerName": "B's Beverages",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Salesperson": "Nancy Davolio",
"OrderID": 11023,
"OrderDate": "1998-04-14T00:00:00Z",
"RequiredDate": "1998-04-28T00:00:00Z",
"ShippedDate": "1998-04-24T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 43,
"ProductName": "Ipoh Coffee",
"UnitPrice": 46.0000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 1380.0000,
"Freight": 123.8300
}, {
"ShipName": "Cactus Comidas para llevar",
"ShipAddress": "Cerrito 333",
"ShipCity": "Buenos Aires",
"ShipRegion": null,
"ShipPostalCode": "1010",
"ShipCountry": "Argentina",
"CustomerID": "CACTU",
"CustomerName": "Cactus Comidas para llevar",
"Address": "Cerrito 333",
"City": "Buenos Aires",
"Region": null,
"PostalCode": "1010",
"Country": "Argentina",
"Salesperson": "Laura Callahan",
"OrderID": 10521,
"OrderDate": "1997-04-29T00:00:00Z",
"RequiredDate": "1997-05-27T00:00:00Z",
"ShippedDate": "1997-05-02T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 68,
"ProductName": "Scottish Longbreads",
"UnitPrice": 12.5000,
"Quantity": 6,
"Discount": 0,
"ExtendedPrice": 75.0000,
"Freight": 17.2200
}, {
"ShipName": "Cactus Comidas para llevar",
"ShipAddress": "Cerrito 333",
"ShipCity": "Buenos Aires",
"ShipRegion": null,
"ShipPostalCode": "1010",
"ShipCountry": "Argentina",
"CustomerID": "CACTU",
"CustomerName": "Cactus Comidas para llevar",
"Address": "Cerrito 333",
"City": "Buenos Aires",
"Region": null,
"PostalCode": "1010",
"Country": "Argentina",
"Salesperson": "Laura Callahan",
"OrderID": 11054,
"OrderDate": "1998-04-28T00:00:00Z",
"RequiredDate": "1998-05-26T00:00:00Z",
"ShippedDate": null,
"ShipperName": "Speedy Express",
"ProductID": 33,
"ProductName": "Geitost",
"UnitPrice": 2.5000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 25.0000,
"Freight": 0.3300
}, {
"ShipName": "Cactus Comidas para llevar",
"ShipAddress": "Cerrito 333",
"ShipCity": "Buenos Aires",
"ShipRegion": null,
"ShipPostalCode": "1010",
"ShipCountry": "Argentina",
"CustomerID": "CACTU",
"CustomerName": "Cactus Comidas para llevar",
"Address": "Cerrito 333",
"City": "Buenos Aires",
"Region": null,
"PostalCode": "1010",
"Country": "Argentina",
"Salesperson": "Laura Callahan",
"OrderID": 11054,
"OrderDate": "1998-04-28T00:00:00Z",
"RequiredDate": "1998-05-26T00:00:00Z",
"ShippedDate": null,
"ShipperName": "Speedy Express",
"ProductID": 67,
"ProductName": "Laughing Lumberjack Lager",
"UnitPrice": 14.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 280.0000,
"Freight": 0.3300
}, {
"ShipName": "Centro comercial Moctezuma",
"ShipAddress": "Sierras de Granada 9993",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05022",
"ShipCountry": "Mexico",
"CustomerID": "CENTC",
"CustomerName": "Centro comercial Moctezuma",
"Address": "Sierras de Granada 9993",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05022",
"Country": "Mexico",
"Salesperson": "Margaret Peacock",
"OrderID": 10259,
"OrderDate": "1996-07-18T00:00:00Z",
"RequiredDate": "1996-08-15T00:00:00Z",
"ShippedDate": "1996-07-25T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 21,
"ProductName": "Sir Rodney's Scones",
"UnitPrice": 8.0000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 80.0000,
"Freight": 3.2500
}, {
"ShipName": "Centro comercial Moctezuma",
"ShipAddress": "Sierras de Granada 9993",
"ShipCity": "M\u00e9xico D.F.",
"ShipRegion": null,
"ShipPostalCode": "05022",
"ShipCountry": "Mexico",
"CustomerID": "CENTC",
"CustomerName": "Centro comercial Moctezuma",
"Address": "Sierras de Granada 9993",
"City": "M\u00e9xico D.F.",
"Region": null,
"PostalCode": "05022",
"Country": "Mexico",
"Salesperson": "Margaret Peacock",
"OrderID": 10259,
"OrderDate": "1996-07-18T00:00:00Z",
"RequiredDate": "1996-08-15T00:00:00Z",
"ShippedDate": "1996-07-25T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 37,
"ProductName": "Gravad lax",
"UnitPrice": 20.8000,
"Quantity": 1,
"Discount": 0,
"ExtendedPrice": 20.8000,
"Freight": 3.2500
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Steven Buchanan",
"OrderID": 10254,
"OrderDate": "1996-07-11T00:00:00Z",
"RequiredDate": "1996-08-08T00:00:00Z",
"ShippedDate": "1996-07-23T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 74,
"ProductName": "Longlife Tofu",
"UnitPrice": 8.0000,
"Quantity": 21,
"Discount": 0,
"ExtendedPrice": 168.0000,
"Freight": 22.9800
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Michael Suyama",
"OrderID": 10370,
"OrderDate": "1996-12-03T00:00:00Z",
"RequiredDate": "1996-12-31T00:00:00Z",
"ShippedDate": "1996-12-27T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 64,
"ProductName": "Wimmers gute Semmelkn\u00f6del",
"UnitPrice": 26.6000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 798.0000,
"Freight": 1.1700
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Michael Suyama",
"OrderID": 10519,
"OrderDate": "1997-04-28T00:00:00Z",
"RequiredDate": "1997-05-26T00:00:00Z",
"ShippedDate": "1997-05-01T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 56,
"ProductName": "Gnocchi di nonna Alice",
"UnitPrice": 38.0000,
"Quantity": 40,
"Discount": 0,
"ExtendedPrice": 1520.0000,
"Freight": 91.7600
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Nancy Davolio",
"OrderID": 10746,
"OrderDate": "1997-11-19T00:00:00Z",
"RequiredDate": "1997-12-17T00:00:00Z",
"ShippedDate": "1997-11-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 13,
"ProductName": "Konbu",
"UnitPrice": 6.0000,
"Quantity": 6,
"Discount": 0,
"ExtendedPrice": 36.0000,
"Freight": 31.4300
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Nancy Davolio",
"OrderID": 10746,
"OrderDate": "1997-11-19T00:00:00Z",
"RequiredDate": "1997-12-17T00:00:00Z",
"ShippedDate": "1997-11-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 42,
"ProductName": "Singaporean Hokkien Fried Mee",
"UnitPrice": 14.0000,
"Quantity": 28,
"Discount": 0,
"ExtendedPrice": 392.0000,
"Freight": 31.4300
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Nancy Davolio",
"OrderID": 10746,
"OrderDate": "1997-11-19T00:00:00Z",
"RequiredDate": "1997-12-17T00:00:00Z",
"ShippedDate": "1997-11-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 62,
"ProductName": "Tarte au sucre",
"UnitPrice": 49.3000,
"Quantity": 9,
"Discount": 0,
"ExtendedPrice": 443.7000,
"Freight": 31.4300
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Nancy Davolio",
"OrderID": 10746,
"OrderDate": "1997-11-19T00:00:00Z",
"RequiredDate": "1997-12-17T00:00:00Z",
"ShippedDate": "1997-11-21T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 69,
"ProductName": "Gudbrandsdalsost",
"UnitPrice": 36.0000,
"Quantity": 40,
"Discount": 0,
"ExtendedPrice": 1440.0000,
"Freight": 31.4300
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Margaret Peacock",
"OrderID": 10966,
"OrderDate": "1998-03-20T00:00:00Z",
"RequiredDate": "1998-04-17T00:00:00Z",
"ShippedDate": "1998-04-08T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 37,
"ProductName": "Gravad lax",
"UnitPrice": 26.0000,
"Quantity": 8,
"Discount": 0,
"ExtendedPrice": 208.0000,
"Freight": 27.1900
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Margaret Peacock",
"OrderID": 11029,
"OrderDate": "1998-04-16T00:00:00Z",
"RequiredDate": "1998-05-14T00:00:00Z",
"ShippedDate": "1998-04-27T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 56,
"ProductName": "Gnocchi di nonna Alice",
"UnitPrice": 38.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 760.0000,
"Freight": 47.8400
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Margaret Peacock",
"OrderID": 11029,
"OrderDate": "1998-04-16T00:00:00Z",
"RequiredDate": "1998-05-14T00:00:00Z",
"ShippedDate": "1998-04-27T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 63,
"ProductName": "Vegie-spread",
"UnitPrice": 43.9000,
"Quantity": 12,
"Discount": 0,
"ExtendedPrice": 526.8000,
"Freight": 47.8400
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Janet Leverling",
"OrderID": 11041,
"OrderDate": "1998-04-22T00:00:00Z",
"RequiredDate": "1998-05-20T00:00:00Z",
"ShippedDate": "1998-04-28T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 63,
"ProductName": "Vegie-spread",
"UnitPrice": 43.9000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 1317.0000,
"Freight": 48.2200
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Michael Suyama",
"OrderID": 10519,
"OrderDate": "1997-04-28T00:00:00Z",
"RequiredDate": "1997-05-26T00:00:00Z",
"ShippedDate": "1997-05-01T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 10,
"ProductName": "Ikura",
"UnitPrice": 31.0000,
"Quantity": 16,
"Discount": 0.05,
"ExtendedPrice": 471.2000,
"Freight": 91.7600
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Michael Suyama",
"OrderID": 10519,
"OrderDate": "1997-04-28T00:00:00Z",
"RequiredDate": "1997-05-26T00:00:00Z",
"ShippedDate": "1997-05-01T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 60,
"ProductName": "Camembert Pierrot",
"UnitPrice": 34.0000,
"Quantity": 10,
"Discount": 0.05,
"ExtendedPrice": 323.0000,
"Freight": 91.7600
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Robert King",
"OrderID": 10731,
"OrderDate": "1997-11-06T00:00:00Z",
"RequiredDate": "1997-12-04T00:00:00Z",
"ShippedDate": "1997-11-14T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 21,
"ProductName": "Sir Rodney's Scones",
"UnitPrice": 10.0000,
"Quantity": 40,
"Discount": 0.05,
"ExtendedPrice": 380.0000,
"Freight": 96.6500
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Robert King",
"OrderID": 10731,
"OrderDate": "1997-11-06T00:00:00Z",
"RequiredDate": "1997-12-04T00:00:00Z",
"ShippedDate": "1997-11-14T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 51,
"ProductName": "Manjimup Dried Apples",
"UnitPrice": 53.0000,
"Quantity": 30,
"Discount": 0.05,
"ExtendedPrice": 1510.5000,
"Freight": 96.6500
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Steven Buchanan",
"OrderID": 10254,
"OrderDate": "1996-07-11T00:00:00Z",
"RequiredDate": "1996-08-08T00:00:00Z",
"ShippedDate": "1996-07-23T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 24,
"ProductName": "Guaran\u00e1 Fant\u00e1stica",
"UnitPrice": 3.6000,
"Quantity": 15,
"Discount": 0.15,
"ExtendedPrice": 45.9000,
"Freight": 22.9800
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Steven Buchanan",
"OrderID": 10254,
"OrderDate": "1996-07-11T00:00:00Z",
"RequiredDate": "1996-08-08T00:00:00Z",
"ShippedDate": "1996-07-23T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 55,
"ProductName": "P\u00e2t\u00e9 chinois",
"UnitPrice": 19.2000,
"Quantity": 21,
"Discount": 0.15,
"ExtendedPrice": 342.7200,
"Freight": 22.9800
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Michael Suyama",
"OrderID": 10370,
"OrderDate": "1996-12-03T00:00:00Z",
"RequiredDate": "1996-12-31T00:00:00Z",
"ShippedDate": "1996-12-27T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 1,
"ProductName": "Chai",
"UnitPrice": 14.4000,
"Quantity": 15,
"Discount": 0.15,
"ExtendedPrice": 183.6000,
"Freight": 1.1700
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Michael Suyama",
"OrderID": 10370,
"OrderDate": "1996-12-03T00:00:00Z",
"RequiredDate": "1996-12-31T00:00:00Z",
"ShippedDate": "1996-12-27T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 74,
"ProductName": "Longlife Tofu",
"UnitPrice": 8.0000,
"Quantity": 20,
"Discount": 0.15,
"ExtendedPrice": 136.0000,
"Freight": 1.1700
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Margaret Peacock",
"OrderID": 10966,
"OrderDate": "1998-03-20T00:00:00Z",
"RequiredDate": "1998-04-17T00:00:00Z",
"ShippedDate": "1998-04-08T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 56,
"ProductName": "Gnocchi di nonna Alice",
"UnitPrice": 38.0000,
"Quantity": 12,
"Discount": 0.15,
"ExtendedPrice": 387.6000,
"Freight": 27.1900
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Margaret Peacock",
"OrderID": 10966,
"OrderDate": "1998-03-20T00:00:00Z",
"RequiredDate": "1998-04-17T00:00:00Z",
"ShippedDate": "1998-04-08T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 62,
"ProductName": "Tarte au sucre",
"UnitPrice": 49.3000,
"Quantity": 12,
"Discount": 0.15,
"ExtendedPrice": 502.8600,
"Freight": 27.1900
}, {
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland",
"CustomerID": "CHOPS",
"CustomerName": "Chop-suey Chinese",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Salesperson": "Janet Leverling",
"OrderID": 11041,
"OrderDate": "1998-04-22T00:00:00Z",
"RequiredDate": "1998-05-20T00:00:00Z",
"ShippedDate": "1998-04-28T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 2,
"ProductName": "Chang",
"UnitPrice": 19.0000,
"Quantity": 30,
"Discount": 0.2,
"ExtendedPrice": 456.0000,
"Freight": 48.2200
}, {
"ShipName": "Com\u00e9rcio Mineiro",
"ShipAddress": "Av. dos Lus\u00edadas, 23",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05432-043",
"ShipCountry": "Brazil",
"CustomerID": "COMMI",
"CustomerName": "Com\u00e9rcio Mineiro",
"Address": "Av. dos Lus\u00edadas, 23",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05432-043",
"Country": "Brazil",
"Salesperson": "Laura Callahan",
"OrderID": 10290,
"OrderDate": "1996-08-27T00:00:00Z",
"RequiredDate": "1996-09-24T00:00:00Z",
"ShippedDate": "1996-09-03T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 5,
"ProductName": "Chef Anton's Gumbo Mix",
"UnitPrice": 17.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 340.0000,
"Freight": 79.7000
}, {
"ShipName": "Com\u00e9rcio Mineiro",
"ShipAddress": "Av. dos Lus\u00edadas, 23",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05432-043",
"ShipCountry": "Brazil",
"CustomerID": "COMMI",
"CustomerName": "Com\u00e9rcio Mineiro",
"Address": "Av. dos Lus\u00edadas, 23",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05432-043",
"Country": "Brazil",
"Salesperson": "Laura Callahan",
"OrderID": 10290,
"OrderDate": "1996-08-27T00:00:00Z",
"RequiredDate": "1996-09-24T00:00:00Z",
"ShippedDate": "1996-09-03T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 29,
"ProductName": "Th\u00fcringer Rostbratwurst",
"UnitPrice": 99.0000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 1485.0000,
"Freight": 79.7000
}, {
"ShipName": "Com\u00e9rcio Mineiro",
"ShipAddress": "Av. dos Lus\u00edadas, 23",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05432-043",
"ShipCountry": "Brazil",
"CustomerID": "COMMI",
"CustomerName": "Com\u00e9rcio Mineiro",
"Address": "Av. dos Lus\u00edadas, 23",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05432-043",
"Country": "Brazil",
"Salesperson": "Laura Callahan",
"OrderID": 10290,
"OrderDate": "1996-08-27T00:00:00Z",
"RequiredDate": "1996-09-24T00:00:00Z",
"ShippedDate": "1996-09-03T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 49,
"ProductName": "Maxilaku",
"UnitPrice": 16.0000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 240.0000,
"Freight": 79.7000
}, {
"ShipName": "Com\u00e9rcio Mineiro",
"ShipAddress": "Av. dos Lus\u00edadas, 23",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05432-043",
"ShipCountry": "Brazil",
"CustomerID": "COMMI",
"CustomerName": "Com\u00e9rcio Mineiro",
"Address": "Av. dos Lus\u00edadas, 23",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05432-043",
"Country": "Brazil",
"Salesperson": "Laura Callahan",
"OrderID": 10290,
"OrderDate": "1996-08-27T00:00:00Z",
"RequiredDate": "1996-09-24T00:00:00Z",
"ShippedDate": "1996-09-03T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 77,
"ProductName": "Original Frankfurter gr\u00fcne So\u00dfe",
"UnitPrice": 10.4000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 104.0000,
"Freight": 79.7000
}, {
"ShipName": "Com\u00e9rcio Mineiro",
"ShipAddress": "Av. dos Lus\u00edadas, 23",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05432-043",
"ShipCountry": "Brazil",
"CustomerID": "COMMI",
"CustomerName": "Com\u00e9rcio Mineiro",
"Address": "Av. dos Lus\u00edadas, 23",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05432-043",
"Country": "Brazil",
"Salesperson": "Margaret Peacock",
"OrderID": 10466,
"OrderDate": "1997-03-06T00:00:00Z",
"RequiredDate": "1997-04-03T00:00:00Z",
"ShippedDate": "1997-03-13T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 11,
"ProductName": "Queso Cabrales",
"UnitPrice": 16.8000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 168.0000,
"Freight": 11.9300
}, {
"ShipName": "Com\u00e9rcio Mineiro",
"ShipAddress": "Av. dos Lus\u00edadas, 23",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05432-043",
"ShipCountry": "Brazil",
"CustomerID": "COMMI",
"CustomerName": "Com\u00e9rcio Mineiro",
"Address": "Av. dos Lus\u00edadas, 23",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05432-043",
"Country": "Brazil",
"Salesperson": "Margaret Peacock",
"OrderID": 10466,
"OrderDate": "1997-03-06T00:00:00Z",
"RequiredDate": "1997-04-03T00:00:00Z",
"ShippedDate": "1997-03-13T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 46,
"ProductName": "Spegesild",
"UnitPrice": 9.6000,
"Quantity": 5,
"Discount": 0,
"ExtendedPrice": 48.0000,
"Freight": 11.9300
}, {
"ShipName": "Com\u00e9rcio Mineiro",
"ShipAddress": "Av. dos Lus\u00edadas, 23",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05432-043",
"ShipCountry": "Brazil",
"CustomerID": "COMMI",
"CustomerName": "Com\u00e9rcio Mineiro",
"Address": "Av. dos Lus\u00edadas, 23",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05432-043",
"Country": "Brazil",
"Salesperson": "Margaret Peacock",
"OrderID": 10494,
"OrderDate": "1997-04-02T00:00:00Z",
"RequiredDate": "1997-04-30T00:00:00Z",
"ShippedDate": "1997-04-09T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 56,
"ProductName": "Gnocchi di nonna Alice",
"UnitPrice": 30.4000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 912.0000,
"Freight": 65.9900
}, {
"ShipName": "Com\u00e9rcio Mineiro",
"ShipAddress": "Av. dos Lus\u00edadas, 23",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05432-043",
"ShipCountry": "Brazil",
"CustomerID": "COMMI",
"CustomerName": "Com\u00e9rcio Mineiro",
"Address": "Av. dos Lus\u00edadas, 23",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05432-043",
"Country": "Brazil",
"Salesperson": "Nancy Davolio",
"OrderID": 10969,
"OrderDate": "1998-03-23T00:00:00Z",
"RequiredDate": "1998-04-20T00:00:00Z",
"ShippedDate": "1998-03-30T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 46,
"ProductName": "Spegesild",
"UnitPrice": 12.0000,
"Quantity": 9,
"Discount": 0,
"ExtendedPrice": 108.0000,
"Freight": 0.2100
}, {
"ShipName": "Com\u00e9rcio Mineiro",
"ShipAddress": "Av. dos Lus\u00edadas, 23",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05432-043",
"ShipCountry": "Brazil",
"CustomerID": "COMMI",
"CustomerName": "Com\u00e9rcio Mineiro",
"Address": "Av. dos Lus\u00edadas, 23",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05432-043",
"Country": "Brazil",
"Salesperson": "Andrew Fuller",
"OrderID": 11042,
"OrderDate": "1998-04-22T00:00:00Z",
"RequiredDate": "1998-05-06T00:00:00Z",
"ShippedDate": "1998-05-01T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 44,
"ProductName": "Gula Malacca",
"UnitPrice": 19.4500,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 291.7500,
"Freight": 29.9900
}, {
"ShipName": "Com\u00e9rcio Mineiro",
"ShipAddress": "Av. dos Lus\u00edadas, 23",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05432-043",
"ShipCountry": "Brazil",
"CustomerID": "COMMI",
"CustomerName": "Com\u00e9rcio Mineiro",
"Address": "Av. dos Lus\u00edadas, 23",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05432-043",
"Country": "Brazil",
"Salesperson": "Andrew Fuller",
"OrderID": 11042,
"OrderDate": "1998-04-22T00:00:00Z",
"RequiredDate": "1998-05-06T00:00:00Z",
"ShippedDate": "1998-05-01T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 61,
"ProductName": "Sirop d'\u00e9rable",
"UnitPrice": 28.5000,
"Quantity": 4,
"Discount": 0,
"ExtendedPrice": 114.0000,
"Freight": 29.9900
}, {
"ShipName": "Consolidated Holdings",
"ShipAddress": "Berkeley Gardens 12 Brewery",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX1 6LT",
"ShipCountry": "UK",
"CustomerID": "CONSH",
"CustomerName": "Consolidated Holdings",
"Address": "Berkeley Gardens 12 Brewery",
"City": "London",
"Region": null,
"PostalCode": "WX1 6LT",
"Country": "UK",
"Salesperson": "Laura Callahan",
"OrderID": 10435,
"OrderDate": "1997-02-04T00:00:00Z",
"RequiredDate": "1997-03-18T00:00:00Z",
"ShippedDate": "1997-02-07T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 2,
"ProductName": "Chang",
"UnitPrice": 15.2000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 152.0000,
"Freight": 9.2100
}, {
"ShipName": "Consolidated Holdings",
"ShipAddress": "Berkeley Gardens 12 Brewery",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX1 6LT",
"ShipCountry": "UK",
"CustomerID": "CONSH",
"CustomerName": "Consolidated Holdings",
"Address": "Berkeley Gardens 12 Brewery",
"City": "London",
"Region": null,
"PostalCode": "WX1 6LT",
"Country": "UK",
"Salesperson": "Laura Callahan",
"OrderID": 10435,
"OrderDate": "1997-02-04T00:00:00Z",
"RequiredDate": "1997-03-18T00:00:00Z",
"ShippedDate": "1997-02-07T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 22,
"ProductName": "Gustaf's Kn\u00e4ckebr\u00f6d",
"UnitPrice": 16.8000,
"Quantity": 12,
"Discount": 0,
"ExtendedPrice": 201.6000,
"Freight": 9.2100
}, {
"ShipName": "Consolidated Holdings",
"ShipAddress": "Berkeley Gardens 12 Brewery",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX1 6LT",
"ShipCountry": "UK",
"CustomerID": "CONSH",
"CustomerName": "Consolidated Holdings",
"Address": "Berkeley Gardens 12 Brewery",
"City": "London",
"Region": null,
"PostalCode": "WX1 6LT",
"Country": "UK",
"Salesperson": "Laura Callahan",
"OrderID": 10435,
"OrderDate": "1997-02-04T00:00:00Z",
"RequiredDate": "1997-03-18T00:00:00Z",
"ShippedDate": "1997-02-07T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 72,
"ProductName": "Mozzarella di Giovanni",
"UnitPrice": 27.8000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 278.0000,
"Freight": 9.2100
}, {
"ShipName": "Consolidated Holdings",
"ShipAddress": "Berkeley Gardens 12 Brewery",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX1 6LT",
"ShipCountry": "UK",
"CustomerID": "CONSH",
"CustomerName": "Consolidated Holdings",
"Address": "Berkeley Gardens 12 Brewery",
"City": "London",
"Region": null,
"PostalCode": "WX1 6LT",
"Country": "UK",
"Salesperson": "Andrew Fuller",
"OrderID": 10462,
"OrderDate": "1997-03-03T00:00:00Z",
"RequiredDate": "1997-03-31T00:00:00Z",
"ShippedDate": "1997-03-18T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 13,
"ProductName": "Konbu",
"UnitPrice": 4.8000,
"Quantity": 1,
"Discount": 0,
"ExtendedPrice": 4.8000,
"Freight": 6.1700
}, {
"ShipName": "Consolidated Holdings",
"ShipAddress": "Berkeley Gardens 12 Brewery",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX1 6LT",
"ShipCountry": "UK",
"CustomerID": "CONSH",
"CustomerName": "Consolidated Holdings",
"Address": "Berkeley Gardens 12 Brewery",
"City": "London",
"Region": null,
"PostalCode": "WX1 6LT",
"Country": "UK",
"Salesperson": "Andrew Fuller",
"OrderID": 10462,
"OrderDate": "1997-03-03T00:00:00Z",
"RequiredDate": "1997-03-31T00:00:00Z",
"ShippedDate": "1997-03-18T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 23,
"ProductName": "Tunnbr\u00f6d",
"UnitPrice": 7.2000,
"Quantity": 21,
"Discount": 0,
"ExtendedPrice": 151.2000,
"Freight": 6.1700
}, {
"ShipName": "Consolidated Holdings",
"ShipAddress": "Berkeley Gardens 12 Brewery",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX1 6LT",
"ShipCountry": "UK",
"CustomerID": "CONSH",
"CustomerName": "Consolidated Holdings",
"Address": "Berkeley Gardens 12 Brewery",
"City": "London",
"Region": null,
"PostalCode": "WX1 6LT",
"Country": "UK",
"Salesperson": "Robert King",
"OrderID": 10848,
"OrderDate": "1998-01-23T00:00:00Z",
"RequiredDate": "1998-02-20T00:00:00Z",
"ShippedDate": "1998-01-29T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 5,
"ProductName": "Chef Anton's Gumbo Mix",
"UnitPrice": 21.3500,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 640.5000,
"Freight": 38.2400
}, {
"ShipName": "Consolidated Holdings",
"ShipAddress": "Berkeley Gardens 12 Brewery",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX1 6LT",
"ShipCountry": "UK",
"CustomerID": "CONSH",
"CustomerName": "Consolidated Holdings",
"Address": "Berkeley Gardens 12 Brewery",
"City": "London",
"Region": null,
"PostalCode": "WX1 6LT",
"Country": "UK",
"Salesperson": "Robert King",
"OrderID": 10848,
"OrderDate": "1998-01-23T00:00:00Z",
"RequiredDate": "1998-02-20T00:00:00Z",
"ShippedDate": "1998-01-29T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 9,
"ProductName": "Mishi Kobe Niku",
"UnitPrice": 97.0000,
"Quantity": 3,
"Discount": 0,
"ExtendedPrice": 291.0000,
"Freight": 38.2400
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Laura Callahan",
"OrderID": 10301,
"OrderDate": "1996-09-09T00:00:00Z",
"RequiredDate": "1996-10-07T00:00:00Z",
"ShippedDate": "1996-09-17T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 40,
"ProductName": "Boston Crab Meat",
"UnitPrice": 14.7000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 147.0000,
"Freight": 45.0800
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Laura Callahan",
"OrderID": 10301,
"OrderDate": "1996-09-09T00:00:00Z",
"RequiredDate": "1996-10-07T00:00:00Z",
"ShippedDate": "1996-09-17T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 56,
"ProductName": "Gnocchi di nonna Alice",
"UnitPrice": 30.4000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 608.0000,
"Freight": 45.0800
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Andrew Fuller",
"OrderID": 10312,
"OrderDate": "1996-09-23T00:00:00Z",
"RequiredDate": "1996-10-21T00:00:00Z",
"ShippedDate": "1996-10-03T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 28,
"ProductName": "R\u00f6ssle Sauerkraut",
"UnitPrice": 36.4000,
"Quantity": 4,
"Discount": 0,
"ExtendedPrice": 145.6000,
"Freight": 40.2600
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Andrew Fuller",
"OrderID": 10312,
"OrderDate": "1996-09-23T00:00:00Z",
"RequiredDate": "1996-10-21T00:00:00Z",
"ShippedDate": "1996-10-03T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 43,
"ProductName": "Ipoh Coffee",
"UnitPrice": 36.8000,
"Quantity": 24,
"Discount": 0,
"ExtendedPrice": 883.2000,
"Freight": 40.2600
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Andrew Fuller",
"OrderID": 10312,
"OrderDate": "1996-09-23T00:00:00Z",
"RequiredDate": "1996-10-21T00:00:00Z",
"ShippedDate": "1996-10-03T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 53,
"ProductName": "Perth Pasties",
"UnitPrice": 26.2000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 524.0000,
"Freight": 40.2600
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Andrew Fuller",
"OrderID": 10312,
"OrderDate": "1996-09-23T00:00:00Z",
"RequiredDate": "1996-10-21T00:00:00Z",
"ShippedDate": "1996-10-03T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 75,
"ProductName": "Rh\u00f6nbr\u00e4u Klosterbier",
"UnitPrice": 6.2000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 62.0000,
"Freight": 40.2600
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Margaret Peacock",
"OrderID": 10348,
"OrderDate": "1996-11-07T00:00:00Z",
"RequiredDate": "1996-12-05T00:00:00Z",
"ShippedDate": "1996-11-15T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 23,
"ProductName": "Tunnbr\u00f6d",
"UnitPrice": 7.2000,
"Quantity": 25,
"Discount": 0,
"ExtendedPrice": 180.0000,
"Freight": 0.7800
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Michael Suyama",
"OrderID": 10356,
"OrderDate": "1996-11-18T00:00:00Z",
"RequiredDate": "1996-12-16T00:00:00Z",
"ShippedDate": "1996-11-27T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 31,
"ProductName": "Gorgonzola Telino",
"UnitPrice": 10.0000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 300.0000,
"Freight": 36.7100
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Michael Suyama",
"OrderID": 10356,
"OrderDate": "1996-11-18T00:00:00Z",
"RequiredDate": "1996-12-16T00:00:00Z",
"ShippedDate": "1996-11-27T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 55,
"ProductName": "P\u00e2t\u00e9 chinois",
"UnitPrice": 19.2000,
"Quantity": 12,
"Discount": 0,
"ExtendedPrice": 230.4000,
"Freight": 36.7100
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Michael Suyama",
"OrderID": 10356,
"OrderDate": "1996-11-18T00:00:00Z",
"RequiredDate": "1996-12-16T00:00:00Z",
"ShippedDate": "1996-11-27T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 69,
"ProductName": "Gudbrandsdalsost",
"UnitPrice": 28.8000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 576.0000,
"Freight": 36.7100
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Laura Callahan",
"OrderID": 10632,
"OrderDate": "1997-08-14T00:00:00Z",
"RequiredDate": "1997-09-11T00:00:00Z",
"ShippedDate": "1997-08-19T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 2,
"ProductName": "Chang",
"UnitPrice": 19.0000,
"Quantity": 30,
"Discount": 0.05,
"ExtendedPrice": 541.5000,
"Freight": 41.3800
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Laura Callahan",
"OrderID": 10632,
"OrderDate": "1997-08-14T00:00:00Z",
"RequiredDate": "1997-09-11T00:00:00Z",
"ShippedDate": "1997-08-19T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 33,
"ProductName": "Geitost",
"UnitPrice": 2.5000,
"Quantity": 20,
"Discount": 0.05,
"ExtendedPrice": 47.5000,
"Freight": 41.3800
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Laura Callahan",
"OrderID": 11046,
"OrderDate": "1998-04-23T00:00:00Z",
"RequiredDate": "1998-05-21T00:00:00Z",
"ShippedDate": "1998-04-24T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 12,
"ProductName": "Queso Manchego La Pastora",
"UnitPrice": 38.0000,
"Quantity": 20,
"Discount": 0.05,
"ExtendedPrice": 722.0000,
"Freight": 71.6400
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Laura Callahan",
"OrderID": 11046,
"OrderDate": "1998-04-23T00:00:00Z",
"RequiredDate": "1998-05-21T00:00:00Z",
"ShippedDate": "1998-04-24T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 32,
"ProductName": "Mascarpone Fabioli",
"UnitPrice": 32.0000,
"Quantity": 15,
"Discount": 0.05,
"ExtendedPrice": 456.0000,
"Freight": 71.6400
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Laura Callahan",
"OrderID": 11046,
"OrderDate": "1998-04-23T00:00:00Z",
"RequiredDate": "1998-05-21T00:00:00Z",
"ShippedDate": "1998-04-24T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 35,
"ProductName": "Steeleye Stout",
"UnitPrice": 18.0000,
"Quantity": 18,
"Discount": 0.05,
"ExtendedPrice": 307.8000,
"Freight": 71.6400
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Nancy Davolio",
"OrderID": 10668,
"OrderDate": "1997-09-15T00:00:00Z",
"RequiredDate": "1997-10-13T00:00:00Z",
"ShippedDate": "1997-09-23T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 31,
"ProductName": "Gorgonzola Telino",
"UnitPrice": 12.5000,
"Quantity": 8,
"Discount": 0.1,
"ExtendedPrice": 90.0000,
"Freight": 47.2200
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Nancy Davolio",
"OrderID": 10668,
"OrderDate": "1997-09-15T00:00:00Z",
"RequiredDate": "1997-10-13T00:00:00Z",
"ShippedDate": "1997-09-23T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 55,
"ProductName": "P\u00e2t\u00e9 chinois",
"UnitPrice": 24.0000,
"Quantity": 4,
"Discount": 0.1,
"ExtendedPrice": 86.4000,
"Freight": 47.2200
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Nancy Davolio",
"OrderID": 10668,
"OrderDate": "1997-09-15T00:00:00Z",
"RequiredDate": "1997-10-13T00:00:00Z",
"ShippedDate": "1997-09-23T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 64,
"ProductName": "Wimmers gute Semmelkn\u00f6del",
"UnitPrice": 33.2500,
"Quantity": 15,
"Discount": 0.1,
"ExtendedPrice": 448.8700,
"Freight": 47.2200
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Margaret Peacock",
"OrderID": 10348,
"OrderDate": "1996-11-07T00:00:00Z",
"RequiredDate": "1996-12-05T00:00:00Z",
"ShippedDate": "1996-11-15T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 1,
"ProductName": "Chai",
"UnitPrice": 14.4000,
"Quantity": 15,
"Discount": 0.15,
"ExtendedPrice": 183.6000,
"Freight": 0.7800
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Robert King",
"OrderID": 10513,
"OrderDate": "1997-04-22T00:00:00Z",
"RequiredDate": "1997-06-03T00:00:00Z",
"ShippedDate": "1997-04-28T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 21,
"ProductName": "Sir Rodney's Scones",
"UnitPrice": 10.0000,
"Quantity": 40,
"Discount": 0.2,
"ExtendedPrice": 320.0000,
"Freight": 105.6500
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Robert King",
"OrderID": 10513,
"OrderDate": "1997-04-22T00:00:00Z",
"RequiredDate": "1997-06-03T00:00:00Z",
"ShippedDate": "1997-04-28T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 32,
"ProductName": "Mascarpone Fabioli",
"UnitPrice": 32.0000,
"Quantity": 50,
"Discount": 0.2,
"ExtendedPrice": 1280.0000,
"Freight": 105.6500
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Robert King",
"OrderID": 10513,
"OrderDate": "1997-04-22T00:00:00Z",
"RequiredDate": "1997-06-03T00:00:00Z",
"ShippedDate": "1997-04-28T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 61,
"ProductName": "Sirop d'\u00e9rable",
"UnitPrice": 28.5000,
"Quantity": 15,
"Discount": 0.2,
"ExtendedPrice": 342.0000,
"Freight": 105.6500
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Margaret Peacock",
"OrderID": 10640,
"OrderDate": "1997-08-21T00:00:00Z",
"RequiredDate": "1997-09-18T00:00:00Z",
"ShippedDate": "1997-08-28T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 69,
"ProductName": "Gudbrandsdalsost",
"UnitPrice": 36.0000,
"Quantity": 20,
"Discount": 0.25,
"ExtendedPrice": 540.0000,
"Freight": 23.5500
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Margaret Peacock",
"OrderID": 10640,
"OrderDate": "1997-08-21T00:00:00Z",
"RequiredDate": "1997-09-18T00:00:00Z",
"ShippedDate": "1997-08-28T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 70,
"ProductName": "Outback Lager",
"UnitPrice": 15.0000,
"Quantity": 15,
"Discount": 0.25,
"ExtendedPrice": 168.7500,
"Freight": 23.5500
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Laura Callahan",
"OrderID": 10651,
"OrderDate": "1997-09-01T00:00:00Z",
"RequiredDate": "1997-09-29T00:00:00Z",
"ShippedDate": "1997-09-11T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 19,
"ProductName": "Teatime Chocolate Biscuits",
"UnitPrice": 9.2000,
"Quantity": 12,
"Discount": 0.25,
"ExtendedPrice": 82.8000,
"Freight": 20.6000
}, {
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany",
"CustomerID": "WANDK",
"CustomerName": "Die Wandernde Kuh",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Salesperson": "Laura Callahan",
"OrderID": 10651,
"OrderDate": "1997-09-01T00:00:00Z",
"RequiredDate": "1997-09-29T00:00:00Z",
"ShippedDate": "1997-09-11T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 22,
"ProductName": "Gustaf's Kn\u00e4ckebr\u00f6d",
"UnitPrice": 21.0000,
"Quantity": 20,
"Discount": 0.25,
"ExtendedPrice": 315.0000,
"Freight": 20.6000
}, {
"ShipName": "Drachenblut Delikatessen",
"ShipAddress": "Walserweg 21",
"ShipCity": "Aachen",
"ShipRegion": null,
"ShipPostalCode": "52066",
"ShipCountry": "Germany",
"CustomerID": "DRACD",
"CustomerName": "Drachenblut Delikatessen",
"Address": "Walserweg 21",
"City": "Aachen",
"Region": null,
"PostalCode": "52066",
"Country": "Germany",
"Salesperson": "Margaret Peacock",
"OrderID": 10363,
"OrderDate": "1996-11-26T00:00:00Z",
"RequiredDate": "1996-12-24T00:00:00Z",
"ShippedDate": "1996-12-04T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 31,
"ProductName": "Gorgonzola Telino",
"UnitPrice": 10.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 200.0000,
"Freight": 30.5400
}, {
"ShipName": "Drachenblut Delikatessen",
"ShipAddress": "Walserweg 21",
"ShipCity": "Aachen",
"ShipRegion": null,
"ShipPostalCode": "52066",
"ShipCountry": "Germany",
"CustomerID": "DRACD",
"CustomerName": "Drachenblut Delikatessen",
"Address": "Walserweg 21",
"City": "Aachen",
"Region": null,
"PostalCode": "52066",
"Country": "Germany",
"Salesperson": "Margaret Peacock",
"OrderID": 10363,
"OrderDate": "1996-11-26T00:00:00Z",
"RequiredDate": "1996-12-24T00:00:00Z",
"ShippedDate": "1996-12-04T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 75,
"ProductName": "Rh\u00f6nbr\u00e4u Klosterbier",
"UnitPrice": 6.2000,
"Quantity": 12,
"Discount": 0,
"ExtendedPrice": 74.4000,
"Freight": 30.5400
}, {
"ShipName": "Drachenblut Delikatessen",
"ShipAddress": "Walserweg 21",
"ShipCity": "Aachen",
"ShipRegion": null,
"ShipPostalCode": "52066",
"ShipCountry": "Germany",
"CustomerID": "DRACD",
"CustomerName": "Drachenblut Delikatessen",
"Address": "Walserweg 21",
"City": "Aachen",
"Region": null,
"PostalCode": "52066",
"Country": "Germany",
"Salesperson": "Margaret Peacock",
"OrderID": 10363,
"OrderDate": "1996-11-26T00:00:00Z",
"RequiredDate": "1996-12-24T00:00:00Z",
"ShippedDate": "1996-12-04T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 76,
"ProductName": "Lakkalik\u00f6\u00f6ri",
"UnitPrice": 14.4000,
"Quantity": 12,
"Discount": 0,
"ExtendedPrice": 172.8000,
"Freight": 30.5400
}, {
"ShipName": "Drachenblut Delikatessen",
"ShipAddress": "Walserweg 21",
"ShipCity": "Aachen",
"ShipRegion": null,
"ShipPostalCode": "52066",
"ShipCountry": "Germany",
"CustomerID": "DRACD",
"CustomerName": "Drachenblut Delikatessen",
"Address": "Walserweg 21",
"City": "Aachen",
"Region": null,
"PostalCode": "52066",
"Country": "Germany",
"Salesperson": "Janet Leverling",
"OrderID": 10391,
"OrderDate": "1996-12-23T00:00:00Z",
"RequiredDate": "1997-01-20T00:00:00Z",
"ShippedDate": "1996-12-31T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 13,
"ProductName": "Konbu",
"UnitPrice": 4.8000,
"Quantity": 18,
"Discount": 0,
"ExtendedPrice": 86.4000,
"Freight": 5.4500
}, {
"ShipName": "Drachenblut Delikatessen",
"ShipAddress": "Walserweg 21",
"ShipCity": "Aachen",
"ShipRegion": null,
"ShipPostalCode": "52066",
"ShipCountry": "Germany",
"CustomerID": "DRACD",
"CustomerName": "Drachenblut Delikatessen",
"Address": "Walserweg 21",
"City": "Aachen",
"Region": null,
"PostalCode": "52066",
"Country": "Germany",
"Salesperson": "Robert King",
"OrderID": 10797,
"OrderDate": "1997-12-25T00:00:00Z",
"RequiredDate": "1998-01-22T00:00:00Z",
"ShippedDate": "1998-01-05T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 11,
"ProductName": "Queso Cabrales",
"UnitPrice": 21.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 420.0000,
"Freight": 33.3500
}, {
"ShipName": "Drachenblut Delikatessen",
"ShipAddress": "Walserweg 21",
"ShipCity": "Aachen",
"ShipRegion": null,
"ShipPostalCode": "52066",
"ShipCountry": "Germany",
"CustomerID": "DRACD",
"CustomerName": "Drachenblut Delikatessen",
"Address": "Walserweg 21",
"City": "Aachen",
"Region": null,
"PostalCode": "52066",
"Country": "Germany",
"Salesperson": "Nancy Davolio",
"OrderID": 10825,
"OrderDate": "1998-01-09T00:00:00Z",
"RequiredDate": "1998-02-06T00:00:00Z",
"ShippedDate": "1998-01-14T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 26,
"ProductName": "Gumb\u00e4r Gummib\u00e4rchen",
"UnitPrice": 31.2300,
"Quantity": 12,
"Discount": 0,
"ExtendedPrice": 374.7600,
"Freight": 79.2500
}, {
"ShipName": "Drachenblut Delikatessen",
"ShipAddress": "Walserweg 21",
"ShipCity": "Aachen",
"ShipRegion": null,
"ShipPostalCode": "52066",
"ShipCountry": "Germany",
"CustomerID": "DRACD",
"CustomerName": "Drachenblut Delikatessen",
"Address": "Walserweg 21",
"City": "Aachen",
"Region": null,
"PostalCode": "52066",
"Country": "Germany",
"Salesperson": "Nancy Davolio",
"OrderID": 10825,
"OrderDate": "1998-01-09T00:00:00Z",
"RequiredDate": "1998-02-06T00:00:00Z",
"ShippedDate": "1998-01-14T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 53,
"ProductName": "Perth Pasties",
"UnitPrice": 32.8000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 656.0000,
"Freight": 79.2500
}, {
"ShipName": "Drachenblut Delikatessen",
"ShipAddress": "Walserweg 21",
"ShipCity": "Aachen",
"ShipRegion": null,
"ShipPostalCode": "52066",
"ShipCountry": "Germany",
"CustomerID": "DRACD",
"CustomerName": "Drachenblut Delikatessen",
"Address": "Walserweg 21",
"City": "Aachen",
"Region": null,
"PostalCode": "52066",
"Country": "Germany",
"Salesperson": "Laura Callahan",
"OrderID": 11036,
"OrderDate": "1998-04-20T00:00:00Z",
"RequiredDate": "1998-05-18T00:00:00Z",
"ShippedDate": "1998-04-22T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 13,
"ProductName": "Konbu",
"UnitPrice": 6.0000,
"Quantity": 7,
"Discount": 0,
"ExtendedPrice": 42.0000,
"Freight": 149.4700
}, {
"ShipName": "Drachenblut Delikatessen",
"ShipAddress": "Walserweg 21",
"ShipCity": "Aachen",
"ShipRegion": null,
"ShipPostalCode": "52066",
"ShipCountry": "Germany",
"CustomerID": "DRACD",
"CustomerName": "Drachenblut Delikatessen",
"Address": "Walserweg 21",
"City": "Aachen",
"Region": null,
"PostalCode": "52066",
"Country": "Germany",
"Salesperson": "Laura Callahan",
"OrderID": 11036,
"OrderDate": "1998-04-20T00:00:00Z",
"RequiredDate": "1998-05-18T00:00:00Z",
"ShippedDate": "1998-04-22T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 59,
"ProductName": "Raclette Courdavault",
"UnitPrice": 55.0000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 1650.0000,
"Freight": 149.4700
}, {
"ShipName": "Drachenblut Delikatessen",
"ShipAddress": "Walserweg 21",
"ShipCity": "Aachen",
"ShipRegion": null,
"ShipPostalCode": "52066",
"ShipCountry": "Germany",
"CustomerID": "DRACD",
"CustomerName": "Drachenblut Delikatessen",
"Address": "Walserweg 21",
"City": "Aachen",
"Region": null,
"PostalCode": "52066",
"Country": "Germany",
"Salesperson": "Nancy Davolio",
"OrderID": 11067,
"OrderDate": "1998-05-04T00:00:00Z",
"RequiredDate": "1998-05-18T00:00:00Z",
"ShippedDate": "1998-05-06T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 41,
"ProductName": "Jack's New England Clam Chowder",
"UnitPrice": 9.6500,
"Quantity": 9,
"Discount": 0,
"ExtendedPrice": 86.8500,
"Freight": 7.9800
}, {
"ShipName": "Du monde entier",
"ShipAddress": "67, rue des Cinquante Otages",
"ShipCity": "Nantes",
"ShipRegion": null,
"ShipPostalCode": "44000",
"ShipCountry": "France",
"CustomerID": "DUMON",
"CustomerName": "Du monde entier",
"Address": "67, rue des Cinquante Otages",
"City": "Nantes",
"Region": null,
"PostalCode": "44000",
"Country": "France",
"Salesperson": "Nancy Davolio",
"OrderID": 10311,
"OrderDate": "1996-09-20T00:00:00Z",
"RequiredDate": "1996-10-04T00:00:00Z",
"ShippedDate": "1996-09-26T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 42,
"ProductName": "Singaporean Hokkien Fried Mee",
"UnitPrice": 11.2000,
"Quantity": 6,
"Discount": 0,
"ExtendedPrice": 67.2000,
"Freight": 24.6900
}, {
"ShipName": "Du monde entier",
"ShipAddress": "67, rue des Cinquante Otages",
"ShipCity": "Nantes",
"ShipRegion": null,
"ShipPostalCode": "44000",
"ShipCountry": "France",
"CustomerID": "DUMON",
"CustomerName": "Du monde entier",
"Address": "67, rue des Cinquante Otages",
"City": "Nantes",
"Region": null,
"PostalCode": "44000",
"Country": "France",
"Salesperson": "Nancy Davolio",
"OrderID": 10311,
"OrderDate": "1996-09-20T00:00:00Z",
"RequiredDate": "1996-10-04T00:00:00Z",
"ShippedDate": "1996-09-26T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 69,
"ProductName": "Gudbrandsdalsost",
"UnitPrice": 28.8000,
"Quantity": 7,
"Discount": 0,
"ExtendedPrice": 201.6000,
"Freight": 24.6900
}, {
"ShipName": "Du monde entier",
"ShipAddress": "67, rue des Cinquante Otages",
"ShipCity": "Nantes",
"ShipRegion": null,
"ShipPostalCode": "44000",
"ShipCountry": "France",
"CustomerID": "DUMON",
"CustomerName": "Du monde entier",
"Address": "67, rue des Cinquante Otages",
"City": "Nantes",
"Region": null,
"PostalCode": "44000",
"Country": "France",
"Salesperson": "Robert King",
"OrderID": 10609,
"OrderDate": "1997-07-24T00:00:00Z",
"RequiredDate": "1997-08-21T00:00:00Z",
"ShippedDate": "1997-07-30T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 1,
"ProductName": "Chai",
"UnitPrice": 18.0000,
"Quantity": 3,
"Discount": 0,
"ExtendedPrice": 54.0000,
"Freight": 1.8500
}, {
"ShipName": "Du monde entier",
"ShipAddress": "67, rue des Cinquante Otages",
"ShipCity": "Nantes",
"ShipRegion": null,
"ShipPostalCode": "44000",
"ShipCountry": "France",
"CustomerID": "DUMON",
"CustomerName": "Du monde entier",
"Address": "67, rue des Cinquante Otages",
"City": "Nantes",
"Region": null,
"PostalCode": "44000",
"Country": "France",
"Salesperson": "Robert King",
"OrderID": 10609,
"OrderDate": "1997-07-24T00:00:00Z",
"RequiredDate": "1997-08-21T00:00:00Z",
"ShippedDate": "1997-07-30T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 10,
"ProductName": "Ikura",
"UnitPrice": 31.0000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 310.0000,
"Freight": 1.8500
}, {
"ShipName": "Du monde entier",
"ShipAddress": "67, rue des Cinquante Otages",
"ShipCity": "Nantes",
"ShipRegion": null,
"ShipPostalCode": "44000",
"ShipCountry": "France",
"CustomerID": "DUMON",
"CustomerName": "Du monde entier",
"Address": "67, rue des Cinquante Otages",
"City": "Nantes",
"Region": null,
"PostalCode": "44000",
"Country": "France",
"Salesperson": "Robert King",
"OrderID": 10609,
"OrderDate": "1997-07-24T00:00:00Z",
"RequiredDate": "1997-08-21T00:00:00Z",
"ShippedDate": "1997-07-30T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 21,
"ProductName": "Sir Rodney's Scones",
"UnitPrice": 10.0000,
"Quantity": 6,
"Discount": 0,
"ExtendedPrice": 60.0000,
"Freight": 1.8500
}, {
"ShipName": "Du monde entier",
"ShipAddress": "67, rue des Cinquante Otages",
"ShipCity": "Nantes",
"ShipRegion": null,
"ShipPostalCode": "44000",
"ShipCountry": "France",
"CustomerID": "DUMON",
"CustomerName": "Du monde entier",
"Address": "67, rue des Cinquante Otages",
"City": "Nantes",
"Region": null,
"PostalCode": "44000",
"Country": "France",
"Salesperson": "Andrew Fuller",
"OrderID": 10683,
"OrderDate": "1997-09-26T00:00:00Z",
"RequiredDate": "1997-10-24T00:00:00Z",
"ShippedDate": "1997-10-01T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 52,
"ProductName": "Filo Mix",
"UnitPrice": 7.0000,
"Quantity": 9,
"Discount": 0,
"ExtendedPrice": 63.0000,
"Freight": 4.4000
}, {
"ShipName": "Du monde entier",
"ShipAddress": "67, rue des Cinquante Otages",
"ShipCity": "Nantes",
"ShipRegion": null,
"ShipPostalCode": "44000",
"ShipCountry": "France",
"CustomerID": "DUMON",
"CustomerName": "Du monde entier",
"Address": "67, rue des Cinquante Otages",
"City": "Nantes",
"Region": null,
"PostalCode": "44000",
"Country": "France",
"Salesperson": "Robert King",
"OrderID": 10890,
"OrderDate": "1998-02-16T00:00:00Z",
"RequiredDate": "1998-03-16T00:00:00Z",
"ShippedDate": "1998-02-18T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 17,
"ProductName": "Alice Mutton",
"UnitPrice": 39.0000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 585.0000,
"Freight": 32.7600
}, {
"ShipName": "Du monde entier",
"ShipAddress": "67, rue des Cinquante Otages",
"ShipCity": "Nantes",
"ShipRegion": null,
"ShipPostalCode": "44000",
"ShipCountry": "France",
"CustomerID": "DUMON",
"CustomerName": "Du monde entier",
"Address": "67, rue des Cinquante Otages",
"City": "Nantes",
"Region": null,
"PostalCode": "44000",
"Country": "France",
"Salesperson": "Robert King",
"OrderID": 10890,
"OrderDate": "1998-02-16T00:00:00Z",
"RequiredDate": "1998-03-16T00:00:00Z",
"ShippedDate": "1998-02-18T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 34,
"ProductName": "Sasquatch Ale",
"UnitPrice": 14.0000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 140.0000,
"Freight": 32.7600
}, {
"ShipName": "Du monde entier",
"ShipAddress": "67, rue des Cinquante Otages",
"ShipCity": "Nantes",
"ShipRegion": null,
"ShipPostalCode": "44000",
"ShipCountry": "France",
"CustomerID": "DUMON",
"CustomerName": "Du monde entier",
"Address": "67, rue des Cinquante Otages",
"City": "Nantes",
"Region": null,
"PostalCode": "44000",
"Country": "France",
"Salesperson": "Robert King",
"OrderID": 10890,
"OrderDate": "1998-02-16T00:00:00Z",
"RequiredDate": "1998-03-16T00:00:00Z",
"ShippedDate": "1998-02-18T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 41,
"ProductName": "Jack's New England Clam Chowder",
"UnitPrice": 9.6500,
"Quantity": 14,
"Discount": 0,
"ExtendedPrice": 135.1000,
"Freight": 32.7600
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Nancy Davolio",
"OrderID": 10364,
"OrderDate": "1996-11-26T00:00:00Z",
"RequiredDate": "1997-01-07T00:00:00Z",
"ShippedDate": "1996-12-04T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 69,
"ProductName": "Gudbrandsdalsost",
"UnitPrice": 28.8000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 864.0000,
"Freight": 71.9700
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Nancy Davolio",
"OrderID": 10364,
"OrderDate": "1996-11-26T00:00:00Z",
"RequiredDate": "1997-01-07T00:00:00Z",
"ShippedDate": "1996-12-04T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 71,
"ProductName": "Flotemysost",
"UnitPrice": 17.2000,
"Quantity": 5,
"Discount": 0,
"ExtendedPrice": 86.0000,
"Freight": 71.9700
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Nancy Davolio",
"OrderID": 10400,
"OrderDate": "1997-01-01T00:00:00Z",
"RequiredDate": "1997-01-29T00:00:00Z",
"ShippedDate": "1997-01-16T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 29,
"ProductName": "Th\u00fcringer Rostbratwurst",
"UnitPrice": 99.0000,
"Quantity": 21,
"Discount": 0,
"ExtendedPrice": 2079.0000,
"Freight": 83.9300
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Nancy Davolio",
"OrderID": 10400,
"OrderDate": "1997-01-01T00:00:00Z",
"RequiredDate": "1997-01-29T00:00:00Z",
"ShippedDate": "1997-01-16T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 35,
"ProductName": "Steeleye Stout",
"UnitPrice": 14.4000,
"Quantity": 35,
"Discount": 0,
"ExtendedPrice": 504.0000,
"Freight": 83.9300
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Nancy Davolio",
"OrderID": 10400,
"OrderDate": "1997-01-01T00:00:00Z",
"RequiredDate": "1997-01-29T00:00:00Z",
"ShippedDate": "1997-01-16T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 49,
"ProductName": "Maxilaku",
"UnitPrice": 16.0000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 480.0000,
"Freight": 83.9300
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Robert King",
"OrderID": 10532,
"OrderDate": "1997-05-09T00:00:00Z",
"RequiredDate": "1997-06-06T00:00:00Z",
"ShippedDate": "1997-05-12T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 30,
"ProductName": "Nord-Ost Matjeshering",
"UnitPrice": 25.8900,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 388.3500,
"Freight": 74.4600
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Robert King",
"OrderID": 10532,
"OrderDate": "1997-05-09T00:00:00Z",
"RequiredDate": "1997-06-06T00:00:00Z",
"ShippedDate": "1997-05-12T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 66,
"ProductName": "Louisiana Hot Spiced Okra",
"UnitPrice": 17.0000,
"Quantity": 24,
"Discount": 0,
"ExtendedPrice": 408.0000,
"Freight": 74.4600
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 10726,
"OrderDate": "1997-11-03T00:00:00Z",
"RequiredDate": "1997-11-17T00:00:00Z",
"ShippedDate": "1997-12-05T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 4,
"ProductName": "Chef Anton's Cajun Seasoning",
"UnitPrice": 22.0000,
"Quantity": 25,
"Discount": 0,
"ExtendedPrice": 550.0000,
"Freight": 16.5600
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 10726,
"OrderDate": "1997-11-03T00:00:00Z",
"RequiredDate": "1997-11-17T00:00:00Z",
"ShippedDate": "1997-12-05T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 11,
"ProductName": "Queso Cabrales",
"UnitPrice": 21.0000,
"Quantity": 5,
"Discount": 0,
"ExtendedPrice": 105.0000,
"Freight": 16.5600
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Laura Callahan",
"OrderID": 10987,
"OrderDate": "1998-03-31T00:00:00Z",
"RequiredDate": "1998-04-28T00:00:00Z",
"ShippedDate": "1998-04-06T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 7,
"ProductName": "Uncle Bob's Organic Dried Pears",
"UnitPrice": 30.0000,
"Quantity": 60,
"Discount": 0,
"ExtendedPrice": 1800.0000,
"Freight": 185.4800
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Laura Callahan",
"OrderID": 10987,
"OrderDate": "1998-03-31T00:00:00Z",
"RequiredDate": "1998-04-28T00:00:00Z",
"ShippedDate": "1998-04-06T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 43,
"ProductName": "Ipoh Coffee",
"UnitPrice": 46.0000,
"Quantity": 6,
"Discount": 0,
"ExtendedPrice": 276.0000,
"Freight": 185.4800
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Laura Callahan",
"OrderID": 10987,
"OrderDate": "1998-03-31T00:00:00Z",
"RequiredDate": "1998-04-28T00:00:00Z",
"ShippedDate": "1998-04-06T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 72,
"ProductName": "Mozzarella di Giovanni",
"UnitPrice": 34.8000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 696.0000,
"Freight": 185.4800
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 11024,
"OrderDate": "1998-04-15T00:00:00Z",
"RequiredDate": "1998-05-13T00:00:00Z",
"ShippedDate": "1998-04-20T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 26,
"ProductName": "Gumb\u00e4r Gummib\u00e4rchen",
"UnitPrice": 31.2300,
"Quantity": 12,
"Discount": 0,
"ExtendedPrice": 374.7600,
"Freight": 74.3600
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 11024,
"OrderDate": "1998-04-15T00:00:00Z",
"RequiredDate": "1998-05-13T00:00:00Z",
"ShippedDate": "1998-04-20T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 33,
"ProductName": "Geitost",
"UnitPrice": 2.5000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 75.0000,
"Freight": 74.3600
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 11024,
"OrderDate": "1998-04-15T00:00:00Z",
"RequiredDate": "1998-05-13T00:00:00Z",
"ShippedDate": "1998-04-20T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 65,
"ProductName": "Louisiana Fiery Hot Pepper Sauce",
"UnitPrice": 21.0500,
"Quantity": 21,
"Discount": 0,
"ExtendedPrice": 442.0500,
"Freight": 74.3600
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Margaret Peacock",
"OrderID": 11024,
"OrderDate": "1998-04-15T00:00:00Z",
"RequiredDate": "1998-05-13T00:00:00Z",
"ShippedDate": "1998-04-20T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 71,
"ProductName": "Flotemysost",
"UnitPrice": 21.5000,
"Quantity": 50,
"Discount": 0,
"ExtendedPrice": 1075.0000,
"Freight": 74.3600
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Laura Callahan",
"OrderID": 11056,
"OrderDate": "1998-04-28T00:00:00Z",
"RequiredDate": "1998-05-12T00:00:00Z",
"ShippedDate": "1998-05-01T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 7,
"ProductName": "Uncle Bob's Organic Dried Pears",
"UnitPrice": 30.0000,
"Quantity": 40,
"Discount": 0,
"ExtendedPrice": 1200.0000,
"Freight": 278.9600
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Laura Callahan",
"OrderID": 11056,
"OrderDate": "1998-04-28T00:00:00Z",
"RequiredDate": "1998-05-12T00:00:00Z",
"ShippedDate": "1998-05-01T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 55,
"ProductName": "P\u00e2t\u00e9 chinois",
"UnitPrice": 24.0000,
"Quantity": 35,
"Discount": 0,
"ExtendedPrice": 840.0000,
"Freight": 278.9600
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Laura Callahan",
"OrderID": 11056,
"OrderDate": "1998-04-28T00:00:00Z",
"RequiredDate": "1998-05-12T00:00:00Z",
"ShippedDate": "1998-05-01T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 60,
"ProductName": "Camembert Pierrot",
"UnitPrice": 34.0000,
"Quantity": 50,
"Discount": 0,
"ExtendedPrice": 1700.0000,
"Freight": 278.9600
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Robert King",
"OrderID": 11047,
"OrderDate": "1998-04-24T00:00:00Z",
"RequiredDate": "1998-05-22T00:00:00Z",
"ShippedDate": "1998-05-01T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 1,
"ProductName": "Chai",
"UnitPrice": 18.0000,
"Quantity": 25,
"Discount": 0.25,
"ExtendedPrice": 337.5000,
"Freight": 46.6200
}, {
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK",
"CustomerID": "EASTC",
"CustomerName": "Eastern Connection",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Salesperson": "Robert King",
"OrderID": 11047,
"OrderDate": "1998-04-24T00:00:00Z",
"RequiredDate": "1998-05-22T00:00:00Z",
"ShippedDate": "1998-05-01T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 5,
"ProductName": "Chef Anton's Gumbo Mix",
"UnitPrice": 21.3500,
"Quantity": 30,
"Discount": 0.25,
"ExtendedPrice": 480.3800,
"Freight": 46.6200
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Anne Dodsworth",
"OrderID": 10263,
"OrderDate": "1996-07-23T00:00:00Z",
"RequiredDate": "1996-08-20T00:00:00Z",
"ShippedDate": "1996-07-31T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 24,
"ProductName": "Guaran\u00e1 Fant\u00e1stica",
"UnitPrice": 3.6000,
"Quantity": 28,
"Discount": 0,
"ExtendedPrice": 100.8000,
"Freight": 146.0600
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10351,
"OrderDate": "1996-11-11T00:00:00Z",
"RequiredDate": "1996-12-09T00:00:00Z",
"ShippedDate": "1996-11-20T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 41,
"ProductName": "Jack's New England Clam Chowder",
"UnitPrice": 7.7000,
"Quantity": 13,
"Discount": 0,
"ExtendedPrice": 100.1000,
"Freight": 162.3300
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Andrew Fuller",
"OrderID": 10368,
"OrderDate": "1996-11-29T00:00:00Z",
"RequiredDate": "1996-12-27T00:00:00Z",
"ShippedDate": "1996-12-02T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 57,
"ProductName": "Ravioli Angelo",
"UnitPrice": 15.6000,
"Quantity": 25,
"Discount": 0,
"ExtendedPrice": 390.0000,
"Freight": 101.9500
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10382,
"OrderDate": "1996-12-13T00:00:00Z",
"RequiredDate": "1997-01-10T00:00:00Z",
"ShippedDate": "1996-12-16T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 5,
"ProductName": "Chef Anton's Gumbo Mix",
"UnitPrice": 17.0000,
"Quantity": 32,
"Discount": 0,
"ExtendedPrice": 544.0000,
"Freight": 94.7700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10382,
"OrderDate": "1996-12-13T00:00:00Z",
"RequiredDate": "1997-01-10T00:00:00Z",
"ShippedDate": "1996-12-16T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 18,
"ProductName": "Carnarvon Tigers",
"UnitPrice": 50.0000,
"Quantity": 9,
"Discount": 0,
"ExtendedPrice": 450.0000,
"Freight": 94.7700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10382,
"OrderDate": "1996-12-13T00:00:00Z",
"RequiredDate": "1997-01-10T00:00:00Z",
"ShippedDate": "1996-12-16T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 29,
"ProductName": "Th\u00fcringer Rostbratwurst",
"UnitPrice": 99.0000,
"Quantity": 14,
"Discount": 0,
"ExtendedPrice": 1386.0000,
"Freight": 94.7700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10382,
"OrderDate": "1996-12-13T00:00:00Z",
"RequiredDate": "1997-01-10T00:00:00Z",
"ShippedDate": "1996-12-16T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 33,
"ProductName": "Geitost",
"UnitPrice": 2.0000,
"Quantity": 60,
"Discount": 0,
"ExtendedPrice": 120.0000,
"Freight": 94.7700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10382,
"OrderDate": "1996-12-13T00:00:00Z",
"RequiredDate": "1997-01-10T00:00:00Z",
"ShippedDate": "1996-12-16T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 74,
"ProductName": "Longlife Tofu",
"UnitPrice": 8.0000,
"Quantity": 50,
"Discount": 0,
"ExtendedPrice": 400.0000,
"Freight": 94.7700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Michael Suyama",
"OrderID": 10390,
"OrderDate": "1996-12-23T00:00:00Z",
"RequiredDate": "1997-01-20T00:00:00Z",
"ShippedDate": "1996-12-26T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 46,
"ProductName": "Spegesild",
"UnitPrice": 9.6000,
"Quantity": 45,
"Discount": 0,
"ExtendedPrice": 432.0000,
"Freight": 126.3800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Laura Callahan",
"OrderID": 10402,
"OrderDate": "1997-01-02T00:00:00Z",
"RequiredDate": "1997-02-13T00:00:00Z",
"ShippedDate": "1997-01-10T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 23,
"ProductName": "Tunnbr\u00f6d",
"UnitPrice": 7.2000,
"Quantity": 60,
"Discount": 0,
"ExtendedPrice": 432.0000,
"Freight": 67.8800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Laura Callahan",
"OrderID": 10402,
"OrderDate": "1997-01-02T00:00:00Z",
"RequiredDate": "1997-02-13T00:00:00Z",
"ShippedDate": "1997-01-10T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 63,
"ProductName": "Vegie-spread",
"UnitPrice": 35.1000,
"Quantity": 65,
"Discount": 0,
"ExtendedPrice": 2281.5000,
"Freight": 67.8800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10430,
"OrderDate": "1997-01-30T00:00:00Z",
"RequiredDate": "1997-02-13T00:00:00Z",
"ShippedDate": "1997-02-03T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 21,
"ProductName": "Sir Rodney's Scones",
"UnitPrice": 8.0000,
"Quantity": 50,
"Discount": 0,
"ExtendedPrice": 400.0000,
"Freight": 458.7800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10430,
"OrderDate": "1997-01-30T00:00:00Z",
"RequiredDate": "1997-02-13T00:00:00Z",
"ShippedDate": "1997-02-03T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 56,
"ProductName": "Gnocchi di nonna Alice",
"UnitPrice": 30.4000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 912.0000,
"Freight": 458.7800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Janet Leverling",
"OrderID": 10442,
"OrderDate": "1997-02-11T00:00:00Z",
"RequiredDate": "1997-03-11T00:00:00Z",
"ShippedDate": "1997-02-18T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 11,
"ProductName": "Queso Cabrales",
"UnitPrice": 16.8000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 504.0000,
"Freight": 47.9400
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Janet Leverling",
"OrderID": 10442,
"OrderDate": "1997-02-11T00:00:00Z",
"RequiredDate": "1997-03-11T00:00:00Z",
"ShippedDate": "1997-02-18T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 54,
"ProductName": "Tourti\u00e8re",
"UnitPrice": 5.9000,
"Quantity": 80,
"Discount": 0,
"ExtendedPrice": 472.0000,
"Freight": 47.9400
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Janet Leverling",
"OrderID": 10442,
"OrderDate": "1997-02-11T00:00:00Z",
"RequiredDate": "1997-03-11T00:00:00Z",
"ShippedDate": "1997-02-18T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 66,
"ProductName": "Louisiana Hot Spiced Okra",
"UnitPrice": 13.6000,
"Quantity": 60,
"Discount": 0,
"ExtendedPrice": 816.0000,
"Freight": 47.9400
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Janet Leverling",
"OrderID": 10514,
"OrderDate": "1997-04-22T00:00:00Z",
"RequiredDate": "1997-05-20T00:00:00Z",
"ShippedDate": "1997-05-16T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 20,
"ProductName": "Sir Rodney's Marmalade",
"UnitPrice": 81.0000,
"Quantity": 39,
"Discount": 0,
"ExtendedPrice": 3159.0000,
"Freight": 789.9500
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Janet Leverling",
"OrderID": 10514,
"OrderDate": "1997-04-22T00:00:00Z",
"RequiredDate": "1997-05-20T00:00:00Z",
"ShippedDate": "1997-05-16T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 28,
"ProductName": "R\u00f6ssle Sauerkraut",
"UnitPrice": 45.6000,
"Quantity": 35,
"Discount": 0,
"ExtendedPrice": 1596.0000,
"Freight": 789.9500
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Janet Leverling",
"OrderID": 10514,
"OrderDate": "1997-04-22T00:00:00Z",
"RequiredDate": "1997-05-20T00:00:00Z",
"ShippedDate": "1997-05-16T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 56,
"ProductName": "Gnocchi di nonna Alice",
"UnitPrice": 38.0000,
"Quantity": 70,
"Discount": 0,
"ExtendedPrice": 2660.0000,
"Freight": 789.9500
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Janet Leverling",
"OrderID": 10514,
"OrderDate": "1997-04-22T00:00:00Z",
"RequiredDate": "1997-05-20T00:00:00Z",
"ShippedDate": "1997-05-16T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 65,
"ProductName": "Louisiana Fiery Hot Pepper Sauce",
"UnitPrice": 21.0500,
"Quantity": 39,
"Discount": 0,
"ExtendedPrice": 820.9500,
"Freight": 789.9500
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Janet Leverling",
"OrderID": 10514,
"OrderDate": "1997-04-22T00:00:00Z",
"RequiredDate": "1997-05-20T00:00:00Z",
"ShippedDate": "1997-05-16T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 75,
"ProductName": "Rh\u00f6nbr\u00e4u Klosterbier",
"UnitPrice": 7.7500,
"Quantity": 50,
"Discount": 0,
"ExtendedPrice": 387.5000,
"Freight": 789.9500
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10698,
"OrderDate": "1997-10-09T00:00:00Z",
"RequiredDate": "1997-11-06T00:00:00Z",
"ShippedDate": "1997-10-17T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 11,
"ProductName": "Queso Cabrales",
"UnitPrice": 21.0000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 315.0000,
"Freight": 272.4700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Anne Dodsworth",
"OrderID": 10771,
"OrderDate": "1997-12-10T00:00:00Z",
"RequiredDate": "1998-01-07T00:00:00Z",
"ShippedDate": "1998-01-02T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 71,
"ProductName": "Flotemysost",
"UnitPrice": 21.5000,
"Quantity": 16,
"Discount": 0,
"ExtendedPrice": 344.0000,
"Freight": 11.1900
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10773,
"OrderDate": "1997-12-11T00:00:00Z",
"RequiredDate": "1998-01-08T00:00:00Z",
"ShippedDate": "1997-12-16T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 17,
"ProductName": "Alice Mutton",
"UnitPrice": 39.0000,
"Quantity": 33,
"Discount": 0,
"ExtendedPrice": 1287.0000,
"Freight": 96.4300
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Laura Callahan",
"OrderID": 10795,
"OrderDate": "1997-12-24T00:00:00Z",
"RequiredDate": "1998-01-21T00:00:00Z",
"ShippedDate": "1998-01-20T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 16,
"ProductName": "Pavlova",
"UnitPrice": 17.4500,
"Quantity": 65,
"Discount": 0,
"ExtendedPrice": 1134.2500,
"Freight": 126.6600
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Robert King",
"OrderID": 10836,
"OrderDate": "1998-01-16T00:00:00Z",
"RequiredDate": "1998-02-13T00:00:00Z",
"ShippedDate": "1998-01-21T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 22,
"ProductName": "Gustaf's Kn\u00e4ckebr\u00f6d",
"UnitPrice": 21.0000,
"Quantity": 52,
"Discount": 0,
"ExtendedPrice": 1092.0000,
"Freight": 411.8800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Robert King",
"OrderID": 10836,
"OrderDate": "1998-01-16T00:00:00Z",
"RequiredDate": "1998-02-13T00:00:00Z",
"ShippedDate": "1998-01-21T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 35,
"ProductName": "Steeleye Stout",
"UnitPrice": 18.0000,
"Quantity": 6,
"Discount": 0,
"ExtendedPrice": 108.0000,
"Freight": 411.8800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Robert King",
"OrderID": 10836,
"OrderDate": "1998-01-16T00:00:00Z",
"RequiredDate": "1998-02-13T00:00:00Z",
"ShippedDate": "1998-01-21T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 57,
"ProductName": "Ravioli Angelo",
"UnitPrice": 19.5000,
"Quantity": 24,
"Discount": 0,
"ExtendedPrice": 468.0000,
"Freight": 411.8800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Robert King",
"OrderID": 10836,
"OrderDate": "1998-01-16T00:00:00Z",
"RequiredDate": "1998-02-13T00:00:00Z",
"ShippedDate": "1998-01-21T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 60,
"ProductName": "Camembert Pierrot",
"UnitPrice": 34.0000,
"Quantity": 60,
"Discount": 0,
"ExtendedPrice": 2040.0000,
"Freight": 411.8800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Robert King",
"OrderID": 10836,
"OrderDate": "1998-01-16T00:00:00Z",
"RequiredDate": "1998-02-13T00:00:00Z",
"ShippedDate": "1998-01-21T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 64,
"ProductName": "Wimmers gute Semmelkn\u00f6del",
"UnitPrice": 33.2500,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 997.5000,
"Freight": 411.8800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Janet Leverling",
"OrderID": 10895,
"OrderDate": "1998-02-18T00:00:00Z",
"RequiredDate": "1998-03-18T00:00:00Z",
"ShippedDate": "1998-02-23T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 24,
"ProductName": "Guaran\u00e1 Fant\u00e1stica",
"UnitPrice": 4.5000,
"Quantity": 110,
"Discount": 0,
"ExtendedPrice": 495.0000,
"Freight": 162.7500
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Janet Leverling",
"OrderID": 10895,
"OrderDate": "1998-02-18T00:00:00Z",
"RequiredDate": "1998-03-18T00:00:00Z",
"ShippedDate": "1998-02-23T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 39,
"ProductName": "Chartreuse verte",
"UnitPrice": 18.0000,
"Quantity": 45,
"Discount": 0,
"ExtendedPrice": 810.0000,
"Freight": 162.7500
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Janet Leverling",
"OrderID": 10895,
"OrderDate": "1998-02-18T00:00:00Z",
"RequiredDate": "1998-03-18T00:00:00Z",
"ShippedDate": "1998-02-23T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 40,
"ProductName": "Boston Crab Meat",
"UnitPrice": 18.4000,
"Quantity": 91,
"Discount": 0,
"ExtendedPrice": 1674.4000,
"Freight": 162.7500
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Janet Leverling",
"OrderID": 10895,
"OrderDate": "1998-02-18T00:00:00Z",
"RequiredDate": "1998-03-18T00:00:00Z",
"ShippedDate": "1998-02-23T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 60,
"ProductName": "Camembert Pierrot",
"UnitPrice": 34.0000,
"Quantity": 100,
"Discount": 0,
"ExtendedPrice": 3400.0000,
"Freight": 162.7500
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10968,
"OrderDate": "1998-03-23T00:00:00Z",
"RequiredDate": "1998-04-20T00:00:00Z",
"ShippedDate": "1998-04-01T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 12,
"ProductName": "Queso Manchego La Pastora",
"UnitPrice": 38.0000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 1140.0000,
"Freight": 74.6000
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10968,
"OrderDate": "1998-03-23T00:00:00Z",
"RequiredDate": "1998-04-20T00:00:00Z",
"ShippedDate": "1998-04-01T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 24,
"ProductName": "Guaran\u00e1 Fant\u00e1stica",
"UnitPrice": 4.5000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 135.0000,
"Freight": 74.6000
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10968,
"OrderDate": "1998-03-23T00:00:00Z",
"RequiredDate": "1998-04-20T00:00:00Z",
"ShippedDate": "1998-04-01T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 64,
"ProductName": "Wimmers gute Semmelkn\u00f6del",
"UnitPrice": 33.2500,
"Quantity": 4,
"Discount": 0,
"ExtendedPrice": 133.0000,
"Freight": 74.6000
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Laura Callahan",
"OrderID": 10979,
"OrderDate": "1998-03-26T00:00:00Z",
"RequiredDate": "1998-04-23T00:00:00Z",
"ShippedDate": "1998-03-31T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 7,
"ProductName": "Uncle Bob's Organic Dried Pears",
"UnitPrice": 30.0000,
"Quantity": 18,
"Discount": 0,
"ExtendedPrice": 540.0000,
"Freight": 353.0700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Laura Callahan",
"OrderID": 10979,
"OrderDate": "1998-03-26T00:00:00Z",
"RequiredDate": "1998-04-23T00:00:00Z",
"ShippedDate": "1998-03-31T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 12,
"ProductName": "Queso Manchego La Pastora",
"UnitPrice": 38.0000,
"Quantity": 20,
"Discount": 0,
"ExtendedPrice": 760.0000,
"Freight": 353.0700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Laura Callahan",
"OrderID": 10979,
"OrderDate": "1998-03-26T00:00:00Z",
"RequiredDate": "1998-04-23T00:00:00Z",
"ShippedDate": "1998-03-31T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 24,
"ProductName": "Guaran\u00e1 Fant\u00e1stica",
"UnitPrice": 4.5000,
"Quantity": 80,
"Discount": 0,
"ExtendedPrice": 360.0000,
"Freight": 353.0700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Laura Callahan",
"OrderID": 10979,
"OrderDate": "1998-03-26T00:00:00Z",
"RequiredDate": "1998-04-23T00:00:00Z",
"ShippedDate": "1998-03-31T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 27,
"ProductName": "Schoggi Schokolade",
"UnitPrice": 43.9000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 1317.0000,
"Freight": 353.0700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Laura Callahan",
"OrderID": 10979,
"OrderDate": "1998-03-26T00:00:00Z",
"RequiredDate": "1998-04-23T00:00:00Z",
"ShippedDate": "1998-03-31T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 31,
"ProductName": "Gorgonzola Telino",
"UnitPrice": 12.5000,
"Quantity": 24,
"Discount": 0,
"ExtendedPrice": 300.0000,
"Freight": 353.0700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Laura Callahan",
"OrderID": 10979,
"OrderDate": "1998-03-26T00:00:00Z",
"RequiredDate": "1998-04-23T00:00:00Z",
"ShippedDate": "1998-03-31T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 63,
"ProductName": "Vegie-spread",
"UnitPrice": 43.9000,
"Quantity": 35,
"Discount": 0,
"ExtendedPrice": 1536.5000,
"Freight": 353.0700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Andrew Fuller",
"OrderID": 10990,
"OrderDate": "1998-04-01T00:00:00Z",
"RequiredDate": "1998-05-13T00:00:00Z",
"ShippedDate": "1998-04-07T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 21,
"ProductName": "Sir Rodney's Scones",
"UnitPrice": 10.0000,
"Quantity": 65,
"Discount": 0,
"ExtendedPrice": 650.0000,
"Freight": 117.6100
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Robert King",
"OrderID": 11008,
"OrderDate": "1998-04-08T00:00:00Z",
"RequiredDate": "1998-05-06T00:00:00Z",
"ShippedDate": null,
"ShipperName": "Federal Shipping",
"ProductID": 71,
"ProductName": "Flotemysost",
"UnitPrice": 21.5000,
"Quantity": 21,
"Discount": 0,
"ExtendedPrice": 451.5000,
"Freight": 79.4600
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Anne Dodsworth",
"OrderID": 11017,
"OrderDate": "1998-04-13T00:00:00Z",
"RequiredDate": "1998-05-11T00:00:00Z",
"ShippedDate": "1998-04-20T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 3,
"ProductName": "Aniseed Syrup",
"UnitPrice": 10.0000,
"Quantity": 25,
"Discount": 0,
"ExtendedPrice": 250.0000,
"Freight": 754.2600
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Anne Dodsworth",
"OrderID": 11017,
"OrderDate": "1998-04-13T00:00:00Z",
"RequiredDate": "1998-05-11T00:00:00Z",
"ShippedDate": "1998-04-20T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 59,
"ProductName": "Raclette Courdavault",
"UnitPrice": 55.0000,
"Quantity": 110,
"Discount": 0,
"ExtendedPrice": 6050.0000,
"Freight": 754.2600
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Anne Dodsworth",
"OrderID": 11017,
"OrderDate": "1998-04-13T00:00:00Z",
"RequiredDate": "1998-05-11T00:00:00Z",
"ShippedDate": "1998-04-20T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 70,
"ProductName": "Outback Lager",
"UnitPrice": 15.0000,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 450.0000,
"Freight": 754.2600
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 11072,
"OrderDate": "1998-05-05T00:00:00Z",
"RequiredDate": "1998-06-02T00:00:00Z",
"ShippedDate": null,
"ShipperName": "United Package",
"ProductID": 2,
"ProductName": "Chang",
"UnitPrice": 19.0000,
"Quantity": 8,
"Discount": 0,
"ExtendedPrice": 152.0000,
"Freight": 258.6400
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 11072,
"OrderDate": "1998-05-05T00:00:00Z",
"RequiredDate": "1998-06-02T00:00:00Z",
"ShippedDate": null,
"ShipperName": "United Package",
"ProductID": 41,
"ProductName": "Jack's New England Clam Chowder",
"UnitPrice": 9.6500,
"Quantity": 40,
"Discount": 0,
"ExtendedPrice": 386.0000,
"Freight": 258.6400
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 11072,
"OrderDate": "1998-05-05T00:00:00Z",
"RequiredDate": "1998-06-02T00:00:00Z",
"ShippedDate": null,
"ShipperName": "United Package",
"ProductID": 50,
"ProductName": "Valkoinen suklaa",
"UnitPrice": 16.2500,
"Quantity": 22,
"Discount": 0,
"ExtendedPrice": 357.5000,
"Freight": 258.6400
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 11072,
"OrderDate": "1998-05-05T00:00:00Z",
"RequiredDate": "1998-06-02T00:00:00Z",
"ShippedDate": null,
"ShipperName": "United Package",
"ProductID": 64,
"ProductName": "Wimmers gute Semmelkn\u00f6del",
"UnitPrice": 33.2500,
"Quantity": 130,
"Discount": 0,
"ExtendedPrice": 4322.5000,
"Freight": 258.6400
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10351,
"OrderDate": "1996-11-11T00:00:00Z",
"RequiredDate": "1996-12-09T00:00:00Z",
"ShippedDate": "1996-11-20T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 38,
"ProductName": "C\u00f4te de Blaye",
"UnitPrice": 210.8000,
"Quantity": 20,
"Discount": 0.05,
"ExtendedPrice": 4005.2000,
"Freight": 162.3300
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10351,
"OrderDate": "1996-11-11T00:00:00Z",
"RequiredDate": "1996-12-09T00:00:00Z",
"ShippedDate": "1996-11-20T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 44,
"ProductName": "Gula Malacca",
"UnitPrice": 15.5000,
"Quantity": 77,
"Discount": 0.05,
"ExtendedPrice": 1133.8200,
"Freight": 162.3300
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10351,
"OrderDate": "1996-11-11T00:00:00Z",
"RequiredDate": "1996-12-09T00:00:00Z",
"ShippedDate": "1996-11-20T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 65,
"ProductName": "Louisiana Fiery Hot Pepper Sauce",
"UnitPrice": 16.8000,
"Quantity": 10,
"Discount": 0.05,
"ExtendedPrice": 159.6000,
"Freight": 162.3300
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10698,
"OrderDate": "1997-10-09T00:00:00Z",
"RequiredDate": "1997-11-06T00:00:00Z",
"ShippedDate": "1997-10-17T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 17,
"ProductName": "Alice Mutton",
"UnitPrice": 39.0000,
"Quantity": 8,
"Discount": 0.05,
"ExtendedPrice": 296.4000,
"Freight": 272.4700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10698,
"OrderDate": "1997-10-09T00:00:00Z",
"RequiredDate": "1997-11-06T00:00:00Z",
"ShippedDate": "1997-10-17T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 29,
"ProductName": "Th\u00fcringer Rostbratwurst",
"UnitPrice": 123.7900,
"Quantity": 12,
"Discount": 0.05,
"ExtendedPrice": 1411.2100,
"Freight": 272.4700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10698,
"OrderDate": "1997-10-09T00:00:00Z",
"RequiredDate": "1997-11-06T00:00:00Z",
"ShippedDate": "1997-10-17T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 65,
"ProductName": "Louisiana Fiery Hot Pepper Sauce",
"UnitPrice": 21.0500,
"Quantity": 65,
"Discount": 0.05,
"ExtendedPrice": 1299.8400,
"Freight": 272.4700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10698,
"OrderDate": "1997-10-09T00:00:00Z",
"RequiredDate": "1997-11-06T00:00:00Z",
"ShippedDate": "1997-10-17T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 70,
"ProductName": "Outback Lager",
"UnitPrice": 15.0000,
"Quantity": 8,
"Discount": 0.05,
"ExtendedPrice": 114.0000,
"Freight": 272.4700
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10776,
"OrderDate": "1997-12-15T00:00:00Z",
"RequiredDate": "1998-01-12T00:00:00Z",
"ShippedDate": "1997-12-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 31,
"ProductName": "Gorgonzola Telino",
"UnitPrice": 12.5000,
"Quantity": 16,
"Discount": 0.05,
"ExtendedPrice": 190.0000,
"Freight": 351.5300
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10776,
"OrderDate": "1997-12-15T00:00:00Z",
"RequiredDate": "1998-01-12T00:00:00Z",
"ShippedDate": "1997-12-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 42,
"ProductName": "Singaporean Hokkien Fried Mee",
"UnitPrice": 14.0000,
"Quantity": 12,
"Discount": 0.05,
"ExtendedPrice": 159.6000,
"Freight": 351.5300
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10776,
"OrderDate": "1997-12-15T00:00:00Z",
"RequiredDate": "1998-01-12T00:00:00Z",
"ShippedDate": "1997-12-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 45,
"ProductName": "Rogede sild",
"UnitPrice": 9.5000,
"Quantity": 27,
"Discount": 0.05,
"ExtendedPrice": 243.6700,
"Freight": 351.5300
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10776,
"OrderDate": "1997-12-15T00:00:00Z",
"RequiredDate": "1998-01-12T00:00:00Z",
"ShippedDate": "1997-12-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 51,
"ProductName": "Manjimup Dried Apples",
"UnitPrice": 53.0000,
"Quantity": 120,
"Discount": 0.05,
"ExtendedPrice": 6042.0000,
"Freight": 351.5300
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Robert King",
"OrderID": 11008,
"OrderDate": "1998-04-08T00:00:00Z",
"RequiredDate": "1998-05-06T00:00:00Z",
"ShippedDate": null,
"ShipperName": "Federal Shipping",
"ProductID": 28,
"ProductName": "R\u00f6ssle Sauerkraut",
"UnitPrice": 45.6000,
"Quantity": 70,
"Discount": 0.05,
"ExtendedPrice": 3032.4000,
"Freight": 79.4600
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Robert King",
"OrderID": 11008,
"OrderDate": "1998-04-08T00:00:00Z",
"RequiredDate": "1998-05-06T00:00:00Z",
"ShippedDate": null,
"ShipperName": "Federal Shipping",
"ProductID": 34,
"ProductName": "Sasquatch Ale",
"UnitPrice": 14.0000,
"Quantity": 90,
"Discount": 0.05,
"ExtendedPrice": 1197.0000,
"Freight": 79.4600
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Andrew Fuller",
"OrderID": 10368,
"OrderDate": "1996-11-29T00:00:00Z",
"RequiredDate": "1996-12-27T00:00:00Z",
"ShippedDate": "1996-12-02T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 21,
"ProductName": "Sir Rodney's Scones",
"UnitPrice": 8.0000,
"Quantity": 5,
"Discount": 0.1,
"ExtendedPrice": 36.0000,
"Freight": 101.9500
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Andrew Fuller",
"OrderID": 10368,
"OrderDate": "1996-11-29T00:00:00Z",
"RequiredDate": "1996-12-27T00:00:00Z",
"ShippedDate": "1996-12-02T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 28,
"ProductName": "R\u00f6ssle Sauerkraut",
"UnitPrice": 36.4000,
"Quantity": 13,
"Discount": 0.1,
"ExtendedPrice": 425.8800,
"Freight": 101.9500
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Andrew Fuller",
"OrderID": 10368,
"OrderDate": "1996-11-29T00:00:00Z",
"RequiredDate": "1996-12-27T00:00:00Z",
"ShippedDate": "1996-12-02T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 64,
"ProductName": "Wimmers gute Semmelkn\u00f6del",
"UnitPrice": 26.6000,
"Quantity": 35,
"Discount": 0.1,
"ExtendedPrice": 837.9000,
"Freight": 101.9500
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Michael Suyama",
"OrderID": 10390,
"OrderDate": "1996-12-23T00:00:00Z",
"RequiredDate": "1997-01-20T00:00:00Z",
"ShippedDate": "1996-12-26T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 31,
"ProductName": "Gorgonzola Telino",
"UnitPrice": 10.0000,
"Quantity": 60,
"Discount": 0.1,
"ExtendedPrice": 540.0000,
"Freight": 126.3800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Michael Suyama",
"OrderID": 10390,
"OrderDate": "1996-12-23T00:00:00Z",
"RequiredDate": "1997-01-20T00:00:00Z",
"ShippedDate": "1996-12-26T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 35,
"ProductName": "Steeleye Stout",
"UnitPrice": 14.4000,
"Quantity": 40,
"Discount": 0.1,
"ExtendedPrice": 518.4000,
"Freight": 126.3800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Michael Suyama",
"OrderID": 10390,
"OrderDate": "1996-12-23T00:00:00Z",
"RequiredDate": "1997-01-20T00:00:00Z",
"ShippedDate": "1996-12-26T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 72,
"ProductName": "Mozzarella di Giovanni",
"UnitPrice": 27.8000,
"Quantity": 24,
"Discount": 0.1,
"ExtendedPrice": 600.4800,
"Freight": 126.3800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Michael Suyama",
"OrderID": 10764,
"OrderDate": "1997-12-03T00:00:00Z",
"RequiredDate": "1997-12-31T00:00:00Z",
"ShippedDate": "1997-12-08T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 3,
"ProductName": "Aniseed Syrup",
"UnitPrice": 10.0000,
"Quantity": 20,
"Discount": 0.1,
"ExtendedPrice": 180.0000,
"Freight": 145.4500
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Michael Suyama",
"OrderID": 10764,
"OrderDate": "1997-12-03T00:00:00Z",
"RequiredDate": "1997-12-31T00:00:00Z",
"ShippedDate": "1997-12-08T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 39,
"ProductName": "Chartreuse verte",
"UnitPrice": 18.0000,
"Quantity": 130,
"Discount": 0.1,
"ExtendedPrice": 2106.0000,
"Freight": 145.4500
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10403,
"OrderDate": "1997-01-03T00:00:00Z",
"RequiredDate": "1997-01-31T00:00:00Z",
"ShippedDate": "1997-01-09T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 16,
"ProductName": "Pavlova",
"UnitPrice": 13.9000,
"Quantity": 21,
"Discount": 0.15,
"ExtendedPrice": 248.1200,
"Freight": 73.7900
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10403,
"OrderDate": "1997-01-03T00:00:00Z",
"RequiredDate": "1997-01-31T00:00:00Z",
"ShippedDate": "1997-01-09T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 48,
"ProductName": "Chocolade",
"UnitPrice": 10.2000,
"Quantity": 70,
"Discount": 0.15,
"ExtendedPrice": 606.9000,
"Freight": 73.7900
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Laura Callahan",
"OrderID": 10571,
"OrderDate": "1997-06-17T00:00:00Z",
"RequiredDate": "1997-07-29T00:00:00Z",
"ShippedDate": "1997-07-04T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 14,
"ProductName": "Tofu",
"UnitPrice": 23.2500,
"Quantity": 11,
"Discount": 0.15,
"ExtendedPrice": 217.3900,
"Freight": 26.0600
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Laura Callahan",
"OrderID": 10571,
"OrderDate": "1997-06-17T00:00:00Z",
"RequiredDate": "1997-07-29T00:00:00Z",
"ShippedDate": "1997-07-04T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 42,
"ProductName": "Singaporean Hokkien Fried Mee",
"UnitPrice": 14.0000,
"Quantity": 28,
"Discount": 0.15,
"ExtendedPrice": 333.2000,
"Freight": 26.0600
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Robert King",
"OrderID": 10633,
"OrderDate": "1997-08-15T00:00:00Z",
"RequiredDate": "1997-09-12T00:00:00Z",
"ShippedDate": "1997-08-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 12,
"ProductName": "Queso Manchego La Pastora",
"UnitPrice": 38.0000,
"Quantity": 36,
"Discount": 0.15,
"ExtendedPrice": 1162.8000,
"Freight": 477.9000
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Robert King",
"OrderID": 10633,
"OrderDate": "1997-08-15T00:00:00Z",
"RequiredDate": "1997-09-12T00:00:00Z",
"ShippedDate": "1997-08-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 13,
"ProductName": "Konbu",
"UnitPrice": 6.0000,
"Quantity": 13,
"Discount": 0.15,
"ExtendedPrice": 66.3000,
"Freight": 477.9000
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Robert King",
"OrderID": 10633,
"OrderDate": "1997-08-15T00:00:00Z",
"RequiredDate": "1997-09-12T00:00:00Z",
"ShippedDate": "1997-08-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 26,
"ProductName": "Gumb\u00e4r Gummib\u00e4rchen",
"UnitPrice": 31.2300,
"Quantity": 35,
"Discount": 0.15,
"ExtendedPrice": 929.0900,
"Freight": 477.9000
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Robert King",
"OrderID": 10633,
"OrderDate": "1997-08-15T00:00:00Z",
"RequiredDate": "1997-09-12T00:00:00Z",
"ShippedDate": "1997-08-18T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 62,
"ProductName": "Tarte au sucre",
"UnitPrice": 49.3000,
"Quantity": 80,
"Discount": 0.15,
"ExtendedPrice": 3352.4000,
"Freight": 477.9000
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Janet Leverling",
"OrderID": 10854,
"OrderDate": "1998-01-27T00:00:00Z",
"RequiredDate": "1998-02-24T00:00:00Z",
"ShippedDate": "1998-02-05T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 10,
"ProductName": "Ikura",
"UnitPrice": 31.0000,
"Quantity": 100,
"Discount": 0.15,
"ExtendedPrice": 2635.0000,
"Freight": 100.2200
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Janet Leverling",
"OrderID": 10854,
"OrderDate": "1998-01-27T00:00:00Z",
"RequiredDate": "1998-02-24T00:00:00Z",
"ShippedDate": "1998-02-05T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 13,
"ProductName": "Konbu",
"UnitPrice": 6.0000,
"Quantity": 65,
"Discount": 0.15,
"ExtendedPrice": 331.5000,
"Freight": 100.2200
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Andrew Fuller",
"OrderID": 10990,
"OrderDate": "1998-04-01T00:00:00Z",
"RequiredDate": "1998-05-13T00:00:00Z",
"ShippedDate": "1998-04-07T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 34,
"ProductName": "Sasquatch Ale",
"UnitPrice": 14.0000,
"Quantity": 60,
"Discount": 0.15,
"ExtendedPrice": 714.0000,
"Freight": 117.6100
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Andrew Fuller",
"OrderID": 10990,
"OrderDate": "1998-04-01T00:00:00Z",
"RequiredDate": "1998-05-13T00:00:00Z",
"ShippedDate": "1998-04-07T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 55,
"ProductName": "P\u00e2t\u00e9 chinois",
"UnitPrice": 24.0000,
"Quantity": 65,
"Discount": 0.15,
"ExtendedPrice": 1326.0000,
"Freight": 117.6100
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Andrew Fuller",
"OrderID": 10990,
"OrderDate": "1998-04-01T00:00:00Z",
"RequiredDate": "1998-05-13T00:00:00Z",
"ShippedDate": "1998-04-07T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 61,
"ProductName": "Sirop d'\u00e9rable",
"UnitPrice": 28.5000,
"Quantity": 66,
"Discount": 0.15,
"ExtendedPrice": 1598.8500,
"Freight": 117.6100
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10258,
"OrderDate": "1996-07-17T00:00:00Z",
"RequiredDate": "1996-08-14T00:00:00Z",
"ShippedDate": "1996-07-23T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 2,
"ProductName": "Chang",
"UnitPrice": 15.2000,
"Quantity": 50,
"Discount": 0.2,
"ExtendedPrice": 608.0000,
"Freight": 140.5100
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10258,
"OrderDate": "1996-07-17T00:00:00Z",
"RequiredDate": "1996-08-14T00:00:00Z",
"ShippedDate": "1996-07-23T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 5,
"ProductName": "Chef Anton's Gumbo Mix",
"UnitPrice": 17.0000,
"Quantity": 65,
"Discount": 0.2,
"ExtendedPrice": 884.0000,
"Freight": 140.5100
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10258,
"OrderDate": "1996-07-17T00:00:00Z",
"RequiredDate": "1996-08-14T00:00:00Z",
"ShippedDate": "1996-07-23T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 32,
"ProductName": "Mascarpone Fabioli",
"UnitPrice": 25.6000,
"Quantity": 6,
"Discount": 0.2,
"ExtendedPrice": 122.8800,
"Freight": 140.5100
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10430,
"OrderDate": "1997-01-30T00:00:00Z",
"RequiredDate": "1997-02-13T00:00:00Z",
"ShippedDate": "1997-02-03T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 17,
"ProductName": "Alice Mutton",
"UnitPrice": 31.2000,
"Quantity": 45,
"Discount": 0.2,
"ExtendedPrice": 1123.2000,
"Freight": 458.7800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Margaret Peacock",
"OrderID": 10430,
"OrderDate": "1997-01-30T00:00:00Z",
"RequiredDate": "1997-02-13T00:00:00Z",
"ShippedDate": "1997-02-03T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 59,
"ProductName": "Raclette Courdavault",
"UnitPrice": 44.0000,
"Quantity": 70,
"Discount": 0.2,
"ExtendedPrice": 2464.0000,
"Freight": 458.7800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Robert King",
"OrderID": 10667,
"OrderDate": "1997-09-12T00:00:00Z",
"RequiredDate": "1997-10-10T00:00:00Z",
"ShippedDate": "1997-09-19T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 69,
"ProductName": "Gudbrandsdalsost",
"UnitPrice": 36.0000,
"Quantity": 45,
"Discount": 0.2,
"ExtendedPrice": 1296.0000,
"Freight": 78.0900
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Robert King",
"OrderID": 10667,
"OrderDate": "1997-09-12T00:00:00Z",
"RequiredDate": "1997-10-10T00:00:00Z",
"ShippedDate": "1997-09-19T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 71,
"ProductName": "Flotemysost",
"UnitPrice": 21.5000,
"Quantity": 14,
"Discount": 0.2,
"ExtendedPrice": 240.8000,
"Freight": 78.0900
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10773,
"OrderDate": "1997-12-11T00:00:00Z",
"RequiredDate": "1998-01-08T00:00:00Z",
"ShippedDate": "1997-12-16T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 31,
"ProductName": "Gorgonzola Telino",
"UnitPrice": 12.5000,
"Quantity": 70,
"Discount": 0.2,
"ExtendedPrice": 700.0000,
"Freight": 96.4300
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Nancy Davolio",
"OrderID": 10773,
"OrderDate": "1997-12-11T00:00:00Z",
"RequiredDate": "1998-01-08T00:00:00Z",
"ShippedDate": "1997-12-16T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 75,
"ProductName": "Rh\u00f6nbr\u00e4u Klosterbier",
"UnitPrice": 7.7500,
"Quantity": 7,
"Discount": 0.2,
"ExtendedPrice": 43.4000,
"Freight": 96.4300
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Anne Dodsworth",
"OrderID": 10263,
"OrderDate": "1996-07-23T00:00:00Z",
"RequiredDate": "1996-08-20T00:00:00Z",
"ShippedDate": "1996-07-31T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 16,
"ProductName": "Pavlova",
"UnitPrice": 13.9000,
"Quantity": 60,
"Discount": 0.25,
"ExtendedPrice": 625.5000,
"Freight": 146.0600
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Anne Dodsworth",
"OrderID": 10263,
"OrderDate": "1996-07-23T00:00:00Z",
"RequiredDate": "1996-08-20T00:00:00Z",
"ShippedDate": "1996-07-31T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 30,
"ProductName": "Nord-Ost Matjeshering",
"UnitPrice": 20.7000,
"Quantity": 60,
"Discount": 0.25,
"ExtendedPrice": 931.5000,
"Freight": 146.0600
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Anne Dodsworth",
"OrderID": 10263,
"OrderDate": "1996-07-23T00:00:00Z",
"RequiredDate": "1996-08-20T00:00:00Z",
"ShippedDate": "1996-07-31T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 74,
"ProductName": "Longlife Tofu",
"UnitPrice": 8.0000,
"Quantity": 36,
"Discount": 0.25,
"ExtendedPrice": 216.0000,
"Freight": 146.0600
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Andrew Fuller",
"OrderID": 10595,
"OrderDate": "1997-07-10T00:00:00Z",
"RequiredDate": "1997-08-07T00:00:00Z",
"ShippedDate": "1997-07-14T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 35,
"ProductName": "Steeleye Stout",
"UnitPrice": 18.0000,
"Quantity": 30,
"Discount": 0.25,
"ExtendedPrice": 405.0000,
"Freight": 96.7800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Andrew Fuller",
"OrderID": 10595,
"OrderDate": "1997-07-10T00:00:00Z",
"RequiredDate": "1997-08-07T00:00:00Z",
"ShippedDate": "1997-07-14T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 61,
"ProductName": "Sirop d'\u00e9rable",
"UnitPrice": 28.5000,
"Quantity": 120,
"Discount": 0.25,
"ExtendedPrice": 2565.0000,
"Freight": 96.7800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Andrew Fuller",
"OrderID": 10595,
"OrderDate": "1997-07-10T00:00:00Z",
"RequiredDate": "1997-08-07T00:00:00Z",
"ShippedDate": "1997-07-14T00:00:00Z",
"ShipperName": "Speedy Express",
"ProductID": 69,
"ProductName": "Gudbrandsdalsost",
"UnitPrice": 36.0000,
"Quantity": 65,
"Discount": 0.25,
"ExtendedPrice": 1755.0000,
"Freight": 96.7800
}, {
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria",
"CustomerID": "ERNSH",
"CustomerName": "Ernst Handel",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Salesperson": "Laura Callahan",
"OrderID": 10795,
"OrderDate": "1997-12-24T00:00:00Z",
"RequiredDate": "1998-01-21T00:00:00Z",
"ShippedDate": "1998-01-20T00:00:00Z",
"ShipperName": "United Package",
"ProductID": 17,
"ProductName": "Alice Mutton",
"UnitPrice": 39.0000,
"Quantity": 35,
"Discount": 0.25,
"ExtendedPrice": 1023.7500,
"Freight": 126.6600
}, {
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Or\u00f3s, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil",
"CustomerID": "FAMIA",
"CustomerName": "Familia Arquibaldo",
"Address": "Rua Or\u00f3s, 92",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05442-030",
"Country": "Brazil",
"Salesperson": "Margaret Peacock",
"OrderID": 10347,
"OrderDate": "1996-11-06T00:00:00Z",
"RequiredDate": "1996-12-04T00:00:00Z",
"ShippedDate": "1996-11-08T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 25,
"ProductName": "NuNuCa Nu\u00df-Nougat-Creme",
"UnitPrice": 11.2000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 112.0000,
"Freight": 3.1000
}, {
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Or\u00f3s, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil",
"CustomerID": "FAMIA",
"CustomerName": "Familia Arquibaldo",
"Address": "Rua Or\u00f3s, 92",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05442-030",
"Country": "Brazil",
"Salesperson": "Margaret Peacock",
"OrderID": 10347,
"OrderDate": "1996-11-06T00:00:00Z",
"RequiredDate": "1996-12-04T00:00:00Z",
"ShippedDate": "1996-11-08T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 40,
"ProductName": "Boston Crab Meat",
"UnitPrice": 14.7000,
"Quantity": 4,
"Discount": 0,
"ExtendedPrice": 58.8000,
"Freight": 3.1000
}, {
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Or\u00f3s, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil",
"CustomerID": "FAMIA",
"CustomerName": "Familia Arquibaldo",
"Address": "Rua Or\u00f3s, 92",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05442-030",
"Country": "Brazil",
"Salesperson": "Anne Dodsworth",
"OrderID": 10386,
"OrderDate": "1996-12-18T00:00:00Z",
"RequiredDate": "1997-01-01T00:00:00Z",
"ShippedDate": "1996-12-25T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 24,
"ProductName": "Guaran\u00e1 Fant\u00e1stica",
"UnitPrice": 3.6000,
"Quantity": 15,
"Discount": 0,
"ExtendedPrice": 54.0000,
"Freight": 13.9900
}, {
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Or\u00f3s, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil",
"CustomerID": "FAMIA",
"CustomerName": "Familia Arquibaldo",
"Address": "Rua Or\u00f3s, 92",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05442-030",
"Country": "Brazil",
"Salesperson": "Anne Dodsworth",
"OrderID": 10386,
"OrderDate": "1996-12-18T00:00:00Z",
"RequiredDate": "1997-01-01T00:00:00Z",
"ShippedDate": "1996-12-25T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 34,
"ProductName": "Sasquatch Ale",
"UnitPrice": 11.2000,
"Quantity": 10,
"Discount": 0,
"ExtendedPrice": 112.0000,
"Freight": 13.9900
}, {
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Or\u00f3s, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil",
"CustomerID": "FAMIA",
"CustomerName": "Familia Arquibaldo",
"Address": "Rua Or\u00f3s, 92",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05442-030",
"Country": "Brazil",
"Salesperson": "Andrew Fuller",
"OrderID": 10414,
"OrderDate": "1997-01-14T00:00:00Z",
"RequiredDate": "1997-02-11T00:00:00Z",
"ShippedDate": "1997-01-17T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 33,
"ProductName": "Geitost",
"UnitPrice": 2.0000,
"Quantity": 50,
"Discount": 0,
"ExtendedPrice": 100.0000,
"Freight": 21.4800
}, {
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Or\u00f3s, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil",
"CustomerID": "FAMIA",
"CustomerName": "Familia Arquibaldo",
"Address": "Rua Or\u00f3s, 92",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05442-030",
"Country": "Brazil",
"Salesperson": "Steven Buchanan",
"OrderID": 10650,
"OrderDate": "1997-08-29T00:00:00Z",
"RequiredDate": "1997-09-26T00:00:00Z",
"ShippedDate": "1997-09-03T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 30,
"ProductName": "Nord-Ost Matjeshering",
"UnitPrice": 25.8900,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 776.7000,
"Freight": 176.8100
}, {
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Or\u00f3s, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil",
"CustomerID": "FAMIA",
"CustomerName": "Familia Arquibaldo",
"Address": "Rua Or\u00f3s, 92",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05442-030",
"Country": "Brazil",
"Salesperson": "Steven Buchanan",
"OrderID": 10650,
"OrderDate": "1997-08-29T00:00:00Z",
"RequiredDate": "1997-09-26T00:00:00Z",
"ShippedDate": "1997-09-03T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 54,
"ProductName": "Tourti\u00e8re",
"UnitPrice": 7.4500,
"Quantity": 30,
"Discount": 0,
"ExtendedPrice": 223.5000,
"Freight": 176.8100
}, {
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Or\u00f3s, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil",
"CustomerID": "FAMIA",
"CustomerName": "Familia Arquibaldo",
"Address": "Rua Or\u00f3s, 92",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05442-030",
"Country": "Brazil",
"Salesperson": "Margaret Peacock",
"OrderID": 10725,
"OrderDate": "1997-10-31T00:00:00Z",
"RequiredDate": "1997-11-28T00:00:00Z",
"ShippedDate": "1997-11-05T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 41,
"ProductName": "Jack's New England Clam Chowder",
"UnitPrice": 9.6500,
"Quantity": 12,
"Discount": 0,
"ExtendedPrice": 115.8000,
"Freight": 10.8300
}, {
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Or\u00f3s, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil",
"CustomerID": "FAMIA",
"CustomerName": "Familia Arquibaldo",
"Address": "Rua Or\u00f3s, 92",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05442-030",
"Country": "Brazil",
"Salesperson": "Margaret Peacock",
"OrderID": 10725,
"OrderDate": "1997-10-31T00:00:00Z",
"RequiredDate": "1997-11-28T00:00:00Z",
"ShippedDate": "1997-11-05T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 52,
"ProductName": "Filo Mix",
"UnitPrice": 7.0000,
"Quantity": 4,
"Discount": 0,
"ExtendedPrice": 28.0000,
"Freight": 10.8300
}, {
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Or\u00f3s, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil",
"CustomerID": "FAMIA",
"CustomerName": "Familia Arquibaldo",
"Address": "Rua Or\u00f3s, 92",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05442-030",
"Country": "Brazil",
"Salesperson": "Margaret Peacock",
"OrderID": 10725,
"OrderDate": "1997-10-31T00:00:00Z",
"RequiredDate": "1997-11-28T00:00:00Z",
"ShippedDate": "1997-11-05T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 55,
"ProductName": "P\u00e2t\u00e9 chinois",
"UnitPrice": 24.0000,
"Quantity": 6,
"Discount": 0,
"ExtendedPrice": 144.0000,
"Freight": 10.8300
}, {
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Or\u00f3s, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil",
"CustomerID": "FAMIA",
"CustomerName": "Familia Arquibaldo",
"Address": "Rua Or\u00f3s, 92",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05442-030",
"Country": "Brazil",
"Salesperson": "Andrew Fuller",
"OrderID": 10414,
"OrderDate": "1997-01-14T00:00:00Z",
"RequiredDate": "1997-02-11T00:00:00Z",
"ShippedDate": "1997-01-17T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 19,
"ProductName": "Teatime Chocolate Biscuits",
"UnitPrice": 7.3000,
"Quantity": 18,
"Discount": 0.05,
"ExtendedPrice": 124.8300,
"Freight": 21.4800
}, {
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Or\u00f3s, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil",
"CustomerID": "FAMIA",
"CustomerName": "Familia Arquibaldo",
"Address": "Rua Or\u00f3s, 92",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05442-030",
"Country": "Brazil",
"Salesperson": "Steven Buchanan",
"OrderID": 10650,
"OrderDate": "1997-08-29T00:00:00Z",
"RequiredDate": "1997-09-26T00:00:00Z",
"ShippedDate": "1997-09-03T00:00:00Z",
"ShipperName": "Federal Shipping",
"ProductID": 53,
"ProductName": "Perth Pasties",
"UnitPrice": 32.8000,
"Quantity": 25,
"Discount": 0.05,
"ExtendedPrice": 779.0000,
"Freight": 176.8100
}]