<!DOCTYPE html>
<html style="height: 100%;">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Demo</title>
<!-- Make sure to bootstrap from a specific UI5 version. DO NOT rely on the latest CDN release. The below `src` is for testing and demos only. -->
<script id="sap-ui-bootstrap"
src="https://openui5.hana.ondemand.com/resources/sap-ui-core.js"
data-sap-ui-theme="sap_fiori_3"
data-sap-ui-async="true"
data-sap-ui-oninit="module:sap/ui/core/ComponentSupport"
data-sap-ui-compatversion="edge"
data-sap-ui-excludejquerycompat="true"
data-sap-ui-resourceroots='{ "demo": "./" }'
data-sap-ui-xx-waitfortheme="init"
></script>
</head>
<body id="content" class="sapUiBody">
<div style="height: 100%;"
data-sap-ui-component
data-id="rootComponentContainer"
data-name="demo"
data-height="100%"
data-settings='{ "id": "rootComponent" }'
></div>
</body>
</html>
sap.ui.define([
"sap/ui/core/UIComponent",
], function(UIComponent) {
"use strict";
return UIComponent.extend("demo.Component", {
metadata: {
manifest: "json",
},
init: function() {
UIComponent.prototype.init.apply(this, arguments);
this.getRouter().initialize();
},
});
});
{
"_version": "1.33.0",
"start_url": "index.html",
"sap.app": {
"id": "demo",
"type": "application",
"title": "foo",
"subtitle": "(Sub title)",
"description": "bar",
"applicationVersion": {
"version": "1.0.0"
},
"dataSources": {
"customersAndOrders": {
"uri": "./localData/CustomersAndOrders.json",
"type": "JSON"
}
}
},
"sap.ui": {
"technology": "UI5",
"deviceTypes": {
"desktop": true,
"tablet": true,
"phone": true
}
},
"sap.ui5": {
"dependencies": {
"minUI5Version": "1.40.0",
"libs": {
"sap.ui.core": {},
"sap.ui.table": {},
"sap.m": {}
}
},
"contentDensities": {
"compact": true,
"cozy": false
},
"models": {
"": {
"dataSource": "customersAndOrders",
"type": "sap.ui.model.json.JSONModel",
"preload": true
}
},
"rootView": {
"id": "rootView",
"viewName": "demo.view.App",
"type": "XML",
"async": true
},
"routing": {
"routes": [{
"pattern": "",
"name": "home",
"target": "home"
}],
"targets": {
"home": {
"viewName": "Home",
"viewLevel": 1
},
"notFound": {
"viewName": "Home",
"transition": "show"
}
},
"config": {
"routerClass": "sap.m.routing.Router",
"viewType": "XML",
"async": true,
"viewPath": "demo.view",
"transition": "slide",
"controlId": "myAppp",
"controlAggregation": "pages",
"bypassed": {
"target": "notFound"
}
}
}
}
}
<mvc:View
xmlns="sap.m"
xmlns:mvc="sap.ui.core.mvc"
height="100%"
displayBlock="true"
>
<App id="myAppp">
<pages>
<!-- will be added by Router -->
</pages>
</App>
</mvc:View>
<mvc:View
xmlns:mvc="sap.ui.core.mvc"
xmlns="sap.m"
>
<Page title="Table Selection by Content"
enableScrolling="true"
class="sapUiResponsiveContentPadding"
>
<mvc:XMLView viewName="demo.view.TableSingleSelect" async="true" />
</Page>
</mvc:View>
<mvc:View
xmlns="sap.ui.table"
xmlns:mvc="sap.ui.core.mvc"
xmlns:m="sap.m"
xmlns:core="sap.ui.core"
controllerName="demo.controller.TableSingleSelect"
>
<Table id="myGridTable"
class="sapUiSizeCondensed"
title="Single Select by Unique Key"
editable="false"
enableBusyIndicator="true"
selectionMode="Single"
selectionBehavior="RowOnly"
rows="{
path: '/Customers',
key: 'CustomerID',
events: {
change: '.onRowsDataChange'
}
}"
>
<Column label="CustomerID" template="CustomerID" sortProperty="CustomerID" />
<Column label="ContactName" template="ContactName" sortProperty="ContactName" />
</Table>
</mvc:View>
/**
* This is a minimal example! It's not optimized and no edge cases are covered.
* Please extend the controller as needed.
*/
sap.ui.define([
"sap/ui/core/mvc/Controller",
], function(Controller) {
"use strict";
return Controller.extend("demo.controller.TableSingleSelect", {
onRowsDataChange: function(event) {
this.selectWhere(context => context.getProperty("CustomerID") == "ANTON");
},
selectWhere: function(keysAreMatching) {
const table = this.byId("myGridTable");
const contexts = table.getBinding("rows").getContexts();
const index = this.getRowIndexWhere(keysAreMatching, contexts);
return this.selectRowByIndex(index, table);
},
getRowIndexWhere: function(keysAreMatching, contexts) {
let index = -1;
contexts.find((context, i) => keysAreMatching(context) && (index = i));
return index;
},
selectRowByIndex: function(i, table) {
const shouldSelect = i > -1 && !table.isIndexSelected(i);
return shouldSelect ? table.setSelectedIndex(i) : table;
},
});
});
{
"Customers": [
{
"CustomerID": "ALFKI",
"CompanyName": "Alfreds Futterkiste",
"ContactName": "Maria Anders",
"ContactTitle": "Sales Representative",
"Address": "Obere Str. 57",
"City": "Berlin",
"Region": null,
"PostalCode": "12209",
"Country": "Germany",
"Phone": "030-0074321",
"Fax": "030-0076545"
},
{
"CustomerID": "ANATR",
"CompanyName": "Ana Trujillo Emparedados y helados",
"ContactName": "Ana Trujillo",
"ContactTitle": "Owner",
"Address": "Avda. de la Constitución 2222",
"City": "México D.F.",
"Region": null,
"PostalCode": "05021",
"Country": "Mexico",
"Phone": "(5) 555-4729",
"Fax": "(5) 555-3745"
},
{
"CustomerID": "ANTON",
"CompanyName": "Antonio Moreno Taquería",
"ContactName": "Antonio Moreno",
"ContactTitle": "Owner",
"Address": "Mataderos 2312",
"City": "México D.F.",
"Region": null,
"PostalCode": "05023",
"Country": "Mexico",
"Phone": "(5) 555-3932",
"Fax": null
},
{
"CustomerID": "AROUT",
"CompanyName": "Around the Horn",
"ContactName": "Thomas Hardy",
"ContactTitle": "Sales Representative",
"Address": "120 Hanover Sq.",
"City": "London",
"Region": null,
"PostalCode": "WA1 1DP",
"Country": "UK",
"Phone": "(171) 555-7788",
"Fax": "(171) 555-6750"
},
{
"CustomerID": "BERGS",
"CompanyName": "Berglunds snabbköp",
"ContactName": "Christina Berglund",
"ContactTitle": "Order Administrator",
"Address": "Berguvsvägen 8",
"City": "Luleå",
"Region": null,
"PostalCode": "S-958 22",
"Country": "Sweden",
"Phone": "0921-12 34 65",
"Fax": "0921-12 34 67"
},
{
"CustomerID": "BLAUS",
"CompanyName": "Blauer See Delikatessen",
"ContactName": "Hanna Moos",
"ContactTitle": "Sales Representative",
"Address": "Forsterstr. 57",
"City": "Mannheim",
"Region": null,
"PostalCode": "68306",
"Country": "Germany",
"Phone": "0621-08460",
"Fax": "0621-08924"
},
{
"CustomerID": "BLONP",
"CompanyName": "Blondesddsl père et fils",
"ContactName": "Frédérique Citeaux",
"ContactTitle": "Marketing Manager",
"Address": "24, place Kléber",
"City": "Strasbourg",
"Region": null,
"PostalCode": "67000",
"Country": "France",
"Phone": "88.60.15.31",
"Fax": "88.60.15.32"
},
{
"CustomerID": "BOLID",
"CompanyName": "Bólido Comidas preparadas",
"ContactName": "Martín Sommer",
"ContactTitle": "Owner",
"Address": "C/ Araquil, 67",
"City": "Madrid",
"Region": null,
"PostalCode": "28023",
"Country": "Spain",
"Phone": "(91) 555 22 82",
"Fax": "(91) 555 91 99"
},
{
"CustomerID": "BONAP",
"CompanyName": "Bon app'",
"ContactName": "Laurence Lebihan",
"ContactTitle": "Owner",
"Address": "12, rue des Bouchers",
"City": "Marseille",
"Region": null,
"PostalCode": "13008",
"Country": "France",
"Phone": "91.24.45.40",
"Fax": "91.24.45.41"
},
{
"CustomerID": "BOTTM",
"CompanyName": "Bottom-Dollar Markets",
"ContactName": "Elizabeth Lincoln",
"ContactTitle": "Accounting Manager",
"Address": "23 Tsawassen Blvd.",
"City": "Tsawassen",
"Region": "BC",
"PostalCode": "T2F 8M4",
"Country": "Canada",
"Phone": "(604) 555-4729",
"Fax": "(604) 555-3745"
},
{
"CustomerID": "BSBEV",
"CompanyName": "B's Beverages",
"ContactName": "Victoria Ashworth",
"ContactTitle": "Sales Representative",
"Address": "Fauntleroy Circus",
"City": "London",
"Region": null,
"PostalCode": "EC2 5NT",
"Country": "UK",
"Phone": "(171) 555-1212",
"Fax": null
},
{
"CustomerID": "CACTU",
"CompanyName": "Cactus Comidas para llevar",
"ContactName": "Patricio Simpson",
"ContactTitle": "Sales Agent",
"Address": "Cerrito 333",
"City": "Buenos Aires",
"Region": null,
"PostalCode": "1010",
"Country": "Argentina",
"Phone": "(1) 135-5555",
"Fax": "(1) 135-4892"
},
{
"CustomerID": "CENTC",
"CompanyName": "Centro comercial Moctezuma",
"ContactName": "Francisco Chang",
"ContactTitle": "Marketing Manager",
"Address": "Sierras de Granada 9993",
"City": "México D.F.",
"Region": null,
"PostalCode": "05022",
"Country": "Mexico",
"Phone": "(5) 555-3392",
"Fax": "(5) 555-7293"
},
{
"CustomerID": "CHOPS",
"CompanyName": "Chop-suey Chinese",
"ContactName": "Yang Wang",
"ContactTitle": "Owner",
"Address": "Hauptstr. 29",
"City": "Bern",
"Region": null,
"PostalCode": "3012",
"Country": "Switzerland",
"Phone": "0452-076545",
"Fax": null
},
{
"CustomerID": "COMMI",
"CompanyName": "Comércio Mineiro",
"ContactName": "Pedro Afonso",
"ContactTitle": "Sales Associate",
"Address": "Av. dos Lusíadas, 23",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05432-043",
"Country": "Brazil",
"Phone": "(11) 555-7647",
"Fax": null
},
{
"CustomerID": "CONSH",
"CompanyName": "Consolidated Holdings",
"ContactName": "Elizabeth Brown",
"ContactTitle": "Sales Representative",
"Address": "Berkeley Gardens 12 Brewery",
"City": "London",
"Region": null,
"PostalCode": "WX1 6LT",
"Country": "UK",
"Phone": "(171) 555-2282",
"Fax": "(171) 555-9199"
},
{
"CustomerID": "DRACD",
"CompanyName": "Drachenblut Delikatessen",
"ContactName": "Sven Ottlieb",
"ContactTitle": "Order Administrator",
"Address": "Walserweg 21",
"City": "Aachen",
"Region": null,
"PostalCode": "52066",
"Country": "Germany",
"Phone": "0241-039123",
"Fax": "0241-059428"
},
{
"CustomerID": "DUMON",
"CompanyName": "Du monde entier",
"ContactName": "Janine Labrune",
"ContactTitle": "Owner",
"Address": "67, rue des Cinquante Otages",
"City": "Nantes",
"Region": null,
"PostalCode": "44000",
"Country": "France",
"Phone": "40.67.88.88",
"Fax": "40.67.89.89"
},
{
"CustomerID": "EASTC",
"CompanyName": "Eastern Connection",
"ContactName": "Ann Devon",
"ContactTitle": "Sales Agent",
"Address": "35 King George",
"City": "London",
"Region": null,
"PostalCode": "WX3 6FW",
"Country": "UK",
"Phone": "(171) 555-0297",
"Fax": "(171) 555-3373"
},
{
"CustomerID": "ERNSH",
"CompanyName": "Ernst Handel",
"ContactName": "Roland Mendel",
"ContactTitle": "Sales Manager",
"Address": "Kirchgasse 6",
"City": "Graz",
"Region": null,
"PostalCode": "8010",
"Country": "Austria",
"Phone": "7675-3425",
"Fax": "7675-3426"
},
{
"CustomerID": "FAMIA",
"CompanyName": "Familia Arquibaldo",
"ContactName": "Aria Cruz",
"ContactTitle": "Marketing Assistant",
"Address": "Rua Orós, 92",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05442-030",
"Country": "Brazil",
"Phone": "(11) 555-9857",
"Fax": null
},
{
"CustomerID": "FISSA",
"CompanyName": "FISSA Fabrica Inter. Salchichas S.A.",
"ContactName": "Diego Roel",
"ContactTitle": "Accounting Manager",
"Address": "C/ Moralzarzal, 86",
"City": "Madrid",
"Region": null,
"PostalCode": "28034",
"Country": "Spain",
"Phone": "(91) 555 94 44",
"Fax": "(91) 555 55 93"
},
{
"CustomerID": "FOLIG",
"CompanyName": "Folies gourmandes",
"ContactName": "Martine Rancé",
"ContactTitle": "Assistant Sales Agent",
"Address": "184, chaussée de Tournai",
"City": "Lille",
"Region": null,
"PostalCode": "59000",
"Country": "France",
"Phone": "20.16.10.16",
"Fax": "20.16.10.17"
},
{
"CustomerID": "FOLKO",
"CompanyName": "Folk och fä HB",
"ContactName": "Maria Larsson",
"ContactTitle": "Owner",
"Address": "Åkergatan 24",
"City": "Bräcke",
"Region": null,
"PostalCode": "S-844 67",
"Country": "Sweden",
"Phone": "0695-34 67 21",
"Fax": null
},
{
"CustomerID": "FRANK",
"CompanyName": "Frankenversand",
"ContactName": "Peter Franken",
"ContactTitle": "Marketing Manager",
"Address": "Berliner Platz 43",
"City": "München",
"Region": null,
"PostalCode": "80805",
"Country": "Germany",
"Phone": "089-0877310",
"Fax": "089-0877451"
},
{
"CustomerID": "FRANR",
"CompanyName": "France restauration",
"ContactName": "Carine Schmitt",
"ContactTitle": "Marketing Manager",
"Address": "54, rue Royale",
"City": "Nantes",
"Region": null,
"PostalCode": "44000",
"Country": "France",
"Phone": "40.32.21.21",
"Fax": "40.32.21.20"
},
{
"CustomerID": "FRANS",
"CompanyName": "Franchi S.p.A.",
"ContactName": "Paolo Accorti",
"ContactTitle": "Sales Representative",
"Address": "Via Monte Bianco 34",
"City": "Torino",
"Region": null,
"PostalCode": "10100",
"Country": "Italy",
"Phone": "011-4988260",
"Fax": "011-4988261"
},
{
"CustomerID": "FURIB",
"CompanyName": "Furia Bacalhau e Frutos do Mar",
"ContactName": "Lino Rodriguez",
"ContactTitle": "Sales Manager",
"Address": "Jardim das rosas n. 32",
"City": "Lisboa",
"Region": null,
"PostalCode": "1675",
"Country": "Portugal",
"Phone": "(1) 354-2534",
"Fax": "(1) 354-2535"
},
{
"CustomerID": "GALED",
"CompanyName": "Galería del gastrónomo",
"ContactName": "Eduardo Saavedra",
"ContactTitle": "Marketing Manager",
"Address": "Rambla de Cataluña, 23",
"City": "Barcelona",
"Region": null,
"PostalCode": "08022",
"Country": "Spain",
"Phone": "(93) 203 4560",
"Fax": "(93) 203 4561"
},
{
"CustomerID": "GODOS",
"CompanyName": "Godos Cocina Típica",
"ContactName": "José Pedro Freyre",
"ContactTitle": "Sales Manager",
"Address": "C/ Romero, 33",
"City": "Sevilla",
"Region": null,
"PostalCode": "41101",
"Country": "Spain",
"Phone": "(95) 555 82 82",
"Fax": null
},
{
"CustomerID": "GOURL",
"CompanyName": "Gourmet Lanchonetes",
"ContactName": "André Fonseca",
"ContactTitle": "Sales Associate",
"Address": "Av. Brasil, 442",
"City": "Campinas",
"Region": "SP",
"PostalCode": "04876-786",
"Country": "Brazil",
"Phone": "(11) 555-9482",
"Fax": null
},
{
"CustomerID": "GREAL",
"CompanyName": "Great Lakes Food Market",
"ContactName": "Howard Snyder",
"ContactTitle": "Marketing Manager",
"Address": "2732 Baker Blvd.",
"City": "Eugene",
"Region": "OR",
"PostalCode": "97403",
"Country": "USA",
"Phone": "(503) 555-7555",
"Fax": null
},
{
"CustomerID": "GROSR",
"CompanyName": "GROSELLA-Restaurante",
"ContactName": "Manuel Pereira",
"ContactTitle": "Owner",
"Address": "5ª Ave. Los Palos Grandes",
"City": "Caracas",
"Region": "DF",
"PostalCode": "1081",
"Country": "Venezuela",
"Phone": "(2) 283-2951",
"Fax": "(2) 283-3397"
},
{
"CustomerID": "HANAR",
"CompanyName": "Hanari Carnes",
"ContactName": "Mario Pontes",
"ContactTitle": "Accounting Manager",
"Address": "Rua do Paço, 67",
"City": "Rio de Janeiro",
"Region": "RJ",
"PostalCode": "05454-876",
"Country": "Brazil",
"Phone": "(21) 555-0091",
"Fax": "(21) 555-8765"
},
{
"CustomerID": "HILAA",
"CompanyName": "HILARION-Abastos",
"ContactName": "Carlos Hernández",
"ContactTitle": "Sales Representative",
"Address": "Carrera 22 con Ave. Carlos Soublette #8-35",
"City": "San Cristóbal",
"Region": "Táchira",
"PostalCode": "5022",
"Country": "Venezuela",
"Phone": "(5) 555-1340",
"Fax": "(5) 555-1948"
},
{
"CustomerID": "HUNGC",
"CompanyName": "Hungry Coyote Import Store",
"ContactName": "Yoshi Latimer",
"ContactTitle": "Sales Representative",
"Address": "City Center Plaza 516 Main St.",
"City": "Elgin",
"Region": "OR",
"PostalCode": "97827",
"Country": "USA",
"Phone": "(503) 555-6874",
"Fax": "(503) 555-2376"
},
{
"CustomerID": "HUNGO",
"CompanyName": "Hungry Owl All-Night Grocers",
"ContactName": "Patricia McKenna",
"ContactTitle": "Sales Associate",
"Address": "8 Johnstown Road",
"City": "Cork",
"Region": "Co. Cork",
"PostalCode": null,
"Country": "Ireland",
"Phone": "2967 542",
"Fax": "2967 3333"
},
{
"CustomerID": "ISLAT",
"CompanyName": "Island Trading",
"ContactName": "Helen Bennett",
"ContactTitle": "Marketing Manager",
"Address": "Garden House Crowther Way",
"City": "Cowes",
"Region": "Isle of Wight",
"PostalCode": "PO31 7PJ",
"Country": "UK",
"Phone": "(198) 555-8888",
"Fax": null
},
{
"CustomerID": "KOENE",
"CompanyName": "Königlich Essen",
"ContactName": "Philip Cramer",
"ContactTitle": "Sales Associate",
"Address": "Maubelstr. 90",
"City": "Brandenburg",
"Region": null,
"PostalCode": "14776",
"Country": "Germany",
"Phone": "0555-09876",
"Fax": null
},
{
"CustomerID": "LACOR",
"CompanyName": "La corne d'abondance",
"ContactName": "Daniel Tonini",
"ContactTitle": "Sales Representative",
"Address": "67, avenue de l'Europe",
"City": "Versailles",
"Region": null,
"PostalCode": "78000",
"Country": "France",
"Phone": "30.59.84.10",
"Fax": "30.59.85.11"
},
{
"CustomerID": "LAMAI",
"CompanyName": "La maison d'Asie",
"ContactName": "Annette Roulet",
"ContactTitle": "Sales Manager",
"Address": "1 rue Alsace-Lorraine",
"City": "Toulouse",
"Region": null,
"PostalCode": "31000",
"Country": "France",
"Phone": "61.77.61.10",
"Fax": "61.77.61.11"
},
{
"CustomerID": "LAUGB",
"CompanyName": "Laughing Bacchus Wine Cellars",
"ContactName": "Yoshi Tannamuri",
"ContactTitle": "Marketing Assistant",
"Address": "1900 Oak St.",
"City": "Vancouver",
"Region": "BC",
"PostalCode": "V3F 2K1",
"Country": "Canada",
"Phone": "(604) 555-3392",
"Fax": "(604) 555-7293"
},
{
"CustomerID": "LAZYK",
"CompanyName": "Lazy K Kountry Store",
"ContactName": "John Steel",
"ContactTitle": "Marketing Manager",
"Address": "12 Orchestra Terrace",
"City": "Walla Walla",
"Region": "WA",
"PostalCode": "99362",
"Country": "USA",
"Phone": "(509) 555-7969",
"Fax": "(509) 555-6221"
},
{
"CustomerID": "LEHMS",
"CompanyName": "Lehmanns Marktstand",
"ContactName": "Renate Messner",
"ContactTitle": "Sales Representative",
"Address": "Magazinweg 7",
"City": "Frankfurt a.M.",
"Region": null,
"PostalCode": "60528",
"Country": "Germany",
"Phone": "069-0245984",
"Fax": "069-0245874"
},
{
"CustomerID": "LETSS",
"CompanyName": "Let's Stop N Shop",
"ContactName": "Jaime Yorres",
"ContactTitle": "Owner",
"Address": "87 Polk St. Suite 5",
"City": "San Francisco",
"Region": "CA",
"PostalCode": "94117",
"Country": "USA",
"Phone": "(415) 555-5938",
"Fax": null
},
{
"CustomerID": "LILAS",
"CompanyName": "LILA-Supermercado",
"ContactName": "Carlos González",
"ContactTitle": "Accounting Manager",
"Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo",
"City": "Barquisimeto",
"Region": "Lara",
"PostalCode": "3508",
"Country": "Venezuela",
"Phone": "(9) 331-6954",
"Fax": "(9) 331-7256"
},
{
"CustomerID": "LINOD",
"CompanyName": "LINO-Delicateses",
"ContactName": "Felipe Izquierdo",
"ContactTitle": "Owner",
"Address": "Ave. 5 de Mayo Porlamar",
"City": "I. de Margarita",
"Region": "Nueva Esparta",
"PostalCode": "4980",
"Country": "Venezuela",
"Phone": "(8) 34-56-12",
"Fax": "(8) 34-93-93"
},
{
"CustomerID": "LONEP",
"CompanyName": "Lonesome Pine Restaurant",
"ContactName": "Fran Wilson",
"ContactTitle": "Sales Manager",
"Address": "89 Chiaroscuro Rd.",
"City": "Portland",
"Region": "OR",
"PostalCode": "97219",
"Country": "USA",
"Phone": "(503) 555-9573",
"Fax": "(503) 555-9646"
},
{
"CustomerID": "MAGAA",
"CompanyName": "Magazzini Alimentari Riuniti",
"ContactName": "Giovanni Rovelli",
"ContactTitle": "Marketing Manager",
"Address": "Via Ludovico il Moro 22",
"City": "Bergamo",
"Region": null,
"PostalCode": "24100",
"Country": "Italy",
"Phone": "035-640230",
"Fax": "035-640231"
},
{
"CustomerID": "MAISD",
"CompanyName": "Maison Dewey",
"ContactName": "Catherine Dewey",
"ContactTitle": "Sales Agent",
"Address": "Rue Joseph-Bens 532",
"City": "Bruxelles",
"Region": null,
"PostalCode": "B-1180",
"Country": "Belgium",
"Phone": "(02) 201 24 67",
"Fax": "(02) 201 24 68"
},
{
"CustomerID": "MEREP",
"CompanyName": "Mère Paillarde",
"ContactName": "Jean Fresnière",
"ContactTitle": "Marketing Assistant",
"Address": "43 rue St. Laurent",
"City": "Montréal",
"Region": "Québec",
"PostalCode": "H1J 1C3",
"Country": "Canada",
"Phone": "(514) 555-8054",
"Fax": "(514) 555-8055"
},
{
"CustomerID": "MORGK",
"CompanyName": "Morgenstern Gesundkost",
"ContactName": "Alexander Feuer",
"ContactTitle": "Marketing Assistant",
"Address": "Heerstr. 22",
"City": "Leipzig",
"Region": null,
"PostalCode": "04179",
"Country": "Germany",
"Phone": "0342-023176",
"Fax": null
},
{
"CustomerID": "NORTS",
"CompanyName": "North/South",
"ContactName": "Simon Crowther",
"ContactTitle": "Sales Associate",
"Address": "South House 300 Queensbridge",
"City": "London",
"Region": null,
"PostalCode": "SW7 1RZ",
"Country": "UK",
"Phone": "(171) 555-7733",
"Fax": "(171) 555-2530"
},
{
"CustomerID": "OCEAN",
"CompanyName": "Océano Atlántico Ltda.",
"ContactName": "Yvonne Moncada",
"ContactTitle": "Sales Agent",
"Address": "Ing. Gustavo Moncada 8585 Piso 20-A",
"City": "Buenos Aires",
"Region": null,
"PostalCode": "1010",
"Country": "Argentina",
"Phone": "(1) 135-5333",
"Fax": "(1) 135-5535"
},
{
"CustomerID": "OLDWO",
"CompanyName": "Old World Delicatessen",
"ContactName": "Rene Phillips",
"ContactTitle": "Sales Representative",
"Address": "2743 Bering St.",
"City": "Anchorage",
"Region": "AK",
"PostalCode": "99508",
"Country": "USA",
"Phone": "(907) 555-7584",
"Fax": "(907) 555-2880"
},
{
"CustomerID": "OTTIK",
"CompanyName": "Ottilies Käseladen",
"ContactName": "Henriette Pfalzheim",
"ContactTitle": "Owner",
"Address": "Mehrheimerstr. 369",
"City": "Köln",
"Region": null,
"PostalCode": "50739",
"Country": "Germany",
"Phone": "0221-0644327",
"Fax": "0221-0765721"
},
{
"CustomerID": "PARIS",
"CompanyName": "Paris spécialités",
"ContactName": "Marie Bertrand",
"ContactTitle": "Owner",
"Address": "265, boulevard Charonne",
"City": "Paris",
"Region": null,
"PostalCode": "75012",
"Country": "France",
"Phone": "(1) 42.34.22.66",
"Fax": "(1) 42.34.22.77"
},
{
"CustomerID": "PERIC",
"CompanyName": "Pericles Comidas clásicas",
"ContactName": "Guillermo Fernández",
"ContactTitle": "Sales Representative",
"Address": "Calle Dr. Jorge Cash 321",
"City": "México D.F.",
"Region": null,
"PostalCode": "05033",
"Country": "Mexico",
"Phone": "(5) 552-3745",
"Fax": "(5) 545-3745"
},
{
"CustomerID": "PICCO",
"CompanyName": "Piccolo und mehr",
"ContactName": "Georg Pipps",
"ContactTitle": "Sales Manager",
"Address": "Geislweg 14",
"City": "Salzburg",
"Region": null,
"PostalCode": "5020",
"Country": "Austria",
"Phone": "6562-9722",
"Fax": "6562-9723"
},
{
"CustomerID": "PRINI",
"CompanyName": "Princesa Isabel Vinhos",
"ContactName": "Isabel de Castro",
"ContactTitle": "Sales Representative",
"Address": "Estrada da saúde n. 58",
"City": "Lisboa",
"Region": null,
"PostalCode": "1756",
"Country": "Portugal",
"Phone": "(1) 356-5634",
"Fax": null
},
{
"CustomerID": "QUEDE",
"CompanyName": "Que Delícia",
"ContactName": "Bernardo Batista",
"ContactTitle": "Accounting Manager",
"Address": "Rua da Panificadora, 12",
"City": "Rio de Janeiro",
"Region": "RJ",
"PostalCode": "02389-673",
"Country": "Brazil",
"Phone": "(21) 555-4252",
"Fax": "(21) 555-4545"
},
{
"CustomerID": "QUEEN",
"CompanyName": "Queen Cozinha",
"ContactName": "Lúcia Carvalho",
"ContactTitle": "Marketing Assistant",
"Address": "Alameda dos Canàrios, 891",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05487-020",
"Country": "Brazil",
"Phone": "(11) 555-1189",
"Fax": null
},
{
"CustomerID": "QUICK",
"CompanyName": "QUICK-Stop",
"ContactName": "Horst Kloss",
"ContactTitle": "Accounting Manager",
"Address": "Taucherstraße 10",
"City": "Cunewalde",
"Region": null,
"PostalCode": "01307",
"Country": "Germany",
"Phone": "0372-035188",
"Fax": null
},
{
"CustomerID": "RANCH",
"CompanyName": "Rancho grande",
"ContactName": "Sergio Gutiérrez",
"ContactTitle": "Sales Representative",
"Address": "Av. del Libertador 900",
"City": "Buenos Aires",
"Region": null,
"PostalCode": "1010",
"Country": "Argentina",
"Phone": "(1) 123-5555",
"Fax": "(1) 123-5556"
},
{
"CustomerID": "RATTC",
"CompanyName": "Rattlesnake Canyon Grocery",
"ContactName": "Paula Wilson",
"ContactTitle": "Assistant Sales Representative",
"Address": "2817 Milton Dr.",
"City": "Albuquerque",
"Region": "NM",
"PostalCode": "87110",
"Country": "USA",
"Phone": "(505) 555-5939",
"Fax": "(505) 555-3620"
},
{
"CustomerID": "REGGC",
"CompanyName": "Reggiani Caseifici",
"ContactName": "Maurizio Moroni",
"ContactTitle": "Sales Associate",
"Address": "Strada Provinciale 124",
"City": "Reggio Emilia",
"Region": null,
"PostalCode": "42100",
"Country": "Italy",
"Phone": "0522-556721",
"Fax": "0522-556722"
},
{
"CustomerID": "RICAR",
"CompanyName": "Ricardo Adocicados",
"ContactName": "Janete Limeira",
"ContactTitle": "Assistant Sales Agent",
"Address": "Av. Copacabana, 267",
"City": "Rio de Janeiro",
"Region": "RJ",
"PostalCode": "02389-890",
"Country": "Brazil",
"Phone": "(21) 555-3412",
"Fax": null
},
{
"CustomerID": "RICSU",
"CompanyName": "Richter Supermarkt",
"ContactName": "Michael Holz",
"ContactTitle": "Sales Manager",
"Address": "Grenzacherweg 237",
"City": "Genève",
"Region": null,
"PostalCode": "1203",
"Country": "Switzerland",
"Phone": "0897-034214",
"Fax": null
},
{
"CustomerID": "ROMEY",
"CompanyName": "Romero y tomillo",
"ContactName": "Alejandra Camino",
"ContactTitle": "Accounting Manager",
"Address": "Gran Vía, 1",
"City": "Madrid",
"Region": null,
"PostalCode": "28001",
"Country": "Spain",
"Phone": "(91) 745 6200",
"Fax": "(91) 745 6210"
},
{
"CustomerID": "SANTG",
"CompanyName": "Santé Gourmet",
"ContactName": "Jonas Bergulfsen",
"ContactTitle": "Owner",
"Address": "Erling Skakkes gate 78",
"City": "Stavern",
"Region": null,
"PostalCode": "4110",
"Country": "Norway",
"Phone": "07-98 92 35",
"Fax": "07-98 92 47"
},
{
"CustomerID": "SAVEA",
"CompanyName": "Save-a-lot Markets",
"ContactName": "Jose Pavarotti",
"ContactTitle": "Sales Representative",
"Address": "187 Suffolk Ln.",
"City": "Boise",
"Region": "ID",
"PostalCode": "83720",
"Country": "USA",
"Phone": "(208) 555-8097",
"Fax": null
},
{
"CustomerID": "SEVES",
"CompanyName": "Seven Seas Imports",
"ContactName": "Hari Kumar",
"ContactTitle": "Sales Manager",
"Address": "90 Wadhurst Rd.",
"City": "London",
"Region": null,
"PostalCode": "OX15 4NB",
"Country": "UK",
"Phone": "(171) 555-1717",
"Fax": "(171) 555-5646"
},
{
"CustomerID": "SIMOB",
"CompanyName": "Simons bistro",
"ContactName": "Jytte Petersen",
"ContactTitle": "Owner",
"Address": "Vinbæltet 34",
"City": "Kobenhavn",
"Region": null,
"PostalCode": "1734",
"Country": "Denmark",
"Phone": "31 12 34 56",
"Fax": "31 13 35 57"
},
{
"CustomerID": "SPECD",
"CompanyName": "Spécialités du monde",
"ContactName": "Dominique Perrier",
"ContactTitle": "Marketing Manager",
"Address": "25, rue Lauriston",
"City": "Paris",
"Region": null,
"PostalCode": "75016",
"Country": "France",
"Phone": "(1) 47.55.60.10",
"Fax": "(1) 47.55.60.20"
},
{
"CustomerID": "SPLIR",
"CompanyName": "Split Rail Beer & Ale",
"ContactName": "Art Braunschweiger",
"ContactTitle": "Sales Manager",
"Address": "P.O. Box 555",
"City": "Lander",
"Region": "WY",
"PostalCode": "82520",
"Country": "USA",
"Phone": "(307) 555-4680",
"Fax": "(307) 555-6525"
},
{
"CustomerID": "SUPRD",
"CompanyName": "Suprêmes délices",
"ContactName": "Pascale Cartrain",
"ContactTitle": "Accounting Manager",
"Address": "Boulevard Tirou, 255",
"City": "Charleroi",
"Region": null,
"PostalCode": "B-6000",
"Country": "Belgium",
"Phone": "(071) 23 67 22 20",
"Fax": "(071) 23 67 22 21"
},
{
"CustomerID": "THEBI",
"CompanyName": "The Big Cheese",
"ContactName": "Liz Nixon",
"ContactTitle": "Marketing Manager",
"Address": "89 Jefferson Way Suite 2",
"City": "Portland",
"Region": "OR",
"PostalCode": "97201",
"Country": "USA",
"Phone": "(503) 555-3612",
"Fax": null
},
{
"CustomerID": "THECR",
"CompanyName": "The Cracker Box",
"ContactName": "Liu Wong",
"ContactTitle": "Marketing Assistant",
"Address": "55 Grizzly Peak Rd.",
"City": "Butte",
"Region": "MT",
"PostalCode": "59801",
"Country": "USA",
"Phone": "(406) 555-5834",
"Fax": "(406) 555-8083"
},
{
"CustomerID": "TOMSP",
"CompanyName": "Toms Spezialitäten",
"ContactName": "Karin Josephs",
"ContactTitle": "Marketing Manager",
"Address": "Luisenstr. 48",
"City": "Münster",
"Region": null,
"PostalCode": "44087",
"Country": "Germany",
"Phone": "0251-031259",
"Fax": "0251-035695"
},
{
"CustomerID": "TORTU",
"CompanyName": "Tortuga Restaurante",
"ContactName": "Miguel Angel Paolino",
"ContactTitle": "Owner",
"Address": "Avda. Azteca 123",
"City": "México D.F.",
"Region": null,
"PostalCode": "05033",
"Country": "Mexico",
"Phone": "(5) 555-2933",
"Fax": null
},
{
"CustomerID": "TRADH",
"CompanyName": "Tradição Hipermercados",
"ContactName": "Anabela Domingues",
"ContactTitle": "Sales Representative",
"Address": "Av. Inês de Castro, 414",
"City": "Sao Paulo",
"Region": "SP",
"PostalCode": "05634-030",
"Country": "Brazil",
"Phone": "(11) 555-2167",
"Fax": "(11) 555-2168"
},
{
"CustomerID": "TRAIH",
"CompanyName": "Trail's Head Gourmet Provisioners",
"ContactName": "Helvetius Nagy",
"ContactTitle": "Sales Associate",
"Address": "722 DaVinci Blvd.",
"City": "Kirkland",
"Region": "WA",
"PostalCode": "98034",
"Country": "USA",
"Phone": "(206) 555-8257",
"Fax": "(206) 555-2174"
},
{
"CustomerID": "VAFFE",
"CompanyName": "Vaffeljernet",
"ContactName": "Palle Ibsen",
"ContactTitle": "Sales Manager",
"Address": "Smagsloget 45",
"City": "Århus",
"Region": null,
"PostalCode": "8200",
"Country": "Denmark",
"Phone": "86 21 32 43",
"Fax": "86 22 33 44"
},
{
"CustomerID": "VICTE",
"CompanyName": "Victuailles en stock",
"ContactName": "Mary Saveley",
"ContactTitle": "Sales Agent",
"Address": "2, rue du Commerce",
"City": "Lyon",
"Region": null,
"PostalCode": "69004",
"Country": "France",
"Phone": "78.32.54.86",
"Fax": "78.32.54.87"
},
{
"CustomerID": "VINET",
"CompanyName": "Vins et alcools Chevalier",
"ContactName": "Paul Henriot",
"ContactTitle": "Accounting Manager",
"Address": "59 rue de l'Abbaye",
"City": "Reims",
"Region": null,
"PostalCode": "51100",
"Country": "France",
"Phone": "26.47.15.10",
"Fax": "26.47.15.11"
},
{
"CustomerID": "WANDK",
"CompanyName": "Die Wandernde Kuh",
"ContactName": "Rita Müller",
"ContactTitle": "Sales Representative",
"Address": "Adenauerallee 900",
"City": "Stuttgart",
"Region": null,
"PostalCode": "70563",
"Country": "Germany",
"Phone": "0711-020361",
"Fax": "0711-035428"
},
{
"CustomerID": "WARTH",
"CompanyName": "Wartian Herkku",
"ContactName": "Pirkko Koskitalo",
"ContactTitle": "Accounting Manager",
"Address": "Torikatu 38",
"City": "Oulu",
"Region": null,
"PostalCode": "90110",
"Country": "Finland",
"Phone": "981-443655",
"Fax": "981-443655"
},
{
"CustomerID": "WELLI",
"CompanyName": "Wellington Importadora",
"ContactName": "Paula Parente",
"ContactTitle": "Sales Manager",
"Address": "Rua do Mercado, 12",
"City": "Resende",
"Region": "SP",
"PostalCode": "08737-363",
"Country": "Brazil",
"Phone": "(14) 555-8122",
"Fax": null
},
{
"CustomerID": "WHITC",
"CompanyName": "White Clover Markets",
"ContactName": "Karl Jablonski",
"ContactTitle": "Owner",
"Address": "305 - 14th Ave. S. Suite 3B",
"City": "Seattle",
"Region": "WA",
"PostalCode": "98128",
"Country": "USA",
"Phone": "(206) 555-4112",
"Fax": "(206) 555-4115"
},
{
"CustomerID": "WILMK",
"CompanyName": "Wilman Kala",
"ContactName": "Matti Karttunen",
"ContactTitle": "Owner/Marketing Assistant",
"Address": "Keskuskatu 45",
"City": "Helsinki",
"Region": null,
"PostalCode": "21240",
"Country": "Finland",
"Phone": "90-224 8858",
"Fax": "90-224 8858"
},
{
"CustomerID": "WOLZA",
"CompanyName": "Wolski Zajazd",
"ContactName": "Zbyszek Piestrzeniewicz",
"ContactTitle": "Owner",
"Address": "ul. Filtrowa 68",
"City": "Warszawa",
"Region": null,
"PostalCode": "01-012",
"Country": "Poland",
"Phone": "(26) 642-7012",
"Fax": "(26) 642-7012"
}
],
"Orders": [
{
"OrderID": 10248,
"CustomerID": "VINET",
"EmployeeID": 5,
"OrderDate": "/Date(836438400000)/",
"RequiredDate": "/Date(838857600000)/",
"ShippedDate": "/Date(837475200000)/",
"ShipVia": 3,
"Freight": "32.3800",
"ShipName": "Vins et alcools Chevalier",
"ShipAddress": "59 rue de l'Abbaye",
"ShipCity": "Reims",
"ShipRegion": null,
"ShipPostalCode": "51100",
"ShipCountry": "France"
},
{
"OrderID": 10249,
"CustomerID": "TOMSP",
"EmployeeID": 6,
"OrderDate": "/Date(836524800000)/",
"RequiredDate": "/Date(840153600000)/",
"ShippedDate": "/Date(836956800000)/",
"ShipVia": 1,
"Freight": "11.6100",
"ShipName": "Toms Spezialitäten",
"ShipAddress": "Luisenstr. 48",
"ShipCity": "Münster",
"ShipRegion": null,
"ShipPostalCode": "44087",
"ShipCountry": "Germany"
},
{
"OrderID": 10250,
"CustomerID": "HANAR",
"EmployeeID": 4,
"OrderDate": "/Date(836784000000)/",
"RequiredDate": "/Date(839203200000)/",
"ShippedDate": "/Date(837129600000)/",
"ShipVia": 2,
"Freight": "65.8300",
"ShipName": "Hanari Carnes",
"ShipAddress": "Rua do Paço, 67",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "05454-876",
"ShipCountry": "Brazil"
},
{
"OrderID": 10251,
"CustomerID": "VICTE",
"EmployeeID": 3,
"OrderDate": "/Date(836784000000)/",
"RequiredDate": "/Date(839203200000)/",
"ShippedDate": "/Date(837388800000)/",
"ShipVia": 1,
"Freight": "41.3400",
"ShipName": "Victuailles en stock",
"ShipAddress": "2, rue du Commerce",
"ShipCity": "Lyon",
"ShipRegion": null,
"ShipPostalCode": "69004",
"ShipCountry": "France"
},
{
"OrderID": 10252,
"CustomerID": "SUPRD",
"EmployeeID": 4,
"OrderDate": "/Date(836870400000)/",
"RequiredDate": "/Date(839289600000)/",
"ShippedDate": "/Date(837043200000)/",
"ShipVia": 2,
"Freight": "51.3000",
"ShipName": "Suprêmes délices",
"ShipAddress": "Boulevard Tirou, 255",
"ShipCity": "Charleroi",
"ShipRegion": null,
"ShipPostalCode": "B-6000",
"ShipCountry": "Belgium"
},
{
"OrderID": 10253,
"CustomerID": "HANAR",
"EmployeeID": 3,
"OrderDate": "/Date(836956800000)/",
"RequiredDate": "/Date(838166400000)/",
"ShippedDate": "/Date(837475200000)/",
"ShipVia": 2,
"Freight": "58.1700",
"ShipName": "Hanari Carnes",
"ShipAddress": "Rua do Paço, 67",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "05454-876",
"ShipCountry": "Brazil"
},
{
"OrderID": 10254,
"CustomerID": "CHOPS",
"EmployeeID": 5,
"OrderDate": "/Date(837043200000)/",
"RequiredDate": "/Date(839462400000)/",
"ShippedDate": "/Date(838080000000)/",
"ShipVia": 2,
"Freight": "22.9800",
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland"
},
{
"OrderID": 10255,
"CustomerID": "RICSU",
"EmployeeID": 9,
"OrderDate": "/Date(837129600000)/",
"RequiredDate": "/Date(839548800000)/",
"ShippedDate": "/Date(837388800000)/",
"ShipVia": 3,
"Freight": "148.3300",
"ShipName": "Richter Supermarkt",
"ShipAddress": "Starenweg 5",
"ShipCity": "Genève",
"ShipRegion": null,
"ShipPostalCode": "1204",
"ShipCountry": "Switzerland"
},
{
"OrderID": 10256,
"CustomerID": "WELLI",
"EmployeeID": 3,
"OrderDate": "/Date(837388800000)/",
"RequiredDate": "/Date(839808000000)/",
"ShippedDate": "/Date(837561600000)/",
"ShipVia": 2,
"Freight": "13.9700",
"ShipName": "Wellington Importadora",
"ShipAddress": "Rua do Mercado, 12",
"ShipCity": "Resende",
"ShipRegion": "SP",
"ShipPostalCode": "08737-363",
"ShipCountry": "Brazil"
},
{
"OrderID": 10257,
"CustomerID": "HILAA",
"EmployeeID": 4,
"OrderDate": "/Date(837475200000)/",
"RequiredDate": "/Date(839894400000)/",
"ShippedDate": "/Date(837993600000)/",
"ShipVia": 3,
"Freight": "81.9100",
"ShipName": "HILARION-Abastos",
"ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35",
"ShipCity": "San Cristóbal",
"ShipRegion": "Táchira",
"ShipPostalCode": "5022",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10258,
"CustomerID": "ERNSH",
"EmployeeID": 1,
"OrderDate": "/Date(837561600000)/",
"RequiredDate": "/Date(839980800000)/",
"ShippedDate": "/Date(838080000000)/",
"ShipVia": 1,
"Freight": "140.5100",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10259,
"CustomerID": "CENTC",
"EmployeeID": 4,
"OrderDate": "/Date(837648000000)/",
"RequiredDate": "/Date(840067200000)/",
"ShippedDate": "/Date(838252800000)/",
"ShipVia": 3,
"Freight": "3.2500",
"ShipName": "Centro comercial Moctezuma",
"ShipAddress": "Sierras de Granada 9993",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05022",
"ShipCountry": "Mexico"
},
{
"OrderID": 10260,
"CustomerID": "OTTIK",
"EmployeeID": 4,
"OrderDate": "/Date(837734400000)/",
"RequiredDate": "/Date(840153600000)/",
"ShippedDate": "/Date(838598400000)/",
"ShipVia": 1,
"Freight": "55.0900",
"ShipName": "Ottilies Käseladen",
"ShipAddress": "Mehrheimerstr. 369",
"ShipCity": "Köln",
"ShipRegion": null,
"ShipPostalCode": "50739",
"ShipCountry": "Germany"
},
{
"OrderID": 10261,
"CustomerID": "QUEDE",
"EmployeeID": 4,
"OrderDate": "/Date(837734400000)/",
"RequiredDate": "/Date(840153600000)/",
"ShippedDate": "/Date(838684800000)/",
"ShipVia": 2,
"Freight": "3.0500",
"ShipName": "Que Delícia",
"ShipAddress": "Rua da Panificadora, 12",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "02389-673",
"ShipCountry": "Brazil"
},
{
"OrderID": 10262,
"CustomerID": "RATTC",
"EmployeeID": 8,
"OrderDate": "/Date(837993600000)/",
"RequiredDate": "/Date(840412800000)/",
"ShippedDate": "/Date(838252800000)/",
"ShipVia": 3,
"Freight": "48.2900",
"ShipName": "Rattlesnake Canyon Grocery",
"ShipAddress": "2817 Milton Dr.",
"ShipCity": "Albuquerque",
"ShipRegion": "NM",
"ShipPostalCode": "87110",
"ShipCountry": "USA"
},
{
"OrderID": 10263,
"CustomerID": "ERNSH",
"EmployeeID": 9,
"OrderDate": "/Date(838080000000)/",
"RequiredDate": "/Date(840499200000)/",
"ShippedDate": "/Date(838771200000)/",
"ShipVia": 3,
"Freight": "146.0600",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10264,
"CustomerID": "FOLKO",
"EmployeeID": 6,
"OrderDate": "/Date(838166400000)/",
"RequiredDate": "/Date(840585600000)/",
"ShippedDate": "/Date(840758400000)/",
"ShipVia": 3,
"Freight": "3.6700",
"ShipName": "Folk och fä HB",
"ShipAddress": "Åkergatan 24",
"ShipCity": "Bräcke",
"ShipRegion": null,
"ShipPostalCode": "S-844 67",
"ShipCountry": "Sweden"
},
{
"OrderID": 10265,
"CustomerID": "BLONP",
"EmployeeID": 2,
"OrderDate": "/Date(838252800000)/",
"RequiredDate": "/Date(840672000000)/",
"ShippedDate": "/Date(839808000000)/",
"ShipVia": 1,
"Freight": "55.2800",
"ShipName": "Blondel père et fils",
"ShipAddress": "24, place Kléber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France"
},
{
"OrderID": 10266,
"CustomerID": "WARTH",
"EmployeeID": 3,
"OrderDate": "/Date(838339200000)/",
"RequiredDate": "/Date(841968000000)/",
"ShippedDate": "/Date(838771200000)/",
"ShipVia": 3,
"Freight": "25.7300",
"ShipName": "Wartian Herkku",
"ShipAddress": "Torikatu 38",
"ShipCity": "Oulu",
"ShipRegion": null,
"ShipPostalCode": "90110",
"ShipCountry": "Finland"
},
{
"OrderID": 10267,
"CustomerID": "FRANK",
"EmployeeID": 4,
"OrderDate": "/Date(838598400000)/",
"RequiredDate": "/Date(841017600000)/",
"ShippedDate": "/Date(839289600000)/",
"ShipVia": 1,
"Freight": "208.5800",
"ShipName": "Frankenversand",
"ShipAddress": "Berliner Platz 43",
"ShipCity": "München",
"ShipRegion": null,
"ShipPostalCode": "80805",
"ShipCountry": "Germany"
},
{
"OrderID": 10268,
"CustomerID": "GROSR",
"EmployeeID": 8,
"OrderDate": "/Date(838684800000)/",
"RequiredDate": "/Date(841104000000)/",
"ShippedDate": "/Date(838944000000)/",
"ShipVia": 3,
"Freight": "66.2900",
"ShipName": "GROSELLA-Restaurante",
"ShipAddress": "5ª Ave. Los Palos Grandes",
"ShipCity": "Caracas",
"ShipRegion": "DF",
"ShipPostalCode": "1081",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10269,
"CustomerID": "WHITC",
"EmployeeID": 5,
"OrderDate": "/Date(838771200000)/",
"RequiredDate": "/Date(839980800000)/",
"ShippedDate": "/Date(839548800000)/",
"ShipVia": 1,
"Freight": "4.5600",
"ShipName": "White Clover Markets",
"ShipAddress": "1029 - 12th Ave. S.",
"ShipCity": "Seattle",
"ShipRegion": "WA",
"ShipPostalCode": "98124",
"ShipCountry": "USA"
},
{
"OrderID": 10270,
"CustomerID": "WARTH",
"EmployeeID": 1,
"OrderDate": "/Date(838857600000)/",
"RequiredDate": "/Date(841276800000)/",
"ShippedDate": "/Date(838944000000)/",
"ShipVia": 1,
"Freight": "136.5400",
"ShipName": "Wartian Herkku",
"ShipAddress": "Torikatu 38",
"ShipCity": "Oulu",
"ShipRegion": null,
"ShipPostalCode": "90110",
"ShipCountry": "Finland"
},
{
"OrderID": 10271,
"CustomerID": "SPLIR",
"EmployeeID": 6,
"OrderDate": "/Date(838857600000)/",
"RequiredDate": "/Date(841276800000)/",
"ShippedDate": "/Date(841363200000)/",
"ShipVia": 2,
"Freight": "4.5400",
"ShipName": "Split Rail Beer & Ale",
"ShipAddress": "P.O. Box 555",
"ShipCity": "Lander",
"ShipRegion": "WY",
"ShipPostalCode": "82520",
"ShipCountry": "USA"
},
{
"OrderID": 10272,
"CustomerID": "RATTC",
"EmployeeID": 6,
"OrderDate": "/Date(838944000000)/",
"RequiredDate": "/Date(841363200000)/",
"ShippedDate": "/Date(839289600000)/",
"ShipVia": 2,
"Freight": "98.0300",
"ShipName": "Rattlesnake Canyon Grocery",
"ShipAddress": "2817 Milton Dr.",
"ShipCity": "Albuquerque",
"ShipRegion": "NM",
"ShipPostalCode": "87110",
"ShipCountry": "USA"
},
{
"OrderID": 10273,
"CustomerID": "QUICK",
"EmployeeID": 3,
"OrderDate": "/Date(839203200000)/",
"RequiredDate": "/Date(841622400000)/",
"ShippedDate": "/Date(839808000000)/",
"ShipVia": 3,
"Freight": "76.0700",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10274,
"CustomerID": "VINET",
"EmployeeID": 6,
"OrderDate": "/Date(839289600000)/",
"RequiredDate": "/Date(841708800000)/",
"ShippedDate": "/Date(840153600000)/",
"ShipVia": 1,
"Freight": "6.0100",
"ShipName": "Vins et alcools Chevalier",
"ShipAddress": "59 rue de l'Abbaye",
"ShipCity": "Reims",
"ShipRegion": null,
"ShipPostalCode": "51100",
"ShipCountry": "France"
},
{
"OrderID": 10275,
"CustomerID": "MAGAA",
"EmployeeID": 1,
"OrderDate": "/Date(839376000000)/",
"RequiredDate": "/Date(841795200000)/",
"ShippedDate": "/Date(839548800000)/",
"ShipVia": 1,
"Freight": "26.9300",
"ShipName": "Magazzini Alimentari Riuniti",
"ShipAddress": "Via Ludovico il Moro 22",
"ShipCity": "Bergamo",
"ShipRegion": null,
"ShipPostalCode": "24100",
"ShipCountry": "Italy"
},
{
"OrderID": 10276,
"CustomerID": "TORTU",
"EmployeeID": 8,
"OrderDate": "/Date(839462400000)/",
"RequiredDate": "/Date(840672000000)/",
"ShippedDate": "/Date(839980800000)/",
"ShipVia": 3,
"Freight": "13.8400",
"ShipName": "Tortuga Restaurante",
"ShipAddress": "Avda. Azteca 123",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05033",
"ShipCountry": "Mexico"
},
{
"OrderID": 10277,
"CustomerID": "MORGK",
"EmployeeID": 2,
"OrderDate": "/Date(839548800000)/",
"RequiredDate": "/Date(841968000000)/",
"ShippedDate": "/Date(839894400000)/",
"ShipVia": 3,
"Freight": "125.7700",
"ShipName": "Morgenstern Gesundkost",
"ShipAddress": "Heerstr. 22",
"ShipCity": "Leipzig",
"ShipRegion": null,
"ShipPostalCode": "04179",
"ShipCountry": "Germany"
},
{
"OrderID": 10278,
"CustomerID": "BERGS",
"EmployeeID": 8,
"OrderDate": "/Date(839808000000)/",
"RequiredDate": "/Date(842227200000)/",
"ShippedDate": "/Date(840153600000)/",
"ShipVia": 2,
"Freight": "92.6900",
"ShipName": "Berglunds snabbköp",
"ShipAddress": "Berguvsvägen 8",
"ShipCity": "Luleå",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden"
},
{
"OrderID": 10279,
"CustomerID": "LEHMS",
"EmployeeID": 8,
"OrderDate": "/Date(839894400000)/",
"RequiredDate": "/Date(842313600000)/",
"ShippedDate": "/Date(840153600000)/",
"ShipVia": 2,
"Freight": "25.8300",
"ShipName": "Lehmanns Marktstand",
"ShipAddress": "Magazinweg 7",
"ShipCity": "Frankfurt a.M.",
"ShipRegion": null,
"ShipPostalCode": "60528",
"ShipCountry": "Germany"
},
{
"OrderID": 10280,
"CustomerID": "BERGS",
"EmployeeID": 2,
"OrderDate": "/Date(839980800000)/",
"RequiredDate": "/Date(842400000000)/",
"ShippedDate": "/Date(842486400000)/",
"ShipVia": 1,
"Freight": "8.9800",
"ShipName": "Berglunds snabbköp",
"ShipAddress": "Berguvsvägen 8",
"ShipCity": "Luleå",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden"
},
{
"OrderID": 10281,
"CustomerID": "ROMEY",
"EmployeeID": 4,
"OrderDate": "/Date(839980800000)/",
"RequiredDate": "/Date(841190400000)/",
"ShippedDate": "/Date(840585600000)/",
"ShipVia": 1,
"Freight": "2.9400",
"ShipName": "Romero y tomillo",
"ShipAddress": "Gran Vía, 1",
"ShipCity": "Madrid",
"ShipRegion": null,
"ShipPostalCode": "28001",
"ShipCountry": "Spain"
},
{
"OrderID": 10282,
"CustomerID": "ROMEY",
"EmployeeID": 4,
"OrderDate": "/Date(840067200000)/",
"RequiredDate": "/Date(842486400000)/",
"ShippedDate": "/Date(840585600000)/",
"ShipVia": 1,
"Freight": "12.6900",
"ShipName": "Romero y tomillo",
"ShipAddress": "Gran Vía, 1",
"ShipCity": "Madrid",
"ShipRegion": null,
"ShipPostalCode": "28001",
"ShipCountry": "Spain"
},
{
"OrderID": 10283,
"CustomerID": "LILAS",
"EmployeeID": 3,
"OrderDate": "/Date(840153600000)/",
"RequiredDate": "/Date(842572800000)/",
"ShippedDate": "/Date(840758400000)/",
"ShipVia": 3,
"Freight": "84.8100",
"ShipName": "LILA-Supermercado",
"ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo",
"ShipCity": "Barquisimeto",
"ShipRegion": "Lara",
"ShipPostalCode": "3508",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10284,
"CustomerID": "LEHMS",
"EmployeeID": 4,
"OrderDate": "/Date(840412800000)/",
"RequiredDate": "/Date(842832000000)/",
"ShippedDate": "/Date(841104000000)/",
"ShipVia": 1,
"Freight": "76.5600",
"ShipName": "Lehmanns Marktstand",
"ShipAddress": "Magazinweg 7",
"ShipCity": "Frankfurt a.M.",
"ShipRegion": null,
"ShipPostalCode": "60528",
"ShipCountry": "Germany"
},
{
"OrderID": 10285,
"CustomerID": "QUICK",
"EmployeeID": 1,
"OrderDate": "/Date(840499200000)/",
"RequiredDate": "/Date(842918400000)/",
"ShippedDate": "/Date(841017600000)/",
"ShipVia": 2,
"Freight": "76.8300",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10286,
"CustomerID": "QUICK",
"EmployeeID": 8,
"OrderDate": "/Date(840585600000)/",
"RequiredDate": "/Date(843004800000)/",
"ShippedDate": "/Date(841363200000)/",
"ShipVia": 3,
"Freight": "229.2400",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10287,
"CustomerID": "RICAR",
"EmployeeID": 8,
"OrderDate": "/Date(840672000000)/",
"RequiredDate": "/Date(843091200000)/",
"ShippedDate": "/Date(841190400000)/",
"ShipVia": 3,
"Freight": "12.7600",
"ShipName": "Ricardo Adocicados",
"ShipAddress": "Av. Copacabana, 267",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "02389-890",
"ShipCountry": "Brazil"
},
{
"OrderID": 10288,
"CustomerID": "REGGC",
"EmployeeID": 4,
"OrderDate": "/Date(840758400000)/",
"RequiredDate": "/Date(843177600000)/",
"ShippedDate": "/Date(841708800000)/",
"ShipVia": 1,
"Freight": "7.4500",
"ShipName": "Reggiani Caseifici",
"ShipAddress": "Strada Provinciale 124",
"ShipCity": "Reggio Emilia",
"ShipRegion": null,
"ShipPostalCode": "42100",
"ShipCountry": "Italy"
},
{
"OrderID": 10289,
"CustomerID": "BSBEV",
"EmployeeID": 7,
"OrderDate": "/Date(841017600000)/",
"RequiredDate": "/Date(843436800000)/",
"ShippedDate": "/Date(841190400000)/",
"ShipVia": 3,
"Freight": "22.7700",
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK"
},
{
"OrderID": 10290,
"CustomerID": "COMMI",
"EmployeeID": 8,
"OrderDate": "/Date(841104000000)/",
"RequiredDate": "/Date(843523200000)/",
"ShippedDate": "/Date(841708800000)/",
"ShipVia": 1,
"Freight": "79.7000",
"ShipName": "Comércio Mineiro",
"ShipAddress": "Av. dos Lusíadas, 23",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05432-043",
"ShipCountry": "Brazil"
},
{
"OrderID": 10291,
"CustomerID": "QUEDE",
"EmployeeID": 6,
"OrderDate": "/Date(841104000000)/",
"RequiredDate": "/Date(843523200000)/",
"ShippedDate": "/Date(841795200000)/",
"ShipVia": 2,
"Freight": "6.4000",
"ShipName": "Que Delícia",
"ShipAddress": "Rua da Panificadora, 12",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "02389-673",
"ShipCountry": "Brazil"
},
{
"OrderID": 10292,
"CustomerID": "TRADH",
"EmployeeID": 1,
"OrderDate": "/Date(841190400000)/",
"RequiredDate": "/Date(843609600000)/",
"ShippedDate": "/Date(841622400000)/",
"ShipVia": 2,
"Freight": "1.3500",
"ShipName": "Tradiçao Hipermercados",
"ShipAddress": "Av. Inês de Castro, 414",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05634-030",
"ShipCountry": "Brazil"
},
{
"OrderID": 10293,
"CustomerID": "TORTU",
"EmployeeID": 1,
"OrderDate": "/Date(841276800000)/",
"RequiredDate": "/Date(843696000000)/",
"ShippedDate": "/Date(842400000000)/",
"ShipVia": 3,
"Freight": "21.1800",
"ShipName": "Tortuga Restaurante",
"ShipAddress": "Avda. Azteca 123",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05033",
"ShipCountry": "Mexico"
},
{
"OrderID": 10294,
"CustomerID": "RATTC",
"EmployeeID": 4,
"OrderDate": "/Date(841363200000)/",
"RequiredDate": "/Date(843782400000)/",
"ShippedDate": "/Date(841881600000)/",
"ShipVia": 2,
"Freight": "147.2600",
"ShipName": "Rattlesnake Canyon Grocery",
"ShipAddress": "2817 Milton Dr.",
"ShipCity": "Albuquerque",
"ShipRegion": "NM",
"ShipPostalCode": "87110",
"ShipCountry": "USA"
},
{
"OrderID": 10295,
"CustomerID": "VINET",
"EmployeeID": 2,
"OrderDate": "/Date(841622400000)/",
"RequiredDate": "/Date(844041600000)/",
"ShippedDate": "/Date(842313600000)/",
"ShipVia": 2,
"Freight": "1.1500",
"ShipName": "Vins et alcools Chevalier",
"ShipAddress": "59 rue de l'Abbaye",
"ShipCity": "Reims",
"ShipRegion": null,
"ShipPostalCode": "51100",
"ShipCountry": "France"
},
{
"OrderID": 10296,
"CustomerID": "LILAS",
"EmployeeID": 6,
"OrderDate": "/Date(841708800000)/",
"RequiredDate": "/Date(844128000000)/",
"ShippedDate": "/Date(842400000000)/",
"ShipVia": 1,
"Freight": "0.1200",
"ShipName": "LILA-Supermercado",
"ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo",
"ShipCity": "Barquisimeto",
"ShipRegion": "Lara",
"ShipPostalCode": "3508",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10297,
"CustomerID": "BLONP",
"EmployeeID": 5,
"OrderDate": "/Date(841795200000)/",
"RequiredDate": "/Date(845424000000)/",
"ShippedDate": "/Date(842313600000)/",
"ShipVia": 2,
"Freight": "5.7400",
"ShipName": "Blondel père et fils",
"ShipAddress": "24, place Kléber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France"
},
{
"OrderID": 10298,
"CustomerID": "HUNGO",
"EmployeeID": 6,
"OrderDate": "/Date(841881600000)/",
"RequiredDate": "/Date(844300800000)/",
"ShippedDate": "/Date(842400000000)/",
"ShipVia": 2,
"Freight": "168.2200",
"ShipName": "Hungry Owl All-Night Grocers",
"ShipAddress": "8 Johnstown Road",
"ShipCity": "Cork",
"ShipRegion": "Co. Cork",
"ShipPostalCode": null,
"ShipCountry": "Ireland"
},
{
"OrderID": 10299,
"CustomerID": "RICAR",
"EmployeeID": 4,
"OrderDate": "/Date(841968000000)/",
"RequiredDate": "/Date(844387200000)/",
"ShippedDate": "/Date(842572800000)/",
"ShipVia": 2,
"Freight": "29.7600",
"ShipName": "Ricardo Adocicados",
"ShipAddress": "Av. Copacabana, 267",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "02389-890",
"ShipCountry": "Brazil"
},
{
"OrderID": 10300,
"CustomerID": "MAGAA",
"EmployeeID": 2,
"OrderDate": "/Date(842227200000)/",
"RequiredDate": "/Date(844646400000)/",
"ShippedDate": "/Date(843004800000)/",
"ShipVia": 2,
"Freight": "17.6800",
"ShipName": "Magazzini Alimentari Riuniti",
"ShipAddress": "Via Ludovico il Moro 22",
"ShipCity": "Bergamo",
"ShipRegion": null,
"ShipPostalCode": "24100",
"ShipCountry": "Italy"
},
{
"OrderID": 10301,
"CustomerID": "WANDK",
"EmployeeID": 8,
"OrderDate": "/Date(842227200000)/",
"RequiredDate": "/Date(844646400000)/",
"ShippedDate": "/Date(842918400000)/",
"ShipVia": 2,
"Freight": "45.0800",
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany"
},
{
"OrderID": 10302,
"CustomerID": "SUPRD",
"EmployeeID": 4,
"OrderDate": "/Date(842313600000)/",
"RequiredDate": "/Date(844732800000)/",
"ShippedDate": "/Date(844819200000)/",
"ShipVia": 2,
"Freight": "6.2700",
"ShipName": "Suprêmes délices",
"ShipAddress": "Boulevard Tirou, 255",
"ShipCity": "Charleroi",
"ShipRegion": null,
"ShipPostalCode": "B-6000",
"ShipCountry": "Belgium"
},
{
"OrderID": 10303,
"CustomerID": "GODOS",
"EmployeeID": 7,
"OrderDate": "/Date(842400000000)/",
"RequiredDate": "/Date(844819200000)/",
"ShippedDate": "/Date(843004800000)/",
"ShipVia": 2,
"Freight": "107.8300",
"ShipName": "Godos Cocina Típica",
"ShipAddress": "C/ Romero, 33",
"ShipCity": "Sevilla",
"ShipRegion": null,
"ShipPostalCode": "41101",
"ShipCountry": "Spain"
},
{
"OrderID": 10304,
"CustomerID": "TORTU",
"EmployeeID": 1,
"OrderDate": "/Date(842486400000)/",
"RequiredDate": "/Date(844905600000)/",
"ShippedDate": "/Date(842918400000)/",
"ShipVia": 2,
"Freight": "63.7900",
"ShipName": "Tortuga Restaurante",
"ShipAddress": "Avda. Azteca 123",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05033",
"ShipCountry": "Mexico"
},
{
"OrderID": 10305,
"CustomerID": "OLDWO",
"EmployeeID": 8,
"OrderDate": "/Date(842572800000)/",
"RequiredDate": "/Date(844992000000)/",
"ShippedDate": "/Date(844819200000)/",
"ShipVia": 3,
"Freight": "257.6200",
"ShipName": "Old World Delicatessen",
"ShipAddress": "2743 Bering St.",
"ShipCity": "Anchorage",
"ShipRegion": "AK",
"ShipPostalCode": "99508",
"ShipCountry": "USA"
},
{
"OrderID": 10306,
"CustomerID": "ROMEY",
"EmployeeID": 1,
"OrderDate": "/Date(842832000000)/",
"RequiredDate": "/Date(845251200000)/",
"ShippedDate": "/Date(843436800000)/",
"ShipVia": 3,
"Freight": "7.5600",
"ShipName": "Romero y tomillo",
"ShipAddress": "Gran Vía, 1",
"ShipCity": "Madrid",
"ShipRegion": null,
"ShipPostalCode": "28001",
"ShipCountry": "Spain"
},
{
"OrderID": 10307,
"CustomerID": "LONEP",
"EmployeeID": 2,
"OrderDate": "/Date(842918400000)/",
"RequiredDate": "/Date(845337600000)/",
"ShippedDate": "/Date(843609600000)/",
"ShipVia": 2,
"Freight": "0.5600",
"ShipName": "Lonesome Pine Restaurant",
"ShipAddress": "89 Chiaroscuro Rd.",
"ShipCity": "Portland",
"ShipRegion": "OR",
"ShipPostalCode": "97219",
"ShipCountry": "USA"
},
{
"OrderID": 10308,
"CustomerID": "ANATR",
"EmployeeID": 7,
"OrderDate": "/Date(843004800000)/",
"RequiredDate": "/Date(845424000000)/",
"ShippedDate": "/Date(843523200000)/",
"ShipVia": 3,
"Freight": "1.6100",
"ShipName": "Ana Trujillo Emparedados y helados",
"ShipAddress": "Avda. de la Constitución 2222",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05021",
"ShipCountry": "Mexico"
},
{
"OrderID": 10309,
"CustomerID": "HUNGO",
"EmployeeID": 3,
"OrderDate": "/Date(843091200000)/",
"RequiredDate": "/Date(845510400000)/",
"ShippedDate": "/Date(846028800000)/",
"ShipVia": 1,
"Freight": "47.3000",
"ShipName": "Hungry Owl All-Night Grocers",
"ShipAddress": "8 Johnstown Road",
"ShipCity": "Cork",
"ShipRegion": "Co. Cork",
"ShipPostalCode": null,
"ShipCountry": "Ireland"
},
{
"OrderID": 10310,
"CustomerID": "THEBI",
"EmployeeID": 8,
"OrderDate": "/Date(843177600000)/",
"RequiredDate": "/Date(845596800000)/",
"ShippedDate": "/Date(843782400000)/",
"ShipVia": 2,
"Freight": "17.5200",
"ShipName": "The Big Cheese",
"ShipAddress": "89 Jefferson Way Suite 2",
"ShipCity": "Portland",
"ShipRegion": "OR",
"ShipPostalCode": "97201",
"ShipCountry": "USA"
},
{
"OrderID": 10311,
"CustomerID": "DUMON",
"EmployeeID": 1,
"OrderDate": "/Date(843177600000)/",
"RequiredDate": "/Date(844387200000)/",
"ShippedDate": "/Date(843696000000)/",
"ShipVia": 3,
"Freight": "24.6900",
"ShipName": "Du monde entier",
"ShipAddress": "67, rue des Cinquante Otages",
"ShipCity": "Nantes",
"ShipRegion": null,
"ShipPostalCode": "44000",
"ShipCountry": "France"
},
{
"OrderID": 10312,
"CustomerID": "WANDK",
"EmployeeID": 2,
"OrderDate": "/Date(843436800000)/",
"RequiredDate": "/Date(845856000000)/",
"ShippedDate": "/Date(844300800000)/",
"ShipVia": 2,
"Freight": "40.2600",
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany"
},
{
"OrderID": 10313,
"CustomerID": "QUICK",
"EmployeeID": 2,
"OrderDate": "/Date(843523200000)/",
"RequiredDate": "/Date(845942400000)/",
"ShippedDate": "/Date(844387200000)/",
"ShipVia": 2,
"Freight": "1.9600",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10314,
"CustomerID": "RATTC",
"EmployeeID": 1,
"OrderDate": "/Date(843609600000)/",
"RequiredDate": "/Date(846028800000)/",
"ShippedDate": "/Date(844387200000)/",
"ShipVia": 2,
"Freight": "74.1600",
"ShipName": "Rattlesnake Canyon Grocery",
"ShipAddress": "2817 Milton Dr.",
"ShipCity": "Albuquerque",
"ShipRegion": "NM",
"ShipPostalCode": "87110",
"ShipCountry": "USA"
},
{
"OrderID": 10315,
"CustomerID": "ISLAT",
"EmployeeID": 4,
"OrderDate": "/Date(843696000000)/",
"RequiredDate": "/Date(846115200000)/",
"ShippedDate": "/Date(844300800000)/",
"ShipVia": 2,
"Freight": "41.7600",
"ShipName": "Island Trading",
"ShipAddress": "Garden House Crowther Way",
"ShipCity": "Cowes",
"ShipRegion": "Isle of Wight",
"ShipPostalCode": "PO31 7PJ",
"ShipCountry": "UK"
},
{
"OrderID": 10316,
"CustomerID": "RATTC",
"EmployeeID": 1,
"OrderDate": "/Date(843782400000)/",
"RequiredDate": "/Date(846201600000)/",
"ShippedDate": "/Date(844732800000)/",
"ShipVia": 3,
"Freight": "150.1500",
"ShipName": "Rattlesnake Canyon Grocery",
"ShipAddress": "2817 Milton Dr.",
"ShipCity": "Albuquerque",
"ShipRegion": "NM",
"ShipPostalCode": "87110",
"ShipCountry": "USA"
},
{
"OrderID": 10317,
"CustomerID": "LONEP",
"EmployeeID": 6,
"OrderDate": "/Date(844041600000)/",
"RequiredDate": "/Date(846460800000)/",
"ShippedDate": "/Date(844905600000)/",
"ShipVia": 1,
"Freight": "12.6900",
"ShipName": "Lonesome Pine Restaurant",
"ShipAddress": "89 Chiaroscuro Rd.",
"ShipCity": "Portland",
"ShipRegion": "OR",
"ShipPostalCode": "97219",
"ShipCountry": "USA"
},
{
"OrderID": 10318,
"CustomerID": "ISLAT",
"EmployeeID": 8,
"OrderDate": "/Date(844128000000)/",
"RequiredDate": "/Date(846547200000)/",
"ShippedDate": "/Date(844387200000)/",
"ShipVia": 2,
"Freight": "4.7300",
"ShipName": "Island Trading",
"ShipAddress": "Garden House Crowther Way",
"ShipCity": "Cowes",
"ShipRegion": "Isle of Wight",
"ShipPostalCode": "PO31 7PJ",
"ShipCountry": "UK"
},
{
"OrderID": 10319,
"CustomerID": "TORTU",
"EmployeeID": 7,
"OrderDate": "/Date(844214400000)/",
"RequiredDate": "/Date(846633600000)/",
"ShippedDate": "/Date(844992000000)/",
"ShipVia": 3,
"Freight": "64.5000",
"ShipName": "Tortuga Restaurante",
"ShipAddress": "Avda. Azteca 123",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05033",
"ShipCountry": "Mexico"
},
{
"OrderID": 10320,
"CustomerID": "WARTH",
"EmployeeID": 5,
"OrderDate": "/Date(844300800000)/",
"RequiredDate": "/Date(845510400000)/",
"ShippedDate": "/Date(845596800000)/",
"ShipVia": 3,
"Freight": "34.5700",
"ShipName": "Wartian Herkku",
"ShipAddress": "Torikatu 38",
"ShipCity": "Oulu",
"ShipRegion": null,
"ShipPostalCode": "90110",
"ShipCountry": "Finland"
},
{
"OrderID": 10321,
"CustomerID": "ISLAT",
"EmployeeID": 3,
"OrderDate": "/Date(844300800000)/",
"RequiredDate": "/Date(846720000000)/",
"ShippedDate": "/Date(844992000000)/",
"ShipVia": 2,
"Freight": "3.4300",
"ShipName": "Island Trading",
"ShipAddress": "Garden House Crowther Way",
"ShipCity": "Cowes",
"ShipRegion": "Isle of Wight",
"ShipPostalCode": "PO31 7PJ",
"ShipCountry": "UK"
},
{
"OrderID": 10322,
"CustomerID": "PERIC",
"EmployeeID": 7,
"OrderDate": "/Date(844387200000)/",
"RequiredDate": "/Date(846806400000)/",
"ShippedDate": "/Date(846028800000)/",
"ShipVia": 3,
"Freight": "0.4000",
"ShipName": "Pericles Comidas clásicas",
"ShipAddress": "Calle Dr. Jorge Cash 321",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05033",
"ShipCountry": "Mexico"
},
{
"OrderID": 10323,
"CustomerID": "KOENE",
"EmployeeID": 4,
"OrderDate": "/Date(844646400000)/",
"RequiredDate": "/Date(847065600000)/",
"ShippedDate": "/Date(845251200000)/",
"ShipVia": 1,
"Freight": "4.8800",
"ShipName": "Königlich Essen",
"ShipAddress": "Maubelstr. 90",
"ShipCity": "Brandenburg",
"ShipRegion": null,
"ShipPostalCode": "14776",
"ShipCountry": "Germany"
},
{
"OrderID": 10324,
"CustomerID": "SAVEA",
"EmployeeID": 9,
"OrderDate": "/Date(844732800000)/",
"RequiredDate": "/Date(847152000000)/",
"ShippedDate": "/Date(844905600000)/",
"ShipVia": 1,
"Freight": "214.2700",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10325,
"CustomerID": "KOENE",
"EmployeeID": 1,
"OrderDate": "/Date(844819200000)/",
"RequiredDate": "/Date(846028800000)/",
"ShippedDate": "/Date(845251200000)/",
"ShipVia": 3,
"Freight": "64.8600",
"ShipName": "Königlich Essen",
"ShipAddress": "Maubelstr. 90",
"ShipCity": "Brandenburg",
"ShipRegion": null,
"ShipPostalCode": "14776",
"ShipCountry": "Germany"
},
{
"OrderID": 10326,
"CustomerID": "BOLID",
"EmployeeID": 4,
"OrderDate": "/Date(844905600000)/",
"RequiredDate": "/Date(847324800000)/",
"ShippedDate": "/Date(845251200000)/",
"ShipVia": 2,
"Freight": "77.9200",
"ShipName": "Bólido Comidas preparadas",
"ShipAddress": "C/ Araquil, 67",
"ShipCity": "Madrid",
"ShipRegion": null,
"ShipPostalCode": "28023",
"ShipCountry": "Spain"
},
{
"OrderID": 10327,
"CustomerID": "FOLKO",
"EmployeeID": 2,
"OrderDate": "/Date(844992000000)/",
"RequiredDate": "/Date(847411200000)/",
"ShippedDate": "/Date(845251200000)/",
"ShipVia": 1,
"Freight": "63.3600",
"ShipName": "Folk och fä HB",
"ShipAddress": "Åkergatan 24",
"ShipCity": "Bräcke",
"ShipRegion": null,
"ShipPostalCode": "S-844 67",
"ShipCountry": "Sweden"
},
{
"OrderID": 10328,
"CustomerID": "FURIB",
"EmployeeID": 4,
"OrderDate": "/Date(845251200000)/",
"RequiredDate": "/Date(847670400000)/",
"ShippedDate": "/Date(845510400000)/",
"ShipVia": 3,
"Freight": "87.0300",
"ShipName": "Furia Bacalhau e Frutos do Mar",
"ShipAddress": "Jardim das rosas n. 32",
"ShipCity": "Lisboa",
"ShipRegion": null,
"ShipPostalCode": "1675",
"ShipCountry": "Portugal"
},
{
"OrderID": 10329,
"CustomerID": "SPLIR",
"EmployeeID": 4,
"OrderDate": "/Date(845337600000)/",
"RequiredDate": "/Date(848966400000)/",
"ShippedDate": "/Date(846028800000)/",
"ShipVia": 2,
"Freight": "191.6700",
"ShipName": "Split Rail Beer & Ale",
"ShipAddress": "P.O. Box 555",
"ShipCity": "Lander",
"ShipRegion": "WY",
"ShipPostalCode": "82520",
"ShipCountry": "USA"
},
{
"OrderID": 10330,
"CustomerID": "LILAS",
"EmployeeID": 3,
"OrderDate": "/Date(845424000000)/",
"RequiredDate": "/Date(847843200000)/",
"ShippedDate": "/Date(846460800000)/",
"ShipVia": 1,
"Freight": "12.7500",
"ShipName": "LILA-Supermercado",
"ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo",
"ShipCity": "Barquisimeto",
"ShipRegion": "Lara",
"ShipPostalCode": "3508",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10331,
"CustomerID": "BONAP",
"EmployeeID": 9,
"OrderDate": "/Date(845424000000)/",
"RequiredDate": "/Date(849052800000)/",
"ShippedDate": "/Date(845856000000)/",
"ShipVia": 1,
"Freight": "10.1900",
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France"
},
{
"OrderID": 10332,
"CustomerID": "MEREP",
"EmployeeID": 3,
"OrderDate": "/Date(845510400000)/",
"RequiredDate": "/Date(849139200000)/",
"ShippedDate": "/Date(845856000000)/",
"ShipVia": 2,
"Freight": "52.8400",
"ShipName": "Mère Paillarde",
"ShipAddress": "43 rue St. Laurent",
"ShipCity": "Montréal",
"ShipRegion": "Québec",
"ShipPostalCode": "H1J 1C3",
"ShipCountry": "Canada"
},
{
"OrderID": 10333,
"CustomerID": "WARTH",
"EmployeeID": 5,
"OrderDate": "/Date(845596800000)/",
"RequiredDate": "/Date(848016000000)/",
"ShippedDate": "/Date(846201600000)/",
"ShipVia": 3,
"Freight": "0.5900",
"ShipName": "Wartian Herkku",
"ShipAddress": "Torikatu 38",
"ShipCity": "Oulu",
"ShipRegion": null,
"ShipPostalCode": "90110",
"ShipCountry": "Finland"
},
{
"OrderID": 10334,
"CustomerID": "VICTE",
"EmployeeID": 8,
"OrderDate": "/Date(845856000000)/",
"RequiredDate": "/Date(848275200000)/",
"ShippedDate": "/Date(846460800000)/",
"ShipVia": 2,
"Freight": "8.5600",
"ShipName": "Victuailles en stock",
"ShipAddress": "2, rue du Commerce",
"ShipCity": "Lyon",
"ShipRegion": null,
"ShipPostalCode": "69004",
"ShipCountry": "France"
},
{
"OrderID": 10335,
"CustomerID": "HUNGO",
"EmployeeID": 7,
"OrderDate": "/Date(845942400000)/",
"RequiredDate": "/Date(848361600000)/",
"ShippedDate": "/Date(846115200000)/",
"ShipVia": 2,
"Freight": "42.1100",
"ShipName": "Hungry Owl All-Night Grocers",
"ShipAddress": "8 Johnstown Road",
"ShipCity": "Cork",
"ShipRegion": "Co. Cork",
"ShipPostalCode": null,
"ShipCountry": "Ireland"
},
{
"OrderID": 10336,
"CustomerID": "PRINI",
"EmployeeID": 7,
"OrderDate": "/Date(846028800000)/",
"RequiredDate": "/Date(848448000000)/",
"ShippedDate": "/Date(846201600000)/",
"ShipVia": 2,
"Freight": "15.5100",
"ShipName": "Princesa Isabel Vinhos",
"ShipAddress": "Estrada da saúde n. 58",
"ShipCity": "Lisboa",
"ShipRegion": null,
"ShipPostalCode": "1756",
"ShipCountry": "Portugal"
},
{
"OrderID": 10337,
"CustomerID": "FRANK",
"EmployeeID": 4,
"OrderDate": "/Date(846115200000)/",
"RequiredDate": "/Date(848534400000)/",
"ShippedDate": "/Date(846547200000)/",
"ShipVia": 3,
"Freight": "108.2600",
"ShipName": "Frankenversand",
"ShipAddress": "Berliner Platz 43",
"ShipCity": "München",
"ShipRegion": null,
"ShipPostalCode": "80805",
"ShipCountry": "Germany"
},
{
"OrderID": 10338,
"CustomerID": "OLDWO",
"EmployeeID": 4,
"OrderDate": "/Date(846201600000)/",
"RequiredDate": "/Date(848620800000)/",
"ShippedDate": "/Date(846547200000)/",
"ShipVia": 3,
"Freight": "84.2100",
"ShipName": "Old World Delicatessen",
"ShipAddress": "2743 Bering St.",
"ShipCity": "Anchorage",
"ShipRegion": "AK",
"ShipPostalCode": "99508",
"ShipCountry": "USA"
},
{
"OrderID": 10339,
"CustomerID": "MEREP",
"EmployeeID": 2,
"OrderDate": "/Date(846460800000)/",
"RequiredDate": "/Date(848880000000)/",
"ShippedDate": "/Date(847065600000)/",
"ShipVia": 2,
"Freight": "15.6600",
"ShipName": "Mère Paillarde",
"ShipAddress": "43 rue St. Laurent",
"ShipCity": "Montréal",
"ShipRegion": "Québec",
"ShipPostalCode": "H1J 1C3",
"ShipCountry": "Canada"
},
{
"OrderID": 10340,
"CustomerID": "BONAP",
"EmployeeID": 1,
"OrderDate": "/Date(846547200000)/",
"RequiredDate": "/Date(848966400000)/",
"ShippedDate": "/Date(847411200000)/",
"ShipVia": 3,
"Freight": "166.3100",
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France"
},
{
"OrderID": 10341,
"CustomerID": "SIMOB",
"EmployeeID": 7,
"OrderDate": "/Date(846547200000)/",
"RequiredDate": "/Date(848966400000)/",
"ShippedDate": "/Date(847152000000)/",
"ShipVia": 3,
"Freight": "26.7800",
"ShipName": "Simons bistro",
"ShipAddress": "Vinbæltet 34",
"ShipCity": "Kobenhavn",
"ShipRegion": null,
"ShipPostalCode": "1734",
"ShipCountry": "Denmark"
},
{
"OrderID": 10342,
"CustomerID": "FRANK",
"EmployeeID": 4,
"OrderDate": "/Date(846633600000)/",
"RequiredDate": "/Date(847843200000)/",
"ShippedDate": "/Date(847065600000)/",
"ShipVia": 2,
"Freight": "54.8300",
"ShipName": "Frankenversand",
"ShipAddress": "Berliner Platz 43",
"ShipCity": "München",
"ShipRegion": null,
"ShipPostalCode": "80805",
"ShipCountry": "Germany"
},
{
"OrderID": 10343,
"CustomerID": "LEHMS",
"EmployeeID": 4,
"OrderDate": "/Date(846720000000)/",
"RequiredDate": "/Date(849139200000)/",
"ShippedDate": "/Date(847238400000)/",
"ShipVia": 1,
"Freight": "110.3700",
"ShipName": "Lehmanns Marktstand",
"ShipAddress": "Magazinweg 7",
"ShipCity": "Frankfurt a.M.",
"ShipRegion": null,
"ShipPostalCode": "60528",
"ShipCountry": "Germany"
},
{
"OrderID": 10344,
"CustomerID": "WHITC",
"EmployeeID": 4,
"OrderDate": "/Date(846806400000)/",
"RequiredDate": "/Date(849225600000)/",
"ShippedDate": "/Date(847152000000)/",
"ShipVia": 2,
"Freight": "23.2900",
"ShipName": "White Clover Markets",
"ShipAddress": "1029 - 12th Ave. S.",
"ShipCity": "Seattle",
"ShipRegion": "WA",
"ShipPostalCode": "98124",
"ShipCountry": "USA"
},
{
"OrderID": 10345,
"CustomerID": "QUICK",
"EmployeeID": 2,
"OrderDate": "/Date(847065600000)/",
"RequiredDate": "/Date(849484800000)/",
"ShippedDate": "/Date(847670400000)/",
"ShipVia": 2,
"Freight": "249.0600",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10346,
"CustomerID": "RATTC",
"EmployeeID": 3,
"OrderDate": "/Date(847152000000)/",
"RequiredDate": "/Date(850780800000)/",
"ShippedDate": "/Date(847411200000)/",
"ShipVia": 3,
"Freight": "142.0800",
"ShipName": "Rattlesnake Canyon Grocery",
"ShipAddress": "2817 Milton Dr.",
"ShipCity": "Albuquerque",
"ShipRegion": "NM",
"ShipPostalCode": "87110",
"ShipCountry": "USA"
},
{
"OrderID": 10347,
"CustomerID": "FAMIA",
"EmployeeID": 4,
"OrderDate": "/Date(847238400000)/",
"RequiredDate": "/Date(849657600000)/",
"ShippedDate": "/Date(847411200000)/",
"ShipVia": 3,
"Freight": "3.1000",
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Orós, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil"
},
{
"OrderID": 10348,
"CustomerID": "WANDK",
"EmployeeID": 4,
"OrderDate": "/Date(847324800000)/",
"RequiredDate": "/Date(849744000000)/",
"ShippedDate": "/Date(848016000000)/",
"ShipVia": 2,
"Freight": "0.7800",
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany"
},
{
"OrderID": 10349,
"CustomerID": "SPLIR",
"EmployeeID": 7,
"OrderDate": "/Date(847411200000)/",
"RequiredDate": "/Date(849830400000)/",
"ShippedDate": "/Date(848016000000)/",
"ShipVia": 1,
"Freight": "8.6300",
"ShipName": "Split Rail Beer & Ale",
"ShipAddress": "P.O. Box 555",
"ShipCity": "Lander",
"ShipRegion": "WY",
"ShipPostalCode": "82520",
"ShipCountry": "USA"
},
{
"OrderID": 10350,
"CustomerID": "LAMAI",
"EmployeeID": 6,
"OrderDate": "/Date(847670400000)/",
"RequiredDate": "/Date(850089600000)/",
"ShippedDate": "/Date(849571200000)/",
"ShipVia": 2,
"Freight": "64.1900",
"ShipName": "La maison d'Asie",
"ShipAddress": "1 rue Alsace-Lorraine",
"ShipCity": "Toulouse",
"ShipRegion": null,
"ShipPostalCode": "31000",
"ShipCountry": "France"
},
{
"OrderID": 10351,
"CustomerID": "ERNSH",
"EmployeeID": 1,
"OrderDate": "/Date(847670400000)/",
"RequiredDate": "/Date(850089600000)/",
"ShippedDate": "/Date(848448000000)/",
"ShipVia": 1,
"Freight": "162.3300",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10352,
"CustomerID": "FURIB",
"EmployeeID": 3,
"OrderDate": "/Date(847756800000)/",
"RequiredDate": "/Date(848966400000)/",
"ShippedDate": "/Date(848275200000)/",
"ShipVia": 3,
"Freight": "1.3000",
"ShipName": "Furia Bacalhau e Frutos do Mar",
"ShipAddress": "Jardim das rosas n. 32",
"ShipCity": "Lisboa",
"ShipRegion": null,
"ShipPostalCode": "1675",
"ShipCountry": "Portugal"
},
{
"OrderID": 10353,
"CustomerID": "PICCO",
"EmployeeID": 7,
"OrderDate": "/Date(847843200000)/",
"RequiredDate": "/Date(850262400000)/",
"ShippedDate": "/Date(848880000000)/",
"ShipVia": 3,
"Freight": "360.6300",
"ShipName": "Piccolo und mehr",
"ShipAddress": "Geislweg 14",
"ShipCity": "Salzburg",
"ShipRegion": null,
"ShipPostalCode": "5020",
"ShipCountry": "Austria"
},
{
"OrderID": 10354,
"CustomerID": "PERIC",
"EmployeeID": 8,
"OrderDate": "/Date(847929600000)/",
"RequiredDate": "/Date(850348800000)/",
"ShippedDate": "/Date(848448000000)/",
"ShipVia": 3,
"Freight": "53.8000",
"ShipName": "Pericles Comidas clásicas",
"ShipAddress": "Calle Dr. Jorge Cash 321",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05033",
"ShipCountry": "Mexico"
},
{
"OrderID": 10355,
"CustomerID": "AROUT",
"EmployeeID": 6,
"OrderDate": "/Date(848016000000)/",
"RequiredDate": "/Date(850435200000)/",
"ShippedDate": "/Date(848448000000)/",
"ShipVia": 1,
"Freight": "41.9500",
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK"
},
{
"OrderID": 10356,
"CustomerID": "WANDK",
"EmployeeID": 6,
"OrderDate": "/Date(848275200000)/",
"RequiredDate": "/Date(850694400000)/",
"ShippedDate": "/Date(849052800000)/",
"ShipVia": 2,
"Freight": "36.7100",
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany"
},
{
"OrderID": 10357,
"CustomerID": "LILAS",
"EmployeeID": 1,
"OrderDate": "/Date(848361600000)/",
"RequiredDate": "/Date(850780800000)/",
"ShippedDate": "/Date(849484800000)/",
"ShipVia": 3,
"Freight": "34.8800",
"ShipName": "LILA-Supermercado",
"ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo",
"ShipCity": "Barquisimeto",
"ShipRegion": "Lara",
"ShipPostalCode": "3508",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10358,
"CustomerID": "LAMAI",
"EmployeeID": 5,
"OrderDate": "/Date(848448000000)/",
"RequiredDate": "/Date(850867200000)/",
"ShippedDate": "/Date(849052800000)/",
"ShipVia": 1,
"Freight": "19.6400",
"ShipName": "La maison d'Asie",
"ShipAddress": "1 rue Alsace-Lorraine",
"ShipCity": "Toulouse",
"ShipRegion": null,
"ShipPostalCode": "31000",
"ShipCountry": "France"
},
{
"OrderID": 10359,
"CustomerID": "SEVES",
"EmployeeID": 5,
"OrderDate": "/Date(848534400000)/",
"RequiredDate": "/Date(850953600000)/",
"ShippedDate": "/Date(848966400000)/",
"ShipVia": 3,
"Freight": "288.4300",
"ShipName": "Seven Seas Imports",
"ShipAddress": "90 Wadhurst Rd.",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "OX15 4NB",
"ShipCountry": "UK"
},
{
"OrderID": 10360,
"CustomerID": "BLONP",
"EmployeeID": 4,
"OrderDate": "/Date(848620800000)/",
"RequiredDate": "/Date(851040000000)/",
"ShippedDate": "/Date(849484800000)/",
"ShipVia": 3,
"Freight": "131.7000",
"ShipName": "Blondel père et fils",
"ShipAddress": "24, place Kléber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France"
},
{
"OrderID": 10361,
"CustomerID": "QUICK",
"EmployeeID": 1,
"OrderDate": "/Date(848620800000)/",
"RequiredDate": "/Date(851040000000)/",
"ShippedDate": "/Date(849571200000)/",
"ShipVia": 2,
"Freight": "183.1700",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10362,
"CustomerID": "BONAP",
"EmployeeID": 3,
"OrderDate": "/Date(848880000000)/",
"RequiredDate": "/Date(851299200000)/",
"ShippedDate": "/Date(849139200000)/",
"ShipVia": 1,
"Freight": "96.0400",
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France"
},
{
"OrderID": 10363,
"CustomerID": "DRACD",
"EmployeeID": 4,
"OrderDate": "/Date(848966400000)/",
"RequiredDate": "/Date(851385600000)/",
"ShippedDate": "/Date(849657600000)/",
"ShipVia": 3,
"Freight": "30.5400",
"ShipName": "Drachenblut Delikatessen",
"ShipAddress": "Walserweg 21",
"ShipCity": "Aachen",
"ShipRegion": null,
"ShipPostalCode": "52066",
"ShipCountry": "Germany"
},
{
"OrderID": 10364,
"CustomerID": "EASTC",
"EmployeeID": 1,
"OrderDate": "/Date(848966400000)/",
"RequiredDate": "/Date(852595200000)/",
"ShippedDate": "/Date(849657600000)/",
"ShipVia": 1,
"Freight": "71.9700",
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK"
},
{
"OrderID": 10365,
"CustomerID": "ANTON",
"EmployeeID": 3,
"OrderDate": "/Date(849052800000)/",
"RequiredDate": "/Date(851472000000)/",
"ShippedDate": "/Date(849484800000)/",
"ShipVia": 2,
"Freight": "22.0000",
"ShipName": "Antonio Moreno Taquería",
"ShipAddress": "Mataderos 2312",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico"
},
{
"OrderID": 10366,
"CustomerID": "GALED",
"EmployeeID": 8,
"OrderDate": "/Date(849139200000)/",
"RequiredDate": "/Date(852768000000)/",
"ShippedDate": "/Date(851904000000)/",
"ShipVia": 2,
"Freight": "10.1400",
"ShipName": "Galería del gastronómo",
"ShipAddress": "Rambla de Cataluña, 23",
"ShipCity": "Barcelona",
"ShipRegion": null,
"ShipPostalCode": "8022",
"ShipCountry": "Spain"
},
{
"OrderID": 10367,
"CustomerID": "VAFFE",
"EmployeeID": 7,
"OrderDate": "/Date(849139200000)/",
"RequiredDate": "/Date(851558400000)/",
"ShippedDate": "/Date(849484800000)/",
"ShipVia": 3,
"Freight": "13.5500",
"ShipName": "Vaffeljernet",
"ShipAddress": "Smagsloget 45",
"ShipCity": "Århus",
"ShipRegion": null,
"ShipPostalCode": "8200",
"ShipCountry": "Denmark"
},
{
"OrderID": 10368,
"CustomerID": "ERNSH",
"EmployeeID": 2,
"OrderDate": "/Date(849225600000)/",
"RequiredDate": "/Date(851644800000)/",
"ShippedDate": "/Date(849484800000)/",
"ShipVia": 2,
"Freight": "101.9500",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10369,
"CustomerID": "SPLIR",
"EmployeeID": 8,
"OrderDate": "/Date(849484800000)/",
"RequiredDate": "/Date(851904000000)/",
"ShippedDate": "/Date(850089600000)/",
"ShipVia": 2,
"Freight": "195.6800",
"ShipName": "Split Rail Beer & Ale",
"ShipAddress": "P.O. Box 555",
"ShipCity": "Lander",
"ShipRegion": "WY",
"ShipPostalCode": "82520",
"ShipCountry": "USA"
},
{
"OrderID": 10370,
"CustomerID": "CHOPS",
"EmployeeID": 6,
"OrderDate": "/Date(849571200000)/",
"RequiredDate": "/Date(851990400000)/",
"ShippedDate": "/Date(851644800000)/",
"ShipVia": 2,
"Freight": "1.1700",
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland"
},
{
"OrderID": 10371,
"CustomerID": "LAMAI",
"EmployeeID": 1,
"OrderDate": "/Date(849571200000)/",
"RequiredDate": "/Date(851990400000)/",
"ShippedDate": "/Date(851385600000)/",
"ShipVia": 1,
"Freight": "0.4500",
"ShipName": "La maison d'Asie",
"ShipAddress": "1 rue Alsace-Lorraine",
"ShipCity": "Toulouse",
"ShipRegion": null,
"ShipPostalCode": "31000",
"ShipCountry": "France"
},
{
"OrderID": 10372,
"CustomerID": "QUEEN",
"EmployeeID": 5,
"OrderDate": "/Date(849657600000)/",
"RequiredDate": "/Date(852076800000)/",
"ShippedDate": "/Date(850089600000)/",
"ShipVia": 2,
"Freight": "890.7800",
"ShipName": "Queen Cozinha",
"ShipAddress": "Alameda dos Canàrios, 891",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05487-020",
"ShipCountry": "Brazil"
},
{
"OrderID": 10373,
"CustomerID": "HUNGO",
"EmployeeID": 4,
"OrderDate": "/Date(849744000000)/",
"RequiredDate": "/Date(852163200000)/",
"ShippedDate": "/Date(850262400000)/",
"ShipVia": 3,
"Freight": "124.1200",
"ShipName": "Hungry Owl All-Night Grocers",
"ShipAddress": "8 Johnstown Road",
"ShipCity": "Cork",
"ShipRegion": "Co. Cork",
"ShipPostalCode": null,
"ShipCountry": "Ireland"
},
{
"OrderID": 10374,
"CustomerID": "WOLZA",
"EmployeeID": 1,
"OrderDate": "/Date(849744000000)/",
"RequiredDate": "/Date(852163200000)/",
"ShippedDate": "/Date(850089600000)/",
"ShipVia": 3,
"Freight": "3.9400",
"ShipName": "Wolski Zajazd",
"ShipAddress": "ul. Filtrowa 68",
"ShipCity": "Warszawa",
"ShipRegion": null,
"ShipPostalCode": "01-012",
"ShipCountry": "Poland"
},
{
"OrderID": 10375,
"CustomerID": "HUNGC",
"EmployeeID": 3,
"OrderDate": "/Date(849830400000)/",
"RequiredDate": "/Date(852249600000)/",
"ShippedDate": "/Date(850089600000)/",
"ShipVia": 2,
"Freight": "20.1200",
"ShipName": "Hungry Coyote Import Store",
"ShipAddress": "City Center Plaza 516 Main St.",
"ShipCity": "Elgin",
"ShipRegion": "OR",
"ShipPostalCode": "97827",
"ShipCountry": "USA"
},
{
"OrderID": 10376,
"CustomerID": "MEREP",
"EmployeeID": 1,
"OrderDate": "/Date(850089600000)/",
"RequiredDate": "/Date(852508800000)/",
"ShippedDate": "/Date(850435200000)/",
"ShipVia": 2,
"Freight": "20.3900",
"ShipName": "Mère Paillarde",
"ShipAddress": "43 rue St. Laurent",
"ShipCity": "Montréal",
"ShipRegion": "Québec",
"ShipPostalCode": "H1J 1C3",
"ShipCountry": "Canada"
},
{
"OrderID": 10377,
"CustomerID": "SEVES",
"EmployeeID": 1,
"OrderDate": "/Date(850089600000)/",
"RequiredDate": "/Date(852508800000)/",
"ShippedDate": "/Date(850435200000)/",
"ShipVia": 3,
"Freight": "22.2100",
"ShipName": "Seven Seas Imports",
"ShipAddress": "90 Wadhurst Rd.",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "OX15 4NB",
"ShipCountry": "UK"
},
{
"OrderID": 10378,
"CustomerID": "FOLKO",
"EmployeeID": 5,
"OrderDate": "/Date(850176000000)/",
"RequiredDate": "/Date(852595200000)/",
"ShippedDate": "/Date(850953600000)/",
"ShipVia": 3,
"Freight": "5.4400",
"ShipName": "Folk och fä HB",
"ShipAddress": "Åkergatan 24",
"ShipCity": "Bräcke",
"ShipRegion": null,
"ShipPostalCode": "S-844 67",
"ShipCountry": "Sweden"
},
{
"OrderID": 10379,
"CustomerID": "QUEDE",
"EmployeeID": 2,
"OrderDate": "/Date(850262400000)/",
"RequiredDate": "/Date(852681600000)/",
"ShippedDate": "/Date(850435200000)/",
"ShipVia": 1,
"Freight": "45.0300",
"ShipName": "Que Delícia",
"ShipAddress": "Rua da Panificadora, 12",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "02389-673",
"ShipCountry": "Brazil"
},
{
"OrderID": 10380,
"CustomerID": "HUNGO",
"EmployeeID": 8,
"OrderDate": "/Date(850348800000)/",
"RequiredDate": "/Date(852768000000)/",
"ShippedDate": "/Date(853372800000)/",
"ShipVia": 3,
"Freight": "35.0300",
"ShipName": "Hungry Owl All-Night Grocers",
"ShipAddress": "8 Johnstown Road",
"ShipCity": "Cork",
"ShipRegion": "Co. Cork",
"ShipPostalCode": null,
"ShipCountry": "Ireland"
},
{
"OrderID": 10381,
"CustomerID": "LILAS",
"EmployeeID": 3,
"OrderDate": "/Date(850348800000)/",
"RequiredDate": "/Date(852768000000)/",
"ShippedDate": "/Date(850435200000)/",
"ShipVia": 3,
"Freight": "7.9900",
"ShipName": "LILA-Supermercado",
"ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo",
"ShipCity": "Barquisimeto",
"ShipRegion": "Lara",
"ShipPostalCode": "3508",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10382,
"CustomerID": "ERNSH",
"EmployeeID": 4,
"OrderDate": "/Date(850435200000)/",
"RequiredDate": "/Date(852854400000)/",
"ShippedDate": "/Date(850694400000)/",
"ShipVia": 1,
"Freight": "94.7700",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10383,
"CustomerID": "AROUT",
"EmployeeID": 8,
"OrderDate": "/Date(850694400000)/",
"RequiredDate": "/Date(853113600000)/",
"ShippedDate": "/Date(850867200000)/",
"ShipVia": 3,
"Freight": "34.2400",
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK"
},
{
"OrderID": 10384,
"CustomerID": "BERGS",
"EmployeeID": 3,
"OrderDate": "/Date(850694400000)/",
"RequiredDate": "/Date(853113600000)/",
"ShippedDate": "/Date(851040000000)/",
"ShipVia": 3,
"Freight": "168.6400",
"ShipName": "Berglunds snabbköp",
"ShipAddress": "Berguvsvägen 8",
"ShipCity": "Luleå",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden"
},
{
"OrderID": 10385,
"CustomerID": "SPLIR",
"EmployeeID": 1,
"OrderDate": "/Date(850780800000)/",
"RequiredDate": "/Date(853200000000)/",
"ShippedDate": "/Date(851299200000)/",
"ShipVia": 2,
"Freight": "30.9600",
"ShipName": "Split Rail Beer & Ale",
"ShipAddress": "P.O. Box 555",
"ShipCity": "Lander",
"ShipRegion": "WY",
"ShipPostalCode": "82520",
"ShipCountry": "USA"
},
{
"OrderID": 10386,
"CustomerID": "FAMIA",
"EmployeeID": 9,
"OrderDate": "/Date(850867200000)/",
"RequiredDate": "/Date(852076800000)/",
"ShippedDate": "/Date(851472000000)/",
"ShipVia": 3,
"Freight": "13.9900",
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Orós, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil"
},
{
"OrderID": 10387,
"CustomerID": "SANTG",
"EmployeeID": 1,
"OrderDate": "/Date(850867200000)/",
"RequiredDate": "/Date(853286400000)/",
"ShippedDate": "/Date(851040000000)/",
"ShipVia": 2,
"Freight": "93.6300",
"ShipName": "Santé Gourmet",
"ShipAddress": "Erling Skakkes gate 78",
"ShipCity": "Stavern",
"ShipRegion": null,
"ShipPostalCode": "4110",
"ShipCountry": "Norway"
},
{
"OrderID": 10388,
"CustomerID": "SEVES",
"EmployeeID": 2,
"OrderDate": "/Date(850953600000)/",
"RequiredDate": "/Date(853372800000)/",
"ShippedDate": "/Date(851040000000)/",
"ShipVia": 1,
"Freight": "34.8600",
"ShipName": "Seven Seas Imports",
"ShipAddress": "90 Wadhurst Rd.",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "OX15 4NB",
"ShipCountry": "UK"
},
{
"OrderID": 10389,
"CustomerID": "BOTTM",
"EmployeeID": 4,
"OrderDate": "/Date(851040000000)/",
"RequiredDate": "/Date(853459200000)/",
"ShippedDate": "/Date(851385600000)/",
"ShipVia": 2,
"Freight": "47.4200",
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada"
},
{
"OrderID": 10390,
"CustomerID": "ERNSH",
"EmployeeID": 6,
"OrderDate": "/Date(851299200000)/",
"RequiredDate": "/Date(853718400000)/",
"ShippedDate": "/Date(851558400000)/",
"ShipVia": 1,
"Freight": "126.3800",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10391,
"CustomerID": "DRACD",
"EmployeeID": 3,
"OrderDate": "/Date(851299200000)/",
"RequiredDate": "/Date(853718400000)/",
"ShippedDate": "/Date(851990400000)/",
"ShipVia": 3,
"Freight": "5.4500",
"ShipName": "Drachenblut Delikatessen",
"ShipAddress": "Walserweg 21",
"ShipCity": "Aachen",
"ShipRegion": null,
"ShipPostalCode": "52066",
"ShipCountry": "Germany"
},
{
"OrderID": 10392,
"CustomerID": "PICCO",
"EmployeeID": 2,
"OrderDate": "/Date(851385600000)/",
"RequiredDate": "/Date(853804800000)/",
"ShippedDate": "/Date(852076800000)/",
"ShipVia": 3,
"Freight": "122.4600",
"ShipName": "Piccolo und mehr",
"ShipAddress": "Geislweg 14",
"ShipCity": "Salzburg",
"ShipRegion": null,
"ShipPostalCode": "5020",
"ShipCountry": "Austria"
},
{
"OrderID": 10393,
"CustomerID": "SAVEA",
"EmployeeID": 1,
"OrderDate": "/Date(851472000000)/",
"RequiredDate": "/Date(853891200000)/",
"ShippedDate": "/Date(852249600000)/",
"ShipVia": 3,
"Freight": "126.5600",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10394,
"CustomerID": "HUNGC",
"EmployeeID": 1,
"OrderDate": "/Date(851472000000)/",
"RequiredDate": "/Date(853891200000)/",
"ShippedDate": "/Date(852249600000)/",
"ShipVia": 3,
"Freight": "30.3400",
"ShipName": "Hungry Coyote Import Store",
"ShipAddress": "City Center Plaza 516 Main St.",
"ShipCity": "Elgin",
"ShipRegion": "OR",
"ShipPostalCode": "97827",
"ShipCountry": "USA"
},
{
"OrderID": 10395,
"CustomerID": "HILAA",
"EmployeeID": 6,
"OrderDate": "/Date(851558400000)/",
"RequiredDate": "/Date(853977600000)/",
"ShippedDate": "/Date(852249600000)/",
"ShipVia": 1,
"Freight": "184.4100",
"ShipName": "HILARION-Abastos",
"ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35",
"ShipCity": "San Cristóbal",
"ShipRegion": "Táchira",
"ShipPostalCode": "5022",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10396,
"CustomerID": "FRANK",
"EmployeeID": 1,
"OrderDate": "/Date(851644800000)/",
"RequiredDate": "/Date(852854400000)/",
"ShippedDate": "/Date(852508800000)/",
"ShipVia": 3,
"Freight": "135.3500",
"ShipName": "Frankenversand",
"ShipAddress": "Berliner Platz 43",
"ShipCity": "München",
"ShipRegion": null,
"ShipPostalCode": "80805",
"ShipCountry": "Germany"
},
{
"OrderID": 10397,
"CustomerID": "PRINI",
"EmployeeID": 5,
"OrderDate": "/Date(851644800000)/",
"RequiredDate": "/Date(854064000000)/",
"ShippedDate": "/Date(852163200000)/",
"ShipVia": 1,
"Freight": "60.2600",
"ShipName": "Princesa Isabel Vinhos",
"ShipAddress": "Estrada da saúde n. 58",
"ShipCity": "Lisboa",
"ShipRegion": null,
"ShipPostalCode": "1756",
"ShipCountry": "Portugal"
},
{
"OrderID": 10398,
"CustomerID": "SAVEA",
"EmployeeID": 2,
"OrderDate": "/Date(851904000000)/",
"RequiredDate": "/Date(854323200000)/",
"ShippedDate": "/Date(852768000000)/",
"ShipVia": 3,
"Freight": "89.1600",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10399,
"CustomerID": "VAFFE",
"EmployeeID": 8,
"OrderDate": "/Date(851990400000)/",
"RequiredDate": "/Date(853200000000)/",
"ShippedDate": "/Date(852681600000)/",
"ShipVia": 3,
"Freight": "27.3600",
"ShipName": "Vaffeljernet",
"ShipAddress": "Smagsloget 45",
"ShipCity": "Århus",
"ShipRegion": null,
"ShipPostalCode": "8200",
"ShipCountry": "Denmark"
},
{
"OrderID": 10400,
"CustomerID": "EASTC",
"EmployeeID": 1,
"OrderDate": "/Date(852076800000)/",
"RequiredDate": "/Date(854496000000)/",
"ShippedDate": "/Date(853372800000)/",
"ShipVia": 3,
"Freight": "83.9300",
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK"
},
{
"OrderID": 10401,
"CustomerID": "RATTC",
"EmployeeID": 1,
"OrderDate": "/Date(852076800000)/",
"RequiredDate": "/Date(854496000000)/",
"ShippedDate": "/Date(852854400000)/",
"ShipVia": 1,
"Freight": "12.5100",
"ShipName": "Rattlesnake Canyon Grocery",
"ShipAddress": "2817 Milton Dr.",
"ShipCity": "Albuquerque",
"ShipRegion": "NM",
"ShipPostalCode": "87110",
"ShipCountry": "USA"
},
{
"OrderID": 10402,
"CustomerID": "ERNSH",
"EmployeeID": 8,
"OrderDate": "/Date(852163200000)/",
"RequiredDate": "/Date(855792000000)/",
"ShippedDate": "/Date(852854400000)/",
"ShipVia": 2,
"Freight": "67.8800",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10403,
"CustomerID": "ERNSH",
"EmployeeID": 4,
"OrderDate": "/Date(852249600000)/",
"RequiredDate": "/Date(854668800000)/",
"ShippedDate": "/Date(852768000000)/",
"ShipVia": 3,
"Freight": "73.7900",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10404,
"CustomerID": "MAGAA",
"EmployeeID": 2,
"OrderDate": "/Date(852249600000)/",
"RequiredDate": "/Date(854668800000)/",
"ShippedDate": "/Date(852681600000)/",
"ShipVia": 1,
"Freight": "155.9700",
"ShipName": "Magazzini Alimentari Riuniti",
"ShipAddress": "Via Ludovico il Moro 22",
"ShipCity": "Bergamo",
"ShipRegion": null,
"ShipPostalCode": "24100",
"ShipCountry": "Italy"
},
{
"OrderID": 10405,
"CustomerID": "LINOD",
"EmployeeID": 1,
"OrderDate": "/Date(852508800000)/",
"RequiredDate": "/Date(854928000000)/",
"ShippedDate": "/Date(853891200000)/",
"ShipVia": 1,
"Freight": "34.8200",
"ShipName": "LINO-Delicateses",
"ShipAddress": "Ave. 5 de Mayo Porlamar",
"ShipCity": "I. de Margarita",
"ShipRegion": "Nueva Esparta",
"ShipPostalCode": "4980",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10406,
"CustomerID": "QUEEN",
"EmployeeID": 7,
"OrderDate": "/Date(852595200000)/",
"RequiredDate": "/Date(856224000000)/",
"ShippedDate": "/Date(853113600000)/",
"ShipVia": 1,
"Freight": "108.0400",
"ShipName": "Queen Cozinha",
"ShipAddress": "Alameda dos Canàrios, 891",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05487-020",
"ShipCountry": "Brazil"
},
{
"OrderID": 10407,
"CustomerID": "OTTIK",
"EmployeeID": 2,
"OrderDate": "/Date(852595200000)/",
"RequiredDate": "/Date(855014400000)/",
"ShippedDate": "/Date(854582400000)/",
"ShipVia": 2,
"Freight": "91.4800",
"ShipName": "Ottilies Käseladen",
"ShipAddress": "Mehrheimerstr. 369",
"ShipCity": "Köln",
"ShipRegion": null,
"ShipPostalCode": "50739",
"ShipCountry": "Germany"
},
{
"OrderID": 10408,
"CustomerID": "FOLIG",
"EmployeeID": 8,
"OrderDate": "/Date(852681600000)/",
"RequiredDate": "/Date(855100800000)/",
"ShippedDate": "/Date(853200000000)/",
"ShipVia": 1,
"Freight": "11.2600",
"ShipName": "Folies gourmandes",
"ShipAddress": "184, chaussée de Tournai",
"ShipCity": "Lille",
"ShipRegion": null,
"ShipPostalCode": "59000",
"ShipCountry": "France"
},
{
"OrderID": 10409,
"CustomerID": "OCEAN",
"EmployeeID": 3,
"OrderDate": "/Date(852768000000)/",
"RequiredDate": "/Date(855187200000)/",
"ShippedDate": "/Date(853200000000)/",
"ShipVia": 1,
"Freight": "29.8300",
"ShipName": "Océano Atlántico Ltda.",
"ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A",
"ShipCity": "Buenos Aires",
"ShipRegion": null,
"ShipPostalCode": "1010",
"ShipCountry": "Argentina"
},
{
"OrderID": 10410,
"CustomerID": "BOTTM",
"EmployeeID": 3,
"OrderDate": "/Date(852854400000)/",
"RequiredDate": "/Date(855273600000)/",
"ShippedDate": "/Date(853286400000)/",
"ShipVia": 3,
"Freight": "2.4000",
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada"
},
{
"OrderID": 10411,
"CustomerID": "BOTTM",
"EmployeeID": 9,
"OrderDate": "/Date(852854400000)/",
"RequiredDate": "/Date(855273600000)/",
"ShippedDate": "/Date(853804800000)/",
"ShipVia": 3,
"Freight": "23.6500",
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada"
},
{
"OrderID": 10412,
"CustomerID": "WARTH",
"EmployeeID": 8,
"OrderDate": "/Date(853113600000)/",
"RequiredDate": "/Date(855532800000)/",
"ShippedDate": "/Date(853286400000)/",
"ShipVia": 2,
"Freight": "3.7700",
"ShipName": "Wartian Herkku",
"ShipAddress": "Torikatu 38",
"ShipCity": "Oulu",
"ShipRegion": null,
"ShipPostalCode": "90110",
"ShipCountry": "Finland"
},
{
"OrderID": 10413,
"CustomerID": "LAMAI",
"EmployeeID": 3,
"OrderDate": "/Date(853200000000)/",
"RequiredDate": "/Date(855619200000)/",
"ShippedDate": "/Date(853372800000)/",
"ShipVia": 2,
"Freight": "95.6600",
"ShipName": "La maison d'Asie",
"ShipAddress": "1 rue Alsace-Lorraine",
"ShipCity": "Toulouse",
"ShipRegion": null,
"ShipPostalCode": "31000",
"ShipCountry": "France"
},
{
"OrderID": 10414,
"CustomerID": "FAMIA",
"EmployeeID": 2,
"OrderDate": "/Date(853200000000)/",
"RequiredDate": "/Date(855619200000)/",
"ShippedDate": "/Date(853459200000)/",
"ShipVia": 3,
"Freight": "21.4800",
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Orós, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil"
},
{
"OrderID": 10415,
"CustomerID": "HUNGC",
"EmployeeID": 3,
"OrderDate": "/Date(853286400000)/",
"RequiredDate": "/Date(855705600000)/",
"ShippedDate": "/Date(854064000000)/",
"ShipVia": 1,
"Freight": "0.2000",
"ShipName": "Hungry Coyote Import Store",
"ShipAddress": "City Center Plaza 516 Main St.",
"ShipCity": "Elgin",
"ShipRegion": "OR",
"ShipPostalCode": "97827",
"ShipCountry": "USA"
},
{
"OrderID": 10416,
"CustomerID": "WARTH",
"EmployeeID": 8,
"OrderDate": "/Date(853372800000)/",
"RequiredDate": "/Date(855792000000)/",
"ShippedDate": "/Date(854323200000)/",
"ShipVia": 3,
"Freight": "22.7200",
"ShipName": "Wartian Herkku",
"ShipAddress": "Torikatu 38",
"ShipCity": "Oulu",
"ShipRegion": null,
"ShipPostalCode": "90110",
"ShipCountry": "Finland"
},
{
"OrderID": 10417,
"CustomerID": "SIMOB",
"EmployeeID": 4,
"OrderDate": "/Date(853372800000)/",
"RequiredDate": "/Date(855792000000)/",
"ShippedDate": "/Date(854409600000)/",
"ShipVia": 3,
"Freight": "70.2900",
"ShipName": "Simons bistro",
"ShipAddress": "Vinbæltet 34",
"ShipCity": "Kobenhavn",
"ShipRegion": null,
"ShipPostalCode": "1734",
"ShipCountry": "Denmark"
},
{
"OrderID": 10418,
"CustomerID": "QUICK",
"EmployeeID": 4,
"OrderDate": "/Date(853459200000)/",
"RequiredDate": "/Date(855878400000)/",
"ShippedDate": "/Date(854064000000)/",
"ShipVia": 1,
"Freight": "17.5500",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10419,
"CustomerID": "RICSU",
"EmployeeID": 4,
"OrderDate": "/Date(853718400000)/",
"RequiredDate": "/Date(856137600000)/",
"ShippedDate": "/Date(854582400000)/",
"ShipVia": 2,
"Freight": "137.3500",
"ShipName": "Richter Supermarkt",
"ShipAddress": "Starenweg 5",
"ShipCity": "Genève",
"ShipRegion": null,
"ShipPostalCode": "1204",
"ShipCountry": "Switzerland"
},
{
"OrderID": 10420,
"CustomerID": "WELLI",
"EmployeeID": 3,
"OrderDate": "/Date(853804800000)/",
"RequiredDate": "/Date(856224000000)/",
"ShippedDate": "/Date(854323200000)/",
"ShipVia": 1,
"Freight": "44.1200",
"ShipName": "Wellington Importadora",
"ShipAddress": "Rua do Mercado, 12",
"ShipCity": "Resende",
"ShipRegion": "SP",
"ShipPostalCode": "08737-363",
"ShipCountry": "Brazil"
},
{
"OrderID": 10421,
"CustomerID": "QUEDE",
"EmployeeID": 8,
"OrderDate": "/Date(853804800000)/",
"RequiredDate": "/Date(857433600000)/",
"ShippedDate": "/Date(854323200000)/",
"ShipVia": 1,
"Freight": "99.2300",
"ShipName": "Que Delícia",
"ShipAddress": "Rua da Panificadora, 12",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "02389-673",
"ShipCountry": "Brazil"
},
{
"OrderID": 10422,
"CustomerID": "FRANS",
"EmployeeID": 2,
"OrderDate": "/Date(853891200000)/",
"RequiredDate": "/Date(856310400000)/",
"ShippedDate": "/Date(854668800000)/",
"ShipVia": 1,
"Freight": "3.0200",
"ShipName": "Franchi S.p.A.",
"ShipAddress": "Via Monte Bianco 34",
"ShipCity": "Torino",
"ShipRegion": null,
"ShipPostalCode": "10100",
"ShipCountry": "Italy"
},
{
"OrderID": 10423,
"CustomerID": "GOURL",
"EmployeeID": 6,
"OrderDate": "/Date(853977600000)/",
"RequiredDate": "/Date(855187200000)/",
"ShippedDate": "/Date(856742400000)/",
"ShipVia": 3,
"Freight": "24.5000",
"ShipName": "Gourmet Lanchonetes",
"ShipAddress": "Av. Brasil, 442",
"ShipCity": "Campinas",
"ShipRegion": "SP",
"ShipPostalCode": "04876-786",
"ShipCountry": "Brazil"
},
{
"OrderID": 10424,
"CustomerID": "MEREP",
"EmployeeID": 7,
"OrderDate": "/Date(853977600000)/",
"RequiredDate": "/Date(856396800000)/",
"ShippedDate": "/Date(854323200000)/",
"ShipVia": 2,
"Freight": "370.6100",
"ShipName": "Mère Paillarde",
"ShipAddress": "43 rue St. Laurent",
"ShipCity": "Montréal",
"ShipRegion": "Québec",
"ShipPostalCode": "H1J 1C3",
"ShipCountry": "Canada"
},
{
"OrderID": 10425,
"CustomerID": "LAMAI",
"EmployeeID": 6,
"OrderDate": "/Date(854064000000)/",
"RequiredDate": "/Date(856483200000)/",
"ShippedDate": "/Date(855878400000)/",
"ShipVia": 2,
"Freight": "7.9300",
"ShipName": "La maison d'Asie",
"ShipAddress": "1 rue Alsace-Lorraine",
"ShipCity": "Toulouse",
"ShipRegion": null,
"ShipPostalCode": "31000",
"ShipCountry": "France"
},
{
"OrderID": 10426,
"CustomerID": "GALED",
"EmployeeID": 4,
"OrderDate": "/Date(854323200000)/",
"RequiredDate": "/Date(856742400000)/",
"ShippedDate": "/Date(855187200000)/",
"ShipVia": 1,
"Freight": "18.6900",
"ShipName": "Galería del gastronómo",
"ShipAddress": "Rambla de Cataluña, 23",
"ShipCity": "Barcelona",
"ShipRegion": null,
"ShipPostalCode": "8022",
"ShipCountry": "Spain"
},
{
"OrderID": 10427,
"CustomerID": "PICCO",
"EmployeeID": 4,
"OrderDate": "/Date(854323200000)/",
"RequiredDate": "/Date(856742400000)/",
"ShippedDate": "/Date(857347200000)/",
"ShipVia": 2,
"Freight": "31.2900",
"ShipName": "Piccolo und mehr",
"ShipAddress": "Geislweg 14",
"ShipCity": "Salzburg",
"ShipRegion": null,
"ShipPostalCode": "5020",
"ShipCountry": "Austria"
},
{
"OrderID": 10428,
"CustomerID": "REGGC",
"EmployeeID": 7,
"OrderDate": "/Date(854409600000)/",
"RequiredDate": "/Date(856828800000)/",
"ShippedDate": "/Date(855014400000)/",
"ShipVia": 1,
"Freight": "11.0900",
"ShipName": "Reggiani Caseifici",
"ShipAddress": "Strada Provinciale 124",
"ShipCity": "Reggio Emilia",
"ShipRegion": null,
"ShipPostalCode": "42100",
"ShipCountry": "Italy"
},
{
"OrderID": 10429,
"CustomerID": "HUNGO",
"EmployeeID": 3,
"OrderDate": "/Date(854496000000)/",
"RequiredDate": "/Date(858124800000)/",
"ShippedDate": "/Date(855273600000)/",
"ShipVia": 2,
"Freight": "56.6300",
"ShipName": "Hungry Owl All-Night Grocers",
"ShipAddress": "8 Johnstown Road",
"ShipCity": "Cork",
"ShipRegion": "Co. Cork",
"ShipPostalCode": null,
"ShipCountry": "Ireland"
},
{
"OrderID": 10430,
"CustomerID": "ERNSH",
"EmployeeID": 4,
"OrderDate": "/Date(854582400000)/",
"RequiredDate": "/Date(855792000000)/",
"ShippedDate": "/Date(854928000000)/",
"ShipVia": 1,
"Freight": "458.7800",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10431,
"CustomerID": "BOTTM",
"EmployeeID": 4,
"OrderDate": "/Date(854582400000)/",
"RequiredDate": "/Date(855792000000)/",
"ShippedDate": "/Date(855273600000)/",
"ShipVia": 2,
"Freight": "44.1700",
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada"
},
{
"OrderID": 10432,
"CustomerID": "SPLIR",
"EmployeeID": 3,
"OrderDate": "/Date(854668800000)/",
"RequiredDate": "/Date(855878400000)/",
"ShippedDate": "/Date(855273600000)/",
"ShipVia": 2,
"Freight": "4.3400",
"ShipName": "Split Rail Beer & Ale",
"ShipAddress": "P.O. Box 555",
"ShipCity": "Lander",
"ShipRegion": "WY",
"ShipPostalCode": "82520",
"ShipCountry": "USA"
},
{
"OrderID": 10433,
"CustomerID": "PRINI",
"EmployeeID": 3,
"OrderDate": "/Date(854928000000)/",
"RequiredDate": "/Date(857347200000)/",
"ShippedDate": "/Date(857433600000)/",
"ShipVia": 3,
"Freight": "73.8300",
"ShipName": "Princesa Isabel Vinhos",
"ShipAddress": "Estrada da saúde n. 58",
"ShipCity": "Lisboa",
"ShipRegion": null,
"ShipPostalCode": "1756",
"ShipCountry": "Portugal"
},
{
"OrderID": 10434,
"CustomerID": "FOLKO",
"EmployeeID": 3,
"OrderDate": "/Date(854928000000)/",
"RequiredDate": "/Date(857347200000)/",
"ShippedDate": "/Date(855792000000)/",
"ShipVia": 2,
"Freight": "17.9200",
"ShipName": "Folk och fä HB",
"ShipAddress": "Åkergatan 24",
"ShipCity": "Bräcke",
"ShipRegion": null,
"ShipPostalCode": "S-844 67",
"ShipCountry": "Sweden"
},
{
"OrderID": 10435,
"CustomerID": "CONSH",
"EmployeeID": 8,
"OrderDate": "/Date(855014400000)/",
"RequiredDate": "/Date(858643200000)/",
"ShippedDate": "/Date(855273600000)/",
"ShipVia": 2,
"Freight": "9.2100",
"ShipName": "Consolidated Holdings",
"ShipAddress": "Berkeley Gardens 12 Brewery",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX1 6LT",
"ShipCountry": "UK"
},
{
"OrderID": 10436,
"CustomerID": "BLONP",
"EmployeeID": 3,
"OrderDate": "/Date(855100800000)/",
"RequiredDate": "/Date(857520000000)/",
"ShippedDate": "/Date(855619200000)/",
"ShipVia": 2,
"Freight": "156.6600",
"ShipName": "Blondel père et fils",
"ShipAddress": "24, place Kléber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France"
},
{
"OrderID": 10437,
"CustomerID": "WARTH",
"EmployeeID": 8,
"OrderDate": "/Date(855100800000)/",
"RequiredDate": "/Date(857520000000)/",
"ShippedDate": "/Date(855705600000)/",
"ShipVia": 1,
"Freight": "19.9700",
"ShipName": "Wartian Herkku",
"ShipAddress": "Torikatu 38",
"ShipCity": "Oulu",
"ShipRegion": null,
"ShipPostalCode": "90110",
"ShipCountry": "Finland"
},
{
"OrderID": 10438,
"CustomerID": "TOMSP",
"EmployeeID": 3,
"OrderDate": "/Date(855187200000)/",
"RequiredDate": "/Date(857606400000)/",
"ShippedDate": "/Date(855878400000)/",
"ShipVia": 2,
"Freight": "8.2400",
"ShipName": "Toms Spezialitäten",
"ShipAddress": "Luisenstr. 48",
"ShipCity": "Münster",
"ShipRegion": null,
"ShipPostalCode": "44087",
"ShipCountry": "Germany"
},
{
"OrderID": 10439,
"CustomerID": "MEREP",
"EmployeeID": 6,
"OrderDate": "/Date(855273600000)/",
"RequiredDate": "/Date(857692800000)/",
"ShippedDate": "/Date(855532800000)/",
"ShipVia": 3,
"Freight": "4.0700",
"ShipName": "Mère Paillarde",
"ShipAddress": "43 rue St. Laurent",
"ShipCity": "Montréal",
"ShipRegion": "Québec",
"ShipPostalCode": "H1J 1C3",
"ShipCountry": "Canada"
},
{
"OrderID": 10440,
"CustomerID": "SAVEA",
"EmployeeID": 4,
"OrderDate": "/Date(855532800000)/",
"RequiredDate": "/Date(857952000000)/",
"ShippedDate": "/Date(857088000000)/",
"ShipVia": 2,
"Freight": "86.5300",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10441,
"CustomerID": "OLDWO",
"EmployeeID": 3,
"OrderDate": "/Date(855532800000)/",
"RequiredDate": "/Date(859161600000)/",
"ShippedDate": "/Date(858297600000)/",
"ShipVia": 2,
"Freight": "73.0200",
"ShipName": "Old World Delicatessen",
"ShipAddress": "2743 Bering St.",
"ShipCity": "Anchorage",
"ShipRegion": "AK",
"ShipPostalCode": "99508",
"ShipCountry": "USA"
},
{
"OrderID": 10442,
"CustomerID": "ERNSH",
"EmployeeID": 3,
"OrderDate": "/Date(855619200000)/",
"RequiredDate": "/Date(858038400000)/",
"ShippedDate": "/Date(856224000000)/",
"ShipVia": 2,
"Freight": "47.9400",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10443,
"CustomerID": "REGGC",
"EmployeeID": 8,
"OrderDate": "/Date(855705600000)/",
"RequiredDate": "/Date(858124800000)/",
"ShippedDate": "/Date(855878400000)/",
"ShipVia": 1,
"Freight": "13.9500",
"ShipName": "Reggiani Caseifici",
"ShipAddress": "Strada Provinciale 124",
"ShipCity": "Reggio Emilia",
"ShipRegion": null,
"ShipPostalCode": "42100",
"ShipCountry": "Italy"
},
{
"OrderID": 10444,
"CustomerID": "BERGS",
"EmployeeID": 3,
"OrderDate": "/Date(855705600000)/",
"RequiredDate": "/Date(858124800000)/",
"ShippedDate": "/Date(856483200000)/",
"ShipVia": 3,
"Freight": "3.5000",
"ShipName": "Berglunds snabbköp",
"ShipAddress": "Berguvsvägen 8",
"ShipCity": "Luleå",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden"
},
{
"OrderID": 10445,
"CustomerID": "BERGS",
"EmployeeID": 3,
"OrderDate": "/Date(855792000000)/",
"RequiredDate": "/Date(858211200000)/",
"ShippedDate": "/Date(856396800000)/",
"ShipVia": 1,
"Freight": "9.3000",
"ShipName": "Berglunds snabbköp",
"ShipAddress": "Berguvsvägen 8",
"ShipCity": "Luleå",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden"
},
{
"OrderID": 10446,
"CustomerID": "TOMSP",
"EmployeeID": 6,
"OrderDate": "/Date(855878400000)/",
"RequiredDate": "/Date(858297600000)/",
"ShippedDate": "/Date(856310400000)/",
"ShipVia": 1,
"Freight": "14.6800",
"ShipName": "Toms Spezialitäten",
"ShipAddress": "Luisenstr. 48",
"ShipCity": "Münster",
"ShipRegion": null,
"ShipPostalCode": "44087",
"ShipCountry": "Germany"
},
{
"OrderID": 10447,
"CustomerID": "RICAR",
"EmployeeID": 4,
"OrderDate": "/Date(855878400000)/",
"RequiredDate": "/Date(858297600000)/",
"ShippedDate": "/Date(857692800000)/",
"ShipVia": 2,
"Freight": "68.6600",
"ShipName": "Ricardo Adocicados",
"ShipAddress": "Av. Copacabana, 267",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "02389-890",
"ShipCountry": "Brazil"
},
{
"OrderID": 10448,
"CustomerID": "RANCH",
"EmployeeID": 4,
"OrderDate": "/Date(856137600000)/",
"RequiredDate": "/Date(858556800000)/",
"ShippedDate": "/Date(856742400000)/",
"ShipVia": 2,
"Freight": "38.8200",
"ShipName": "Rancho grande",
"ShipAddress": "Av. del Libertador 900",
"ShipCity": "Buenos Aires",
"ShipRegion": null,
"ShipPostalCode": "1010",
"ShipCountry": "Argentina"
},
{
"OrderID": 10449,
"CustomerID": "BLONP",
"EmployeeID": 3,
"OrderDate": "/Date(856224000000)/",
"RequiredDate": "/Date(858643200000)/",
"ShippedDate": "/Date(857001600000)/",
"ShipVia": 2,
"Freight": "53.3000",
"ShipName": "Blondel père et fils",
"ShipAddress": "24, place Kléber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France"
},
{
"OrderID": 10450,
"CustomerID": "VICTE",
"EmployeeID": 8,
"OrderDate": "/Date(856310400000)/",
"RequiredDate": "/Date(858729600000)/",
"ShippedDate": "/Date(858038400000)/",
"ShipVia": 2,
"Freight": "7.2300",
"ShipName": "Victuailles en stock",
"ShipAddress": "2, rue du Commerce",
"ShipCity": "Lyon",
"ShipRegion": null,
"ShipPostalCode": "69004",
"ShipCountry": "France"
},
{
"OrderID": 10451,
"CustomerID": "QUICK",
"EmployeeID": 4,
"OrderDate": "/Date(856310400000)/",
"RequiredDate": "/Date(857520000000)/",
"ShippedDate": "/Date(858124800000)/",
"ShipVia": 3,
"Freight": "189.0900",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10452,
"CustomerID": "SAVEA",
"EmployeeID": 8,
"OrderDate": "/Date(856396800000)/",
"RequiredDate": "/Date(858816000000)/",
"ShippedDate": "/Date(856915200000)/",
"ShipVia": 1,
"Freight": "140.2600",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10453,
"CustomerID": "AROUT",
"EmployeeID": 1,
"OrderDate": "/Date(856483200000)/",
"RequiredDate": "/Date(858902400000)/",
"ShippedDate": "/Date(856915200000)/",
"ShipVia": 2,
"Freight": "25.3600",
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK"
},
{
"OrderID": 10454,
"CustomerID": "LAMAI",
"EmployeeID": 4,
"OrderDate": "/Date(856483200000)/",
"RequiredDate": "/Date(858902400000)/",
"ShippedDate": "/Date(856828800000)/",
"ShipVia": 3,
"Freight": "2.7400",
"ShipName": "La maison d'Asie",
"ShipAddress": "1 rue Alsace-Lorraine",
"ShipCity": "Toulouse",
"ShipRegion": null,
"ShipPostalCode": "31000",
"ShipCountry": "France"
},
{
"OrderID": 10455,
"CustomerID": "WARTH",
"EmployeeID": 8,
"OrderDate": "/Date(856742400000)/",
"RequiredDate": "/Date(860371200000)/",
"ShippedDate": "/Date(857347200000)/",
"ShipVia": 2,
"Freight": "180.4500",
"ShipName": "Wartian Herkku",
"ShipAddress": "Torikatu 38",
"ShipCity": "Oulu",
"ShipRegion": null,
"ShipPostalCode": "90110",
"ShipCountry": "Finland"
},
{
"OrderID": 10456,
"CustomerID": "KOENE",
"EmployeeID": 8,
"OrderDate": "/Date(856828800000)/",
"RequiredDate": "/Date(860457600000)/",
"ShippedDate": "/Date(857088000000)/",
"ShipVia": 2,
"Freight": "8.1200",
"ShipName": "Königlich Essen",
"ShipAddress": "Maubelstr. 90",
"ShipCity": "Brandenburg",
"ShipRegion": null,
"ShipPostalCode": "14776",
"ShipCountry": "Germany"
},
{
"OrderID": 10457,
"CustomerID": "KOENE",
"EmployeeID": 2,
"OrderDate": "/Date(856828800000)/",
"RequiredDate": "/Date(859248000000)/",
"ShippedDate": "/Date(857347200000)/",
"ShipVia": 1,
"Freight": "11.5700",
"ShipName": "Königlich Essen",
"ShipAddress": "Maubelstr. 90",
"ShipCity": "Brandenburg",
"ShipRegion": null,
"ShipPostalCode": "14776",
"ShipCountry": "Germany"
},
{
"OrderID": 10458,
"CustomerID": "SUPRD",
"EmployeeID": 7,
"OrderDate": "/Date(856915200000)/",
"RequiredDate": "/Date(859334400000)/",
"ShippedDate": "/Date(857433600000)/",
"ShipVia": 3,
"Freight": "147.0600",
"ShipName": "Suprêmes délices",
"ShipAddress": "Boulevard Tirou, 255",
"ShipCity": "Charleroi",
"ShipRegion": null,
"ShipPostalCode": "B-6000",
"ShipCountry": "Belgium"
},
{
"OrderID": 10459,
"CustomerID": "VICTE",
"EmployeeID": 4,
"OrderDate": "/Date(857001600000)/",
"RequiredDate": "/Date(859420800000)/",
"ShippedDate": "/Date(857088000000)/",
"ShipVia": 2,
"Freight": "25.0900",
"ShipName": "Victuailles en stock",
"ShipAddress": "2, rue du Commerce",
"ShipCity": "Lyon",
"ShipRegion": null,
"ShipPostalCode": "69004",
"ShipCountry": "France"
},
{
"OrderID": 10460,
"CustomerID": "FOLKO",
"EmployeeID": 8,
"OrderDate": "/Date(857088000000)/",
"RequiredDate": "/Date(859507200000)/",
"ShippedDate": "/Date(857347200000)/",
"ShipVia": 1,
"Freight": "16.2700",
"ShipName": "Folk och fä HB",
"ShipAddress": "Åkergatan 24",
"ShipCity": "Bräcke",
"ShipRegion": null,
"ShipPostalCode": "S-844 67",
"ShipCountry": "Sweden"
},
{
"OrderID": 10461,
"CustomerID": "LILAS",
"EmployeeID": 1,
"OrderDate": "/Date(857088000000)/",
"RequiredDate": "/Date(859507200000)/",
"ShippedDate": "/Date(857520000000)/",
"ShipVia": 3,
"Freight": "148.6100",
"ShipName": "LILA-Supermercado",
"ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo",
"ShipCity": "Barquisimeto",
"ShipRegion": "Lara",
"ShipPostalCode": "3508",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10462,
"CustomerID": "CONSH",
"EmployeeID": 2,
"OrderDate": "/Date(857347200000)/",
"RequiredDate": "/Date(859766400000)/",
"ShippedDate": "/Date(858643200000)/",
"ShipVia": 1,
"Freight": "6.1700",
"ShipName": "Consolidated Holdings",
"ShipAddress": "Berkeley Gardens 12 Brewery",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX1 6LT",
"ShipCountry": "UK"
},
{
"OrderID": 10463,
"CustomerID": "SUPRD",
"EmployeeID": 5,
"OrderDate": "/Date(857433600000)/",
"RequiredDate": "/Date(859852800000)/",
"ShippedDate": "/Date(857606400000)/",
"ShipVia": 3,
"Freight": "14.7800",
"ShipName": "Suprêmes délices",
"ShipAddress": "Boulevard Tirou, 255",
"ShipCity": "Charleroi",
"ShipRegion": null,
"ShipPostalCode": "B-6000",
"ShipCountry": "Belgium"
},
{
"OrderID": 10464,
"CustomerID": "FURIB",
"EmployeeID": 4,
"OrderDate": "/Date(857433600000)/",
"RequiredDate": "/Date(859852800000)/",
"ShippedDate": "/Date(858297600000)/",
"ShipVia": 2,
"Freight": "89.0000",
"ShipName": "Furia Bacalhau e Frutos do Mar",
"ShipAddress": "Jardim das rosas n. 32",
"ShipCity": "Lisboa",
"ShipRegion": null,
"ShipPostalCode": "1675",
"ShipCountry": "Portugal"
},
{
"OrderID": 10465,
"CustomerID": "VAFFE",
"EmployeeID": 1,
"OrderDate": "/Date(857520000000)/",
"RequiredDate": "/Date(859939200000)/",
"ShippedDate": "/Date(858297600000)/",
"ShipVia": 3,
"Freight": "145.0400",
"ShipName": "Vaffeljernet",
"ShipAddress": "Smagsloget 45",
"ShipCity": "Århus",
"ShipRegion": null,
"ShipPostalCode": "8200",
"ShipCountry": "Denmark"
},
{
"OrderID": 10466,
"CustomerID": "COMMI",
"EmployeeID": 4,
"OrderDate": "/Date(857606400000)/",
"RequiredDate": "/Date(860025600000)/",
"ShippedDate": "/Date(858211200000)/",
"ShipVia": 1,
"Freight": "11.9300",
"ShipName": "Comércio Mineiro",
"ShipAddress": "Av. dos Lusíadas, 23",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05432-043",
"ShipCountry": "Brazil"
},
{
"OrderID": 10467,
"CustomerID": "MAGAA",
"EmployeeID": 8,
"OrderDate": "/Date(857606400000)/",
"RequiredDate": "/Date(860025600000)/",
"ShippedDate": "/Date(858038400000)/",
"ShipVia": 2,
"Freight": "4.9300",
"ShipName": "Magazzini Alimentari Riuniti",
"ShipAddress": "Via Ludovico il Moro 22",
"ShipCity": "Bergamo",
"ShipRegion": null,
"ShipPostalCode": "24100",
"ShipCountry": "Italy"
},
{
"OrderID": 10468,
"CustomerID": "KOENE",
"EmployeeID": 3,
"OrderDate": "/Date(857692800000)/",
"RequiredDate": "/Date(860112000000)/",
"ShippedDate": "/Date(858124800000)/",
"ShipVia": 3,
"Freight": "44.1200",
"ShipName": "Königlich Essen",
"ShipAddress": "Maubelstr. 90",
"ShipCity": "Brandenburg",
"ShipRegion": null,
"ShipPostalCode": "14776",
"ShipCountry": "Germany"
},
{
"OrderID": 10469,
"CustomerID": "WHITC",
"EmployeeID": 1,
"OrderDate": "/Date(857952000000)/",
"RequiredDate": "/Date(860371200000)/",
"ShippedDate": "/Date(858297600000)/",
"ShipVia": 1,
"Freight": "60.1800",
"ShipName": "White Clover Markets",
"ShipAddress": "1029 - 12th Ave. S.",
"ShipCity": "Seattle",
"ShipRegion": "WA",
"ShipPostalCode": "98124",
"ShipCountry": "USA"
},
{
"OrderID": 10470,
"CustomerID": "BONAP",
"EmployeeID": 4,
"OrderDate": "/Date(858038400000)/",
"RequiredDate": "/Date(860457600000)/",
"ShippedDate": "/Date(858297600000)/",
"ShipVia": 2,
"Freight": "64.5600",
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France"
},
{
"OrderID": 10471,
"CustomerID": "BSBEV",
"EmployeeID": 2,
"OrderDate": "/Date(858038400000)/",
"RequiredDate": "/Date(860457600000)/",
"ShippedDate": "/Date(858643200000)/",
"ShipVia": 3,
"Freight": "45.5900",
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK"
},
{
"OrderID": 10472,
"CustomerID": "SEVES",
"EmployeeID": 8,
"OrderDate": "/Date(858124800000)/",
"RequiredDate": "/Date(860544000000)/",
"ShippedDate": "/Date(858729600000)/",
"ShipVia": 1,
"Freight": "4.2000",
"ShipName": "Seven Seas Imports",
"ShipAddress": "90 Wadhurst Rd.",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "OX15 4NB",
"ShipCountry": "UK"
},
{
"OrderID": 10473,
"CustomerID": "ISLAT",
"EmployeeID": 1,
"OrderDate": "/Date(858211200000)/",
"RequiredDate": "/Date(859420800000)/",
"ShippedDate": "/Date(858902400000)/",
"ShipVia": 3,
"Freight": "16.3700",
"ShipName": "Island Trading",
"ShipAddress": "Garden House Crowther Way",
"ShipCity": "Cowes",
"ShipRegion": "Isle of Wight",
"ShipPostalCode": "PO31 7PJ",
"ShipCountry": "UK"
},
{
"OrderID": 10474,
"CustomerID": "PERIC",
"EmployeeID": 5,
"OrderDate": "/Date(858211200000)/",
"RequiredDate": "/Date(860630400000)/",
"ShippedDate": "/Date(858902400000)/",
"ShipVia": 2,
"Freight": "83.4900",
"ShipName": "Pericles Comidas clásicas",
"ShipAddress": "Calle Dr. Jorge Cash 321",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05033",
"ShipCountry": "Mexico"
},
{
"OrderID": 10475,
"CustomerID": "SUPRD",
"EmployeeID": 9,
"OrderDate": "/Date(858297600000)/",
"RequiredDate": "/Date(860716800000)/",
"ShippedDate": "/Date(860112000000)/",
"ShipVia": 1,
"Freight": "68.5200",
"ShipName": "Suprêmes délices",
"ShipAddress": "Boulevard Tirou, 255",
"ShipCity": "Charleroi",
"ShipRegion": null,
"ShipPostalCode": "B-6000",
"ShipCountry": "Belgium"
},
{
"OrderID": 10476,
"CustomerID": "HILAA",
"EmployeeID": 8,
"OrderDate": "/Date(858556800000)/",
"RequiredDate": "/Date(860976000000)/",
"ShippedDate": "/Date(859161600000)/",
"ShipVia": 3,
"Freight": "4.4100",
"ShipName": "HILARION-Abastos",
"ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35",
"ShipCity": "San Cristóbal",
"ShipRegion": "Táchira",
"ShipPostalCode": "5022",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10477,
"CustomerID": "PRINI",
"EmployeeID": 5,
"OrderDate": "/Date(858556800000)/",
"RequiredDate": "/Date(860976000000)/",
"ShippedDate": "/Date(859248000000)/",
"ShipVia": 2,
"Freight": "13.0200",
"ShipName": "Princesa Isabel Vinhos",
"ShipAddress": "Estrada da saúde n. 58",
"ShipCity": "Lisboa",
"ShipRegion": null,
"ShipPostalCode": "1756",
"ShipCountry": "Portugal"
},
{
"OrderID": 10478,
"CustomerID": "VICTE",
"EmployeeID": 2,
"OrderDate": "/Date(858643200000)/",
"RequiredDate": "/Date(859852800000)/",
"ShippedDate": "/Date(859334400000)/",
"ShipVia": 3,
"Freight": "4.8100",
"ShipName": "Victuailles en stock",
"ShipAddress": "2, rue du Commerce",
"ShipCity": "Lyon",
"ShipRegion": null,
"ShipPostalCode": "69004",
"ShipCountry": "France"
},
{
"OrderID": 10479,
"CustomerID": "RATTC",
"EmployeeID": 3,
"OrderDate": "/Date(858729600000)/",
"RequiredDate": "/Date(861148800000)/",
"ShippedDate": "/Date(858902400000)/",
"ShipVia": 3,
"Freight": "708.9500",
"ShipName": "Rattlesnake Canyon Grocery",
"ShipAddress": "2817 Milton Dr.",
"ShipCity": "Albuquerque",
"ShipRegion": "NM",
"ShipPostalCode": "87110",
"ShipCountry": "USA"
},
{
"OrderID": 10480,
"CustomerID": "FOLIG",
"EmployeeID": 6,
"OrderDate": "/Date(858816000000)/",
"RequiredDate": "/Date(861235200000)/",
"ShippedDate": "/Date(859161600000)/",
"ShipVia": 2,
"Freight": "1.3500",
"ShipName": "Folies gourmandes",
"ShipAddress": "184, chaussée de Tournai",
"ShipCity": "Lille",
"ShipRegion": null,
"ShipPostalCode": "59000",
"ShipCountry": "France"
},
{
"OrderID": 10481,
"CustomerID": "RICAR",
"EmployeeID": 8,
"OrderDate": "/Date(858816000000)/",
"RequiredDate": "/Date(861235200000)/",
"ShippedDate": "/Date(859248000000)/",
"ShipVia": 2,
"Freight": "64.3300",
"ShipName": "Ricardo Adocicados",
"ShipAddress": "Av. Copacabana, 267",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "02389-890",
"ShipCountry": "Brazil"
},
{
"OrderID": 10482,
"CustomerID": "LAZYK",
"EmployeeID": 1,
"OrderDate": "/Date(858902400000)/",
"RequiredDate": "/Date(861321600000)/",
"ShippedDate": "/Date(860630400000)/",
"ShipVia": 3,
"Freight": "7.4800",
"ShipName": "Lazy K Kountry Store",
"ShipAddress": "12 Orchestra Terrace",
"ShipCity": "Walla Walla",
"ShipRegion": "WA",
"ShipPostalCode": "99362",
"ShipCountry": "USA"
},
{
"OrderID": 10483,
"CustomerID": "WHITC",
"EmployeeID": 7,
"OrderDate": "/Date(859161600000)/",
"RequiredDate": "/Date(861580800000)/",
"ShippedDate": "/Date(861926400000)/",
"ShipVia": 2,
"Freight": "15.2800",
"ShipName": "White Clover Markets",
"ShipAddress": "1029 - 12th Ave. S.",
"ShipCity": "Seattle",
"ShipRegion": "WA",
"ShipPostalCode": "98124",
"ShipCountry": "USA"
},
{
"OrderID": 10484,
"CustomerID": "BSBEV",
"EmployeeID": 3,
"OrderDate": "/Date(859161600000)/",
"RequiredDate": "/Date(861580800000)/",
"ShippedDate": "/Date(859852800000)/",
"ShipVia": 3,
"Freight": "6.8800",
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK"
},
{
"OrderID": 10485,
"CustomerID": "LINOD",
"EmployeeID": 4,
"OrderDate": "/Date(859248000000)/",
"RequiredDate": "/Date(860457600000)/",
"ShippedDate": "/Date(859766400000)/",
"ShipVia": 2,
"Freight": "64.4500",
"ShipName": "LINO-Delicateses",
"ShipAddress": "Ave. 5 de Mayo Porlamar",
"ShipCity": "I. de Margarita",
"ShipRegion": "Nueva Esparta",
"ShipPostalCode": "4980",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10486,
"CustomerID": "HILAA",
"EmployeeID": 1,
"OrderDate": "/Date(859334400000)/",
"RequiredDate": "/Date(861753600000)/",
"ShippedDate": "/Date(859939200000)/",
"ShipVia": 2,
"Freight": "30.5300",
"ShipName": "HILARION-Abastos",
"ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35",
"ShipCity": "San Cristóbal",
"ShipRegion": "Táchira",
"ShipPostalCode": "5022",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10487,
"CustomerID": "QUEEN",
"EmployeeID": 2,
"OrderDate": "/Date(859334400000)/",
"RequiredDate": "/Date(861753600000)/",
"ShippedDate": "/Date(859507200000)/",
"ShipVia": 2,
"Freight": "71.0700",
"ShipName": "Queen Cozinha",
"ShipAddress": "Alameda dos Canàrios, 891",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05487-020",
"ShipCountry": "Brazil"
},
{
"OrderID": 10488,
"CustomerID": "FRANK",
"EmployeeID": 8,
"OrderDate": "/Date(859420800000)/",
"RequiredDate": "/Date(861840000000)/",
"ShippedDate": "/Date(859939200000)/",
"ShipVia": 2,
"Freight": "4.9300",
"ShipName": "Frankenversand",
"ShipAddress": "Berliner Platz 43",
"ShipCity": "München",
"ShipRegion": null,
"ShipPostalCode": "80805",
"ShipCountry": "Germany"
},
{
"OrderID": 10489,
"CustomerID": "PICCO",
"EmployeeID": 6,
"OrderDate": "/Date(859507200000)/",
"RequiredDate": "/Date(861926400000)/",
"ShippedDate": "/Date(860544000000)/",
"ShipVia": 2,
"Freight": "5.2900",
"ShipName": "Piccolo und mehr",
"ShipAddress": "Geislweg 14",
"ShipCity": "Salzburg",
"ShipRegion": null,
"ShipPostalCode": "5020",
"ShipCountry": "Austria"
},
{
"OrderID": 10490,
"CustomerID": "HILAA",
"EmployeeID": 7,
"OrderDate": "/Date(859766400000)/",
"RequiredDate": "/Date(862185600000)/",
"ShippedDate": "/Date(860025600000)/",
"ShipVia": 2,
"Freight": "210.1900",
"ShipName": "HILARION-Abastos",
"ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35",
"ShipCity": "San Cristóbal",
"ShipRegion": "Táchira",
"ShipPostalCode": "5022",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10491,
"CustomerID": "FURIB",
"EmployeeID": 8,
"OrderDate": "/Date(859766400000)/",
"RequiredDate": "/Date(862185600000)/",
"ShippedDate": "/Date(860457600000)/",
"ShipVia": 3,
"Freight": "16.9600",
"ShipName": "Furia Bacalhau e Frutos do Mar",
"ShipAddress": "Jardim das rosas n. 32",
"ShipCity": "Lisboa",
"ShipRegion": null,
"ShipPostalCode": "1675",
"ShipCountry": "Portugal"
},
{
"OrderID": 10492,
"CustomerID": "BOTTM",
"EmployeeID": 3,
"OrderDate": "/Date(859852800000)/",
"RequiredDate": "/Date(862272000000)/",
"ShippedDate": "/Date(860716800000)/",
"ShipVia": 1,
"Freight": "62.8900",
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada"
},
{
"OrderID": 10493,
"CustomerID": "LAMAI",
"EmployeeID": 4,
"OrderDate": "/Date(859939200000)/",
"RequiredDate": "/Date(862358400000)/",
"ShippedDate": "/Date(860630400000)/",
"ShipVia": 3,
"Freight": "10.6400",
"ShipName": "La maison d'Asie",
"ShipAddress": "1 rue Alsace-Lorraine",
"ShipCity": "Toulouse",
"ShipRegion": null,
"ShipPostalCode": "31000",
"ShipCountry": "France"
},
{
"OrderID": 10494,
"CustomerID": "COMMI",
"EmployeeID": 4,
"OrderDate": "/Date(859939200000)/",
"RequiredDate": "/Date(862358400000)/",
"ShippedDate": "/Date(860544000000)/",
"ShipVia": 2,
"Freight": "65.9900",
"ShipName": "Comércio Mineiro",
"ShipAddress": "Av. dos Lusíadas, 23",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05432-043",
"ShipCountry": "Brazil"
},
{
"OrderID": 10495,
"CustomerID": "LAUGB",
"EmployeeID": 3,
"OrderDate": "/Date(860025600000)/",
"RequiredDate": "/Date(862444800000)/",
"ShippedDate": "/Date(860716800000)/",
"ShipVia": 3,
"Freight": "4.6500",
"ShipName": "Laughing Bacchus Wine Cellars",
"ShipAddress": "2319 Elm St.",
"ShipCity": "Vancouver",
"ShipRegion": "BC",
"ShipPostalCode": "V3F 2K1",
"ShipCountry": "Canada"
},
{
"OrderID": 10496,
"CustomerID": "TRADH",
"EmployeeID": 7,
"OrderDate": "/Date(860112000000)/",
"RequiredDate": "/Date(862531200000)/",
"ShippedDate": "/Date(860371200000)/",
"ShipVia": 2,
"Freight": "46.7700",
"ShipName": "Tradiçao Hipermercados",
"ShipAddress": "Av. Inês de Castro, 414",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05634-030",
"ShipCountry": "Brazil"
},
{
"OrderID": 10497,
"CustomerID": "LEHMS",
"EmployeeID": 7,
"OrderDate": "/Date(860112000000)/",
"RequiredDate": "/Date(862531200000)/",
"ShippedDate": "/Date(860371200000)/",
"ShipVia": 1,
"Freight": "36.2100",
"ShipName": "Lehmanns Marktstand",
"ShipAddress": "Magazinweg 7",
"ShipCity": "Frankfurt a.M.",
"ShipRegion": null,
"ShipPostalCode": "60528",
"ShipCountry": "Germany"
},
{
"OrderID": 10498,
"CustomerID": "HILAA",
"EmployeeID": 8,
"OrderDate": "/Date(860371200000)/",
"RequiredDate": "/Date(862790400000)/",
"ShippedDate": "/Date(860716800000)/",
"ShipVia": 2,
"Freight": "29.7500",
"ShipName": "HILARION-Abastos",
"ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35",
"ShipCity": "San Cristóbal",
"ShipRegion": "Táchira",
"ShipPostalCode": "5022",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10499,
"CustomerID": "LILAS",
"EmployeeID": 4,
"OrderDate": "/Date(860457600000)/",
"RequiredDate": "/Date(862876800000)/",
"ShippedDate": "/Date(861148800000)/",
"ShipVia": 2,
"Freight": "102.0200",
"ShipName": "LILA-Supermercado",
"ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo",
"ShipCity": "Barquisimeto",
"ShipRegion": "Lara",
"ShipPostalCode": "3508",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10500,
"CustomerID": "LAMAI",
"EmployeeID": 6,
"OrderDate": "/Date(860544000000)/",
"RequiredDate": "/Date(862963200000)/",
"ShippedDate": "/Date(861235200000)/",
"ShipVia": 1,
"Freight": "42.6800",
"ShipName": "La maison d'Asie",
"ShipAddress": "1 rue Alsace-Lorraine",
"ShipCity": "Toulouse",
"ShipRegion": null,
"ShipPostalCode": "31000",
"ShipCountry": "France"
},
{
"OrderID": 10501,
"CustomerID": "BLAUS",
"EmployeeID": 9,
"OrderDate": "/Date(860544000000)/",
"RequiredDate": "/Date(862963200000)/",
"ShippedDate": "/Date(861148800000)/",
"ShipVia": 3,
"Freight": "8.8500",
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany"
},
{
"OrderID": 10502,
"CustomerID": "PERIC",
"EmployeeID": 2,
"OrderDate": "/Date(860630400000)/",
"RequiredDate": "/Date(863049600000)/",
"ShippedDate": "/Date(862272000000)/",
"ShipVia": 1,
"Freight": "69.3200",
"ShipName": "Pericles Comidas clásicas",
"ShipAddress": "Calle Dr. Jorge Cash 321",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05033",
"ShipCountry": "Mexico"
},
{
"OrderID": 10503,
"CustomerID": "HUNGO",
"EmployeeID": 6,
"OrderDate": "/Date(860716800000)/",
"RequiredDate": "/Date(863136000000)/",
"ShippedDate": "/Date(861148800000)/",
"ShipVia": 2,
"Freight": "16.7400",
"ShipName": "Hungry Owl All-Night Grocers",
"ShipAddress": "8 Johnstown Road",
"ShipCity": "Cork",
"ShipRegion": "Co. Cork",
"ShipPostalCode": null,
"ShipCountry": "Ireland"
},
{
"OrderID": 10504,
"CustomerID": "WHITC",
"EmployeeID": 4,
"OrderDate": "/Date(860716800000)/",
"RequiredDate": "/Date(863136000000)/",
"ShippedDate": "/Date(861321600000)/",
"ShipVia": 3,
"Freight": "59.1300",
"ShipName": "White Clover Markets",
"ShipAddress": "1029 - 12th Ave. S.",
"ShipCity": "Seattle",
"ShipRegion": "WA",
"ShipPostalCode": "98124",
"ShipCountry": "USA"
},
{
"OrderID": 10505,
"CustomerID": "MEREP",
"EmployeeID": 3,
"OrderDate": "/Date(860976000000)/",
"RequiredDate": "/Date(863395200000)/",
"ShippedDate": "/Date(861580800000)/",
"ShipVia": 3,
"Freight": "7.1300",
"ShipName": "Mère Paillarde",
"ShipAddress": "43 rue St. Laurent",
"ShipCity": "Montréal",
"ShipRegion": "Québec",
"ShipPostalCode": "H1J 1C3",
"ShipCountry": "Canada"
},
{
"OrderID": 10506,
"CustomerID": "KOENE",
"EmployeeID": 9,
"OrderDate": "/Date(861062400000)/",
"RequiredDate": "/Date(863481600000)/",
"ShippedDate": "/Date(862531200000)/",
"ShipVia": 2,
"Freight": "21.1900",
"ShipName": "Königlich Essen",
"ShipAddress": "Maubelstr. 90",
"ShipCity": "Brandenburg",
"ShipRegion": null,
"ShipPostalCode": "14776",
"ShipCountry": "Germany"
},
{
"OrderID": 10507,
"CustomerID": "ANTON",
"EmployeeID": 7,
"OrderDate": "/Date(861062400000)/",
"RequiredDate": "/Date(863481600000)/",
"ShippedDate": "/Date(861667200000)/",
"ShipVia": 1,
"Freight": "47.4500",
"ShipName": "Antonio Moreno Taquería",
"ShipAddress": "Mataderos 2312",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico"
},
{
"OrderID": 10508,
"CustomerID": "OTTIK",
"EmployeeID": 1,
"OrderDate": "/Date(861148800000)/",
"RequiredDate": "/Date(863568000000)/",
"ShippedDate": "/Date(863481600000)/",
"ShipVia": 2,
"Freight": "4.9900",
"ShipName": "Ottilies Käseladen",
"ShipAddress": "Mehrheimerstr. 369",
"ShipCity": "Köln",
"ShipRegion": null,
"ShipPostalCode": "50739",
"ShipCountry": "Germany"
},
{
"OrderID": 10509,
"CustomerID": "BLAUS",
"EmployeeID": 4,
"OrderDate": "/Date(861235200000)/",
"RequiredDate": "/Date(863654400000)/",
"ShippedDate": "/Date(862272000000)/",
"ShipVia": 1,
"Freight": "0.1500",
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany"
},
{
"OrderID": 10510,
"CustomerID": "SAVEA",
"EmployeeID": 6,
"OrderDate": "/Date(861321600000)/",
"RequiredDate": "/Date(863740800000)/",
"ShippedDate": "/Date(862185600000)/",
"ShipVia": 3,
"Freight": "367.6300",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10511,
"CustomerID": "BONAP",
"EmployeeID": 4,
"OrderDate": "/Date(861321600000)/",
"RequiredDate": "/Date(863740800000)/",
"ShippedDate": "/Date(861580800000)/",
"ShipVia": 3,
"Freight": "350.6400",
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France"
},
{
"OrderID": 10512,
"CustomerID": "FAMIA",
"EmployeeID": 7,
"OrderDate": "/Date(861580800000)/",
"RequiredDate": "/Date(864000000000)/",
"ShippedDate": "/Date(861840000000)/",
"ShipVia": 2,
"Freight": "3.5300",
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Orós, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil"
},
{
"OrderID": 10513,
"CustomerID": "WANDK",
"EmployeeID": 7,
"OrderDate": "/Date(861667200000)/",
"RequiredDate": "/Date(865296000000)/",
"ShippedDate": "/Date(862185600000)/",
"ShipVia": 1,
"Freight": "105.6500",
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany"
},
{
"OrderID": 10514,
"CustomerID": "ERNSH",
"EmployeeID": 3,
"OrderDate": "/Date(861667200000)/",
"RequiredDate": "/Date(864086400000)/",
"ShippedDate": "/Date(863740800000)/",
"ShipVia": 2,
"Freight": "789.9500",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10515,
"CustomerID": "QUICK",
"EmployeeID": 2,
"OrderDate": "/Date(861753600000)/",
"RequiredDate": "/Date(862963200000)/",
"ShippedDate": "/Date(864345600000)/",
"ShipVia": 1,
"Freight": "204.4700",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10516,
"CustomerID": "HUNGO",
"EmployeeID": 2,
"OrderDate": "/Date(861840000000)/",
"RequiredDate": "/Date(864259200000)/",
"ShippedDate": "/Date(862444800000)/",
"ShipVia": 3,
"Freight": "62.7800",
"ShipName": "Hungry Owl All-Night Grocers",
"ShipAddress": "8 Johnstown Road",
"ShipCity": "Cork",
"ShipRegion": "Co. Cork",
"ShipPostalCode": null,
"ShipCountry": "Ireland"
},
{
"OrderID": 10517,
"CustomerID": "NORTS",
"EmployeeID": 3,
"OrderDate": "/Date(861840000000)/",
"RequiredDate": "/Date(864259200000)/",
"ShippedDate": "/Date(862272000000)/",
"ShipVia": 3,
"Freight": "32.0700",
"ShipName": "North/South",
"ShipAddress": "South House 300 Queensbridge",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "SW7 1RZ",
"ShipCountry": "UK"
},
{
"OrderID": 10518,
"CustomerID": "TORTU",
"EmployeeID": 4,
"OrderDate": "/Date(861926400000)/",
"RequiredDate": "/Date(863136000000)/",
"ShippedDate": "/Date(862790400000)/",
"ShipVia": 2,
"Freight": "218.1500",
"ShipName": "Tortuga Restaurante",
"ShipAddress": "Avda. Azteca 123",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05033",
"ShipCountry": "Mexico"
},
{
"OrderID": 10519,
"CustomerID": "CHOPS",
"EmployeeID": 6,
"OrderDate": "/Date(862185600000)/",
"RequiredDate": "/Date(864604800000)/",
"ShippedDate": "/Date(862444800000)/",
"ShipVia": 3,
"Freight": "91.7600",
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland"
},
{
"OrderID": 10520,
"CustomerID": "SANTG",
"EmployeeID": 7,
"OrderDate": "/Date(862272000000)/",
"RequiredDate": "/Date(864691200000)/",
"ShippedDate": "/Date(862444800000)/",
"ShipVia": 1,
"Freight": "13.3700",
"ShipName": "Santé Gourmet",
"ShipAddress": "Erling Skakkes gate 78",
"ShipCity": "Stavern",
"ShipRegion": null,
"ShipPostalCode": "4110",
"ShipCountry": "Norway"
},
{
"OrderID": 10521,
"CustomerID": "CACTU",
"EmployeeID": 8,
"OrderDate": "/Date(862272000000)/",
"RequiredDate": "/Date(864691200000)/",
"ShippedDate": "/Date(862531200000)/",
"ShipVia": 2,
"Freight": "17.2200",
"ShipName": "Cactus Comidas para llevar",
"ShipAddress": "Cerrito 333",
"ShipCity": "Buenos Aires",
"ShipRegion": null,
"ShipPostalCode": "1010",
"ShipCountry": "Argentina"
},
{
"OrderID": 10522,
"CustomerID": "LEHMS",
"EmployeeID": 4,
"OrderDate": "/Date(862358400000)/",
"RequiredDate": "/Date(864777600000)/",
"ShippedDate": "/Date(862876800000)/",
"ShipVia": 1,
"Freight": "45.3300",
"ShipName": "Lehmanns Marktstand",
"ShipAddress": "Magazinweg 7",
"ShipCity": "Frankfurt a.M.",
"ShipRegion": null,
"ShipPostalCode": "60528",
"ShipCountry": "Germany"
},
{
"OrderID": 10523,
"CustomerID": "SEVES",
"EmployeeID": 7,
"OrderDate": "/Date(862444800000)/",
"RequiredDate": "/Date(864864000000)/",
"ShippedDate": "/Date(864950400000)/",
"ShipVia": 2,
"Freight": "77.6300",
"ShipName": "Seven Seas Imports",
"ShipAddress": "90 Wadhurst Rd.",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "OX15 4NB",
"ShipCountry": "UK"
},
{
"OrderID": 10524,
"CustomerID": "BERGS",
"EmployeeID": 1,
"OrderDate": "/Date(862444800000)/",
"RequiredDate": "/Date(864864000000)/",
"ShippedDate": "/Date(862963200000)/",
"ShipVia": 2,
"Freight": "244.7900",
"ShipName": "Berglunds snabbköp",
"ShipAddress": "Berguvsvägen 8",
"ShipCity": "Luleå",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden"
},
{
"OrderID": 10525,
"CustomerID": "BONAP",
"EmployeeID": 1,
"OrderDate": "/Date(862531200000)/",
"RequiredDate": "/Date(864950400000)/",
"ShippedDate": "/Date(864345600000)/",
"ShipVia": 2,
"Freight": "11.0600",
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France"
},
{
"OrderID": 10526,
"CustomerID": "WARTH",
"EmployeeID": 4,
"OrderDate": "/Date(862790400000)/",
"RequiredDate": "/Date(865209600000)/",
"ShippedDate": "/Date(863654400000)/",
"ShipVia": 2,
"Freight": "58.5900",
"ShipName": "Wartian Herkku",
"ShipAddress": "Torikatu 38",
"ShipCity": "Oulu",
"ShipRegion": null,
"ShipPostalCode": "90110",
"ShipCountry": "Finland"
},
{
"OrderID": 10527,
"CustomerID": "QUICK",
"EmployeeID": 7,
"OrderDate": "/Date(862790400000)/",
"RequiredDate": "/Date(865209600000)/",
"ShippedDate": "/Date(862963200000)/",
"ShipVia": 1,
"Freight": "41.9000",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10528,
"CustomerID": "GREAL",
"EmployeeID": 6,
"OrderDate": "/Date(862876800000)/",
"RequiredDate": "/Date(864086400000)/",
"ShippedDate": "/Date(863136000000)/",
"ShipVia": 2,
"Freight": "3.3500",
"ShipName": "Great Lakes Food Market",
"ShipAddress": "2732 Baker Blvd.",
"ShipCity": "Eugene",
"ShipRegion": "OR",
"ShipPostalCode": "97403",
"ShipCountry": "USA"
},
{
"OrderID": 10529,
"CustomerID": "MAISD",
"EmployeeID": 5,
"OrderDate": "/Date(862963200000)/",
"RequiredDate": "/Date(865382400000)/",
"ShippedDate": "/Date(863136000000)/",
"ShipVia": 2,
"Freight": "66.6900",
"ShipName": "Maison Dewey",
"ShipAddress": "Rue Joseph-Bens 532",
"ShipCity": "Bruxelles",
"ShipRegion": null,
"ShipPostalCode": "B-1180",
"ShipCountry": "Belgium"
},
{
"OrderID": 10530,
"CustomerID": "PICCO",
"EmployeeID": 3,
"OrderDate": "/Date(863049600000)/",
"RequiredDate": "/Date(865468800000)/",
"ShippedDate": "/Date(863395200000)/",
"ShipVia": 2,
"Freight": "339.2200",
"ShipName": "Piccolo und mehr",
"ShipAddress": "Geislweg 14",
"ShipCity": "Salzburg",
"ShipRegion": null,
"ShipPostalCode": "5020",
"ShipCountry": "Austria"
},
{
"OrderID": 10531,
"CustomerID": "OCEAN",
"EmployeeID": 7,
"OrderDate": "/Date(863049600000)/",
"RequiredDate": "/Date(865468800000)/",
"ShippedDate": "/Date(864000000000)/",
"ShipVia": 1,
"Freight": "8.1200",
"ShipName": "Océano Atlántico Ltda.",
"ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A",
"ShipCity": "Buenos Aires",
"ShipRegion": null,
"ShipPostalCode": "1010",
"ShipCountry": "Argentina"
},
{
"OrderID": 10532,
"CustomerID": "EASTC",
"EmployeeID": 7,
"OrderDate": "/Date(863136000000)/",
"RequiredDate": "/Date(865555200000)/",
"ShippedDate": "/Date(863395200000)/",
"ShipVia": 3,
"Freight": "74.4600",
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK"
},
{
"OrderID": 10533,
"CustomerID": "FOLKO",
"EmployeeID": 8,
"OrderDate": "/Date(863395200000)/",
"RequiredDate": "/Date(865814400000)/",
"ShippedDate": "/Date(864259200000)/",
"ShipVia": 1,
"Freight": "188.0400",
"ShipName": "Folk och fä HB",
"ShipAddress": "Åkergatan 24",
"ShipCity": "Bräcke",
"ShipRegion": null,
"ShipPostalCode": "S-844 67",
"ShipCountry": "Sweden"
},
{
"OrderID": 10534,
"CustomerID": "LEHMS",
"EmployeeID": 8,
"OrderDate": "/Date(863395200000)/",
"RequiredDate": "/Date(865814400000)/",
"ShippedDate": "/Date(863568000000)/",
"ShipVia": 2,
"Freight": "27.9400",
"ShipName": "Lehmanns Marktstand",
"ShipAddress": "Magazinweg 7",
"ShipCity": "Frankfurt a.M.",
"ShipRegion": null,
"ShipPostalCode": "60528",
"ShipCountry": "Germany"
},
{
"OrderID": 10535,
"CustomerID": "ANTON",
"EmployeeID": 4,
"OrderDate": "/Date(863481600000)/",
"RequiredDate": "/Date(865900800000)/",
"ShippedDate": "/Date(864172800000)/",
"ShipVia": 1,
"Freight": "15.6400",
"ShipName": "Antonio Moreno Taquería",
"ShipAddress": "Mataderos 2312",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico"
},
{
"OrderID": 10536,
"CustomerID": "LEHMS",
"EmployeeID": 3,
"OrderDate": "/Date(863568000000)/",
"RequiredDate": "/Date(865987200000)/",
"ShippedDate": "/Date(865555200000)/",
"ShipVia": 2,
"Freight": "58.8800",
"ShipName": "Lehmanns Marktstand",
"ShipAddress": "Magazinweg 7",
"ShipCity": "Frankfurt a.M.",
"ShipRegion": null,
"ShipPostalCode": "60528",
"ShipCountry": "Germany"
},
{
"OrderID": 10537,
"CustomerID": "RICSU",
"EmployeeID": 1,
"OrderDate": "/Date(863568000000)/",
"RequiredDate": "/Date(864777600000)/",
"ShippedDate": "/Date(864000000000)/",
"ShipVia": 1,
"Freight": "78.8500",
"ShipName": "Richter Supermarkt",
"ShipAddress": "Starenweg 5",
"ShipCity": "Genève",
"ShipRegion": null,
"ShipPostalCode": "1204",
"ShipCountry": "Switzerland"
},
{
"OrderID": 10538,
"CustomerID": "BSBEV",
"EmployeeID": 9,
"OrderDate": "/Date(863654400000)/",
"RequiredDate": "/Date(866073600000)/",
"ShippedDate": "/Date(863740800000)/",
"ShipVia": 3,
"Freight": "4.8700",
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK"
},
{
"OrderID": 10539,
"CustomerID": "BSBEV",
"EmployeeID": 6,
"OrderDate": "/Date(863740800000)/",
"RequiredDate": "/Date(866160000000)/",
"ShippedDate": "/Date(864345600000)/",
"ShipVia": 3,
"Freight": "12.3600",
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK"
},
{
"OrderID": 10540,
"CustomerID": "QUICK",
"EmployeeID": 3,
"OrderDate": "/Date(864000000000)/",
"RequiredDate": "/Date(866419200000)/",
"ShippedDate": "/Date(866160000000)/",
"ShipVia": 3,
"Freight": "1007.6400",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10541,
"CustomerID": "HANAR",
"EmployeeID": 2,
"OrderDate": "/Date(864000000000)/",
"RequiredDate": "/Date(866419200000)/",
"ShippedDate": "/Date(864864000000)/",
"ShipVia": 1,
"Freight": "68.6500",
"ShipName": "Hanari Carnes",
"ShipAddress": "Rua do Paço, 67",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "05454-876",
"ShipCountry": "Brazil"
},
{
"OrderID": 10542,
"CustomerID": "KOENE",
"EmployeeID": 1,
"OrderDate": "/Date(864086400000)/",
"RequiredDate": "/Date(866505600000)/",
"ShippedDate": "/Date(864604800000)/",
"ShipVia": 3,
"Freight": "10.9500",
"ShipName": "Königlich Essen",
"ShipAddress": "Maubelstr. 90",
"ShipCity": "Brandenburg",
"ShipRegion": null,
"ShipPostalCode": "14776",
"ShipCountry": "Germany"
},
{
"OrderID": 10543,
"CustomerID": "LILAS",
"EmployeeID": 8,
"OrderDate": "/Date(864172800000)/",
"RequiredDate": "/Date(866592000000)/",
"ShippedDate": "/Date(864345600000)/",
"ShipVia": 2,
"Freight": "48.1700",
"ShipName": "LILA-Supermercado",
"ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo",
"ShipCity": "Barquisimeto",
"ShipRegion": "Lara",
"ShipPostalCode": "3508",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10544,
"CustomerID": "LONEP",
"EmployeeID": 4,
"OrderDate": "/Date(864172800000)/",
"RequiredDate": "/Date(866592000000)/",
"ShippedDate": "/Date(864950400000)/",
"ShipVia": 1,
"Freight": "24.9100",
"ShipName": "Lonesome Pine Restaurant",
"ShipAddress": "89 Chiaroscuro Rd.",
"ShipCity": "Portland",
"ShipRegion": "OR",
"ShipPostalCode": "97219",
"ShipCountry": "USA"
},
{
"OrderID": 10545,
"CustomerID": "LAZYK",
"EmployeeID": 8,
"OrderDate": "/Date(864259200000)/",
"RequiredDate": "/Date(866678400000)/",
"ShippedDate": "/Date(867283200000)/",
"ShipVia": 2,
"Freight": "11.9200",
"ShipName": "Lazy K Kountry Store",
"ShipAddress": "12 Orchestra Terrace",
"ShipCity": "Walla Walla",
"ShipRegion": "WA",
"ShipPostalCode": "99362",
"ShipCountry": "USA"
},
{
"OrderID": 10546,
"CustomerID": "VICTE",
"EmployeeID": 1,
"OrderDate": "/Date(864345600000)/",
"RequiredDate": "/Date(866764800000)/",
"ShippedDate": "/Date(864691200000)/",
"ShipVia": 3,
"Freight": "194.7200",
"ShipName": "Victuailles en stock",
"ShipAddress": "2, rue du Commerce",
"ShipCity": "Lyon",
"ShipRegion": null,
"ShipPostalCode": "69004",
"ShipCountry": "France"
},
{
"OrderID": 10547,
"CustomerID": "SEVES",
"EmployeeID": 3,
"OrderDate": "/Date(864345600000)/",
"RequiredDate": "/Date(866764800000)/",
"ShippedDate": "/Date(865209600000)/",
"ShipVia": 2,
"Freight": "178.4300",
"ShipName": "Seven Seas Imports",
"ShipAddress": "90 Wadhurst Rd.",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "OX15 4NB",
"ShipCountry": "UK"
},
{
"OrderID": 10548,
"CustomerID": "TOMSP",
"EmployeeID": 3,
"OrderDate": "/Date(864604800000)/",
"RequiredDate": "/Date(867024000000)/",
"ShippedDate": "/Date(865209600000)/",
"ShipVia": 2,
"Freight": "1.4300",
"ShipName": "Toms Spezialitäten",
"ShipAddress": "Luisenstr. 48",
"ShipCity": "Münster",
"ShipRegion": null,
"ShipPostalCode": "44087",
"ShipCountry": "Germany"
},
{
"OrderID": 10549,
"CustomerID": "QUICK",
"EmployeeID": 5,
"OrderDate": "/Date(864691200000)/",
"RequiredDate": "/Date(865900800000)/",
"ShippedDate": "/Date(864950400000)/",
"ShipVia": 1,
"Freight": "171.2400",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10550,
"CustomerID": "GODOS",
"EmployeeID": 7,
"OrderDate": "/Date(864777600000)/",
"RequiredDate": "/Date(867196800000)/",
"ShippedDate": "/Date(865555200000)/",
"ShipVia": 3,
"Freight": "4.3200",
"ShipName": "Godos Cocina Típica",
"ShipAddress": "C/ Romero, 33",
"ShipCity": "Sevilla",
"ShipRegion": null,
"ShipPostalCode": "41101",
"ShipCountry": "Spain"
},
{
"OrderID": 10551,
"CustomerID": "FURIB",
"EmployeeID": 4,
"OrderDate": "/Date(864777600000)/",
"RequiredDate": "/Date(868406400000)/",
"ShippedDate": "/Date(865555200000)/",
"ShipVia": 3,
"Freight": "72.9500",
"ShipName": "Furia Bacalhau e Frutos do Mar",
"ShipAddress": "Jardim das rosas n. 32",
"ShipCity": "Lisboa",
"ShipRegion": null,
"ShipPostalCode": "1675",
"ShipCountry": "Portugal"
},
{
"OrderID": 10552,
"CustomerID": "HILAA",
"EmployeeID": 2,
"OrderDate": "/Date(864864000000)/",
"RequiredDate": "/Date(867283200000)/",
"ShippedDate": "/Date(865468800000)/",
"ShipVia": 1,
"Freight": "83.2200",
"ShipName": "HILARION-Abastos",
"ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35",
"ShipCity": "San Cristóbal",
"ShipRegion": "Táchira",
"ShipPostalCode": "5022",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10553,
"CustomerID": "WARTH",
"EmployeeID": 2,
"OrderDate": "/Date(864950400000)/",
"RequiredDate": "/Date(867369600000)/",
"ShippedDate": "/Date(865296000000)/",
"ShipVia": 2,
"Freight": "149.4900",
"ShipName": "Wartian Herkku",
"ShipAddress": "Torikatu 38",
"ShipCity": "Oulu",
"ShipRegion": null,
"ShipPostalCode": "90110",
"ShipCountry": "Finland"
},
{
"OrderID": 10554,
"CustomerID": "OTTIK",
"EmployeeID": 4,
"OrderDate": "/Date(864950400000)/",
"RequiredDate": "/Date(867369600000)/",
"ShippedDate": "/Date(865468800000)/",
"ShipVia": 3,
"Freight": "120.9700",
"ShipName": "Ottilies Käseladen",
"ShipAddress": "Mehrheimerstr. 369",
"ShipCity": "Köln",
"ShipRegion": null,
"ShipPostalCode": "50739",
"ShipCountry": "Germany"
},
{
"OrderID": 10555,
"CustomerID": "SAVEA",
"EmployeeID": 6,
"OrderDate": "/Date(865209600000)/",
"RequiredDate": "/Date(867628800000)/",
"ShippedDate": "/Date(865382400000)/",
"ShipVia": 3,
"Freight": "252.4900",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10556,
"CustomerID": "SIMOB",
"EmployeeID": 2,
"OrderDate": "/Date(865296000000)/",
"RequiredDate": "/Date(868924800000)/",
"ShippedDate": "/Date(866160000000)/",
"ShipVia": 1,
"Freight": "9.8000",
"ShipName": "Simons bistro",
"ShipAddress": "Vinbæltet 34",
"ShipCity": "Kobenhavn",
"ShipRegion": null,
"ShipPostalCode": "1734",
"ShipCountry": "Denmark"
},
{
"OrderID": 10557,
"CustomerID": "LEHMS",
"EmployeeID": 9,
"OrderDate": "/Date(865296000000)/",
"RequiredDate": "/Date(866505600000)/",
"ShippedDate": "/Date(865555200000)/",
"ShipVia": 2,
"Freight": "96.7200",
"ShipName": "Lehmanns Marktstand",
"ShipAddress": "Magazinweg 7",
"ShipCity": "Frankfurt a.M.",
"ShipRegion": null,
"ShipPostalCode": "60528",
"ShipCountry": "Germany"
},
{
"OrderID": 10558,
"CustomerID": "AROUT",
"EmployeeID": 1,
"OrderDate": "/Date(865382400000)/",
"RequiredDate": "/Date(867801600000)/",
"ShippedDate": "/Date(865900800000)/",
"ShipVia": 2,
"Freight": "72.9700",
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK"
},
{
"OrderID": 10559,
"CustomerID": "BLONP",
"EmployeeID": 6,
"OrderDate": "/Date(865468800000)/",
"RequiredDate": "/Date(867888000000)/",
"ShippedDate": "/Date(866160000000)/",
"ShipVia": 1,
"Freight": "8.0500",
"ShipName": "Blondel père et fils",
"ShipAddress": "24, place Kléber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France"
},
{
"OrderID": 10560,
"CustomerID": "FRANK",
"EmployeeID": 8,
"OrderDate": "/Date(865555200000)/",
"RequiredDate": "/Date(867974400000)/",
"ShippedDate": "/Date(865814400000)/",
"ShipVia": 1,
"Freight": "36.6500",
"ShipName": "Frankenversand",
"ShipAddress": "Berliner Platz 43",
"ShipCity": "München",
"ShipRegion": null,
"ShipPostalCode": "80805",
"ShipCountry": "Germany"
},
{
"OrderID": 10561,
"CustomerID": "FOLKO",
"EmployeeID": 2,
"OrderDate": "/Date(865555200000)/",
"RequiredDate": "/Date(867974400000)/",
"ShippedDate": "/Date(865814400000)/",
"ShipVia": 2,
"Freight": "242.2100",
"ShipName": "Folk och fä HB",
"ShipAddress": "Åkergatan 24",
"ShipCity": "Bräcke",
"ShipRegion": null,
"ShipPostalCode": "S-844 67",
"ShipCountry": "Sweden"
},
{
"OrderID": 10562,
"CustomerID": "REGGC",
"EmployeeID": 1,
"OrderDate": "/Date(865814400000)/",
"RequiredDate": "/Date(868233600000)/",
"ShippedDate": "/Date(866073600000)/",
"ShipVia": 1,
"Freight": "22.9500",
"ShipName": "Reggiani Caseifici",
"ShipAddress": "Strada Provinciale 124",
"ShipCity": "Reggio Emilia",
"ShipRegion": null,
"ShipPostalCode": "42100",
"ShipCountry": "Italy"
},
{
"OrderID": 10563,
"CustomerID": "RICAR",
"EmployeeID": 2,
"OrderDate": "/Date(865900800000)/",
"RequiredDate": "/Date(869529600000)/",
"ShippedDate": "/Date(867110400000)/",
"ShipVia": 2,
"Freight": "60.4300",
"ShipName": "Ricardo Adocicados",
"ShipAddress": "Av. Copacabana, 267",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "02389-890",
"ShipCountry": "Brazil"
},
{
"OrderID": 10564,
"CustomerID": "RATTC",
"EmployeeID": 4,
"OrderDate": "/Date(865900800000)/",
"RequiredDate": "/Date(868320000000)/",
"ShippedDate": "/Date(866419200000)/",
"ShipVia": 3,
"Freight": "13.7500",
"ShipName": "Rattlesnake Canyon Grocery",
"ShipAddress": "2817 Milton Dr.",
"ShipCity": "Albuquerque",
"ShipRegion": "NM",
"ShipPostalCode": "87110",
"ShipCountry": "USA"
},
{
"OrderID": 10565,
"CustomerID": "MEREP",
"EmployeeID": 8,
"OrderDate": "/Date(865987200000)/",
"RequiredDate": "/Date(868406400000)/",
"ShippedDate": "/Date(866592000000)/",
"ShipVia": 2,
"Freight": "7.1500",
"ShipName": "Mère Paillarde",
"ShipAddress": "43 rue St. Laurent",
"ShipCity": "Montréal",
"ShipRegion": "Québec",
"ShipPostalCode": "H1J 1C3",
"ShipCountry": "Canada"
},
{
"OrderID": 10566,
"CustomerID": "BLONP",
"EmployeeID": 9,
"OrderDate": "/Date(866073600000)/",
"RequiredDate": "/Date(868492800000)/",
"ShippedDate": "/Date(866592000000)/",
"ShipVia": 1,
"Freight": "88.4000",
"ShipName": "Blondel père et fils",
"ShipAddress": "24, place Kléber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France"
},
{
"OrderID": 10567,
"CustomerID": "HUNGO",
"EmployeeID": 1,
"OrderDate": "/Date(866073600000)/",
"RequiredDate": "/Date(868492800000)/",
"ShippedDate": "/Date(866505600000)/",
"ShipVia": 1,
"Freight": "33.9700",
"ShipName": "Hungry Owl All-Night Grocers",
"ShipAddress": "8 Johnstown Road",
"ShipCity": "Cork",
"ShipRegion": "Co. Cork",
"ShipPostalCode": null,
"ShipCountry": "Ireland"
},
{
"OrderID": 10568,
"CustomerID": "GALED",
"EmployeeID": 3,
"OrderDate": "/Date(866160000000)/",
"RequiredDate": "/Date(868579200000)/",
"ShippedDate": "/Date(868406400000)/",
"ShipVia": 3,
"Freight": "6.5400",
"ShipName": "Galería del gastronómo",
"ShipAddress": "Rambla de Cataluña, 23",
"ShipCity": "Barcelona",
"ShipRegion": null,
"ShipPostalCode": "8022",
"ShipCountry": "Spain"
},
{
"OrderID": 10569,
"CustomerID": "RATTC",
"EmployeeID": 5,
"OrderDate": "/Date(866419200000)/",
"RequiredDate": "/Date(868838400000)/",
"ShippedDate": "/Date(868579200000)/",
"ShipVia": 1,
"Freight": "58.9800",
"ShipName": "Rattlesnake Canyon Grocery",
"ShipAddress": "2817 Milton Dr.",
"ShipCity": "Albuquerque",
"ShipRegion": "NM",
"ShipPostalCode": "87110",
"ShipCountry": "USA"
},
{
"OrderID": 10570,
"CustomerID": "MEREP",
"EmployeeID": 3,
"OrderDate": "/Date(866505600000)/",
"RequiredDate": "/Date(868924800000)/",
"ShippedDate": "/Date(866678400000)/",
"ShipVia": 3,
"Freight": "188.9900",
"ShipName": "Mère Paillarde",
"ShipAddress": "43 rue St. Laurent",
"ShipCity": "Montréal",
"ShipRegion": "Québec",
"ShipPostalCode": "H1J 1C3",
"ShipCountry": "Canada"
},
{
"OrderID": 10571,
"CustomerID": "ERNSH",
"EmployeeID": 8,
"OrderDate": "/Date(866505600000)/",
"RequiredDate": "/Date(870134400000)/",
"ShippedDate": "/Date(867974400000)/",
"ShipVia": 3,
"Freight": "26.0600",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10572,
"CustomerID": "BERGS",
"EmployeeID": 3,
"OrderDate": "/Date(866592000000)/",
"RequiredDate": "/Date(869011200000)/",
"ShippedDate": "/Date(867196800000)/",
"ShipVia": 2,
"Freight": "116.4300",
"ShipName": "Berglunds snabbköp",
"ShipAddress": "Berguvsvägen 8",
"ShipCity": "Luleå",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden"
},
{
"OrderID": 10573,
"CustomerID": "ANTON",
"EmployeeID": 7,
"OrderDate": "/Date(866678400000)/",
"RequiredDate": "/Date(869097600000)/",
"ShippedDate": "/Date(866764800000)/",
"ShipVia": 3,
"Freight": "84.8400",
"ShipName": "Antonio Moreno Taquería",
"ShipAddress": "Mataderos 2312",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico"
},
{
"OrderID": 10574,
"CustomerID": "TRAIH",
"EmployeeID": 4,
"OrderDate": "/Date(866678400000)/",
"RequiredDate": "/Date(869097600000)/",
"ShippedDate": "/Date(867628800000)/",
"ShipVia": 2,
"Freight": "37.6000",
"ShipName": "Trail's Head Gourmet Provisioners",
"ShipAddress": "722 DaVinci Blvd.",
"ShipCity": "Kirkland",
"ShipRegion": "WA",
"ShipPostalCode": "98034",
"ShipCountry": "USA"
},
{
"OrderID": 10575,
"CustomerID": "MORGK",
"EmployeeID": 5,
"OrderDate": "/Date(866764800000)/",
"RequiredDate": "/Date(867974400000)/",
"ShippedDate": "/Date(867628800000)/",
"ShipVia": 1,
"Freight": "127.3400",
"ShipName": "Morgenstern Gesundkost",
"ShipAddress": "Heerstr. 22",
"ShipCity": "Leipzig",
"ShipRegion": null,
"ShipPostalCode": "04179",
"ShipCountry": "Germany"
},
{
"OrderID": 10576,
"CustomerID": "TORTU",
"EmployeeID": 3,
"OrderDate": "/Date(867024000000)/",
"RequiredDate": "/Date(868233600000)/",
"ShippedDate": "/Date(867628800000)/",
"ShipVia": 3,
"Freight": "18.5600",
"ShipName": "Tortuga Restaurante",
"ShipAddress": "Avda. Azteca 123",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05033",
"ShipCountry": "Mexico"
},
{
"OrderID": 10577,
"CustomerID": "TRAIH",
"EmployeeID": 9,
"OrderDate": "/Date(867024000000)/",
"RequiredDate": "/Date(870652800000)/",
"ShippedDate": "/Date(867628800000)/",
"ShipVia": 2,
"Freight": "25.4100",
"ShipName": "Trail's Head Gourmet Provisioners",
"ShipAddress": "722 DaVinci Blvd.",
"ShipCity": "Kirkland",
"ShipRegion": "WA",
"ShipPostalCode": "98034",
"ShipCountry": "USA"
},
{
"OrderID": 10578,
"CustomerID": "BSBEV",
"EmployeeID": 4,
"OrderDate": "/Date(867110400000)/",
"RequiredDate": "/Date(869529600000)/",
"ShippedDate": "/Date(869788800000)/",
"ShipVia": 3,
"Freight": "29.6000",
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK"
},
{
"OrderID": 10579,
"CustomerID": "LETSS",
"EmployeeID": 1,
"OrderDate": "/Date(867196800000)/",
"RequiredDate": "/Date(869616000000)/",
"ShippedDate": "/Date(867974400000)/",
"ShipVia": 2,
"Freight": "13.7300",
"ShipName": "Let's Stop N Shop",
"ShipAddress": "87 Polk St. Suite 5",
"ShipCity": "San Francisco",
"ShipRegion": "CA",
"ShipPostalCode": "94117",
"ShipCountry": "USA"
},
{
"OrderID": 10580,
"CustomerID": "OTTIK",
"EmployeeID": 4,
"OrderDate": "/Date(867283200000)/",
"RequiredDate": "/Date(869702400000)/",
"ShippedDate": "/Date(867715200000)/",
"ShipVia": 3,
"Freight": "75.8900",
"ShipName": "Ottilies Käseladen",
"ShipAddress": "Mehrheimerstr. 369",
"ShipCity": "Köln",
"ShipRegion": null,
"ShipPostalCode": "50739",
"ShipCountry": "Germany"
},
{
"OrderID": 10581,
"CustomerID": "FAMIA",
"EmployeeID": 3,
"OrderDate": "/Date(867283200000)/",
"RequiredDate": "/Date(869702400000)/",
"ShippedDate": "/Date(867801600000)/",
"ShipVia": 1,
"Freight": "3.0100",
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Orós, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil"
},
{
"OrderID": 10582,
"CustomerID": "BLAUS",
"EmployeeID": 3,
"OrderDate": "/Date(867369600000)/",
"RequiredDate": "/Date(869788800000)/",
"ShippedDate": "/Date(868838400000)/",
"ShipVia": 2,
"Freight": "27.7100",
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany"
},
{
"OrderID": 10583,
"CustomerID": "WARTH",
"EmployeeID": 2,
"OrderDate": "/Date(867628800000)/",
"RequiredDate": "/Date(870048000000)/",
"ShippedDate": "/Date(867974400000)/",
"ShipVia": 2,
"Freight": "7.2800",
"ShipName": "Wartian Herkku",
"ShipAddress": "Torikatu 38",
"ShipCity": "Oulu",
"ShipRegion": null,
"ShipPostalCode": "90110",
"ShipCountry": "Finland"
},
{
"OrderID": 10584,
"CustomerID": "BLONP",
"EmployeeID": 4,
"OrderDate": "/Date(867628800000)/",
"RequiredDate": "/Date(870048000000)/",
"ShippedDate": "/Date(867974400000)/",
"ShipVia": 1,
"Freight": "59.1400",
"ShipName": "Blondel père et fils",
"ShipAddress": "24, place Kléber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France"
},
{
"OrderID": 10585,
"CustomerID": "WELLI",
"EmployeeID": 7,
"OrderDate": "/Date(867715200000)/",
"RequiredDate": "/Date(870134400000)/",
"ShippedDate": "/Date(868492800000)/",
"ShipVia": 1,
"Freight": "13.4100",
"ShipName": "Wellington Importadora",
"ShipAddress": "Rua do Mercado, 12",
"ShipCity": "Resende",
"ShipRegion": "SP",
"ShipPostalCode": "08737-363",
"ShipCountry": "Brazil"
},
{
"OrderID": 10586,
"CustomerID": "REGGC",
"EmployeeID": 9,
"OrderDate": "/Date(867801600000)/",
"RequiredDate": "/Date(870220800000)/",
"ShippedDate": "/Date(868406400000)/",
"ShipVia": 1,
"Freight": "0.4800",
"ShipName": "Reggiani Caseifici",
"ShipAddress": "Strada Provinciale 124",
"ShipCity": "Reggio Emilia",
"ShipRegion": null,
"ShipPostalCode": "42100",
"ShipCountry": "Italy"
},
{
"OrderID": 10587,
"CustomerID": "QUEDE",
"EmployeeID": 1,
"OrderDate": "/Date(867801600000)/",
"RequiredDate": "/Date(870220800000)/",
"ShippedDate": "/Date(868406400000)/",
"ShipVia": 1,
"Freight": "62.5200",
"ShipName": "Que Delícia",
"ShipAddress": "Rua da Panificadora, 12",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "02389-673",
"ShipCountry": "Brazil"
},
{
"OrderID": 10588,
"CustomerID": "QUICK",
"EmployeeID": 2,
"OrderDate": "/Date(867888000000)/",
"RequiredDate": "/Date(870307200000)/",
"ShippedDate": "/Date(868492800000)/",
"ShipVia": 3,
"Freight": "194.6700",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10589,
"CustomerID": "GREAL",
"EmployeeID": 8,
"OrderDate": "/Date(867974400000)/",
"RequiredDate": "/Date(870393600000)/",
"ShippedDate": "/Date(868838400000)/",
"ShipVia": 2,
"Freight": "4.4200",
"ShipName": "Great Lakes Food Market",
"ShipAddress": "2732 Baker Blvd.",
"ShipCity": "Eugene",
"ShipRegion": "OR",
"ShipPostalCode": "97403",
"ShipCountry": "USA"
},
{
"OrderID": 10590,
"CustomerID": "MEREP",
"EmployeeID": 4,
"OrderDate": "/Date(868233600000)/",
"RequiredDate": "/Date(870652800000)/",
"ShippedDate": "/Date(868838400000)/",
"ShipVia": 3,
"Freight": "44.7700",
"ShipName": "Mère Paillarde",
"ShipAddress": "43 rue St. Laurent",
"ShipCity": "Montréal",
"ShipRegion": "Québec",
"ShipPostalCode": "H1J 1C3",
"ShipCountry": "Canada"
},
{
"OrderID": 10591,
"CustomerID": "VAFFE",
"EmployeeID": 1,
"OrderDate": "/Date(868233600000)/",
"RequiredDate": "/Date(869443200000)/",
"ShippedDate": "/Date(869011200000)/",
"ShipVia": 1,
"Freight": "55.9200",
"ShipName": "Vaffeljernet",
"ShipAddress": "Smagsloget 45",
"ShipCity": "Århus",
"ShipRegion": null,
"ShipPostalCode": "8200",
"ShipCountry": "Denmark"
},
{
"OrderID": 10592,
"CustomerID": "LEHMS",
"EmployeeID": 3,
"OrderDate": "/Date(868320000000)/",
"RequiredDate": "/Date(870739200000)/",
"ShippedDate": "/Date(869011200000)/",
"ShipVia": 1,
"Freight": "32.1000",
"ShipName": "Lehmanns Marktstand",
"ShipAddress": "Magazinweg 7",
"ShipCity": "Frankfurt a.M.",
"ShipRegion": null,
"ShipPostalCode": "60528",
"ShipCountry": "Germany"
},
{
"OrderID": 10593,
"CustomerID": "LEHMS",
"EmployeeID": 7,
"OrderDate": "/Date(868406400000)/",
"RequiredDate": "/Date(870825600000)/",
"ShippedDate": "/Date(871430400000)/",
"ShipVia": 2,
"Freight": "174.2000",
"ShipName": "Lehmanns Marktstand",
"ShipAddress": "Magazinweg 7",
"ShipCity": "Frankfurt a.M.",
"ShipRegion": null,
"ShipPostalCode": "60528",
"ShipCountry": "Germany"
},
{
"OrderID": 10594,
"CustomerID": "OLDWO",
"EmployeeID": 3,
"OrderDate": "/Date(868406400000)/",
"RequiredDate": "/Date(870825600000)/",
"ShippedDate": "/Date(869011200000)/",
"ShipVia": 2,
"Freight": "5.2400",
"ShipName": "Old World Delicatessen",
"ShipAddress": "2743 Bering St.",
"ShipCity": "Anchorage",
"ShipRegion": "AK",
"ShipPostalCode": "99508",
"ShipCountry": "USA"
},
{
"OrderID": 10595,
"CustomerID": "ERNSH",
"EmployeeID": 2,
"OrderDate": "/Date(868492800000)/",
"RequiredDate": "/Date(870912000000)/",
"ShippedDate": "/Date(868838400000)/",
"ShipVia": 1,
"Freight": "96.7800",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10596,
"CustomerID": "WHITC",
"EmployeeID": 8,
"OrderDate": "/Date(868579200000)/",
"RequiredDate": "/Date(870998400000)/",
"ShippedDate": "/Date(871344000000)/",
"ShipVia": 1,
"Freight": "16.3400",
"ShipName": "White Clover Markets",
"ShipAddress": "1029 - 12th Ave. S.",
"ShipCity": "Seattle",
"ShipRegion": "WA",
"ShipPostalCode": "98124",
"ShipCountry": "USA"
},
{
"OrderID": 10597,
"CustomerID": "PICCO",
"EmployeeID": 7,
"OrderDate": "/Date(868579200000)/",
"RequiredDate": "/Date(870998400000)/",
"ShippedDate": "/Date(869184000000)/",
"ShipVia": 3,
"Freight": "35.1200",
"ShipName": "Piccolo und mehr",
"ShipAddress": "Geislweg 14",
"ShipCity": "Salzburg",
"ShipRegion": null,
"ShipPostalCode": "5020",
"ShipCountry": "Austria"
},
{
"OrderID": 10598,
"CustomerID": "RATTC",
"EmployeeID": 1,
"OrderDate": "/Date(868838400000)/",
"RequiredDate": "/Date(871257600000)/",
"ShippedDate": "/Date(869184000000)/",
"ShipVia": 3,
"Freight": "44.4200",
"ShipName": "Rattlesnake Canyon Grocery",
"ShipAddress": "2817 Milton Dr.",
"ShipCity": "Albuquerque",
"ShipRegion": "NM",
"ShipPostalCode": "87110",
"ShipCountry": "USA"
},
{
"OrderID": 10599,
"CustomerID": "BSBEV",
"EmployeeID": 6,
"OrderDate": "/Date(868924800000)/",
"RequiredDate": "/Date(872553600000)/",
"ShippedDate": "/Date(869443200000)/",
"ShipVia": 3,
"Freight": "29.9800",
"ShipName": "B's Beverages",
"ShipAddress": "Fauntleroy Circus",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "EC2 5NT",
"ShipCountry": "UK"
},
{
"OrderID": 10600,
"CustomerID": "HUNGC",
"EmployeeID": 4,
"OrderDate": "/Date(869011200000)/",
"RequiredDate": "/Date(871430400000)/",
"ShippedDate": "/Date(869443200000)/",
"ShipVia": 1,
"Freight": "45.1300",
"ShipName": "Hungry Coyote Import Store",
"ShipAddress": "City Center Plaza 516 Main St.",
"ShipCity": "Elgin",
"ShipRegion": "OR",
"ShipPostalCode": "97827",
"ShipCountry": "USA"
},
{
"OrderID": 10601,
"CustomerID": "HILAA",
"EmployeeID": 7,
"OrderDate": "/Date(869011200000)/",
"RequiredDate": "/Date(872640000000)/",
"ShippedDate": "/Date(869529600000)/",
"ShipVia": 1,
"Freight": "58.3000",
"ShipName": "HILARION-Abastos",
"ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35",
"ShipCity": "San Cristóbal",
"ShipRegion": "Táchira",
"ShipPostalCode": "5022",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10602,
"CustomerID": "VAFFE",
"EmployeeID": 8,
"OrderDate": "/Date(869097600000)/",
"RequiredDate": "/Date(871516800000)/",
"ShippedDate": "/Date(869529600000)/",
"ShipVia": 2,
"Freight": "2.9200",
"ShipName": "Vaffeljernet",
"ShipAddress": "Smagsloget 45",
"ShipCity": "Århus",
"ShipRegion": null,
"ShipPostalCode": "8200",
"ShipCountry": "Denmark"
},
{
"OrderID": 10603,
"CustomerID": "SAVEA",
"EmployeeID": 8,
"OrderDate": "/Date(869184000000)/",
"RequiredDate": "/Date(871603200000)/",
"ShippedDate": "/Date(870998400000)/",
"ShipVia": 2,
"Freight": "48.7700",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10604,
"CustomerID": "FURIB",
"EmployeeID": 1,
"OrderDate": "/Date(869184000000)/",
"RequiredDate": "/Date(871603200000)/",
"ShippedDate": "/Date(870134400000)/",
"ShipVia": 1,
"Freight": "7.4600",
"ShipName": "Furia Bacalhau e Frutos do Mar",
"ShipAddress": "Jardim das rosas n. 32",
"ShipCity": "Lisboa",
"ShipRegion": null,
"ShipPostalCode": "1675",
"ShipCountry": "Portugal"
},
{
"OrderID": 10605,
"CustomerID": "MEREP",
"EmployeeID": 1,
"OrderDate": "/Date(869443200000)/",
"RequiredDate": "/Date(871862400000)/",
"ShippedDate": "/Date(870134400000)/",
"ShipVia": 2,
"Freight": "379.1300",
"ShipName": "Mère Paillarde",
"ShipAddress": "43 rue St. Laurent",
"ShipCity": "Montréal",
"ShipRegion": "Québec",
"ShipPostalCode": "H1J 1C3",
"ShipCountry": "Canada"
},
{
"OrderID": 10606,
"CustomerID": "TRADH",
"EmployeeID": 4,
"OrderDate": "/Date(869529600000)/",
"RequiredDate": "/Date(871948800000)/",
"ShippedDate": "/Date(870307200000)/",
"ShipVia": 3,
"Freight": "79.4000",
"ShipName": "Tradiçao Hipermercados",
"ShipAddress": "Av. Inês de Castro, 414",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05634-030",
"ShipCountry": "Brazil"
},
{
"OrderID": 10607,
"CustomerID": "SAVEA",
"EmployeeID": 5,
"OrderDate": "/Date(869529600000)/",
"RequiredDate": "/Date(871948800000)/",
"ShippedDate": "/Date(869788800000)/",
"ShipVia": 1,
"Freight": "200.2400",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10608,
"CustomerID": "TOMSP",
"EmployeeID": 4,
"OrderDate": "/Date(869616000000)/",
"RequiredDate": "/Date(872035200000)/",
"ShippedDate": "/Date(870393600000)/",
"ShipVia": 2,
"Freight": "27.7900",
"ShipName": "Toms Spezialitäten",
"ShipAddress": "Luisenstr. 48",
"ShipCity": "Münster",
"ShipRegion": null,
"ShipPostalCode": "44087",
"ShipCountry": "Germany"
},
{
"OrderID": 10609,
"CustomerID": "DUMON",
"EmployeeID": 7,
"OrderDate": "/Date(869702400000)/",
"RequiredDate": "/Date(872121600000)/",
"ShippedDate": "/Date(870220800000)/",
"ShipVia": 2,
"Freight": "1.8500",
"ShipName": "Du monde entier",
"ShipAddress": "67, rue des Cinquante Otages",
"ShipCity": "Nantes",
"ShipRegion": null,
"ShipPostalCode": "44000",
"ShipCountry": "France"
},
{
"OrderID": 10610,
"CustomerID": "LAMAI",
"EmployeeID": 8,
"OrderDate": "/Date(869788800000)/",
"RequiredDate": "/Date(872208000000)/",
"ShippedDate": "/Date(870825600000)/",
"ShipVia": 1,
"Freight": "26.7800",
"ShipName": "La maison d'Asie",
"ShipAddress": "1 rue Alsace-Lorraine",
"ShipCity": "Toulouse",
"ShipRegion": null,
"ShipPostalCode": "31000",
"ShipCountry": "France"
},
{
"OrderID": 10611,
"CustomerID": "WOLZA",
"EmployeeID": 6,
"OrderDate": "/Date(869788800000)/",
"RequiredDate": "/Date(872208000000)/",
"ShippedDate": "/Date(870393600000)/",
"ShipVia": 2,
"Freight": "80.6500",
"ShipName": "Wolski Zajazd",
"ShipAddress": "ul. Filtrowa 68",
"ShipCity": "Warszawa",
"ShipRegion": null,
"ShipPostalCode": "01-012",
"ShipCountry": "Poland"
},
{
"OrderID": 10612,
"CustomerID": "SAVEA",
"EmployeeID": 1,
"OrderDate": "/Date(870048000000)/",
"RequiredDate": "/Date(872467200000)/",
"ShippedDate": "/Date(870393600000)/",
"ShipVia": 2,
"Freight": "544.0800",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10613,
"CustomerID": "HILAA",
"EmployeeID": 4,
"OrderDate": "/Date(870134400000)/",
"RequiredDate": "/Date(872553600000)/",
"ShippedDate": "/Date(870393600000)/",
"ShipVia": 2,
"Freight": "8.1100",
"ShipName": "HILARION-Abastos",
"ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35",
"ShipCity": "San Cristóbal",
"ShipRegion": "Táchira",
"ShipPostalCode": "5022",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10614,
"CustomerID": "BLAUS",
"EmployeeID": 8,
"OrderDate": "/Date(870134400000)/",
"RequiredDate": "/Date(872553600000)/",
"ShippedDate": "/Date(870393600000)/",
"ShipVia": 3,
"Freight": "1.9300",
"ShipName": "Blauer See Delikatessen",
"ShipAddress": "Forsterstr. 57",
"ShipCity": "Mannheim",
"ShipRegion": null,
"ShipPostalCode": "68306",
"ShipCountry": "Germany"
},
{
"OrderID": 10615,
"CustomerID": "WILMK",
"EmployeeID": 2,
"OrderDate": "/Date(870220800000)/",
"RequiredDate": "/Date(872640000000)/",
"ShippedDate": "/Date(870825600000)/",
"ShipVia": 3,
"Freight": "0.7500",
"ShipName": "Wilman Kala",
"ShipAddress": "Keskuskatu 45",
"ShipCity": "Helsinki",
"ShipRegion": null,
"ShipPostalCode": "21240",
"ShipCountry": "Finland"
},
{
"OrderID": 10616,
"CustomerID": "GREAL",
"EmployeeID": 1,
"OrderDate": "/Date(870307200000)/",
"RequiredDate": "/Date(872726400000)/",
"ShippedDate": "/Date(870739200000)/",
"ShipVia": 2,
"Freight": "116.5300",
"ShipName": "Great Lakes Food Market",
"ShipAddress": "2732 Baker Blvd.",
"ShipCity": "Eugene",
"ShipRegion": "OR",
"ShipPostalCode": "97403",
"ShipCountry": "USA"
},
{
"OrderID": 10617,
"CustomerID": "GREAL",
"EmployeeID": 4,
"OrderDate": "/Date(870307200000)/",
"RequiredDate": "/Date(872726400000)/",
"ShippedDate": "/Date(870652800000)/",
"ShipVia": 2,
"Freight": "18.5300",
"ShipName": "Great Lakes Food Market",
"ShipAddress": "2732 Baker Blvd.",
"ShipCity": "Eugene",
"ShipRegion": "OR",
"ShipPostalCode": "97403",
"ShipCountry": "USA"
},
{
"OrderID": 10618,
"CustomerID": "MEREP",
"EmployeeID": 1,
"OrderDate": "/Date(870393600000)/",
"RequiredDate": "/Date(874022400000)/",
"ShippedDate": "/Date(870998400000)/",
"ShipVia": 1,
"Freight": "154.6800",
"ShipName": "Mère Paillarde",
"ShipAddress": "43 rue St. Laurent",
"ShipCity": "Montréal",
"ShipRegion": "Québec",
"ShipPostalCode": "H1J 1C3",
"ShipCountry": "Canada"
},
{
"OrderID": 10619,
"CustomerID": "MEREP",
"EmployeeID": 3,
"OrderDate": "/Date(870652800000)/",
"RequiredDate": "/Date(873072000000)/",
"ShippedDate": "/Date(870912000000)/",
"ShipVia": 3,
"Freight": "91.0500",
"ShipName": "Mère Paillarde",
"ShipAddress": "43 rue St. Laurent",
"ShipCity": "Montréal",
"ShipRegion": "Québec",
"ShipPostalCode": "H1J 1C3",
"ShipCountry": "Canada"
},
{
"OrderID": 10620,
"CustomerID": "LAUGB",
"EmployeeID": 2,
"OrderDate": "/Date(870739200000)/",
"RequiredDate": "/Date(873158400000)/",
"ShippedDate": "/Date(871516800000)/",
"ShipVia": 3,
"Freight": "0.9400",
"ShipName": "Laughing Bacchus Wine Cellars",
"ShipAddress": "2319 Elm St.",
"ShipCity": "Vancouver",
"ShipRegion": "BC",
"ShipPostalCode": "V3F 2K1",
"ShipCountry": "Canada"
},
{
"OrderID": 10621,
"CustomerID": "ISLAT",
"EmployeeID": 4,
"OrderDate": "/Date(870739200000)/",
"RequiredDate": "/Date(873158400000)/",
"ShippedDate": "/Date(871257600000)/",
"ShipVia": 2,
"Freight": "23.7300",
"ShipName": "Island Trading",
"ShipAddress": "Garden House Crowther Way",
"ShipCity": "Cowes",
"ShipRegion": "Isle of Wight",
"ShipPostalCode": "PO31 7PJ",
"ShipCountry": "UK"
},
{
"OrderID": 10622,
"CustomerID": "RICAR",
"EmployeeID": 4,
"OrderDate": "/Date(870825600000)/",
"RequiredDate": "/Date(873244800000)/",
"ShippedDate": "/Date(871257600000)/",
"ShipVia": 3,
"Freight": "50.9700",
"ShipName": "Ricardo Adocicados",
"ShipAddress": "Av. Copacabana, 267",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "02389-890",
"ShipCountry": "Brazil"
},
{
"OrderID": 10623,
"CustomerID": "FRANK",
"EmployeeID": 8,
"OrderDate": "/Date(870912000000)/",
"RequiredDate": "/Date(873331200000)/",
"ShippedDate": "/Date(871344000000)/",
"ShipVia": 2,
"Freight": "97.1800",
"ShipName": "Frankenversand",
"ShipAddress": "Berliner Platz 43",
"ShipCity": "München",
"ShipRegion": null,
"ShipPostalCode": "80805",
"ShipCountry": "Germany"
},
{
"OrderID": 10624,
"CustomerID": "THECR",
"EmployeeID": 4,
"OrderDate": "/Date(870912000000)/",
"RequiredDate": "/Date(873331200000)/",
"ShippedDate": "/Date(871948800000)/",
"ShipVia": 2,
"Freight": "94.8000",
"ShipName": "The Cracker Box",
"ShipAddress": "55 Grizzly Peak Rd.",
"ShipCity": "Butte",
"ShipRegion": "MT",
"ShipPostalCode": "59801",
"ShipCountry": "USA"
},
{
"OrderID": 10625,
"CustomerID": "ANATR",
"EmployeeID": 3,
"OrderDate": "/Date(870998400000)/",
"RequiredDate": "/Date(873417600000)/",
"ShippedDate": "/Date(871516800000)/",
"ShipVia": 1,
"Freight": "43.9000",
"ShipName": "Ana Trujillo Emparedados y helados",
"ShipAddress": "Avda. de la Constitución 2222",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05021",
"ShipCountry": "Mexico"
},
{
"OrderID": 10626,
"CustomerID": "BERGS",
"EmployeeID": 1,
"OrderDate": "/Date(871257600000)/",
"RequiredDate": "/Date(873676800000)/",
"ShippedDate": "/Date(872035200000)/",
"ShipVia": 2,
"Freight": "138.6900",
"ShipName": "Berglunds snabbköp",
"ShipAddress": "Berguvsvägen 8",
"ShipCity": "Luleå",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden"
},
{
"OrderID": 10627,
"CustomerID": "SAVEA",
"EmployeeID": 8,
"OrderDate": "/Date(871257600000)/",
"RequiredDate": "/Date(874886400000)/",
"ShippedDate": "/Date(872121600000)/",
"ShipVia": 3,
"Freight": "107.4600",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10628,
"CustomerID": "BLONP",
"EmployeeID": 4,
"OrderDate": "/Date(871344000000)/",
"RequiredDate": "/Date(873763200000)/",
"ShippedDate": "/Date(872035200000)/",
"ShipVia": 3,
"Freight": "30.3600",
"ShipName": "Blondel père et fils",
"ShipAddress": "24, place Kléber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France"
},
{
"OrderID": 10629,
"CustomerID": "GODOS",
"EmployeeID": 4,
"OrderDate": "/Date(871344000000)/",
"RequiredDate": "/Date(873763200000)/",
"ShippedDate": "/Date(872035200000)/",
"ShipVia": 3,
"Freight": "85.4600",
"ShipName": "Godos Cocina Típica",
"ShipAddress": "C/ Romero, 33",
"ShipCity": "Sevilla",
"ShipRegion": null,
"ShipPostalCode": "41101",
"ShipCountry": "Spain"
},
{
"OrderID": 10630,
"CustomerID": "KOENE",
"EmployeeID": 1,
"OrderDate": "/Date(871430400000)/",
"RequiredDate": "/Date(873849600000)/",
"ShippedDate": "/Date(871948800000)/",
"ShipVia": 2,
"Freight": "32.3500",
"ShipName": "Königlich Essen",
"ShipAddress": "Maubelstr. 90",
"ShipCity": "Brandenburg",
"ShipRegion": null,
"ShipPostalCode": "14776",
"ShipCountry": "Germany"
},
{
"OrderID": 10631,
"CustomerID": "LAMAI",
"EmployeeID": 8,
"OrderDate": "/Date(871516800000)/",
"RequiredDate": "/Date(873936000000)/",
"ShippedDate": "/Date(871603200000)/",
"ShipVia": 1,
"Freight": "0.8700",
"ShipName": "La maison d'Asie",
"ShipAddress": "1 rue Alsace-Lorraine",
"ShipCity": "Toulouse",
"ShipRegion": null,
"ShipPostalCode": "31000",
"ShipCountry": "France"
},
{
"OrderID": 10632,
"CustomerID": "WANDK",
"EmployeeID": 8,
"OrderDate": "/Date(871516800000)/",
"RequiredDate": "/Date(873936000000)/",
"ShippedDate": "/Date(871948800000)/",
"ShipVia": 1,
"Freight": "41.3800",
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany"
},
{
"OrderID": 10633,
"CustomerID": "ERNSH",
"EmployeeID": 7,
"OrderDate": "/Date(871603200000)/",
"RequiredDate": "/Date(874022400000)/",
"ShippedDate": "/Date(871862400000)/",
"ShipVia": 3,
"Freight": "477.9000",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10634,
"CustomerID": "FOLIG",
"EmployeeID": 4,
"OrderDate": "/Date(871603200000)/",
"RequiredDate": "/Date(874022400000)/",
"ShippedDate": "/Date(872121600000)/",
"ShipVia": 3,
"Freight": "487.3800",
"ShipName": "Folies gourmandes",
"ShipAddress": "184, chaussée de Tournai",
"ShipCity": "Lille",
"ShipRegion": null,
"ShipPostalCode": "59000",
"ShipCountry": "France"
},
{
"OrderID": 10635,
"CustomerID": "MAGAA",
"EmployeeID": 8,
"OrderDate": "/Date(871862400000)/",
"RequiredDate": "/Date(874281600000)/",
"ShippedDate": "/Date(872121600000)/",
"ShipVia": 3,
"Freight": "47.4600",
"ShipName": "Magazzini Alimentari Riuniti",
"ShipAddress": "Via Ludovico il Moro 22",
"ShipCity": "Bergamo",
"ShipRegion": null,
"ShipPostalCode": "24100",
"ShipCountry": "Italy"
},
{
"OrderID": 10636,
"CustomerID": "WARTH",
"EmployeeID": 4,
"OrderDate": "/Date(871948800000)/",
"RequiredDate": "/Date(874368000000)/",
"ShippedDate": "/Date(872553600000)/",
"ShipVia": 1,
"Freight": "1.1500",
"ShipName": "Wartian Herkku",
"ShipAddress": "Torikatu 38",
"ShipCity": "Oulu",
"ShipRegion": null,
"ShipPostalCode": "90110",
"ShipCountry": "Finland"
},
{
"OrderID": 10637,
"CustomerID": "QUEEN",
"EmployeeID": 6,
"OrderDate": "/Date(871948800000)/",
"RequiredDate": "/Date(874368000000)/",
"ShippedDate": "/Date(872553600000)/",
"ShipVia": 1,
"Freight": "201.2900",
"ShipName": "Queen Cozinha",
"ShipAddress": "Alameda dos Canàrios, 891",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05487-020",
"ShipCountry": "Brazil"
},
{
"OrderID": 10638,
"CustomerID": "LINOD",
"EmployeeID": 3,
"OrderDate": "/Date(872035200000)/",
"RequiredDate": "/Date(874454400000)/",
"ShippedDate": "/Date(873072000000)/",
"ShipVia": 1,
"Freight": "158.4400",
"ShipName": "LINO-Delicateses",
"ShipAddress": "Ave. 5 de Mayo Porlamar",
"ShipCity": "I. de Margarita",
"ShipRegion": "Nueva Esparta",
"ShipPostalCode": "4980",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10639,
"CustomerID": "SANTG",
"EmployeeID": 7,
"OrderDate": "/Date(872035200000)/",
"RequiredDate": "/Date(874454400000)/",
"ShippedDate": "/Date(872640000000)/",
"ShipVia": 3,
"Freight": "38.6400",
"ShipName": "Santé Gourmet",
"ShipAddress": "Erling Skakkes gate 78",
"ShipCity": "Stavern",
"ShipRegion": null,
"ShipPostalCode": "4110",
"ShipCountry": "Norway"
},
{
"OrderID": 10640,
"CustomerID": "WANDK",
"EmployeeID": 4,
"OrderDate": "/Date(872121600000)/",
"RequiredDate": "/Date(874540800000)/",
"ShippedDate": "/Date(872726400000)/",
"ShipVia": 1,
"Freight": "23.5500",
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany"
},
{
"OrderID": 10641,
"CustomerID": "HILAA",
"EmployeeID": 4,
"OrderDate": "/Date(872208000000)/",
"RequiredDate": "/Date(874627200000)/",
"ShippedDate": "/Date(872553600000)/",
"ShipVia": 2,
"Freight": "179.6100",
"ShipName": "HILARION-Abastos",
"ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35",
"ShipCity": "San Cristóbal",
"ShipRegion": "Táchira",
"ShipPostalCode": "5022",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10642,
"CustomerID": "SIMOB",
"EmployeeID": 7,
"OrderDate": "/Date(872208000000)/",
"RequiredDate": "/Date(874627200000)/",
"ShippedDate": "/Date(873417600000)/",
"ShipVia": 3,
"Freight": "41.8900",
"ShipName": "Simons bistro",
"ShipAddress": "Vinbæltet 34",
"ShipCity": "Kobenhavn",
"ShipRegion": null,
"ShipPostalCode": "1734",
"ShipCountry": "Denmark"
},
{
"OrderID": 10643,
"CustomerID": "ALFKI",
"EmployeeID": 6,
"OrderDate": "/Date(872467200000)/",
"RequiredDate": "/Date(874886400000)/",
"ShippedDate": "/Date(873158400000)/",
"ShipVia": 1,
"Freight": "29.4600",
"ShipName": "Alfreds Futterkiste",
"ShipAddress": "Obere Str. 57",
"ShipCity": "Berlin",
"ShipRegion": null,
"ShipPostalCode": "12209",
"ShipCountry": "Germany"
},
{
"OrderID": 10644,
"CustomerID": "WELLI",
"EmployeeID": 3,
"OrderDate": "/Date(872467200000)/",
"RequiredDate": "/Date(874886400000)/",
"ShippedDate": "/Date(873072000000)/",
"ShipVia": 2,
"Freight": "0.1400",
"ShipName": "Wellington Importadora",
"ShipAddress": "Rua do Mercado, 12",
"ShipCity": "Resende",
"ShipRegion": "SP",
"ShipPostalCode": "08737-363",
"ShipCountry": "Brazil"
},
{
"OrderID": 10645,
"CustomerID": "HANAR",
"EmployeeID": 4,
"OrderDate": "/Date(872553600000)/",
"RequiredDate": "/Date(874972800000)/",
"ShippedDate": "/Date(873158400000)/",
"ShipVia": 1,
"Freight": "12.4100",
"ShipName": "Hanari Carnes",
"ShipAddress": "Rua do Paço, 67",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "05454-876",
"ShipCountry": "Brazil"
},
{
"OrderID": 10646,
"CustomerID": "HUNGO",
"EmployeeID": 9,
"OrderDate": "/Date(872640000000)/",
"RequiredDate": "/Date(876268800000)/",
"ShippedDate": "/Date(873244800000)/",
"ShipVia": 3,
"Freight": "142.3300",
"ShipName": "Hungry Owl All-Night Grocers",
"ShipAddress": "8 Johnstown Road",
"ShipCity": "Cork",
"ShipRegion": "Co. Cork",
"ShipPostalCode": null,
"ShipCountry": "Ireland"
},
{
"OrderID": 10647,
"CustomerID": "QUEDE",
"EmployeeID": 4,
"OrderDate": "/Date(872640000000)/",
"RequiredDate": "/Date(873849600000)/",
"ShippedDate": "/Date(873244800000)/",
"ShipVia": 2,
"Freight": "45.5400",
"ShipName": "Que Delícia",
"ShipAddress": "Rua da Panificadora, 12",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "02389-673",
"ShipCountry": "Brazil"
},
{
"OrderID": 10648,
"CustomerID": "RICAR",
"EmployeeID": 5,
"OrderDate": "/Date(872726400000)/",
"RequiredDate": "/Date(876355200000)/",
"ShippedDate": "/Date(873763200000)/",
"ShipVia": 2,
"Freight": "14.2500",
"ShipName": "Ricardo Adocicados",
"ShipAddress": "Av. Copacabana, 267",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "02389-890",
"ShipCountry": "Brazil"
},
{
"OrderID": 10649,
"CustomerID": "MAISD",
"EmployeeID": 5,
"OrderDate": "/Date(872726400000)/",
"RequiredDate": "/Date(875145600000)/",
"ShippedDate": "/Date(872812800000)/",
"ShipVia": 3,
"Freight": "6.2000",
"ShipName": "Maison Dewey",
"ShipAddress": "Rue Joseph-Bens 532",
"ShipCity": "Bruxelles",
"ShipRegion": null,
"ShipPostalCode": "B-1180",
"ShipCountry": "Belgium"
},
{
"OrderID": 10650,
"CustomerID": "FAMIA",
"EmployeeID": 5,
"OrderDate": "/Date(872812800000)/",
"RequiredDate": "/Date(875232000000)/",
"ShippedDate": "/Date(873244800000)/",
"ShipVia": 3,
"Freight": "176.8100",
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Orós, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil"
},
{
"OrderID": 10651,
"CustomerID": "WANDK",
"EmployeeID": 8,
"OrderDate": "/Date(873072000000)/",
"RequiredDate": "/Date(875491200000)/",
"ShippedDate": "/Date(873936000000)/",
"ShipVia": 2,
"Freight": "20.6000",
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany"
},
{
"OrderID": 10652,
"CustomerID": "GOURL",
"EmployeeID": 4,
"OrderDate": "/Date(873072000000)/",
"RequiredDate": "/Date(875491200000)/",
"ShippedDate": "/Date(873676800000)/",
"ShipVia": 2,
"Freight": "7.1400",
"ShipName": "Gourmet Lanchonetes",
"ShipAddress": "Av. Brasil, 442",
"ShipCity": "Campinas",
"ShipRegion": "SP",
"ShipPostalCode": "04876-786",
"ShipCountry": "Brazil"
},
{
"OrderID": 10653,
"CustomerID": "FRANK",
"EmployeeID": 1,
"OrderDate": "/Date(873158400000)/",
"RequiredDate": "/Date(875577600000)/",
"ShippedDate": "/Date(874627200000)/",
"ShipVia": 1,
"Freight": "93.2500",
"ShipName": "Frankenversand",
"ShipAddress": "Berliner Platz 43",
"ShipCity": "München",
"ShipRegion": null,
"ShipPostalCode": "80805",
"ShipCountry": "Germany"
},
{
"OrderID": 10654,
"CustomerID": "BERGS",
"EmployeeID": 5,
"OrderDate": "/Date(873158400000)/",
"RequiredDate": "/Date(875577600000)/",
"ShippedDate": "/Date(873936000000)/",
"ShipVia": 1,
"Freight": "55.2600",
"ShipName": "Berglunds snabbköp",
"ShipAddress": "Berguvsvägen 8",
"ShipCity": "Luleå",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden"
},
{
"OrderID": 10655,
"CustomerID": "REGGC",
"EmployeeID": 1,
"OrderDate": "/Date(873244800000)/",
"RequiredDate": "/Date(875664000000)/",
"ShippedDate": "/Date(873936000000)/",
"ShipVia": 2,
"Freight": "4.4100",
"ShipName": "Reggiani Caseifici",
"ShipAddress": "Strada Provinciale 124",
"ShipCity": "Reggio Emilia",
"ShipRegion": null,
"ShipPostalCode": "42100",
"ShipCountry": "Italy"
},
{
"OrderID": 10656,
"CustomerID": "GREAL",
"EmployeeID": 6,
"OrderDate": "/Date(873331200000)/",
"RequiredDate": "/Date(875750400000)/",
"ShippedDate": "/Date(873849600000)/",
"ShipVia": 1,
"Freight": "57.1500",
"ShipName": "Great Lakes Food Market",
"ShipAddress": "2732 Baker Blvd.",
"ShipCity": "Eugene",
"ShipRegion": "OR",
"ShipPostalCode": "97403",
"ShipCountry": "USA"
},
{
"OrderID": 10657,
"CustomerID": "SAVEA",
"EmployeeID": 2,
"OrderDate": "/Date(873331200000)/",
"RequiredDate": "/Date(875750400000)/",
"ShippedDate": "/Date(874281600000)/",
"ShipVia": 2,
"Freight": "352.6900",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10658,
"CustomerID": "QUICK",
"EmployeeID": 4,
"OrderDate": "/Date(873417600000)/",
"RequiredDate": "/Date(875836800000)/",
"ShippedDate": "/Date(873676800000)/",
"ShipVia": 1,
"Freight": "364.1500",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10659,
"CustomerID": "QUEEN",
"EmployeeID": 7,
"OrderDate": "/Date(873417600000)/",
"RequiredDate": "/Date(875836800000)/",
"ShippedDate": "/Date(873849600000)/",
"ShipVia": 2,
"Freight": "105.8100",
"ShipName": "Queen Cozinha",
"ShipAddress": "Alameda dos Canàrios, 891",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05487-020",
"ShipCountry": "Brazil"
},
{
"OrderID": 10660,
"CustomerID": "HUNGC",
"EmployeeID": 8,
"OrderDate": "/Date(873676800000)/",
"RequiredDate": "/Date(876096000000)/",
"ShippedDate": "/Date(876873600000)/",
"ShipVia": 1,
"Freight": "111.2900",
"ShipName": "Hungry Coyote Import Store",
"ShipAddress": "City Center Plaza 516 Main St.",
"ShipCity": "Elgin",
"ShipRegion": "OR",
"ShipPostalCode": "97827",
"ShipCountry": "USA"
},
{
"OrderID": 10661,
"CustomerID": "HUNGO",
"EmployeeID": 7,
"OrderDate": "/Date(873763200000)/",
"RequiredDate": "/Date(876182400000)/",
"ShippedDate": "/Date(874281600000)/",
"ShipVia": 3,
"Freight": "17.5500",
"ShipName": "Hungry Owl All-Night Grocers",
"ShipAddress": "8 Johnstown Road",
"ShipCity": "Cork",
"ShipRegion": "Co. Cork",
"ShipPostalCode": null,
"ShipCountry": "Ireland"
},
{
"OrderID": 10662,
"CustomerID": "LONEP",
"EmployeeID": 3,
"OrderDate": "/Date(873763200000)/",
"RequiredDate": "/Date(876182400000)/",
"ShippedDate": "/Date(874540800000)/",
"ShipVia": 2,
"Freight": "1.2800",
"ShipName": "Lonesome Pine Restaurant",
"ShipAddress": "89 Chiaroscuro Rd.",
"ShipCity": "Portland",
"ShipRegion": "OR",
"ShipPostalCode": "97219",
"ShipCountry": "USA"
},
{
"OrderID": 10663,
"CustomerID": "BONAP",
"EmployeeID": 2,
"OrderDate": "/Date(873849600000)/",
"RequiredDate": "/Date(875059200000)/",
"ShippedDate": "/Date(875836800000)/",
"ShipVia": 2,
"Freight": "113.1500",
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France"
},
{
"OrderID": 10664,
"CustomerID": "FURIB",
"EmployeeID": 1,
"OrderDate": "/Date(873849600000)/",
"RequiredDate": "/Date(876268800000)/",
"ShippedDate": "/Date(874627200000)/",
"ShipVia": 3,
"Freight": "1.2700",
"ShipName": "Furia Bacalhau e Frutos do Mar",
"ShipAddress": "Jardim das rosas n. 32",
"ShipCity": "Lisboa",
"ShipRegion": null,
"ShipPostalCode": "1675",
"ShipCountry": "Portugal"
},
{
"OrderID": 10665,
"CustomerID": "LONEP",
"EmployeeID": 1,
"OrderDate": "/Date(873936000000)/",
"RequiredDate": "/Date(876355200000)/",
"ShippedDate": "/Date(874454400000)/",
"ShipVia": 2,
"Freight": "26.3100",
"ShipName": "Lonesome Pine Restaurant",
"ShipAddress": "89 Chiaroscuro Rd.",
"ShipCity": "Portland",
"ShipRegion": "OR",
"ShipPostalCode": "97219",
"ShipCountry": "USA"
},
{
"OrderID": 10666,
"CustomerID": "RICSU",
"EmployeeID": 7,
"OrderDate": "/Date(874022400000)/",
"RequiredDate": "/Date(876441600000)/",
"ShippedDate": "/Date(874886400000)/",
"ShipVia": 2,
"Freight": "232.4200",
"ShipName": "Richter Supermarkt",
"ShipAddress": "Starenweg 5",
"ShipCity": "Genève",
"ShipRegion": null,
"ShipPostalCode": "1204",
"ShipCountry": "Switzerland"
},
{
"OrderID": 10667,
"CustomerID": "ERNSH",
"EmployeeID": 7,
"OrderDate": "/Date(874022400000)/",
"RequiredDate": "/Date(876441600000)/",
"ShippedDate": "/Date(874627200000)/",
"ShipVia": 1,
"Freight": "78.0900",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10668,
"CustomerID": "WANDK",
"EmployeeID": 1,
"OrderDate": "/Date(874281600000)/",
"RequiredDate": "/Date(876700800000)/",
"ShippedDate": "/Date(874972800000)/",
"ShipVia": 2,
"Freight": "47.2200",
"ShipName": "Die Wandernde Kuh",
"ShipAddress": "Adenauerallee 900",
"ShipCity": "Stuttgart",
"ShipRegion": null,
"ShipPostalCode": "70563",
"ShipCountry": "Germany"
},
{
"OrderID": 10669,
"CustomerID": "SIMOB",
"EmployeeID": 2,
"OrderDate": "/Date(874281600000)/",
"RequiredDate": "/Date(876700800000)/",
"ShippedDate": "/Date(874886400000)/",
"ShipVia": 1,
"Freight": "24.3900",
"ShipName": "Simons bistro",
"ShipAddress": "Vinbæltet 34",
"ShipCity": "Kobenhavn",
"ShipRegion": null,
"ShipPostalCode": "1734",
"ShipCountry": "Denmark"
},
{
"OrderID": 10670,
"CustomerID": "FRANK",
"EmployeeID": 4,
"OrderDate": "/Date(874368000000)/",
"RequiredDate": "/Date(876787200000)/",
"ShippedDate": "/Date(874540800000)/",
"ShipVia": 1,
"Freight": "203.4800",
"ShipName": "Frankenversand",
"ShipAddress": "Berliner Platz 43",
"ShipCity": "München",
"ShipRegion": null,
"ShipPostalCode": "80805",
"ShipCountry": "Germany"
},
{
"OrderID": 10671,
"CustomerID": "FRANR",
"EmployeeID": 1,
"OrderDate": "/Date(874454400000)/",
"RequiredDate": "/Date(876873600000)/",
"ShippedDate": "/Date(875059200000)/",
"ShipVia": 1,
"Freight": "30.3400",
"ShipName": "France restauration",
"ShipAddress": "54, rue Royale",
"ShipCity": "Nantes",
"ShipRegion": null,
"ShipPostalCode": "44000",
"ShipCountry": "France"
},
{
"OrderID": 10672,
"CustomerID": "BERGS",
"EmployeeID": 9,
"OrderDate": "/Date(874454400000)/",
"RequiredDate": "/Date(875664000000)/",
"ShippedDate": "/Date(875232000000)/",
"ShipVia": 2,
"Freight": "95.7500",
"ShipName": "Berglunds snabbköp",
"ShipAddress": "Berguvsvägen 8",
"ShipCity": "Luleå",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden"
},
{
"OrderID": 10673,
"CustomerID": "WILMK",
"EmployeeID": 2,
"OrderDate": "/Date(874540800000)/",
"RequiredDate": "/Date(876960000000)/",
"ShippedDate": "/Date(874627200000)/",
"ShipVia": 1,
"Freight": "22.7600",
"ShipName": "Wilman Kala",
"ShipAddress": "Keskuskatu 45",
"ShipCity": "Helsinki",
"ShipRegion": null,
"ShipPostalCode": "21240",
"ShipCountry": "Finland"
},
{
"OrderID": 10674,
"CustomerID": "ISLAT",
"EmployeeID": 4,
"OrderDate": "/Date(874540800000)/",
"RequiredDate": "/Date(876960000000)/",
"ShippedDate": "/Date(875577600000)/",
"ShipVia": 2,
"Freight": "0.9000",
"ShipName": "Island Trading",
"ShipAddress": "Garden House Crowther Way",
"ShipCity": "Cowes",
"ShipRegion": "Isle of Wight",
"ShipPostalCode": "PO31 7PJ",
"ShipCountry": "UK"
},
{
"OrderID": 10675,
"CustomerID": "FRANK",
"EmployeeID": 5,
"OrderDate": "/Date(874627200000)/",
"RequiredDate": "/Date(877046400000)/",
"ShippedDate": "/Date(874972800000)/",
"ShipVia": 2,
"Freight": "31.8500",
"ShipName": "Frankenversand",
"ShipAddress": "Berliner Platz 43",
"ShipCity": "München",
"ShipRegion": null,
"ShipPostalCode": "80805",
"ShipCountry": "Germany"
},
{
"OrderID": 10676,
"CustomerID": "TORTU",
"EmployeeID": 2,
"OrderDate": "/Date(874886400000)/",
"RequiredDate": "/Date(877305600000)/",
"ShippedDate": "/Date(875491200000)/",
"ShipVia": 2,
"Freight": "2.0100",
"ShipName": "Tortuga Restaurante",
"ShipAddress": "Avda. Azteca 123",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05033",
"ShipCountry": "Mexico"
},
{
"OrderID": 10677,
"CustomerID": "ANTON",
"EmployeeID": 1,
"OrderDate": "/Date(874886400000)/",
"RequiredDate": "/Date(877305600000)/",
"ShippedDate": "/Date(875232000000)/",
"ShipVia": 3,
"Freight": "4.0300",
"ShipName": "Antonio Moreno Taquería",
"ShipAddress": "Mataderos 2312",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico"
},
{
"OrderID": 10678,
"CustomerID": "SAVEA",
"EmployeeID": 7,
"OrderDate": "/Date(874972800000)/",
"RequiredDate": "/Date(877392000000)/",
"ShippedDate": "/Date(876960000000)/",
"ShipVia": 3,
"Freight": "388.9800",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10679,
"CustomerID": "BLONP",
"EmployeeID": 8,
"OrderDate": "/Date(874972800000)/",
"RequiredDate": "/Date(877392000000)/",
"ShippedDate": "/Date(875577600000)/",
"ShipVia": 3,
"Freight": "27.9400",
"ShipName": "Blondel père et fils",
"ShipAddress": "24, place Kléber",
"ShipCity": "Strasbourg",
"ShipRegion": null,
"ShipPostalCode": "67000",
"ShipCountry": "France"
},
{
"OrderID": 10680,
"CustomerID": "OLDWO",
"EmployeeID": 1,
"OrderDate": "/Date(875059200000)/",
"RequiredDate": "/Date(877478400000)/",
"ShippedDate": "/Date(875232000000)/",
"ShipVia": 1,
"Freight": "26.6100",
"ShipName": "Old World Delicatessen",
"ShipAddress": "2743 Bering St.",
"ShipCity": "Anchorage",
"ShipRegion": "AK",
"ShipPostalCode": "99508",
"ShipCountry": "USA"
},
{
"OrderID": 10681,
"CustomerID": "GREAL",
"EmployeeID": 3,
"OrderDate": "/Date(875145600000)/",
"RequiredDate": "/Date(877564800000)/",
"ShippedDate": "/Date(875577600000)/",
"ShipVia": 3,
"Freight": "76.1300",
"ShipName": "Great Lakes Food Market",
"ShipAddress": "2732 Baker Blvd.",
"ShipCity": "Eugene",
"ShipRegion": "OR",
"ShipPostalCode": "97403",
"ShipCountry": "USA"
},
{
"OrderID": 10682,
"CustomerID": "ANTON",
"EmployeeID": 3,
"OrderDate": "/Date(875145600000)/",
"RequiredDate": "/Date(877564800000)/",
"ShippedDate": "/Date(875664000000)/",
"ShipVia": 2,
"Freight": "36.1300",
"ShipName": "Antonio Moreno Taquería",
"ShipAddress": "Mataderos 2312",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05023",
"ShipCountry": "Mexico"
},
{
"OrderID": 10683,
"CustomerID": "DUMON",
"EmployeeID": 2,
"OrderDate": "/Date(875232000000)/",
"RequiredDate": "/Date(877651200000)/",
"ShippedDate": "/Date(875664000000)/",
"ShipVia": 1,
"Freight": "4.4000",
"ShipName": "Du monde entier",
"ShipAddress": "67, rue des Cinquante Otages",
"ShipCity": "Nantes",
"ShipRegion": null,
"ShipPostalCode": "44000",
"ShipCountry": "France"
},
{
"OrderID": 10684,
"CustomerID": "OTTIK",
"EmployeeID": 3,
"OrderDate": "/Date(875232000000)/",
"RequiredDate": "/Date(877651200000)/",
"ShippedDate": "/Date(875577600000)/",
"ShipVia": 1,
"Freight": "145.6300",
"ShipName": "Ottilies Käseladen",
"ShipAddress": "Mehrheimerstr. 369",
"ShipCity": "Köln",
"ShipRegion": null,
"ShipPostalCode": "50739",
"ShipCountry": "Germany"
},
{
"OrderID": 10685,
"CustomerID": "GOURL",
"EmployeeID": 4,
"OrderDate": "/Date(875491200000)/",
"RequiredDate": "/Date(876700800000)/",
"ShippedDate": "/Date(875836800000)/",
"ShipVia": 2,
"Freight": "33.7500",
"ShipName": "Gourmet Lanchonetes",
"ShipAddress": "Av. Brasil, 442",
"ShipCity": "Campinas",
"ShipRegion": "SP",
"ShipPostalCode": "04876-786",
"ShipCountry": "Brazil"
},
{
"OrderID": 10686,
"CustomerID": "PICCO",
"EmployeeID": 2,
"OrderDate": "/Date(875577600000)/",
"RequiredDate": "/Date(877996800000)/",
"ShippedDate": "/Date(876268800000)/",
"ShipVia": 1,
"Freight": "96.5000",
"ShipName": "Piccolo und mehr",
"ShipAddress": "Geislweg 14",
"ShipCity": "Salzburg",
"ShipRegion": null,
"ShipPostalCode": "5020",
"ShipCountry": "Austria"
},
{
"OrderID": 10687,
"CustomerID": "HUNGO",
"EmployeeID": 9,
"OrderDate": "/Date(875577600000)/",
"RequiredDate": "/Date(877996800000)/",
"ShippedDate": "/Date(878169600000)/",
"ShipVia": 2,
"Freight": "296.4300",
"ShipName": "Hungry Owl All-Night Grocers",
"ShipAddress": "8 Johnstown Road",
"ShipCity": "Cork",
"ShipRegion": "Co. Cork",
"ShipPostalCode": null,
"ShipCountry": "Ireland"
},
{
"OrderID": 10688,
"CustomerID": "VAFFE",
"EmployeeID": 4,
"OrderDate": "/Date(875664000000)/",
"RequiredDate": "/Date(876873600000)/",
"ShippedDate": "/Date(876182400000)/",
"ShipVia": 2,
"Freight": "299.0900",
"ShipName": "Vaffeljernet",
"ShipAddress": "Smagsloget 45",
"ShipCity": "Århus",
"ShipRegion": null,
"ShipPostalCode": "8200",
"ShipCountry": "Denmark"
},
{
"OrderID": 10689,
"CustomerID": "BERGS",
"EmployeeID": 1,
"OrderDate": "/Date(875664000000)/",
"RequiredDate": "/Date(878083200000)/",
"ShippedDate": "/Date(876182400000)/",
"ShipVia": 2,
"Freight": "13.4200",
"ShipName": "Berglunds snabbköp",
"ShipAddress": "Berguvsvägen 8",
"ShipCity": "Luleå",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden"
},
{
"OrderID": 10690,
"CustomerID": "HANAR",
"EmployeeID": 1,
"OrderDate": "/Date(875750400000)/",
"RequiredDate": "/Date(878169600000)/",
"ShippedDate": "/Date(875836800000)/",
"ShipVia": 1,
"Freight": "15.8000",
"ShipName": "Hanari Carnes",
"ShipAddress": "Rua do Paço, 67",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "05454-876",
"ShipCountry": "Brazil"
},
{
"OrderID": 10691,
"CustomerID": "QUICK",
"EmployeeID": 2,
"OrderDate": "/Date(875836800000)/",
"RequiredDate": "/Date(879465600000)/",
"ShippedDate": "/Date(877478400000)/",
"ShipVia": 2,
"Freight": "810.0500",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10692,
"CustomerID": "ALFKI",
"EmployeeID": 4,
"OrderDate": "/Date(875836800000)/",
"RequiredDate": "/Date(878256000000)/",
"ShippedDate": "/Date(876700800000)/",
"ShipVia": 2,
"Freight": "61.0200",
"ShipName": "Alfred's Futterkiste",
"ShipAddress": "Obere Str. 57",
"ShipCity": "Berlin",
"ShipRegion": null,
"ShipPostalCode": "12209",
"ShipCountry": "Germany"
},
{
"OrderID": 10693,
"CustomerID": "WHITC",
"EmployeeID": 3,
"OrderDate": "/Date(876096000000)/",
"RequiredDate": "/Date(877305600000)/",
"ShippedDate": "/Date(876441600000)/",
"ShipVia": 3,
"Freight": "139.3400",
"ShipName": "White Clover Markets",
"ShipAddress": "1029 - 12th Ave. S.",
"ShipCity": "Seattle",
"ShipRegion": "WA",
"ShipPostalCode": "98124",
"ShipCountry": "USA"
},
{
"OrderID": 10694,
"CustomerID": "QUICK",
"EmployeeID": 8,
"OrderDate": "/Date(876096000000)/",
"RequiredDate": "/Date(878515200000)/",
"ShippedDate": "/Date(876355200000)/",
"ShipVia": 3,
"Freight": "398.3600",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10695,
"CustomerID": "WILMK",
"EmployeeID": 7,
"OrderDate": "/Date(876182400000)/",
"RequiredDate": "/Date(879811200000)/",
"ShippedDate": "/Date(876787200000)/",
"ShipVia": 1,
"Freight": "16.7200",
"ShipName": "Wilman Kala",
"ShipAddress": "Keskuskatu 45",
"ShipCity": "Helsinki",
"ShipRegion": null,
"ShipPostalCode": "21240",
"ShipCountry": "Finland"
},
{
"OrderID": 10696,
"CustomerID": "WHITC",
"EmployeeID": 8,
"OrderDate": "/Date(876268800000)/",
"RequiredDate": "/Date(879897600000)/",
"ShippedDate": "/Date(876787200000)/",
"ShipVia": 3,
"Freight": "102.5500",
"ShipName": "White Clover Markets",
"ShipAddress": "1029 - 12th Ave. S.",
"ShipCity": "Seattle",
"ShipRegion": "WA",
"ShipPostalCode": "98124",
"ShipCountry": "USA"
},
{
"OrderID": 10697,
"CustomerID": "LINOD",
"EmployeeID": 3,
"OrderDate": "/Date(876268800000)/",
"RequiredDate": "/Date(878688000000)/",
"ShippedDate": "/Date(876787200000)/",
"ShipVia": 1,
"Freight": "45.5200",
"ShipName": "LINO-Delicateses",
"ShipAddress": "Ave. 5 de Mayo Porlamar",
"ShipCity": "I. de Margarita",
"ShipRegion": "Nueva Esparta",
"ShipPostalCode": "4980",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10698,
"CustomerID": "ERNSH",
"EmployeeID": 4,
"OrderDate": "/Date(876355200000)/",
"RequiredDate": "/Date(878774400000)/",
"ShippedDate": "/Date(877046400000)/",
"ShipVia": 1,
"Freight": "272.4700",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10699,
"CustomerID": "MORGK",
"EmployeeID": 3,
"OrderDate": "/Date(876355200000)/",
"RequiredDate": "/Date(878774400000)/",
"ShippedDate": "/Date(876700800000)/",
"ShipVia": 3,
"Freight": "0.5800",
"ShipName": "Morgenstern Gesundkost",
"ShipAddress": "Heerstr. 22",
"ShipCity": "Leipzig",
"ShipRegion": null,
"ShipPostalCode": "04179",
"ShipCountry": "Germany"
},
{
"OrderID": 10700,
"CustomerID": "SAVEA",
"EmployeeID": 3,
"OrderDate": "/Date(876441600000)/",
"RequiredDate": "/Date(878860800000)/",
"ShippedDate": "/Date(876960000000)/",
"ShipVia": 1,
"Freight": "65.1000",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10701,
"CustomerID": "HUNGO",
"EmployeeID": 6,
"OrderDate": "/Date(876700800000)/",
"RequiredDate": "/Date(877910400000)/",
"ShippedDate": "/Date(876873600000)/",
"ShipVia": 3,
"Freight": "220.3100",
"ShipName": "Hungry Owl All-Night Grocers",
"ShipAddress": "8 Johnstown Road",
"ShipCity": "Cork",
"ShipRegion": "Co. Cork",
"ShipPostalCode": null,
"ShipCountry": "Ireland"
},
{
"OrderID": 10702,
"CustomerID": "ALFKI",
"EmployeeID": 4,
"OrderDate": "/Date(876700800000)/",
"RequiredDate": "/Date(880329600000)/",
"ShippedDate": "/Date(877392000000)/",
"ShipVia": 1,
"Freight": "23.9400",
"ShipName": "Alfred's Futterkiste",
"ShipAddress": "Obere Str. 57",
"ShipCity": "Berlin",
"ShipRegion": null,
"ShipPostalCode": "12209",
"ShipCountry": "Germany"
},
{
"OrderID": 10703,
"CustomerID": "FOLKO",
"EmployeeID": 6,
"OrderDate": "/Date(876787200000)/",
"RequiredDate": "/Date(879206400000)/",
"ShippedDate": "/Date(877305600000)/",
"ShipVia": 2,
"Freight": "152.3000",
"ShipName": "Folk och fä HB",
"ShipAddress": "Åkergatan 24",
"ShipCity": "Bräcke",
"ShipRegion": null,
"ShipPostalCode": "S-844 67",
"ShipCountry": "Sweden"
},
{
"OrderID": 10704,
"CustomerID": "QUEEN",
"EmployeeID": 6,
"OrderDate": "/Date(876787200000)/",
"RequiredDate": "/Date(879206400000)/",
"ShippedDate": "/Date(878860800000)/",
"ShipVia": 1,
"Freight": "4.7800",
"ShipName": "Queen Cozinha",
"ShipAddress": "Alameda dos Canàrios, 891",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05487-020",
"ShipCountry": "Brazil"
},
{
"OrderID": 10705,
"CustomerID": "HILAA",
"EmployeeID": 9,
"OrderDate": "/Date(876873600000)/",
"RequiredDate": "/Date(879292800000)/",
"ShippedDate": "/Date(879811200000)/",
"ShipVia": 2,
"Freight": "3.5200",
"ShipName": "HILARION-Abastos",
"ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35",
"ShipCity": "San Cristóbal",
"ShipRegion": "Táchira",
"ShipPostalCode": "5022",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10706,
"CustomerID": "OLDWO",
"EmployeeID": 8,
"OrderDate": "/Date(876960000000)/",
"RequiredDate": "/Date(879379200000)/",
"ShippedDate": "/Date(877392000000)/",
"ShipVia": 3,
"Freight": "135.6300",
"ShipName": "Old World Delicatessen",
"ShipAddress": "2743 Bering St.",
"ShipCity": "Anchorage",
"ShipRegion": "AK",
"ShipPostalCode": "99508",
"ShipCountry": "USA"
},
{
"OrderID": 10707,
"CustomerID": "AROUT",
"EmployeeID": 4,
"OrderDate": "/Date(876960000000)/",
"RequiredDate": "/Date(878169600000)/",
"ShippedDate": "/Date(877564800000)/",
"ShipVia": 3,
"Freight": "21.7400",
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK"
},
{
"OrderID": 10708,
"CustomerID": "THEBI",
"EmployeeID": 6,
"OrderDate": "/Date(877046400000)/",
"RequiredDate": "/Date(880675200000)/",
"ShippedDate": "/Date(878688000000)/",
"ShipVia": 2,
"Freight": "2.9600",
"ShipName": "The Big Cheese",
"ShipAddress": "89 Jefferson Way Suite 2",
"ShipCity": "Portland",
"ShipRegion": "OR",
"ShipPostalCode": "97201",
"ShipCountry": "USA"
},
{
"OrderID": 10709,
"CustomerID": "GOURL",
"EmployeeID": 1,
"OrderDate": "/Date(877046400000)/",
"RequiredDate": "/Date(879465600000)/",
"ShippedDate": "/Date(879984000000)/",
"ShipVia": 3,
"Freight": "210.8000",
"ShipName": "Gourmet Lanchonetes",
"ShipAddress": "Av. Brasil, 442",
"ShipCity": "Campinas",
"ShipRegion": "SP",
"ShipPostalCode": "04876-786",
"ShipCountry": "Brazil"
},
{
"OrderID": 10710,
"CustomerID": "FRANS",
"EmployeeID": 1,
"OrderDate": "/Date(877305600000)/",
"RequiredDate": "/Date(879724800000)/",
"ShippedDate": "/Date(877564800000)/",
"ShipVia": 1,
"Freight": "4.9800",
"ShipName": "Franchi S.p.A.",
"ShipAddress": "Via Monte Bianco 34",
"ShipCity": "Torino",
"ShipRegion": null,
"ShipPostalCode": "10100",
"ShipCountry": "Italy"
},
{
"OrderID": 10711,
"CustomerID": "SAVEA",
"EmployeeID": 5,
"OrderDate": "/Date(877392000000)/",
"RequiredDate": "/Date(881020800000)/",
"ShippedDate": "/Date(878083200000)/",
"ShipVia": 2,
"Freight": "52.4100",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10712,
"CustomerID": "HUNGO",
"EmployeeID": 3,
"OrderDate": "/Date(877392000000)/",
"RequiredDate": "/Date(879811200000)/",
"ShippedDate": "/Date(878256000000)/",
"ShipVia": 1,
"Freight": "89.9300",
"ShipName": "Hungry Owl All-Night Grocers",
"ShipAddress": "8 Johnstown Road",
"ShipCity": "Cork",
"ShipRegion": "Co. Cork",
"ShipPostalCode": null,
"ShipCountry": "Ireland"
},
{
"OrderID": 10713,
"CustomerID": "SAVEA",
"EmployeeID": 1,
"OrderDate": "/Date(877478400000)/",
"RequiredDate": "/Date(879897600000)/",
"ShippedDate": "/Date(877651200000)/",
"ShipVia": 1,
"Freight": "167.0500",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10714,
"CustomerID": "SAVEA",
"EmployeeID": 5,
"OrderDate": "/Date(877478400000)/",
"RequiredDate": "/Date(879897600000)/",
"ShippedDate": "/Date(877910400000)/",
"ShipVia": 3,
"Freight": "24.4900",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10715,
"CustomerID": "BONAP",
"EmployeeID": 3,
"OrderDate": "/Date(877564800000)/",
"RequiredDate": "/Date(878774400000)/",
"ShippedDate": "/Date(878083200000)/",
"ShipVia": 1,
"Freight": "63.2000",
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France"
},
{
"OrderID": 10716,
"CustomerID": "RANCH",
"EmployeeID": 4,
"OrderDate": "/Date(877651200000)/",
"RequiredDate": "/Date(880070400000)/",
"ShippedDate": "/Date(877910400000)/",
"ShipVia": 2,
"Freight": "22.5700",
"ShipName": "Rancho grande",
"ShipAddress": "Av. del Libertador 900",
"ShipCity": "Buenos Aires",
"ShipRegion": null,
"ShipPostalCode": "1010",
"ShipCountry": "Argentina"
},
{
"OrderID": 10717,
"CustomerID": "FRANK",
"EmployeeID": 1,
"OrderDate": "/Date(877651200000)/",
"RequiredDate": "/Date(880070400000)/",
"ShippedDate": "/Date(878083200000)/",
"ShipVia": 2,
"Freight": "59.2500",
"ShipName": "Frankenversand",
"ShipAddress": "Berliner Platz 43",
"ShipCity": "München",
"ShipRegion": null,
"ShipPostalCode": "80805",
"ShipCountry": "Germany"
},
{
"OrderID": 10718,
"CustomerID": "KOENE",
"EmployeeID": 1,
"OrderDate": "/Date(877910400000)/",
"RequiredDate": "/Date(880329600000)/",
"ShippedDate": "/Date(878083200000)/",
"ShipVia": 3,
"Freight": "170.8800",
"ShipName": "Königlich Essen",
"ShipAddress": "Maubelstr. 90",
"ShipCity": "Brandenburg",
"ShipRegion": null,
"ShipPostalCode": "14776",
"ShipCountry": "Germany"
},
{
"OrderID": 10719,
"CustomerID": "LETSS",
"EmployeeID": 8,
"OrderDate": "/Date(877910400000)/",
"RequiredDate": "/Date(880329600000)/",
"ShippedDate": "/Date(878688000000)/",
"ShipVia": 2,
"Freight": "51.4400",
"ShipName": "Let's Stop N Shop",
"ShipAddress": "87 Polk St. Suite 5",
"ShipCity": "San Francisco",
"ShipRegion": "CA",
"ShipPostalCode": "94117",
"ShipCountry": "USA"
},
{
"OrderID": 10720,
"CustomerID": "QUEDE",
"EmployeeID": 8,
"OrderDate": "/Date(877996800000)/",
"RequiredDate": "/Date(879206400000)/",
"ShippedDate": "/Date(878688000000)/",
"ShipVia": 2,
"Freight": "9.5300",
"ShipName": "Que Delícia",
"ShipAddress": "Rua da Panificadora, 12",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "02389-673",
"ShipCountry": "Brazil"
},
{
"OrderID": 10721,
"CustomerID": "QUICK",
"EmployeeID": 5,
"OrderDate": "/Date(878083200000)/",
"RequiredDate": "/Date(880502400000)/",
"ShippedDate": "/Date(878256000000)/",
"ShipVia": 3,
"Freight": "48.9200",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10722,
"CustomerID": "SAVEA",
"EmployeeID": 8,
"OrderDate": "/Date(878083200000)/",
"RequiredDate": "/Date(881712000000)/",
"ShippedDate": "/Date(878601600000)/",
"ShipVia": 1,
"Freight": "74.5800",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10723,
"CustomerID": "WHITC",
"EmployeeID": 3,
"OrderDate": "/Date(878169600000)/",
"RequiredDate": "/Date(880588800000)/",
"ShippedDate": "/Date(880416000000)/",
"ShipVia": 1,
"Freight": "21.7200",
"ShipName": "White Clover Markets",
"ShipAddress": "1029 - 12th Ave. S.",
"ShipCity": "Seattle",
"ShipRegion": "WA",
"ShipPostalCode": "98124",
"ShipCountry": "USA"
},
{
"OrderID": 10724,
"CustomerID": "MEREP",
"EmployeeID": 8,
"OrderDate": "/Date(878169600000)/",
"RequiredDate": "/Date(881798400000)/",
"ShippedDate": "/Date(878688000000)/",
"ShipVia": 2,
"Freight": "57.7500",
"ShipName": "Mère Paillarde",
"ShipAddress": "43 rue St. Laurent",
"ShipCity": "Montréal",
"ShipRegion": "Québec",
"ShipPostalCode": "H1J 1C3",
"ShipCountry": "Canada"
},
{
"OrderID": 10725,
"CustomerID": "FAMIA",
"EmployeeID": 4,
"OrderDate": "/Date(878256000000)/",
"RequiredDate": "/Date(880675200000)/",
"ShippedDate": "/Date(878688000000)/",
"ShipVia": 3,
"Freight": "10.8300",
"ShipName": "Familia Arquibaldo",
"ShipAddress": "Rua Orós, 92",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05442-030",
"ShipCountry": "Brazil"
},
{
"OrderID": 10726,
"CustomerID": "EASTC",
"EmployeeID": 4,
"OrderDate": "/Date(878515200000)/",
"RequiredDate": "/Date(879724800000)/",
"ShippedDate": "/Date(881280000000)/",
"ShipVia": 1,
"Freight": "16.5600",
"ShipName": "Eastern Connection",
"ShipAddress": "35 King George",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "WX3 6FW",
"ShipCountry": "UK"
},
{
"OrderID": 10727,
"CustomerID": "REGGC",
"EmployeeID": 2,
"OrderDate": "/Date(878515200000)/",
"RequiredDate": "/Date(880934400000)/",
"ShippedDate": "/Date(881280000000)/",
"ShipVia": 1,
"Freight": "89.9000",
"ShipName": "Reggiani Caseifici",
"ShipAddress": "Strada Provinciale 124",
"ShipCity": "Reggio Emilia",
"ShipRegion": null,
"ShipPostalCode": "42100",
"ShipCountry": "Italy"
},
{
"OrderID": 10728,
"CustomerID": "QUEEN",
"EmployeeID": 4,
"OrderDate": "/Date(878601600000)/",
"RequiredDate": "/Date(881020800000)/",
"ShippedDate": "/Date(879206400000)/",
"ShipVia": 2,
"Freight": "58.3300",
"ShipName": "Queen Cozinha",
"ShipAddress": "Alameda dos Canàrios, 891",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05487-020",
"ShipCountry": "Brazil"
},
{
"OrderID": 10729,
"CustomerID": "LINOD",
"EmployeeID": 8,
"OrderDate": "/Date(878601600000)/",
"RequiredDate": "/Date(882230400000)/",
"ShippedDate": "/Date(879465600000)/",
"ShipVia": 3,
"Freight": "141.0600",
"ShipName": "LINO-Delicateses",
"ShipAddress": "Ave. 5 de Mayo Porlamar",
"ShipCity": "I. de Margarita",
"ShipRegion": "Nueva Esparta",
"ShipPostalCode": "4980",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10730,
"CustomerID": "BONAP",
"EmployeeID": 5,
"OrderDate": "/Date(878688000000)/",
"RequiredDate": "/Date(881107200000)/",
"ShippedDate": "/Date(879465600000)/",
"ShipVia": 1,
"Freight": "20.1200",
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France"
},
{
"OrderID": 10731,
"CustomerID": "CHOPS",
"EmployeeID": 7,
"OrderDate": "/Date(878774400000)/",
"RequiredDate": "/Date(881193600000)/",
"ShippedDate": "/Date(879465600000)/",
"ShipVia": 1,
"Freight": "96.6500",
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland"
},
{
"OrderID": 10732,
"CustomerID": "BONAP",
"EmployeeID": 3,
"OrderDate": "/Date(878774400000)/",
"RequiredDate": "/Date(881193600000)/",
"ShippedDate": "/Date(878860800000)/",
"ShipVia": 1,
"Freight": "16.9700",
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France"
},
{
"OrderID": 10733,
"CustomerID": "BERGS",
"EmployeeID": 1,
"OrderDate": "/Date(878860800000)/",
"RequiredDate": "/Date(881280000000)/",
"ShippedDate": "/Date(879120000000)/",
"ShipVia": 3,
"Freight": "110.1100",
"ShipName": "Berglunds snabbköp",
"ShipAddress": "Berguvsvägen 8",
"ShipCity": "Luleå",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden"
},
{
"OrderID": 10734,
"CustomerID": "GOURL",
"EmployeeID": 2,
"OrderDate": "/Date(878860800000)/",
"RequiredDate": "/Date(881280000000)/",
"ShippedDate": "/Date(879292800000)/",
"ShipVia": 3,
"Freight": "1.6300",
"ShipName": "Gourmet Lanchonetes",
"ShipAddress": "Av. Brasil, 442",
"ShipCity": "Campinas",
"ShipRegion": "SP",
"ShipPostalCode": "04876-786",
"ShipCountry": "Brazil"
},
{
"OrderID": 10735,
"CustomerID": "LETSS",
"EmployeeID": 6,
"OrderDate": "/Date(879120000000)/",
"RequiredDate": "/Date(881539200000)/",
"ShippedDate": "/Date(880070400000)/",
"ShipVia": 2,
"Freight": "45.9700",
"ShipName": "Let's Stop N Shop",
"ShipAddress": "87 Polk St. Suite 5",
"ShipCity": "San Francisco",
"ShipRegion": "CA",
"ShipPostalCode": "94117",
"ShipCountry": "USA"
},
{
"OrderID": 10736,
"CustomerID": "HUNGO",
"EmployeeID": 9,
"OrderDate": "/Date(879206400000)/",
"RequiredDate": "/Date(881625600000)/",
"ShippedDate": "/Date(880070400000)/",
"ShipVia": 2,
"Freight": "44.1000",
"ShipName": "Hungry Owl All-Night Grocers",
"ShipAddress": "8 Johnstown Road",
"ShipCity": "Cork",
"ShipRegion": "Co. Cork",
"ShipPostalCode": null,
"ShipCountry": "Ireland"
},
{
"OrderID": 10737,
"CustomerID": "VINET",
"EmployeeID": 2,
"OrderDate": "/Date(879206400000)/",
"RequiredDate": "/Date(881625600000)/",
"ShippedDate": "/Date(879811200000)/",
"ShipVia": 2,
"Freight": "7.7900",
"ShipName": "Vins et alcools Chevalier",
"ShipAddress": "59 rue de l'Abbaye",
"ShipCity": "Reims",
"ShipRegion": null,
"ShipPostalCode": "51100",
"ShipCountry": "France"
},
{
"OrderID": 10738,
"CustomerID": "SPECD",
"EmployeeID": 2,
"OrderDate": "/Date(879292800000)/",
"RequiredDate": "/Date(881712000000)/",
"ShippedDate": "/Date(879811200000)/",
"ShipVia": 1,
"Freight": "2.9100",
"ShipName": "Spécialités du monde",
"ShipAddress": "25, rue Lauriston",
"ShipCity": "Paris",
"ShipRegion": null,
"ShipPostalCode": "75016",
"ShipCountry": "France"
},
{
"OrderID": 10739,
"CustomerID": "VINET",
"EmployeeID": 3,
"OrderDate": "/Date(879292800000)/",
"RequiredDate": "/Date(881712000000)/",
"ShippedDate": "/Date(879724800000)/",
"ShipVia": 3,
"Freight": "11.0800",
"ShipName": "Vins et alcools Chevalier",
"ShipAddress": "59 rue de l'Abbaye",
"ShipCity": "Reims",
"ShipRegion": null,
"ShipPostalCode": "51100",
"ShipCountry": "France"
},
{
"OrderID": 10740,
"CustomerID": "WHITC",
"EmployeeID": 4,
"OrderDate": "/Date(879379200000)/",
"RequiredDate": "/Date(881798400000)/",
"ShippedDate": "/Date(880416000000)/",
"ShipVia": 2,
"Freight": "81.8800",
"ShipName": "White Clover Markets",
"ShipAddress": "1029 - 12th Ave. S.",
"ShipCity": "Seattle",
"ShipRegion": "WA",
"ShipPostalCode": "98124",
"ShipCountry": "USA"
},
{
"OrderID": 10741,
"CustomerID": "AROUT",
"EmployeeID": 4,
"OrderDate": "/Date(879465600000)/",
"RequiredDate": "/Date(880675200000)/",
"ShippedDate": "/Date(879811200000)/",
"ShipVia": 3,
"Freight": "10.9600",
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK"
},
{
"OrderID": 10742,
"CustomerID": "BOTTM",
"EmployeeID": 3,
"OrderDate": "/Date(879465600000)/",
"RequiredDate": "/Date(881884800000)/",
"ShippedDate": "/Date(879811200000)/",
"ShipVia": 3,
"Freight": "243.7300",
"ShipName": "Bottom-Dollar Markets",
"ShipAddress": "23 Tsawassen Blvd.",
"ShipCity": "Tsawassen",
"ShipRegion": "BC",
"ShipPostalCode": "T2F 8M4",
"ShipCountry": "Canada"
},
{
"OrderID": 10743,
"CustomerID": "AROUT",
"EmployeeID": 1,
"OrderDate": "/Date(879724800000)/",
"RequiredDate": "/Date(882144000000)/",
"ShippedDate": "/Date(880070400000)/",
"ShipVia": 2,
"Freight": "23.7200",
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK"
},
{
"OrderID": 10744,
"CustomerID": "VAFFE",
"EmployeeID": 6,
"OrderDate": "/Date(879724800000)/",
"RequiredDate": "/Date(882144000000)/",
"ShippedDate": "/Date(880329600000)/",
"ShipVia": 1,
"Freight": "69.1900",
"ShipName": "Vaffeljernet",
"ShipAddress": "Smagsloget 45",
"ShipCity": "Århus",
"ShipRegion": null,
"ShipPostalCode": "8200",
"ShipCountry": "Denmark"
},
{
"OrderID": 10745,
"CustomerID": "QUICK",
"EmployeeID": 9,
"OrderDate": "/Date(879811200000)/",
"RequiredDate": "/Date(882230400000)/",
"ShippedDate": "/Date(880588800000)/",
"ShipVia": 1,
"Freight": "3.5200",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10746,
"CustomerID": "CHOPS",
"EmployeeID": 1,
"OrderDate": "/Date(879897600000)/",
"RequiredDate": "/Date(882316800000)/",
"ShippedDate": "/Date(880070400000)/",
"ShipVia": 3,
"Freight": "31.4300",
"ShipName": "Chop-suey Chinese",
"ShipAddress": "Hauptstr. 31",
"ShipCity": "Bern",
"ShipRegion": null,
"ShipPostalCode": "3012",
"ShipCountry": "Switzerland"
},
{
"OrderID": 10747,
"CustomerID": "PICCO",
"EmployeeID": 6,
"OrderDate": "/Date(879897600000)/",
"RequiredDate": "/Date(882316800000)/",
"ShippedDate": "/Date(880502400000)/",
"ShipVia": 1,
"Freight": "117.3300",
"ShipName": "Piccolo und mehr",
"ShipAddress": "Geislweg 14",
"ShipCity": "Salzburg",
"ShipRegion": null,
"ShipPostalCode": "5020",
"ShipCountry": "Austria"
},
{
"OrderID": 10748,
"CustomerID": "SAVEA",
"EmployeeID": 3,
"OrderDate": "/Date(879984000000)/",
"RequiredDate": "/Date(882403200000)/",
"ShippedDate": "/Date(880675200000)/",
"ShipVia": 1,
"Freight": "232.5500",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10749,
"CustomerID": "ISLAT",
"EmployeeID": 4,
"OrderDate": "/Date(879984000000)/",
"RequiredDate": "/Date(882403200000)/",
"ShippedDate": "/Date(882489600000)/",
"ShipVia": 2,
"Freight": "61.5300",
"ShipName": "Island Trading",
"ShipAddress": "Garden House Crowther Way",
"ShipCity": "Cowes",
"ShipRegion": "Isle of Wight",
"ShipPostalCode": "PO31 7PJ",
"ShipCountry": "UK"
},
{
"OrderID": 10750,
"CustomerID": "WARTH",
"EmployeeID": 9,
"OrderDate": "/Date(880070400000)/",
"RequiredDate": "/Date(882489600000)/",
"ShippedDate": "/Date(880329600000)/",
"ShipVia": 1,
"Freight": "79.3000",
"ShipName": "Wartian Herkku",
"ShipAddress": "Torikatu 38",
"ShipCity": "Oulu",
"ShipRegion": null,
"ShipPostalCode": "90110",
"ShipCountry": "Finland"
},
{
"OrderID": 10751,
"CustomerID": "RICSU",
"EmployeeID": 3,
"OrderDate": "/Date(880329600000)/",
"RequiredDate": "/Date(882748800000)/",
"ShippedDate": "/Date(881107200000)/",
"ShipVia": 3,
"Freight": "130.7900",
"ShipName": "Richter Supermarkt",
"ShipAddress": "Starenweg 5",
"ShipCity": "Genève",
"ShipRegion": null,
"ShipPostalCode": "1204",
"ShipCountry": "Switzerland"
},
{
"OrderID": 10752,
"CustomerID": "NORTS",
"EmployeeID": 2,
"OrderDate": "/Date(880329600000)/",
"RequiredDate": "/Date(882748800000)/",
"ShippedDate": "/Date(880675200000)/",
"ShipVia": 3,
"Freight": "1.3900",
"ShipName": "North/South",
"ShipAddress": "South House 300 Queensbridge",
"ShipCity": "London",
"ShipRegion": null,
"ShipPostalCode": "SW7 1RZ",
"ShipCountry": "UK"
},
{
"OrderID": 10753,
"CustomerID": "FRANS",
"EmployeeID": 3,
"OrderDate": "/Date(880416000000)/",
"RequiredDate": "/Date(882835200000)/",
"ShippedDate": "/Date(880588800000)/",
"ShipVia": 1,
"Freight": "7.7000",
"ShipName": "Franchi S.p.A.",
"ShipAddress": "Via Monte Bianco 34",
"ShipCity": "Torino",
"ShipRegion": null,
"ShipPostalCode": "10100",
"ShipCountry": "Italy"
},
{
"OrderID": 10754,
"CustomerID": "MAGAA",
"EmployeeID": 6,
"OrderDate": "/Date(880416000000)/",
"RequiredDate": "/Date(882835200000)/",
"ShippedDate": "/Date(880588800000)/",
"ShipVia": 3,
"Freight": "2.3800",
"ShipName": "Magazzini Alimentari Riuniti",
"ShipAddress": "Via Ludovico il Moro 22",
"ShipCity": "Bergamo",
"ShipRegion": null,
"ShipPostalCode": "24100",
"ShipCountry": "Italy"
},
{
"OrderID": 10755,
"CustomerID": "BONAP",
"EmployeeID": 4,
"OrderDate": "/Date(880502400000)/",
"RequiredDate": "/Date(882921600000)/",
"ShippedDate": "/Date(880675200000)/",
"ShipVia": 2,
"Freight": "16.7100",
"ShipName": "Bon app'",
"ShipAddress": "12, rue des Bouchers",
"ShipCity": "Marseille",
"ShipRegion": null,
"ShipPostalCode": "13008",
"ShipCountry": "France"
},
{
"OrderID": 10756,
"CustomerID": "SPLIR",
"EmployeeID": 8,
"OrderDate": "/Date(880588800000)/",
"RequiredDate": "/Date(883008000000)/",
"ShippedDate": "/Date(881020800000)/",
"ShipVia": 2,
"Freight": "73.2100",
"ShipName": "Split Rail Beer & Ale",
"ShipAddress": "P.O. Box 555",
"ShipCity": "Lander",
"ShipRegion": "WY",
"ShipPostalCode": "82520",
"ShipCountry": "USA"
},
{
"OrderID": 10757,
"CustomerID": "SAVEA",
"EmployeeID": 6,
"OrderDate": "/Date(880588800000)/",
"RequiredDate": "/Date(883008000000)/",
"ShippedDate": "/Date(882144000000)/",
"ShipVia": 1,
"Freight": "8.1900",
"ShipName": "Save-a-lot Markets",
"ShipAddress": "187 Suffolk Ln.",
"ShipCity": "Boise",
"ShipRegion": "ID",
"ShipPostalCode": "83720",
"ShipCountry": "USA"
},
{
"OrderID": 10758,
"CustomerID": "RICSU",
"EmployeeID": 3,
"OrderDate": "/Date(880675200000)/",
"RequiredDate": "/Date(883094400000)/",
"ShippedDate": "/Date(881193600000)/",
"ShipVia": 3,
"Freight": "138.1700",
"ShipName": "Richter Supermarkt",
"ShipAddress": "Starenweg 5",
"ShipCity": "Genève",
"ShipRegion": null,
"ShipPostalCode": "1204",
"ShipCountry": "Switzerland"
},
{
"OrderID": 10759,
"CustomerID": "ANATR",
"EmployeeID": 3,
"OrderDate": "/Date(880675200000)/",
"RequiredDate": "/Date(883094400000)/",
"ShippedDate": "/Date(881884800000)/",
"ShipVia": 3,
"Freight": "11.9900",
"ShipName": "Ana Trujillo Emparedados y helados",
"ShipAddress": "Avda. de la Constitución 2222",
"ShipCity": "México D.F.",
"ShipRegion": null,
"ShipPostalCode": "05021",
"ShipCountry": "Mexico"
},
{
"OrderID": 10760,
"CustomerID": "MAISD",
"EmployeeID": 4,
"OrderDate": "/Date(880934400000)/",
"RequiredDate": "/Date(883353600000)/",
"ShippedDate": "/Date(881712000000)/",
"ShipVia": 1,
"Freight": "155.6400",
"ShipName": "Maison Dewey",
"ShipAddress": "Rue Joseph-Bens 532",
"ShipCity": "Bruxelles",
"ShipRegion": null,
"ShipPostalCode": "B-1180",
"ShipCountry": "Belgium"
},
{
"OrderID": 10761,
"CustomerID": "RATTC",
"EmployeeID": 5,
"OrderDate": "/Date(881020800000)/",
"RequiredDate": "/Date(883440000000)/",
"ShippedDate": "/Date(881539200000)/",
"ShipVia": 2,
"Freight": "18.6600",
"ShipName": "Rattlesnake Canyon Grocery",
"ShipAddress": "2817 Milton Dr.",
"ShipCity": "Albuquerque",
"ShipRegion": "NM",
"ShipPostalCode": "87110",
"ShipCountry": "USA"
},
{
"OrderID": 10762,
"CustomerID": "FOLKO",
"EmployeeID": 3,
"OrderDate": "/Date(881020800000)/",
"RequiredDate": "/Date(883440000000)/",
"ShippedDate": "/Date(881625600000)/",
"ShipVia": 1,
"Freight": "328.7400",
"ShipName": "Folk och fä HB",
"ShipAddress": "Åkergatan 24",
"ShipCity": "Bräcke",
"ShipRegion": null,
"ShipPostalCode": "S-844 67",
"ShipCountry": "Sweden"
},
{
"OrderID": 10763,
"CustomerID": "FOLIG",
"EmployeeID": 3,
"OrderDate": "/Date(881107200000)/",
"RequiredDate": "/Date(883526400000)/",
"ShippedDate": "/Date(881539200000)/",
"ShipVia": 3,
"Freight": "37.3500",
"ShipName": "Folies gourmandes",
"ShipAddress": "184, chaussée de Tournai",
"ShipCity": "Lille",
"ShipRegion": null,
"ShipPostalCode": "59000",
"ShipCountry": "France"
},
{
"OrderID": 10764,
"CustomerID": "ERNSH",
"EmployeeID": 6,
"OrderDate": "/Date(881107200000)/",
"RequiredDate": "/Date(883526400000)/",
"ShippedDate": "/Date(881539200000)/",
"ShipVia": 3,
"Freight": "145.4500",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10765,
"CustomerID": "QUICK",
"EmployeeID": 3,
"OrderDate": "/Date(881193600000)/",
"RequiredDate": "/Date(883612800000)/",
"ShippedDate": "/Date(881625600000)/",
"ShipVia": 3,
"Freight": "42.7400",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10766,
"CustomerID": "OTTIK",
"EmployeeID": 4,
"OrderDate": "/Date(881280000000)/",
"RequiredDate": "/Date(883699200000)/",
"ShippedDate": "/Date(881625600000)/",
"ShipVia": 1,
"Freight": "157.5500",
"ShipName": "Ottilies Käseladen",
"ShipAddress": "Mehrheimerstr. 369",
"ShipCity": "Köln",
"ShipRegion": null,
"ShipPostalCode": "50739",
"ShipCountry": "Germany"
},
{
"OrderID": 10767,
"CustomerID": "SUPRD",
"EmployeeID": 4,
"OrderDate": "/Date(881280000000)/",
"RequiredDate": "/Date(883699200000)/",
"ShippedDate": "/Date(882144000000)/",
"ShipVia": 3,
"Freight": "1.5900",
"ShipName": "Suprêmes délices",
"ShipAddress": "Boulevard Tirou, 255",
"ShipCity": "Charleroi",
"ShipRegion": null,
"ShipPostalCode": "B-6000",
"ShipCountry": "Belgium"
},
{
"OrderID": 10768,
"CustomerID": "AROUT",
"EmployeeID": 3,
"OrderDate": "/Date(881539200000)/",
"RequiredDate": "/Date(883958400000)/",
"ShippedDate": "/Date(882144000000)/",
"ShipVia": 2,
"Freight": "146.3200",
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK"
},
{
"OrderID": 10769,
"CustomerID": "VAFFE",
"EmployeeID": 3,
"OrderDate": "/Date(881539200000)/",
"RequiredDate": "/Date(883958400000)/",
"ShippedDate": "/Date(881884800000)/",
"ShipVia": 1,
"Freight": "65.0600",
"ShipName": "Vaffeljernet",
"ShipAddress": "Smagsloget 45",
"ShipCity": "Århus",
"ShipRegion": null,
"ShipPostalCode": "8200",
"ShipCountry": "Denmark"
},
{
"OrderID": 10770,
"CustomerID": "HANAR",
"EmployeeID": 8,
"OrderDate": "/Date(881625600000)/",
"RequiredDate": "/Date(884044800000)/",
"ShippedDate": "/Date(882316800000)/",
"ShipVia": 3,
"Freight": "5.3200",
"ShipName": "Hanari Carnes",
"ShipAddress": "Rua do Paço, 67",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "05454-876",
"ShipCountry": "Brazil"
},
{
"OrderID": 10771,
"CustomerID": "ERNSH",
"EmployeeID": 9,
"OrderDate": "/Date(881712000000)/",
"RequiredDate": "/Date(884131200000)/",
"ShippedDate": "/Date(883699200000)/",
"ShipVia": 2,
"Freight": "11.1900",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10772,
"CustomerID": "LEHMS",
"EmployeeID": 3,
"OrderDate": "/Date(881712000000)/",
"RequiredDate": "/Date(884131200000)/",
"ShippedDate": "/Date(882489600000)/",
"ShipVia": 2,
"Freight": "91.2800",
"ShipName": "Lehmanns Marktstand",
"ShipAddress": "Magazinweg 7",
"ShipCity": "Frankfurt a.M.",
"ShipRegion": null,
"ShipPostalCode": "60528",
"ShipCountry": "Germany"
},
{
"OrderID": 10773,
"CustomerID": "ERNSH",
"EmployeeID": 1,
"OrderDate": "/Date(881798400000)/",
"RequiredDate": "/Date(884217600000)/",
"ShippedDate": "/Date(882230400000)/",
"ShipVia": 3,
"Freight": "96.4300",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10774,
"CustomerID": "FOLKO",
"EmployeeID": 4,
"OrderDate": "/Date(881798400000)/",
"RequiredDate": "/Date(883008000000)/",
"ShippedDate": "/Date(881884800000)/",
"ShipVia": 1,
"Freight": "48.2000",
"ShipName": "Folk och fä HB",
"ShipAddress": "Åkergatan 24",
"ShipCity": "Bräcke",
"ShipRegion": null,
"ShipPostalCode": "S-844 67",
"ShipCountry": "Sweden"
},
{
"OrderID": 10775,
"CustomerID": "THECR",
"EmployeeID": 7,
"OrderDate": "/Date(881884800000)/",
"RequiredDate": "/Date(884304000000)/",
"ShippedDate": "/Date(883094400000)/",
"ShipVia": 1,
"Freight": "20.2500",
"ShipName": "The Cracker Box",
"ShipAddress": "55 Grizzly Peak Rd.",
"ShipCity": "Butte",
"ShipRegion": "MT",
"ShipPostalCode": "59801",
"ShipCountry": "USA"
},
{
"OrderID": 10776,
"CustomerID": "ERNSH",
"EmployeeID": 1,
"OrderDate": "/Date(882144000000)/",
"RequiredDate": "/Date(884563200000)/",
"ShippedDate": "/Date(882403200000)/",
"ShipVia": 3,
"Freight": "351.5300",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10777,
"CustomerID": "GOURL",
"EmployeeID": 7,
"OrderDate": "/Date(882144000000)/",
"RequiredDate": "/Date(883353600000)/",
"ShippedDate": "/Date(885340800000)/",
"ShipVia": 2,
"Freight": "3.0100",
"ShipName": "Gourmet Lanchonetes",
"ShipAddress": "Av. Brasil, 442",
"ShipCity": "Campinas",
"ShipRegion": "SP",
"ShipPostalCode": "04876-786",
"ShipCountry": "Brazil"
},
{
"OrderID": 10778,
"CustomerID": "BERGS",
"EmployeeID": 3,
"OrderDate": "/Date(882230400000)/",
"RequiredDate": "/Date(884649600000)/",
"ShippedDate": "/Date(882921600000)/",
"ShipVia": 1,
"Freight": "6.7900",
"ShipName": "Berglunds snabbköp",
"ShipAddress": "Berguvsvägen 8",
"ShipCity": "Luleå",
"ShipRegion": null,
"ShipPostalCode": "S-958 22",
"ShipCountry": "Sweden"
},
{
"OrderID": 10779,
"CustomerID": "MORGK",
"EmployeeID": 3,
"OrderDate": "/Date(882230400000)/",
"RequiredDate": "/Date(884649600000)/",
"ShippedDate": "/Date(884736000000)/",
"ShipVia": 2,
"Freight": "58.1300",
"ShipName": "Morgenstern Gesundkost",
"ShipAddress": "Heerstr. 22",
"ShipCity": "Leipzig",
"ShipRegion": null,
"ShipPostalCode": "04179",
"ShipCountry": "Germany"
},
{
"OrderID": 10780,
"CustomerID": "LILAS",
"EmployeeID": 2,
"OrderDate": "/Date(882230400000)/",
"RequiredDate": "/Date(883440000000)/",
"ShippedDate": "/Date(883008000000)/",
"ShipVia": 1,
"Freight": "42.1300",
"ShipName": "LILA-Supermercado",
"ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo",
"ShipCity": "Barquisimeto",
"ShipRegion": "Lara",
"ShipPostalCode": "3508",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10781,
"CustomerID": "WARTH",
"EmployeeID": 2,
"OrderDate": "/Date(882316800000)/",
"RequiredDate": "/Date(884736000000)/",
"ShippedDate": "/Date(882489600000)/",
"ShipVia": 3,
"Freight": "73.1600",
"ShipName": "Wartian Herkku",
"ShipAddress": "Torikatu 38",
"ShipCity": "Oulu",
"ShipRegion": null,
"ShipPostalCode": "90110",
"ShipCountry": "Finland"
},
{
"OrderID": 10782,
"CustomerID": "CACTU",
"EmployeeID": 9,
"OrderDate": "/Date(882316800000)/",
"RequiredDate": "/Date(884736000000)/",
"ShippedDate": "/Date(882748800000)/",
"ShipVia": 3,
"Freight": "1.1000",
"ShipName": "Cactus Comidas para llevar",
"ShipAddress": "Cerrito 333",
"ShipCity": "Buenos Aires",
"ShipRegion": null,
"ShipPostalCode": "1010",
"ShipCountry": "Argentina"
},
{
"OrderID": 10783,
"CustomerID": "HANAR",
"EmployeeID": 4,
"OrderDate": "/Date(882403200000)/",
"RequiredDate": "/Date(884822400000)/",
"ShippedDate": "/Date(882489600000)/",
"ShipVia": 2,
"Freight": "124.9800",
"ShipName": "Hanari Carnes",
"ShipAddress": "Rua do Paço, 67",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "05454-876",
"ShipCountry": "Brazil"
},
{
"OrderID": 10784,
"CustomerID": "MAGAA",
"EmployeeID": 4,
"OrderDate": "/Date(882403200000)/",
"RequiredDate": "/Date(884822400000)/",
"ShippedDate": "/Date(882748800000)/",
"ShipVia": 3,
"Freight": "70.0900",
"ShipName": "Magazzini Alimentari Riuniti",
"ShipAddress": "Via Ludovico il Moro 22",
"ShipCity": "Bergamo",
"ShipRegion": null,
"ShipPostalCode": "24100",
"ShipCountry": "Italy"
},
{
"OrderID": 10785,
"CustomerID": "GROSR",
"EmployeeID": 1,
"OrderDate": "/Date(882403200000)/",
"RequiredDate": "/Date(884822400000)/",
"ShippedDate": "/Date(882921600000)/",
"ShipVia": 3,
"Freight": "1.5100",
"ShipName": "GROSELLA-Restaurante",
"ShipAddress": "5ª Ave. Los Palos Grandes",
"ShipCity": "Caracas",
"ShipRegion": "DF",
"ShipPostalCode": "1081",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10786,
"CustomerID": "QUEEN",
"EmployeeID": 8,
"OrderDate": "/Date(882489600000)/",
"RequiredDate": "/Date(884908800000)/",
"ShippedDate": "/Date(882835200000)/",
"ShipVia": 1,
"Freight": "110.8700",
"ShipName": "Queen Cozinha",
"ShipAddress": "Alameda dos Canàrios, 891",
"ShipCity": "Sao Paulo",
"ShipRegion": "SP",
"ShipPostalCode": "05487-020",
"ShipCountry": "Brazil"
},
{
"OrderID": 10787,
"CustomerID": "LAMAI",
"EmployeeID": 2,
"OrderDate": "/Date(882489600000)/",
"RequiredDate": "/Date(883699200000)/",
"ShippedDate": "/Date(883094400000)/",
"ShipVia": 1,
"Freight": "249.9300",
"ShipName": "La maison d'Asie",
"ShipAddress": "1 rue Alsace-Lorraine",
"ShipCity": "Toulouse",
"ShipRegion": null,
"ShipPostalCode": "31000",
"ShipCountry": "France"
},
{
"OrderID": 10788,
"CustomerID": "QUICK",
"EmployeeID": 1,
"OrderDate": "/Date(882748800000)/",
"RequiredDate": "/Date(885168000000)/",
"ShippedDate": "/Date(885168000000)/",
"ShipVia": 2,
"Freight": "42.7000",
"ShipName": "QUICK-Stop",
"ShipAddress": "Taucherstraße 10",
"ShipCity": "Cunewalde",
"ShipRegion": null,
"ShipPostalCode": "01307",
"ShipCountry": "Germany"
},
{
"OrderID": 10789,
"CustomerID": "FOLIG",
"EmployeeID": 1,
"OrderDate": "/Date(882748800000)/",
"RequiredDate": "/Date(885168000000)/",
"ShippedDate": "/Date(883526400000)/",
"ShipVia": 2,
"Freight": "100.6000",
"ShipName": "Folies gourmandes",
"ShipAddress": "184, chaussée de Tournai",
"ShipCity": "Lille",
"ShipRegion": null,
"ShipPostalCode": "59000",
"ShipCountry": "France"
},
{
"OrderID": 10790,
"CustomerID": "GOURL",
"EmployeeID": 6,
"OrderDate": "/Date(882748800000)/",
"RequiredDate": "/Date(885168000000)/",
"ShippedDate": "/Date(883094400000)/",
"ShipVia": 1,
"Freight": "28.2300",
"ShipName": "Gourmet Lanchonetes",
"ShipAddress": "Av. Brasil, 442",
"ShipCity": "Campinas",
"ShipRegion": "SP",
"ShipPostalCode": "04876-786",
"ShipCountry": "Brazil"
},
{
"OrderID": 10791,
"CustomerID": "FRANK",
"EmployeeID": 6,
"OrderDate": "/Date(882835200000)/",
"RequiredDate": "/Date(885254400000)/",
"ShippedDate": "/Date(883612800000)/",
"ShipVia": 2,
"Freight": "16.8500",
"ShipName": "Frankenversand",
"ShipAddress": "Berliner Platz 43",
"ShipCity": "München",
"ShipRegion": null,
"ShipPostalCode": "80805",
"ShipCountry": "Germany"
},
{
"OrderID": 10792,
"CustomerID": "WOLZA",
"EmployeeID": 1,
"OrderDate": "/Date(882835200000)/",
"RequiredDate": "/Date(885254400000)/",
"ShippedDate": "/Date(883526400000)/",
"ShipVia": 3,
"Freight": "23.7900",
"ShipName": "Wolski Zajazd",
"ShipAddress": "ul. Filtrowa 68",
"ShipCity": "Warszawa",
"ShipRegion": null,
"ShipPostalCode": "01-012",
"ShipCountry": "Poland"
},
{
"OrderID": 10793,
"CustomerID": "AROUT",
"EmployeeID": 3,
"OrderDate": "/Date(882921600000)/",
"RequiredDate": "/Date(885340800000)/",
"ShippedDate": "/Date(884217600000)/",
"ShipVia": 3,
"Freight": "4.5200",
"ShipName": "Around the Horn",
"ShipAddress": "Brook Farm Stratford St. Mary",
"ShipCity": "Colchester",
"ShipRegion": "Essex",
"ShipPostalCode": "CO7 6JX",
"ShipCountry": "UK"
},
{
"OrderID": 10794,
"CustomerID": "QUEDE",
"EmployeeID": 6,
"OrderDate": "/Date(882921600000)/",
"RequiredDate": "/Date(885340800000)/",
"ShippedDate": "/Date(883699200000)/",
"ShipVia": 1,
"Freight": "21.4900",
"ShipName": "Que Delícia",
"ShipAddress": "Rua da Panificadora, 12",
"ShipCity": "Rio de Janeiro",
"ShipRegion": "RJ",
"ShipPostalCode": "02389-673",
"ShipCountry": "Brazil"
},
{
"OrderID": 10795,
"CustomerID": "ERNSH",
"EmployeeID": 8,
"OrderDate": "/Date(882921600000)/",
"RequiredDate": "/Date(885340800000)/",
"ShippedDate": "/Date(885254400000)/",
"ShipVia": 2,
"Freight": "126.6600",
"ShipName": "Ernst Handel",
"ShipAddress": "Kirchgasse 6",
"ShipCity": "Graz",
"ShipRegion": null,
"ShipPostalCode": "8010",
"ShipCountry": "Austria"
},
{
"OrderID": 10796,
"CustomerID": "HILAA",
"EmployeeID": 3,
"OrderDate": "/Date(883008000000)/",
"RequiredDate": "/Date(885427200000)/",
"ShippedDate": "/Date(884736000000)/",
"ShipVia": 1,
"Freight": "26.5200",
"ShipName": "HILARION-Abastos",
"ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35",
"ShipCity": "San Cristóbal",
"ShipRegion": "Táchira",
"ShipPostalCode": "5022",
"ShipCountry": "Venezuela"
},
{
"OrderID": 10797,
"CustomerID": "DRACD",
"EmployeeID": 7,
"OrderDate": "/Date(883008000000)/",
"RequiredDate": "/Date(885427200000)/",
"ShippedDate": "/Date(883958400000)/",
"ShipVia": 2,
"Freight": "33.3500",
"ShipName": "Drachenblut Delikatessen",
"ShipAddress": "Walserweg 21",
"ShipCity": "Aachen",
"ShipRegion": null,
"ShipPostalCode": "52066",
"ShipCountry": "Germany"
},
{
"OrderID": 10798,
"CustomerID": "ISLAT",
"EmployeeID": 2,
"OrderDate": "/Date(883094400000)/",
"RequiredDate": "/Date(885513600000)/",
"ShippedDate": "/Date(883958400000)/",
"ShipVia": 1,
"Freight": "2.3300",
"ShipName": "Island Trading",
"ShipAddress": "Garden House Crowther Way",
"ShipCity": "Cowes",
"ShipRegion": "Isle of Wight",
"ShipPostalCode": "PO31 7PJ",
"ShipCountry": "UK"
}
]
}
For the ODataModel solution: https://embed.plnkr.co/7lcVJOaYsnIMJO1w